/* ───────────────────────────────────────────
   TOKENS
─────────────────────────────────────────── */
:root {
  --gold: #c09b45;
  --gold-2: #e8bf6a;
  --gold-3: #f5e0a0;
  --gold-dim: #8a6d22;
  --ink: #0f0e0c;
  --ink-2: #1e1c18;
  --ink-3: #2e2c26;
  --smoke: #f9f7f3;
  --cloud: #f3efe7;
  --mist: #eae5d8;
  --stone: #b0a898;
  --pebble: #7a7468;
  --white: #ffffff;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gold-soft: rgba(192, 155, 69, 0.1);
  --text: #37322b;
  --muted: #7a7468;
  --line: #eae5d8;
  --paper: #ffffff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(15, 14, 12, 0.08);
}

/* ───────────────────────────────────────────
   RESET
─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--smoke);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 2px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ───────────────────────────────────────────
   CURSOR GLOW (desktop only)
─────────────────────────────────────────── */
#cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(192, 155, 69, 0.07),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.25s ease;
  will-change: left, top, opacity;
}

/* ───────────────────────────────────────────
   NAV
─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 64px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(192, 155, 69, 0.1);
}

.nav-container {
  width: min(calc(100% - 40px), 1200px);
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 18px;
}
.nav.elevated {
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav-logo img {
  height: 32px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  white-space: nowrap;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--ink);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.btn-ghost {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(192, 155, 69, 0.3);
  transition: all 0.25s;
}
.btn-ghost:hover {
  background: var(--cloud);
  border-color: var(--gold);
}
.btn-cta {
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
  transition: all 0.28s;
  letter-spacing: 0.1px;
}
.btn-cta:hover {
  background: var(--gold);
  box-shadow: 0 6px 22px rgba(192, 155, 69, 0.35);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
  position: relative;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ───────────────────────────────────────────
   HERO
─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Animated background lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 155, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 155, 69, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 191, 106, 0.1),
    transparent 65%
  );
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  animation: glowBreath 6s ease-in-out infinite;
}
@keyframes glowBreath {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) scale(1.12);
    opacity: 1;
  }
}

/* Hero layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Text side */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(192, 155, 69, 0.08);
  border: 1px solid rgba(192, 155, 69, 0.2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeSlideDown 0.8s var(--ease-out-expo) both;
}
.kicker-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}

.hero-h1 {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 22px;
  animation: fadeSlideDown 0.9s 0.1s var(--ease-out-expo) both;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(
    120deg,
    var(--gold-dim),
    var(--gold),
    var(--gold-2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-body {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--pebble);
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeSlideDown 0.9s 0.18s var(--ease-out-expo) both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeSlideDown 0.9s 0.26s var(--ease-out-expo) both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 14, 12, 0.18);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  border: 1.5px solid rgba(192, 155, 69, 0.28);
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--cloud);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeSlideDown 0.9s 0.34s var(--ease-out-expo) both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--stone);
}
.trust-pip {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(192, 155, 69, 0.1);
  border: 1px solid rgba(192, 155, 69, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  color: var(--gold);
}

/* ── PHONE COLUMN ── */
.phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* Fixed container so phone can't overflow */
  height: 480px;
  animation: fadeSlideUp 1s 0.1s var(--ease-out-expo) both;
}

/* Soft ambient glow behind phone */
.ph-aura {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(192, 155, 69, 0.16),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowBreath 5s ease-in-out infinite;
}

/* Phone wrapper — constrained size */
.ph-wrap {
  position: relative;
  width: 190px; /* ← SMALLER fixed width */
  z-index: 2;
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  35% {
    transform: translateY(-14px) rotate(0.5deg);
  }
  70% {
    transform: translateY(-6px) rotate(1.5deg);
  }
}

/* Outer shell */
.ph-shell {
  border-radius: 32px;
  padding: 8px;
  background: linear-gradient(155deg, #282828, #101010, #1c1c1c);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 48px rgba(192, 155, 69, 0.1);
}

/* Screen */
.ph-screen {
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.ph-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 18px;
  background: #090909;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}
.ph-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.04),
    transparent 45%
  );
  pointer-events: none;
  z-index: 4;
  border-radius: 24px;
}
.slide-wrap {
  width: 100%;
  /* 9:19.5 → but capped by parent width naturally */
  aspect-ratio: 9/19.5;
  position: relative;
  overflow: hidden;
}
.slide-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 1.4s ease;
}
.slide-wrap img.s-on {
  opacity: 1;
}
.slide-wrap img.s-off {
  opacity: 0;
}

