/* =========================================
   ASPER — Landing Page
   Conversion-Centered Design · Mobile First
   ========================================= */

:root {
  --blue-100: #D6E4FF;
  --blue-200: #A8C5FF;
  --blue-300: #7AB0FF;
  --blue-400: #3B7BFF;
  --blue-500: #1A56DB;
  --blue-600: #1145B0;
  --blue-700: #0F3A8A;
  --blue-800: #0A2766;
  --blue-900: #061847;

  --wa: #25D366;
  --wa-dark: #128C7E;

  --white: #ffffff;
  --gray-50: #F5F7FA;
  --gray-200: #E4EAF3;
  --gray-500: #7A89A8;
  --gray-700: #2B3654;
  --gray-900: #0A0F1E;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  /* Centered, Apple-style soft shadows — minimal Y offset, wide diffuse blur */
  --shadow-sm: 0 2px 22px rgba(10,15,30,.16);
  --shadow: 0 6px 44px rgba(6,18,55,.26);
  --shadow-lg: 0 10px 64px rgba(6,18,55,.36);

  --container: 1200px;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

/* =========================================
   Reset & base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  background: var(--blue-700);
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 18px; } }

/* =========================================
   Animated background mesh
   ========================================= */
.bg-mesh {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 800px at -10% -10%, #1A56DB 0%, transparent 60%),
    radial-gradient(900px 700px at 110% 10%, #2A6FE0 0%, transparent 55%),
    radial-gradient(1200px 900px at 50% 110%, #0F3A8A 0%, transparent 60%),
    linear-gradient(180deg, #0A2766 0%, #0F3A8A 40%, #1A56DB 100%);
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.blob-1 { width: 600px; height: 600px; background: #3B7BFF; top: -15%; left: -10%; animation: float1 22s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; background: #7AB0FF; top: 30%; right: -8%; animation: float2 28s ease-in-out infinite; }
.blob-3 { width: 700px; height: 700px; background: #0F3A8A; bottom: -20%; left: 30%; animation: float3 32s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(80px,60px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-100px,80px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,-80px); } }

.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PScwIDAgMjAwIDIwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjxmZUNvbG9yTWF0cml4IHZhbHVlcz0nMCAwIDAgMCAxIDAgMCAwIDAgMSAwIDAgMCAwIDEgMCAwIDAgMC4wNiAwJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsdGVyPSd1cmwoI24pJy8+PC9zdmc+");
  opacity: 0.35; mix-blend-mode: overlay; pointer-events: none;
}

/* =========================================
   Custom cursor
   ========================================= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
  mix-blend-mode: difference;
}
.cursor-dot { width: 8px; height: 8px; background: #fff; }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.7);
  transition: transform .15s ease-out, width .2s ease, height .2s ease, opacity .25s ease, background .2s ease;
}
.cursor-ring.hover { width: 64px; height: 64px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.95); }
.cursor-ring.click { transform: translate(-50%,-50%) scale(.7); }
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================
   Glassmorphism
   ========================================= */
.glass {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 6px 34px rgba(6,18,55,.24), inset 0 1px 0 rgba(255,255,255,.18);
}
.glass-strong {
  background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 56px rgba(6,18,55,.34), inset 0 1px 0 rgba(255,255,255,.25);
}

/* =========================================
   Typography
   ========================================= */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.8vw, 4.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 .6em;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.display em {
  font-style: normal;
  background: linear-gradient(120deg, #fff, #D6E4FF 60%, #7AB0FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.display-hl {
  display: inline-block;
  background: linear-gradient(120deg, #fff 0%, #A8C5FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.h2 .hl {
  background: linear-gradient(120deg, #A8C5FF, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  margin: 0 0 1.6em;
  max-width: 56ch;
  text-wrap: pretty;
}
.body-lg { font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,.85); margin: 0 0 1em; text-wrap: pretty; }
.muted { color: rgba(255,255,255,.65); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.xs { font-size: .85rem; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-200);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(170, 197, 255, 0.12);
  border: 1px solid rgba(170, 197, 255, 0.25);
  margin-bottom: 1.2em;
}
.kicker.light { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5em;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3B7BFF;
  box-shadow: 0 0 0 0 rgba(59,123,255,.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(59,123,255,.6); }
  70% { box-shadow: 0 0 0 12px rgba(59,123,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,123,255,0); }
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }

.btn-wa {
  background: transparent;
  color: #fff;
  border: 2px solid #25D366;
  box-shadow: 0 4px 30px rgba(37,211,102,.16);
}
.btn-wa:hover { transform: translateY(-2px); background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); border-color: #25D366; box-shadow: 0 8px 40px rgba(37,211,102,.4); }
.btn-wa .btn-shine { background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.4) 50%, transparent 75%); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 18px 30px; font-size: 1.08rem; }
.btn-xl { padding: 22px 38px; font-size: 1.18rem; }
.btn-block { width: 100%; }

@media (max-width: 560px) {
  .btn { white-space: normal; text-wrap: balance; }
  .btn-lg { padding: 16px 18px; font-size: 1rem; }
  .btn-xl { padding: 18px 20px; font-size: 1.05rem; }
}

.btn-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-shine {
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.55) 50%, transparent 75%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: shine 3.5s infinite;
}
@keyframes shine {
  0% { left: -120%; }
  60%, 100% { left: 130%; }
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(15,58,138,.5);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,.25)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: .02em; }
.brand-tag { font-size: .72rem; color: rgba(255,255,255,.7); margin-top: 3px; text-transform: uppercase; letter-spacing: .14em; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: rgba(255,255,255,.82);
  transition: background .2s, color .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
@media (max-width: 900px) { .nav-links { display: none; } }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem;
  color: rgba(255,255,255,.85);
  padding: 10px 14px; border-radius: 999px;
  transition: color .2s;
}
.nav-phone:hover { color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: transparent; color: #fff;
  border: 1.5px solid var(--wa);
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--wa); color: #fff; box-shadow: 0 6px 26px rgba(37,211,102,.35); }

@media (max-width: 640px) {
  .brand-tag { display: none; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 8px 10px; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* =========================================
   HERO
   ========================================= */
.hero { position: relative; padding: 80px 0 60px; overflow: hidden; }
@media (max-width: 768px) { .hero { padding: 40px 0 30px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-copy { position: relative; z-index: 2; }
.hero-title { font-size: clamp(2.05rem, 7.2vw, 64px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: .92rem; color: rgba(255,255,255,.8);
  margin-bottom: 30px;
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-item svg { color: #7AB0FF; flex-shrink: 0; }

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 540px;
}
@media (max-width: 480px) { .hero-badges { grid-template-columns: 1fr; } }
.badge-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
}
.badge-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  display: grid; place-items: center; color: #fff;
}
.badge-title { font-family: var(--font-display); font-weight: 700; font-size: .98rem; line-height: 1.2; }
.badge-sub { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}
.hv-amount {
  position: relative; z-index: 3;
  text-align: center;
  padding: 26px 44px;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 70px rgba(6,18,55,.4);
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hv-amount-top {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hv-amount-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  margin: 6px 0 10px;
  background: linear-gradient(180deg, #fff, #D6E4FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.03em;
}
.hv-amount-pill {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.ring-stack {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.ring {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.4);
  box-shadow: 0 10px 50px rgba(0,0,0,.3);
}
.ring svg { width: 100%; height: 100%; display: block; }
.ring-a { top: 10%; left: 8%; animation: ringFloat1 8s ease-in-out infinite; }
.ring-b { bottom: 8%; right: 6%; width: 200px; height: 200px; animation: ringFloat2 9s ease-in-out infinite; }
.ring-c { top: 60%; left: 0%; width: 160px; height: 160px; animation: ringFloat3 10s ease-in-out infinite; }

@keyframes ringFloat1 { 0%,100% { transform: translate(0,0) rotate(-3deg); } 50% { transform: translate(8px,-12px) rotate(2deg); } }
@keyframes ringFloat2 { 0%,100% { transform: translate(0,0) rotate(2deg); } 50% { transform: translate(-10px,10px) rotate(-3deg); } }
@keyframes ringFloat3 { 0%,100% { transform: translate(0,0) rotate(-2deg); } 50% { transform: translate(6px,-8px) rotate(3deg); } }

.floating-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  z-index: 4;
  animation: floatY 5s ease-in-out infinite;
}
.chip-1 { top: 4%; right: 8%; animation-delay: .6s; }
.chip-2 { bottom: 12%; left: -2%; animation-delay: 1.2s; }
.chip-3 { top: 52%; right: -4%; animation-delay: 1.8s; }
.chip-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #A8C5FF;
}
.chip-dot.ok { background: #3B7BFF; box-shadow: 0 0 8px #3B7BFF; }

@media (max-width: 968px) {
  .hero-visual { min-height: 420px; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .hero-visual { min-height: 360px; }
  .ring-a, .ring-c { width: 130px; height: 130px; }
  .ring-b { width: 150px; height: 150px; }
  .chip-3 { display: none; }
  .floating-chip { font-size: .78rem; padding: 8px 12px; }
}

/* Marquee */
.marquee {
  margin-top: 60px;
  padding: 16px 0;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 36px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700; font-size: .95rem;
  letter-spacing: .16em;
  color: rgba(255,255,255,.85);
  animation: scroll 35s linear infinite;
}
.marquee-track span { flex-shrink: 0; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   Sections (general)
   ========================================= */
.section { padding: 100px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 70px 0; } }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head .kicker { margin-bottom: 16px; }

/* =========================================
   S2 — Money
   ========================================= */
.section-money { padding-top: 70px; padding-bottom: 90px; }

/* New leaner, centered "realization" layout */
.money-statement {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.money-statement .kicker { margin-bottom: 18px; }
.money-headline { font-size: clamp(2.1rem, 4.4vw, 3.6rem); margin-bottom: .5em; }
.money-lead {
  max-width: 52ch;
  margin: 0 auto 1.8em;
  font-size: 1.18rem;
  color: rgba(255,255,255,.82);
}
.money-ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(9rem, 30vw, 22rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.05);
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
}

.money-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 968px) { .money-grid { grid-template-columns: 1fr; gap: 40px; } }

.money-card {
  position: relative;
  padding: 44px 36px;
  border-radius: var(--radius-xl);
  text-align: center;
}
.money-card-top {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .92rem;
  color: rgba(255,255,255,.75);
}
.money-card-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 12px 0;
  background: linear-gradient(180deg, #fff, #A8C5FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.money-card-big .ms { font-size: .65em; vertical-align: top; margin-right: 4px; opacity: .85; }
.money-card-pill {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
}
.money-card-sub {
  margin-top: 14px;
  color: rgba(255,255,255,.8);
}
.money-card-meter {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align: left;
}
.meter-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: .92rem; margin-bottom: 8px;
}
.meter-bar {
  height: 12px; border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
  margin-bottom: 14px;
}
.meter-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #3B7BFF, #A8C5FF);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(59,123,255,.5);
  transition: width 2s cubic-bezier(.2,.8,.2,1);
}
.meter-fill.fill { width: 92%; }
.meter-foot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
}

/* =========================================
   S3 — Steps
   ========================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 968px) {
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .step-connector { display: none; }
}
.step {
  position: relative;
  padding: 36px 28px 30px;
  border-radius: var(--radius-lg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 14px 58px rgba(6,18,55,.38); }
.step-highlight {
  background: linear-gradient(160deg, rgba(59,123,255,.24), rgba(255,255,255,.08));
  border-color: rgba(59,123,255,.5);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(255,255,255,.25);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 6px 26px rgba(26,86,219,.36);
}
.step-highlight .step-icon { background: linear-gradient(135deg, #3B7BFF, #1145B0); box-shadow: 0 6px 26px rgba(26,86,219,.42); }
.step-title { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin: 0 0 10px; letter-spacing: -0.015em; }
.step-body { color: rgba(255,255,255,.82); margin: 0 0 14px; line-height: 1.55; }
.step-meta { font-size: .85rem; color: rgba(255,255,255,.7); padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); }
.step-connector { display: grid; place-items: center; }
.step-connector svg { width: 60px; height: 24px; }

/* =========================================
   S4 — Uses
   ========================================= */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 968px) { .uses-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .uses-grid { grid-template-columns: 1fr; } }

.use-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.use-card:hover { transform: translateY(-8px); box-shadow: 0 14px 60px rgba(6,18,55,.42); }

.use-img {
  aspect-ratio: 4 / 3;
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.use-img-overlay {
  position: relative; z-index: 2;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  transition: transform .4s ease;
}
.use-card:hover .use-img-overlay { transform: scale(1.1) rotate(-6deg); }
.use-img::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(0,0,0,.2) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 14px);
}
.use-img-1 { background: linear-gradient(135deg, #1A56DB, #3B7BFF); }
.use-img-2 { background: linear-gradient(135deg, #0F3A8A, #1A56DB); }
.use-img-3 { background: linear-gradient(135deg, #3B7BFF, #7AB0FF); }
.use-img-4 { background: linear-gradient(135deg, #0A2766, #1145B0); }

.use-body { padding: 22px 22px 26px; }
.use-title { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; margin: 0 0 8px; letter-spacing: -0.015em; }
.use-text { margin: 0; color: rgba(255,255,255,.78); font-size: .96rem; line-height: 1.5; }

.uses-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
}

/* =========================================
   S5 — Why us
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 968px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  transition: transform .35s, box-shadow .35s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 14px 58px rgba(6,18,55,.38); }
.why-hero {
  grid-row: span 2;
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, rgba(59,123,255,.2), rgba(255,255,255,.05));
  border-color: rgba(59,123,255,.42);
}
@media (max-width: 968px) { .why-hero { grid-column: span 2; grid-row: auto; } }
@media (max-width: 560px) { .why-hero { grid-column: auto; } }

.why-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 6.5rem);
  line-height: 1;
  background: linear-gradient(180deg, #fff, #A8C5FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.04em;
}
.why-big-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 8px 0 18px;
}
.why-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 6px 24px rgba(26,86,219,.36);
}
.why-title { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; margin: 0 0 8px; letter-spacing: -0.015em; }
.why-body { margin: 0; color: rgba(255,255,255,.78); line-height: 1.55; font-size: .96rem; }

/* =========================================
   S6 — CTA Banner
   ========================================= */
.section-cta1 { padding: 40px 0 100px; }
.cta-banner {
  position: relative;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
}
.cta-banner-glow {
  position: absolute; inset: -50% -20% auto auto;
  width: 60%; height: 200%;
  background: radial-gradient(closest-side, rgba(59,123,255,.42), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-banner-body p { margin: 14px 0 0; }
.cta-banner-action { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (max-width: 768px) { .cta-banner-action { align-items: stretch; } }

/* =========================================
   S7 — Testimonials
   ========================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; gap: 20px; max-width: 360px; margin: 0 auto; } }

.testi-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  transition: transform .35s, box-shadow .35s;
  cursor: pointer;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 14px 58px rgba(6,18,55,.38); }
.testi-video {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}
.testi-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.testi-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
/* Stylized "selfie video" placeholders — abstract figure on blue */
.testi-ph-1::before {
  background:
    radial-gradient(ellipse 40% 25% at 50% 35%, rgba(255,220,180,.5), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(255,255,255,.15), transparent 70%),
    linear-gradient(180deg, #1A56DB 0%, #0F3A8A 100%);
}
.testi-ph-2::before {
  background:
    radial-gradient(ellipse 40% 25% at 50% 38%, rgba(220,180,140,.4), transparent 70%),
    radial-gradient(ellipse 65% 40% at 50% 78%, rgba(255,255,255,.12), transparent 70%),
    linear-gradient(180deg, #3B7BFF 0%, #1145B0 100%);
}
.testi-ph-3::before {
  background:
    radial-gradient(ellipse 38% 24% at 50% 36%, rgba(255,210,170,.5), transparent 70%),
    radial-gradient(ellipse 60% 38% at 50% 82%, rgba(255,255,255,.15), transparent 70%),
    linear-gradient(180deg, #2A6FE0 0%, #0A2766 100%);
}
.testi-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, transparent 50px, rgba(0,0,0,.25) 200px);
}

.testi-play {
  position: relative; z-index: 2;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--blue-700);
  display: grid; place-items: center;
  box-shadow: 0 8px 34px rgba(0,0,0,.34);
  transition: transform .3s ease;
}
.testi-card:hover .testi-play { transform: scale(1.1); }
.testi-play svg { margin-left: 4px; }

.testi-vimeo-tag {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  font-size: .76rem;
  font-weight: 600;
  color: #fff;
  z-index: 3;
}
.testi-vimeo-tag svg { color: #1AB7EA; }

.testi-meta { padding: 20px 22px 24px; }
.testi-stars { font-size: .9rem; margin-bottom: 6px; letter-spacing: 2px; }
.testi-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.testi-name span { color: rgba(255,255,255,.6); font-weight: 500; }
.testi-quote { margin: 0; font-size: .92rem; color: rgba(255,255,255,.8); line-height: 1.5; font-style: italic; }

.testi-note {
  margin-top: 30px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .9rem;
  padding: 14px 20px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 12px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* =========================================
   S7 — Google Reviews
   ========================================= */
.greviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: 0 4px 30px rgba(20,30,60,.07);
  margin: 8px auto 44px;
}
.greviews-summary .g-logo { width: 30px; height: 30px; flex-shrink: 0; }
.greviews-summary .g-rate {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  text-align: left;
}
.greviews-summary .g-score {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; color: var(--gray-900);
}
.greviews-summary .g-score b { font-size: 1.45rem; line-height: 1; }
.greviews-summary .g-stars { color: #FBBC04; font-size: 1.05rem; letter-spacing: 1px; }
.greviews-summary .g-sub { font-size: .82rem; color: var(--gray-500); font-weight: 500; }

/* Auto-scrolling, swipeable slider */
.greviews-slider {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  /* Soft edge fade so cards melt into the section on both sides */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  padding: 6px 0 10px;
}
.greviews-slider::-webkit-scrollbar { display: none; }
.greviews-slider.dragging { cursor: grabbing; }
.greviews-slider.dragging .greview { pointer-events: none; }

.greviews-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  padding: 0 4px;
}

.greview {
  flex: 0 0 340px;
  width: 340px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius);
  box-shadow: 0 4px 30px rgba(20,30,60,.07);
  padding: 24px 24px 26px;
  transition: transform .3s ease, box-shadow .3s ease;
  user-select: none;
}
.greview:hover { transform: translateY(-4px); box-shadow: 0 12px 50px rgba(20,30,60,.14); }

@media (max-width: 600px) {
  .greviews-track { gap: 16px; }
  .greview { flex-basis: 80vw; width: 80vw; max-width: 340px; padding: 22px 20px 24px; }
}

.greview-head { display: flex; align-items: center; gap: 12px; }
.greview-avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.greview-id { flex: 1; min-width: 0; }
.greview-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--gray-900); line-height: 1.2;
}
.greview-sub { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }
.greview-head .g-logo { width: 20px; height: 20px; flex-shrink: 0; }

.greview-rating { display: flex; align-items: center; gap: 10px; margin: 14px 0 10px; }
.greview-stars { color: #FBBC04; font-size: 1rem; letter-spacing: 1px; }
.greview-time { font-size: .82rem; color: var(--gray-500); }
.greview-badge {
  font-family: var(--font-display); font-weight: 700; font-size: .62rem;
  letter-spacing: .06em; color: var(--gray-700);
  border: 1px solid rgba(0,0,0,.18); border-radius: 4px;
  padding: 3px 7px;
}
.greview-text {
  margin: 0; font-size: .95rem; color: var(--gray-700); line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.greviews-hint {
  margin-top: 26px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .85rem; font-weight: 600;
  color: var(--gray-500);
}
.greviews-hint svg { color: var(--blue-400); animation: hintSwipe 1.8s ease-in-out infinite; }
@keyframes hintSwipe {
  0%, 100% { transform: translateX(-3px); opacity: .6; }
  50% { transform: translateX(3px); opacity: 1; }
}
@media (hover: hover) and (pointer: fine) { .greviews-hint { display: none; } }

/* =========================================
   S8 — FAQ
   ========================================= */
.faq-container { max-width: 840px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq {
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s;
}
.faq[open] { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.12); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  transition: background .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: rgba(255,255,255,.05); }
.faq-plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  position: relative;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  transition: transform .3s ease, background .3s;
}
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: 2px;
}
.faq-plus::before { width: 14px; height: 2px; }
.faq-plus::after { width: 2px; height: 14px; transition: transform .3s; }
.faq[open] .faq-plus { background: #3B7BFF; transform: rotate(180deg); }
.faq[open] .faq-plus::after { transform: translate(-50%,-50%) scale(0); }

.faq-body {
  padding: 0 26px 24px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  animation: faqOpen .3s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   S9 — CTA Final
   ========================================= */
.section-cta-final {
  padding: 100px 0 140px;
  position: relative;
}
.section-cta-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(59,123,255,.2), transparent 70%);
  pointer-events: none;
}
.cta-final { text-align: center; max-width: 820px; margin: 0 auto; position: relative; }
.cta-final-pre {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(59,123,255,.15);
  border: 1px solid rgba(59,123,255,.42);
  font-family: var(--font-display); font-weight: 700;
  font-size: .9rem; letter-spacing: .04em;
  margin-bottom: 24px;
}
.cta-final-pre .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #3B7BFF;
  box-shadow: 0 0 0 0 rgba(59,123,255,.7);
  animation: pulseDot 2s infinite;
}
.cta-final .display { margin-bottom: 18px; }
.cta-final-buttons {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin: 32px 0 24px;
}
.cta-final-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}
.cta-final-trust span { display: inline-flex; align-items: center; gap: 6px; }
.cta-final-trust svg { color: #7AB0FF; }

/* =========================================
   Footer
   ========================================= */
.footer {
  padding: 60px 0 90px;
  background: rgba(6,18,55,.6);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.brand-footer { margin-bottom: 16px; }
.footer-blurb { color: rgba(255,255,255,.7); max-width: 36ch; }
.footer-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue-200);
  margin-bottom: 16px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: .95rem; color: rgba(255,255,255,.85); }
.footer-list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.footer-list svg { flex-shrink: 0; color: var(--blue-200); margin-top: 3px; }
.footer-list a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}

/* =========================================
   Sticky WhatsApp (desktop)
   ========================================= */
.sticky-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  box-shadow: 0 8px 38px rgba(37,211,102,.42);
  transition: transform .3s, box-shadow .3s;
}
.sticky-wa:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 48px rgba(37,211,102,.5); }
.sticky-wa .pulse {
  position: absolute; inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: pulseBig 2.4s infinite;
  pointer-events: none;
}
@keyframes pulseBig {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 22px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
  .sticky-wa { padding: 14px; right: 14px; bottom: 86px; }
  .sticky-wa-label { display: none; }
}

/* =========================================
   Mobile bottom CTA bar
   ========================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px 14px env(safe-area-inset-bottom);
  background: rgba(10, 39, 102, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }
}

/* =========================================
   Reveal on scroll
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.2s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================
   Light sections — Apple off-white / white
   Alternate with the blue brand sections for
   organic separation. Dark text, clean cards,
   subtle metallic accents.
   ========================================= */
.section--light { background: #F5F5F7; color: #1d1d1f; position: relative; z-index: 0; }
.section--white { background: #FFFFFF; color: #1d1d1f; position: relative; z-index: 0; }

/* Headings & body text */
.section--light .h2, .section--white .h2,
.section--light .display, .section--white .display { color: #1d1d1f; }
.section--light .h2 .hl, .section--white .h2 .hl,
.section--light .display-hl, .section--white .display-hl,
.section--light .display em, .section--white .display em {
  background: linear-gradient(120deg, #1A56DB, #0F3A8A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section--light .body-lg, .section--white .body-lg,
.section--light .lede, .section--white .lede { color: rgba(0,0,0,.6); }
.section--light .muted, .section--white .muted { color: rgba(0,0,0,.48); }

/* Kicker — brand blue on tinted chip */
.section--light .kicker, .section--white .kicker {
  color: #1A56DB;
  background: rgba(26,86,219,.08);
  border-color: rgba(26,86,219,.2);
}

/* Money statement (light) */
.section--light .money-ghost { color: rgba(26,86,219,.05); }
.section--light .money-lead { color: rgba(0,0,0,.58); }

/* WhatsApp button on light — green text/icon, fills green on hover */
.section--light .btn-wa, .section--white .btn-wa { color: #0b7a43; border-color: #25D366; }
.section--light .btn-wa:hover, .section--white .btn-wa:hover { color: #fff; }
.section--light .btn-wa .btn-shine, .section--white .btn-wa .btn-shine {
  background: linear-gradient(115deg, transparent 25%, rgba(37,211,102,.16) 50%, transparent 75%);
}

/* Cards — solid, with hairline border + soft centered Apple shadow */
.section--light .step, .section--light .use-card, .section--light .why-card, .section--light .faq {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 30px rgba(20,30,60,.07);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.section--white .step, .section--white .use-card, .section--white .why-card, .section--white .faq {
  background: #F5F5F7;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 30px rgba(20,30,60,.06);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.section--light .step:hover, .section--white .step:hover,
.section--light .use-card:hover, .section--white .use-card:hover,
.section--light .why-card:hover, .section--white .why-card:hover {
  box-shadow: 0 12px 50px rgba(20,30,60,.14);
}

/* Card text */
.section--light .step-title, .section--white .step-title,
.section--light .use-title, .section--white .use-title,
.section--light .why-title, .section--white .why-title { color: #1d1d1f; }
.section--light .step-body, .section--white .step-body,
.section--light .use-text, .section--white .use-text,
.section--light .why-body, .section--white .why-body { color: rgba(0,0,0,.58); }
.section--light .step-meta, .section--white .step-meta { color: rgba(0,0,0,.52); border-top-color: rgba(0,0,0,.1); }
.section--light .uses-foot, .section--white .uses-foot { color: rgba(0,0,0,.66); }

/* Metallic numerals */
.section--light .step-num, .section--white .step-num {
  background: linear-gradient(180deg, #c7ccd6, #e9ecf1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Highlight step + Why hero — soft green on light */
.section--light .step-highlight, .section--white .step-highlight,
.section--light .why-hero, .section--white .why-hero {
  background: linear-gradient(160deg, #eaf2ff, #ffffff);
  border-color: rgba(59,123,255,.4);
}
.section--light .why-big, .section--white .why-big {
  background: linear-gradient(180deg, #2f80ff, #0f3a8a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section--light .why-big-sub, .section--white .why-big-sub { color: #1d1d1f; }

/* FAQ on light */
.section--light .faq summary, .section--white .faq summary { color: #1d1d1f; }
.section--light .faq[open], .section--white .faq[open] { background: #fff; border-color: rgba(0,0,0,.12); }
.section--light .faq summary:hover, .section--white .faq summary:hover { background: rgba(0,0,0,.03); }
.section--light .faq-body, .section--white .faq-body { color: rgba(0,0,0,.64); }
.section--light .faq-plus, .section--white .faq-plus { background: rgba(0,0,0,.07); }
.section--light .faq-plus::before, .section--white .faq-plus::before,
.section--light .faq-plus::after, .section--white .faq-plus::after { background: #1d1d1f; }
.section--light .faq[open] .faq-plus, .section--white .faq[open] .faq-plus { background: #3B7BFF; }
.section--light .faq[open] .faq-plus::before, .section--white .faq[open] .faq-plus::before,
.section--light .faq[open] .faq-plus::after, .section--white .faq[open] .faq-plus::after { background: #fff; }

/* Testimonials note on light */
.section--light .testi-note, .section--white .testi-note {
  background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.14); color: rgba(0,0,0,.58);
}
.section--light .testi-note svg, .section--white .testi-note svg { color: rgba(0,0,0,.45); }

/* Testimonial cards on light — white card, dark meta text (video area stays dark) */
.section--light .testi-card, .section--white .testi-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 30px rgba(20,30,60,.07);
}
.section--light .testi-card:hover, .section--white .testi-card:hover {
  box-shadow: 0 12px 50px rgba(20,30,60,.14);
}
.section--light .testi-quote, .section--white .testi-quote { color: rgba(0,0,0,.6); }
.section--light .testi-name span, .section--white .testi-name span { color: rgba(0,0,0,.5); }

/* Step connector arrows — brand blue still reads on light */
.section--light .step-connector svg path, .section--white .step-connector svg path { stroke: #1A56DB; }

/* =========================================
   Scarcity badge (hero urgency)
   ========================================= */
.scarcity {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(255, 184, 60, .12);
  border: 1px solid rgba(255, 184, 60, .38);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: #FFE0A3;
}
.scarcity b { color: #FFCF73; font-weight: 800; }
.scarcity-dot {
  flex-shrink: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: #FFB83C;
  box-shadow: 0 0 0 0 rgba(255,184,60,.7);
  animation: pulseAmber 2s infinite;
}
@keyframes pulseAmber {
  0% { box-shadow: 0 0 0 0 rgba(255,184,60,.6); }
  70% { box-shadow: 0 0 0 11px rgba(255,184,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,184,60,0); }
}

/* =========================================
   S2.5 — Calculator / estimator
   ========================================= */
.section-calc { padding-top: 90px; padding-bottom: 100px; }
.calc-card {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 860px) {
  .calc-card { grid-template-columns: 1fr; gap: 34px; padding: 32px 24px; }
}

.calc-controls { display: flex; flex-direction: column; gap: 34px; }
.calc-field-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  margin-bottom: 16px;
}
.calc-field-head label {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  color: #fff; line-height: 1.3; flex: 1; min-width: 0;
}
.calc-field-head output {
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  white-space: nowrap;
  max-width: 100%;
  background: linear-gradient(180deg, #fff, #A8C5FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 760px) {
  .calc-field-head { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 14px; }
  .calc-field-head label { font-size: .98rem; }
  .calc-field-head output { font-size: 1.5rem; }
}
.calc-scale {
  display: flex; justify-content: space-between;
  font-size: .78rem; color: rgba(255,255,255,.55);
  margin-top: 10px; font-weight: 600;
}

/* Range input — cross-browser */
.calc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  outline: none; cursor: pointer;
  margin: 0;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #3B7BFF, #1145B0);
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(26,86,219,.55);
  cursor: grab;
  transition: transform .15s ease;
}
.calc-range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); }
.calc-range::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #3B7BFF, #1145B0);
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(26,86,219,.55);
  cursor: grab;
}
.calc-range:focus-visible { box-shadow: 0 0 0 4px rgba(59,123,255,.35); }

/* Result panel */
.calc-result {
  text-align: center;
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.16);
}
.calc-result-label {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .8rem; color: rgba(255,255,255,.7);
}
.calc-result-big {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1;
  letter-spacing: -0.03em;
  margin: 10px 0 8px;
  background: linear-gradient(180deg, #fff, #A8C5FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.calc-result-range { font-size: .95rem; color: rgba(255,255,255,.8); margin-bottom: 18px; }
.calc-result-range b { color: #fff; }
.calc-bar {
  position: relative;
  height: 12px; border-radius: 999px;
  background: rgba(255,255,255,.14);
  overflow: hidden;
  margin-bottom: 8px;
}
.calc-bar-fill {
  height: 100%; width: 53%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3B7BFF, #7AB0FF);
  box-shadow: 0 0 14px rgba(59,123,255,.5);
  transition: width .5s cubic-bezier(.2,.8,.2,1);
}
.calc-bar-cap {
  font-size: .72rem; color: rgba(255,255,255,.55);
  text-align: right; margin-bottom: 18px; font-weight: 600;
}
.calc-result .btn { margin-top: 6px; }
.calc-disclaimer {
  font-size: .78rem; color: rgba(255,255,255,.6);
  line-height: 1.5; margin-top: 14px; text-wrap: pretty;
}