/* Decorative rings */
.ph-ring {
  position: absolute;
  inset: -10px;
  border-radius: 38px;
  border: 1px solid rgba(192, 155, 69, 0.15);
  pointer-events: none;
  animation: ringPulse 4s ease-in-out infinite;
}
.ph-ring2 {
  position: absolute;
  inset: -20px;
  border-radius: 46px;
  border: 1px solid rgba(192, 155, 69, 0.07);
  pointer-events: none;
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.9;
  }
}

/* Floating info chips */
.chip {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(192, 155, 69, 0.18);
  border-radius: 10px;
  padding: 9px 13px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  z-index: 10;
  animation: chipFloat 5s ease-in-out infinite;
}
.chip b {
  display: block;
  font-size: 0.96rem;
  color: var(--gold);
  font-weight: 700;
}
.chip-live {
  top: 12%;
  left: -58%;
  animation-delay: 0s;
}
.chip-rate {
  top: 52%;
  right: -52%;
  animation-delay: 1.2s;
}
.chip-save {
  bottom: 18%;
  left: -48%;
  animation-delay: 2.1s;
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* ───────────────────────────────────────────
   ANIMATIONS LIBRARY
─────────────────────────────────────────── */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-left] {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
[data-reveal-left].revealed {
  opacity: 1;
  transform: translateX(0);
}
[data-reveal-right] {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}
[data-reveal-right].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ───────────────────────────────────────────
   SECTION SHELL
─────────────────────────────────────────── */
.sec {
  padding: 100px 5%;
}
.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sec-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.sec-title {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 14px;
}
.sec-title .g {
  color: var(--gold);
}
.sec-body {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--pebble);
  max-width: 500px;
}
.h-rule {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
  margin: 14px 0 20px;
}

/* ───────────────────────────────────────────
   WHY + FORM
─────────────────────────────────────────── */
.why-sec {
  background: var(--smoke);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.why-intro {
  font-size: 0.93rem;
  line-height: 1.82;
  color: var(--pebble);
  margin-bottom: 32px;
}
.blist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.91rem;
  color: var(--ink-3);
  line-height: 1.55;
}
.blist-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 6px;
  background: rgba(192, 155, 69, 0.09);
  border: 1px solid rgba(192, 155, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: var(--gold);
  margin-top: 1px;
  transition: all 0.3s;
}
.blist-item:hover .blist-icon {
  background: rgba(192, 155, 69, 0.18);
  transform: scale(1.1);
}

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid rgba(192, 155, 69, 0.12);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(192, 155, 69, 0.04);
}
.form-title {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 24px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ff {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ff.full {
  grid-column: 1/-1;
}
.ff label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ff input,
.ff select,
.ff textarea {
  background: var(--smoke);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  font-size: 0.87rem;
  font-family: inherit;
  color: var(--ink);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  outline: none;
}
.ff input::placeholder,
.ff textarea::placeholder {
  color: var(--stone);
}
.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 155, 69, 0.08);
}
.ff select option {
  background: var(--white);
  color: var(--ink);
}
.ff textarea {
  resize: none;
  height: 68px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  margin-top: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--r-sm);
  transition: all 0.3s;
  letter-spacing: 0.1px;
}
.form-submit:hover {
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(192, 155, 69, 0.3);
  transform: translateY(-1px);
}
.form-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.form-badge {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show {
  display: block;
}
.form-success .ok {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--pebble);
}

/* ───────────────────────────────────────────
   FEATURES
─────────────────────────────────────────── */
.feat-sec {
  background: var(--white);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mist);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 54px;
}
.feat-card {
  background: var(--white);
  padding: 30px 24px;
  transition:
    background 0.3s,
    transform 0.35s;
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.feat-card:hover {
  background: var(--smoke);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  z-index: 1;
}
.feat-card:hover::after {
  transform: scaleX(1);
}
.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(192, 155, 69, 0.08);
  border: 1px solid rgba(192, 155, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.feat-card:hover .feat-icon {
  background: rgba(192, 155, 69, 0.15);
  transform: rotate(4deg) scale(1.05);
}
.feat-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.feat-body {
  font-size: 0.8rem;
  color: var(--pebble);
  line-height: 1.68;
}
.feat-coming {
  display: inline-block;
  margin-top: 9px;
  font-size: 0.62rem;
  padding: 2px 9px;
  border-radius: 100px;
  background: rgba(192, 155, 69, 0.07);
  color: var(--gold);
  border: 1px solid rgba(192, 155, 69, 0.18);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────
   PRICING
─────────────────────────────────────────── */
.price-sec {
  background: var(--smoke);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s,
    box-shadow 0.4s,
    border-color 0.3s;
}
.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.09);
  border-color: rgba(192, 155, 69, 0.28);
}
.price-card.star {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 16px 48px rgba(15, 14, 12, 0.18);
}
.price-card.star:hover {
  box-shadow: 0 28px 64px rgba(15, 14, 12, 0.25);
}
.star-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}
.p-tier {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price-card:not(.star) .p-tier {
  color: var(--gold);
}
.price-card.star .p-tier {
  color: rgba(232, 191, 106, 0.7);
}
.p-amount {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.price-card:not(.star) .p-amount {
  color: var(--ink);
}
.price-card.star .p-amount {
  color: var(--white);
}
.p-amount sup {
  font-size: 1.4rem;
}
.p-period {
  font-size: 0.76rem;
  margin-bottom: 6px;
}
.price-card:not(.star) .p-period {
  color: var(--stone);
}
.price-card.star .p-period {
  color: rgba(255, 255, 255, 0.35);
}
.p-for {
  font-size: 0.83rem;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
}
.price-card:not(.star) .p-for {
  color: var(--ink-3);
  border-bottom-color: var(--mist);
}
.price-card.star .p-for {
  color: rgba(255, 255, 255, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.p-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.p-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
}
.price-card:not(.star) .p-list li {
  color: var(--ink-3);
}
.price-card.star .p-list li {
  color: rgba(255, 255, 255, 0.75);
}
.p-list li::before {
  content: "✦";
  font-size: 0.42rem;
  min-width: 9px;
}
.price-card:not(.star) .p-list li::before {
  color: var(--gold);
}
.price-card.star .p-list li::before {
  color: var(--gold-2);
}
.p-note {
  font-size: 0.72rem;
  border-radius: 7px;
  padding: 9px 12px;
  margin-bottom: 20px;
}
.price-card:not(.star) .p-note {
  background: var(--smoke);
  color: var(--stone);
}
.price-card.star .p-note {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
}
.p-btn {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.87rem;
  transition: all 0.3s;
  font-family: inherit;
  cursor: pointer;
}
.p-btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(15, 14, 12, 0.16);
}
.p-btn-outline:hover {
  background: var(--smoke);
  border-color: var(--gold);
  color: var(--gold-dim);
}
.p-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--white);
  border: none;
}
.p-btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(192, 155, 69, 0.35);
}
.p-tagline {
  text-align: center;
  margin-top: 16px;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ───────────────────────────────────────────
   JOURNEY
─────────────────────────────────────────── */
.journey-sec {
  background: var(--white);
}
.j-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.j-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.j-steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(192, 155, 69, 0.2),
    transparent
  );
}
.j-step {
  display: flex;
  gap: 24px;
  padding: 18px 18px 18px 0;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
}
.j-step.revealed {
  opacity: 1;
  transform: translateX(0);
}
.j-num {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(192, 155, 69, 0.08);
  border: 1.5px solid rgba(192, 155, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  z-index: 1;
  flex-shrink: 0;
  transition: all 0.3s;
}
.j-step:hover .j-num {
  background: rgba(192, 155, 69, 0.15);
  border-color: var(--gold);
  transform: scale(1.08);
}
.j-body {
  padding-top: 8px;
}
.j-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.j-desc {
  font-size: 0.82rem;
  color: var(--pebble);
  line-height: 1.65;
}
.j-note {
  margin-top: 28px;
  padding: 18px 24px;
  background: rgba(192, 155, 69, 0.05);
  border: 1px solid rgba(192, 155, 69, 0.14);
  border-radius: var(--r-md);
  font-size: 0.84rem;
  color: var(--ink-3);
  line-height: 1.7;
}
.j-note strong {
  color: var(--gold-dim);
}

/* Phone in journey */
.j-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 520px;
}
.j-phone-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 155, 69, 0.1), transparent 70%);
  animation: glowBreath 5s ease-in-out infinite;
}
.j-phone-wrap {
  width: 200px;
  position: relative;
  z-index: 2;
  animation: phoneFloat 7s ease-in-out infinite;
}
.j-phone-shell {
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(155deg, #282828, #101010, #1c1c1c);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}
.j-screen {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #000;
}
.j-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 18px;
  background: #090909;
  border-radius: 0 0 13px 13px;
  z-index: 5;
}
.j-slide-wrap {
  width: 100%;
  aspect-ratio: 9/19.5;
  position: relative;
  overflow: hidden;
}
.j-slide-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 1.4s ease;
}
.j-slide-wrap img.j-on {
  opacity: 1;
}
.j-slide-wrap img.j-off {
  opacity: 0;
}

/* ───────────────────────────────────────────
   VISION (dark section)
─────────────────────────────────────────── */
.vision-sec {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.vision-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 155, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 155, 69, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
.vision-sec .sec-inner {
  position: relative;
  z-index: 1;
}
.vision-sec .sec-label {
  color: rgba(232, 191, 106, 0.6);
}
.vision-sec .sec-title {
  color: var(--white);
}
.vision-tagline {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  margin: 36px 0;
  text-align: center;
}
.vision-tagline .g {
  color: var(--gold-2);
}
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.v-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-md);
  padding: 24px 20px;
  transition: all 0.35s;
  color: #fff;
}
.v-card:hover {
  background: rgba(192, 155, 69, 0.07);
  border-color: rgba(192, 155, 69, 0.18);
  transform: translateY(-4px);
}
.v-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.v-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.v-card-body {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
}

/* ───────────────────────────────────────────
   COMPARE
─────────────────────────────────────────── */
.compare-sec {
  background: var(--smoke);
}
.c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 54px;
}
.c-card {
  border-radius: var(--r-lg);
  padding: 38px;
}
.c-card.no {
  background: var(--white);
  border: 1.5px solid var(--mist);
}
.c-card.yes {
  background: var(--ink);
  box-shadow: 0 20px 50px rgba(15, 14, 12, 0.15);
}
.c-head-icon {
  font-size: 1.7rem;
  margin-bottom: 9px;
}
.c-head-title {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.c-card.no .c-head-title {
  color: var(--stone);
}
.c-card.yes .c-head-title {
  color: var(--gold-2);
}
.c-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
}
.c-card.no .c-item {
  color: rgba(122, 116, 104, 0.8);
}
.c-card.yes .c-item {
  color: rgba(255, 255, 255, 0.72);
}
.c-pip {
  width: 19px;
  height: 19px;
  min-width: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
}
.c-card.no .c-pip {
  background: rgba(0, 0, 0, 0.04);
  color: #c39215;
}
.c-card.yes .c-pip {
  background: rgba(192, 155, 69, 0.16);
  color: var(--gold-2);
}

/* ───────────────────────────────────────────
   CUSTOMERS
─────────────────────────────────────────── */
.customers-sec {
  background: var(--white);
}
.cust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.cust-card {
  background: var(--smoke);
  border: 1.5px solid var(--mist);
  border-radius: var(--r-md);
  padding: 26px 18px;
  text-align: center;
  transition: all 0.35s;
}
.cust-card:hover {
  background: var(--white);
  border-color: rgba(192, 155, 69, 0.24);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}
.cust-icon {
  font-size: 1.9rem;
  margin-bottom: 12px;
}
.cust-title {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.cust-body {
  font-size: 0.77rem;
  color: var(--pebble);
  line-height: 1.6;
}

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
footer {
  background: var(--ink-2);
  color: var(--white);
  padding: 64px 5% 28px;
}
.f-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px;
}
.f-brand-name {
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.f-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  margin-bottom: 14px;
}
.f-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.78;
  max-width: 250px;
  margin-bottom: 18px;
}
.f-social {
  display: flex;
  gap: 9px;
}
.f-soc {
  width: 33px;
  height: 33px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all 0.3s;
}
.f-soc:hover {
  background: rgba(192, 155, 69, 0.16);
  border-color: rgba(192, 155, 69, 0.3);
  color: var(--gold-2);
}
.f-col-title {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(192, 155, 69, 0.65);
  margin-bottom: 13px;
}
.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.f-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s;
}
.f-links a:hover {
  color: var(--gold-2);
}
.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ───────────────────────────────────────────
   DIVIDER
─────────────────────────────────────────── */
.rule {
  height: 1px;
  margin: 0 5%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 155, 69, 0.18),
    transparent
  );
}

/* ───────────────────────────────────────────
   WHATSAPP BUTTON
─────────────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 600;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.32);
  animation: waFloat 3.5s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.1) !important;
}
@keyframes waFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* ───────────────────────────────────────────
   RESPONSIVE + MOBILE INTERACTIONS
─────────────────────────────────────────── */
.nav-links a.is-active {
  color: var(--ink);
}
.nav-links a.is-active::after {
  transform: scaleX(1);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 498;
  background: rgba(15, 14, 12, 0.34);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.34s var(--ease-out-expo),
    visibility 0.34s var(--ease-out-expo);
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.menu-open {
  overflow: hidden;
  touch-action: none;
}
.form-submit.is-loading {
  opacity: 0.74;
  cursor: wait;
  pointer-events: none;
}
.form-submit.is-success {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.ff input.is-invalid,
.ff select.is-invalid,
.ff textarea.is-invalid {
  border-color: #d9534f !important;
  background: rgba(217, 83, 79, 0.04) !important;
  animation: fieldShake 0.36s ease both;
}
.form-success.show {
  animation: successPop 0.58s var(--ease-spring) both;
}
@keyframes fieldShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-3px);
  }
}
@keyframes successPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(232, 191, 106, 0.48);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 1.35rem;
  }
  .nav-container {
    width: min(calc(100% - 32px), 1120px);
  }
  .hero-inner {
    gap: 42px;
  }
  .hero-h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 104px 5% 70px;
  }
  .hero-inner,
  .why-grid,
  .j-wrap {
    grid-template-columns: 1fr;
  }
  .hero-text {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }
  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns,
  .trust-row {
    justify-content: center;
  }
  .phone-col {
    height: 410px;
    order: -1;
    margin-bottom: 10px;
  }
  .ph-wrap {
    width: 170px;
  }
  .chip {
    display: none;
  }
  .why-grid {
    gap: 46px;
  }
  .feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .price-card {
    padding: 30px 22px;
  }
  .p-amount {
    font-size: 2.45rem;
  }
  .j-wrap {
    gap: 34px;
    margin-top: 42px;
  }
  .j-phone-col {
    height: 390px;
    order: -1;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-text {
    order: 1;
  }

  .phone-col {
    order: 2;
    margin-top: 40px;
    height: auto;
  }
  .j-phone-wrap {
    width: 174px;
  }
  .v-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .f-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 34px;
  }
  .cust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .phone-col {
    grid-row: 2;
  }
}

@media (max-width: 900px) {
  .nav {
    height: 62px;
  }
  .nav-container {
    width: min(calc(100% - 28px), 840px);
  }
  .nav-logo img {
    height: 30px;
    max-width: 140px;
  }
  .nav-links {
    position: fixed;
    left: 50%;
    right: auto;
    top: 72px;
    width: min(calc(100vw - 28px), 840px);
    transform: translateX(-50%) translateY(-14px) scale(0.98);
    transform-origin: top center;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 16px;
    max-height: calc(100vh - 92px);
    overflow: auto;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(192, 155, 69, 0.14);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 22px 54px rgba(15, 14, 12, 0.14);
    backdrop-filter: blur(24px) saturate(180%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.34s var(--ease-out-expo),
      transform 0.34s var(--ease-out-expo),
      visibility 0.34s var(--ease-out-expo);
    z-index: 1001;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.055);
    font-size: 0.9rem;
  }
  .nav-links li:last-child a {
    border-bottom: 0;
  }
  .nav-actions .btn-ghost {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin: 48px auto 0;
  }
  .price-card {
    padding: 32px 26px;
  }
  .c-grid {
    grid-template-columns: 1fr;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .nav {
    height: 58px;
  }
  .nav-container {
    width: min(calc(100% - 24px), 720px);
    gap: 10px;
  }
  .nav-logo img {
    height: 28px;
    max-width: 132px;
  }
  .btn-cta {
    padding: 8px 13px;
    font-size: 0.78rem;
  }
  .hero {
    padding: 88px 5% 56px;
  }
  .hero-glow {
    width: 380px;
    height: 380px;
    right: -180px;
    opacity: 0.75;
  }
  .hero-lines::before {
    background-size: 46px 46px;
  }
  .hero-h1 {
    font-size: clamp(2.05rem, 9vw, 3rem);
    line-height: 1.08;
    margin-bottom: 18px;
  }
  .hero-body {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .hero-kicker {
    font-size: 0.64rem;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 350px;
    margin: 0 auto 30px;
  }
  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
  }
  .trust-row {
    gap: 12px 16px;
  }
  .trust-item {
    font-size: 0.74rem;
  }
  .phone-col {
    height: 350px;
  }
  .ph-wrap {
    width: 152px;
  }
  .ph-shell {
    border-radius: 28px;
    padding: 7px;
  }
  .ph-screen {
    border-radius: 22px;
  }
  .sec {
    padding: 74px 5%;
  }
  .sec-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }
  .sec-label {
    letter-spacing: 3px;
  }
  .why-grid {
    gap: 34px;
  }
  .form-card {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .feat-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
    border-radius: 18px;
  }
  .feat-card {
    padding: 26px 20px;
  }
  .j-phone-col {
    height: 340px;
  }
  .j-phone-wrap {
    width: 152px;
  }
  .j-step {
    gap: 16px;
    padding: 16px 0;
  }
  .j-num {
    min-width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }
  .j-steps::before {
    left: 21px;
  }
  .j-note {
    padding: 16px 18px;
  }
  .v-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .c-card {
    padding: 28px 22px;
  }
  .cust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 38px;
  }
  .cust-card {
    padding: 22px 14px;
  }
  footer {
    padding: 54px 5% 24px;
  }
  .f-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .f-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .wa-btn {
    width: 48px;
    height: 48px;
    right: 18px;
    bottom: 18px;
  }
  #cursor-glow {
    display: none;
  }
}

@media (max-width: 640px) {
  .fgrid {
    grid-template-columns: 1fr;
  }
  .ff.full {
    grid-column: auto;
  }
  .form-badges {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-text {
    text-align: left;
  }
  .hero-body {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-btns {
    margin-left: 0;
    margin-right: 0;
  }
  .trust-row {
    justify-content: flex-start;
  }
  .sec [style*="text-align: center"] {
    text-align: left !important;
  }
  .sec-body[style*="text-align: center"] {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .price-grid {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .nav-container {
    width: min(calc(100% - 20px), 460px);
  }
  .nav-logo img {
    max-width: 122px;
    height: 26px;
  }
  .btn-cta {
    padding: 7px 10px;
    font-size: 0.72rem;
  }
  .hamburger span {
    width: 19px;
  }
  .hero {
    padding: 82px 20px 48px;
  }
  .sec {
    padding: 64px 20px;
  }
  .hero-h1 {
    font-size: 2rem;
    letter-spacing: -0.25px;
  }
  .phone-col {
    height: 315px;
  }
  .ph-wrap {
    width: 138px;
  }
  .ph-notch {
    width: 52px;
    height: 15px;
  }
  .j-phone-col {
    height: 310px;
  }
  .j-phone-wrap {
    width: 140px;
  }
  .j-notch {
    width: 54px;
    height: 15px;
  }
  .cust-grid {
    grid-template-columns: 1fr;
  }
  .c-card {
    padding: 24px 18px;
  }
  .p-amount {
    font-size: 2.35rem;
  }
  .nav-links {
    top: 66px;
    width: calc(100vw - 20px);
  }
}

@media (max-width: 360px) {
  .nav-actions .btn-cta {
    display: none;
  }
  .hero-h1 {
    font-size: 1.82rem;
  }
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sec {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
.feat-icon i,
.blist-icon i,
.trust-pip i,
.btn-icon i,
.f-soc i,
.wa-btn i {
  font-size: 1rem;
}

.wa-btn i {
  font-size: 1.5rem;
}

.feat-icon i {
  font-size: 1.3rem;
}

.v-card-icon i,
.c-head-icon i,
.c-pip i,
.cust-icon i,
.form-badge i,
.ok i {
  font-size: 1.2rem;
}

.c-pip i {
  font-size: 0.75rem;
}

.form-badge {
  gap: 6px;
}

.ri-star-smile-line {
  color: #fff;
}

.ff {
  position: relative;
}

.invalid-feedback {
  display: none;
  font-size: 0.82rem;
  color: #ff6b6b;
  margin-top: 6px;
  font-weight: 600;
}

.is-invalid {
  border: 1px solid #ff6b6b !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

.is-invalid + .invalid-feedback {
  display: block;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.needs-validation .invalid-feedback {
  display: none;
}

.needs-validation.was-validated input:invalid,
.needs-validation.was-validated select:invalid,
.needs-validation.was-validated textarea:invalid {
  border: 1px solid #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.needs-validation.was-validated input:invalid ~ .invalid-feedback,
.needs-validation.was-validated select:invalid ~ .invalid-feedback,
.needs-validation.was-validated textarea:invalid ~ .invalid-feedback {
  display: block;
}

.invalid-feedback {
  color: #ff6b6b;
  font-size: 0.82rem;
  margin-top: 8px;
  font-weight: 600;
}

/* FORM MESSAGE BOX */

#form-message {
  margin-bottom: 16px;
}

.form-error,
.form-success-msg {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;

  border-radius: 14px;

  font-size: 0.92rem;

  font-weight: 600;

  animation: msgShow 0.35s ease;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-error {
  color: #c92e2e;

  background: rgba(255, 72, 72, 0.12);

  border: 1px solid rgba(255, 72, 72, 0.28);

  backdrop-filter: blur(10px);
}

.form-success-msg {
  color: #31ab4a;

  background: rgba(46, 204, 113, 0.14);

  border: 1px solid rgba(46, 204, 113, 0.25);
}

.form-error i {
  color: #ff5c5c;

  font-size: 1.1rem;
}

.form-success-msg i {
  color: #31ab4a;

  font-size: 1.1rem;
}

@keyframes msgShow {
  from {
    opacity: 0;

    transform: translateY(-10px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

#formSuccess {
  display: none;
  opacity: 0;
  transform: translateY(15px);
}

#formSuccess.show {
  display: block;
  opacity: 1;

  transform: translateY(0);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.footer-logo {
  height: 62px;
  width: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}


      .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border-radius: 999px;
        padding: 10px 18px;
        background: var(--ink);
        color: #fff;
        font-weight: 800;
        font-size: 0.84rem;
      }

      .menu-btn {
        display: none;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        background: #fff;
        border-radius: 12px;
        font-size: 1.25rem;
        color: var(--ink);
      }

      .mobile-panel {
        display: none;
        border-top: 1px solid var(--line);
        background: #fff;
      }

      .mobile-panel a {
        display: block;
        width: min(1140px, calc(100% - 36px));
        margin: 0 auto;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
        color: var(--text);
        font-weight: 700;
      }

      .hero {
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at 78% 20%, rgba(232, 191, 106, 0.2), transparent 34%),
          linear-gradient(180deg, #fff 0%, var(--smoke) 100%);
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(192, 155, 69, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(192, 155, 69, 0.05) 1px, transparent 1px);
        background-size: 56px 56px;
        pointer-events: none;
      }


      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 14px;
        background: var(--gold-soft);
        border: 1px solid rgba(192, 155, 69, 0.22);
        border-radius: 999px;
        color: var(--gold);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin-bottom: 18px;
      }

      .eyebrow i {
        font-size: 1rem;
      }

      h1 {
        font-family: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
        font-size: clamp(2.4rem, 4.2vw, 3.8rem);
        font-weight: 900;
        line-height: 1.07;
        letter-spacing: -0.5px;
        color: var(--ink);
        margin-bottom: 22px;
        animation: fadeSlideDown 0.9s 0.1s var(--ease-out-expo) both;
      }

      .hero-copy {
        max-width: 760px;
        color: var(--muted);
        font-size: 1rem;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 12px;
        padding: 13px 20px;
        font-weight: 900;
        font-size: 0.9rem;
        transition: 0.22s ease;
      }

      .btn-dark {
        background: var(--ink);
        color: #fff;
      }

      .btn-dark:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(15, 14, 12, 0.18);
      }

      .btn-light {
        background: #fff;
        border: 1px solid rgba(192, 155, 69, 0.24);
        color: var(--ink);
      }

      .btn-light:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
      }

      .meta-card {
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(192, 155, 69, 0.18);
        border-radius: var(--radius);
        padding: 24px;
        box-shadow: var(--shadow);
      }

      .meta-row {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
      }

      .meta-row:last-child {
        border-bottom: 0;
      }

      .meta-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        background: var(--gold-soft);
        color: var(--gold);
        flex: 0 0 auto;
      }

      .meta-label {
        display: block;
        color: var(--muted);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-weight: 900;
      }

      .meta-value {
        display: block;
        color: var(--ink);
        font-weight: 900;
        margin-top: 2px;
      }

      .page-wrap {
        width: min(1200px, calc(100% - 36px));
        margin: 0 auto;
        padding: 56px 0 80px;
        display: grid;
        grid-template-columns: 290px minmax(0, 1fr);
        gap: 34px;
        align-items: start;
      }

      .toc {
        position: sticky;
        top: 96px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 22px;
        box-shadow: 0 14px 44px rgba(15, 14, 12, 0.04);
      }

      .toc-title {
        color: var(--ink);
        font-size: 0.88rem;
        font-weight: 900;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .toc ol {
        list-style: none;
        display: grid;
        gap: 9px;
        counter-reset: toc;
      }

      .toc li {
        counter-increment: toc;
      }

      .toc a {
        display: grid;
        grid-template-columns: 26px minmax(0, 1fr);
        gap: 8px;
        color: var(--muted);
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1.35;
      }

      .toc a::before {
        content: counter(toc, decimal-leading-zero);
        color: var(--gold);
        font-size: 0.72rem;
        font-weight: 900;
      }

      .toc a:hover {
        color: var(--ink);
      }

      .policy-content {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 28px;
        padding: clamp(24px, 4vw, 48px);
        box-shadow: var(--shadow);
      }

      .intro-note {
        border-radius: 18px;
        padding: 22px;
        background: linear-gradient(135deg, rgba(192, 155, 69, 0.1), rgba(232, 191, 106, 0.06));
        border: 1px solid rgba(192, 155, 69, 0.2);
        color: var(--text);
        margin-bottom: 34px;
      }

      .policy-section {
        padding: 30px 0;
        border-top: 1px solid var(--line);
        scroll-margin-top: 96px;
      }

      .policy-section:first-of-type {
        border-top: 0;
        padding-top: 0;
      }

      .section-kicker {
        display: inline-block;
        color: var(--gold);
        font-weight: 900;
        font-size: 0.74rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        margin-bottom: 8px;
      }

      h2 {
        color: var(--ink);
        font-size: clamp(1.35rem, 2.3vw, 2.05rem);
        line-height: 1.18;
        letter-spacing: -0.03em;
        margin-bottom: 14px;
        font-family: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
      }

      h3 {
        color: var(--ink-2);
        font-size: 1rem;
        margin: 20px 0 8px;
      }

      p {
        margin-bottom: 12px;
      }

      .list-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 14px 0 18px;
      }

      .list-grid.single {
        grid-template-columns: 1fr;
      }

      .pill-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 13px 14px;
        border-radius: 14px;
        background: var(--smoke);
        border: 1px solid var(--line);
        color: var(--text);
        font-size: 0.92rem;
        font-weight: 650;
      }

      .pill-item i {
        color: var(--gold);
        font-size: 1rem;
        margin-top: 2px;
        flex: 0 0 auto;
      }

      .notice {
        margin-top: 14px;
        padding: 16px 18px;
        border-left: 4px solid var(--gold);
        background: var(--cloud);
        border-radius: 0 14px 14px 0;
        color: var(--text);
      }

      .contact-box {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 20px;
      }

      .contact-card {
        padding: 18px;
        border-radius: 18px;
        background: var(--smoke);
        border: 1px solid var(--line);
      }

      .contact-card i {
        display: inline-grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border-radius: 11px;
        background: var(--gold-soft);
        color: var(--gold);
        font-size: 1.15rem;
        margin-bottom: 10px;
      }

      .contact-card span {
        display: block;
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }

      .contact-card strong,
      .contact-card a {
        display: block;
        color: var(--ink);
        font-size: 0.9rem;
        font-weight: 900;
        overflow-wrap: anywhere;
      }

      @media (max-width: 960px) {
        .menu-btn {
          display: grid;
          place-items: center;
        }

        .mobile-panel.open {
          display: block;
        }

        .hero-inner,
        .page-wrap {
          grid-template-columns: 1fr;
        }

        .meta-card,
        .toc {
          position: static;
        }

        .toc ol {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 640px) {
        .nav-inner {
          height: 64px;
        }

        .hero-inner {
          padding: 52px 0 42px;
        }


        .btn {
          width: 100%;
        }

        .list-grid,
        .toc ol,
        .contact-box {
          grid-template-columns: 1fr;
        }

        .policy-content {
          border-radius: 20px;
        }
      }
