/* ============================================================
   ONLINE MÉXICO — Modern SaaS system (lime + black)
   Recreated from reference. Plus Jakarta Sans, soft radii.
   ============================================================ */

:root {
  --lime:        #D2D826;
  --lime-2:      #C3CA1E;
  --lime-soft:   #F0F2C8;
  --lime-ink:    #5B6B00;
  --lime-rgb:    210,216,38;

  --black:       #0C0D0B;   /* dark section bg */
  --black-2:     #131512;   /* slightly raised */
  --card-dk:     #1B1E19;   /* dark card */
  --card-dk-2:   #232722;
  --line-dk:     rgba(255,255,255,0.10);
  --line-dk-2:   rgba(255,255,255,0.16);

  --paper:       #F4F3EC;   /* light section bg */
  --paper-2:     #ECEBE2;
  --white:       #FFFFFF;
  --line:        #E3E2D8;
  --line-2:      #D6D5C9;

  --ink:         #16170F;   /* text on light */
  --ink-soft:    #4C4E44;
  --muted:       #7C7E72;
  --muted-2:     #A6A89B;
  --on-dk:       #FFFFFF;
  --on-dk-soft:  rgba(255,255,255,0.62);
  --on-dk-mute:  rgba(255,255,255,0.40);

  --wa:          #25D366;

  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 26px; --r-pill: 999px;
  --shadow-soft: 0 18px 50px -20px rgba(0,0,0,0.30);
  --shadow-card: 0 10px 30px -16px rgba(0,0,0,0.25);
  --shadow-float: 0 24px 60px -22px rgba(0,0,0,0.55);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--black);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
input { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: 1660px; margin: 0 auto; padding: 0 44px; }

/* real brand logo */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }
.footer .brand-logo { height: 34px; }

/* custom green cursor */
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 24px; height: 24px;
  margin: -12px 0 0 -12px; border-radius: 50%;
  background: rgba(var(--lime-rgb), 0.45);
  box-shadow: 0 0 18px 3px rgba(var(--lime-rgb), 0.30);
  pointer-events: none; z-index: 99999; opacity: 0;
  transition: width .2s, height .2s, opacity .25s, background .2s;
  will-change: transform;
}
.cursor-dot.big { width: 46px; height: 46px; margin: -23px 0 0 -23px; background: rgba(var(--lime-rgb), 0.28); }
@media (pointer: coarse) { .cursor-dot { display: none !important; } }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--lime); display: grid; place-items: center;
  box-shadow: 0 4px 14px -4px rgba(199,242,60,0.7);
}
.logo .mark svg { width: 17px; height: 17px; }
.logo .word { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.logo .word b { font-weight: 800; }
.logo.on-dk .word { color: #fff; }

/* ---------- type helpers ---------- */
.overline {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.overline::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--lime-2); }
.overline.on-dk { color: var(--on-dk-mute); }
.overline.center { justify-content: center; }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.025em; line-height: 1.04; font-weight: 800; }
.h-xl { font-size: clamp(38px, 5.2vw, 64px); }
.h-lg { font-size: clamp(30px, 3.6vw, 46px); }
.h-md { font-size: clamp(24px, 2.4vw, 32px); }
.lime { color: var(--lime); }
.lime-ink { color: #BFC613; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s, background .18s, color .18s, border-color .18s;
}
.btn svg { width: 17px; height: 17px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-lime { background: var(--lime); color: #14170A; }
.btn-lime:hover { background: var(--lime-2); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(199,242,60,0.6); }

.btn-dark { background: #16170F; color: #fff; border-color: #16170F; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5); }

/* ghost on dark bg */
.btn-ghost-dk { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.22); }
.btn-ghost-dk:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ghost on light bg */
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: var(--ink); }

.btn .play {
  width: 24px; height: 24px; border-radius: 50%; background: var(--lime);
  display: grid; place-items: center; color: #14170A; margin-left: -4px;
}
.btn .play svg { width: 11px; height: 11px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(12,13,11,0.82); backdrop-filter: blur(14px); border-bottom-color: var(--line-dk); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.78);
  display: inline-flex; align-items: center; gap: 5px; transition: color .15s; white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-links a .chev { width: 13px; height: 13px; opacity: .8; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; width: 42px; height: 42px; border-radius: 10px; color: #fff; background: rgba(255,255,255,0.07); place-items: center; }

.cb-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}
.cb-lang-btn {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  opacity: .55;
  transition: opacity .15s, background .15s, transform .15s;
}
.cb-lang-btn:hover { opacity: 1; transform: translateY(-1px); }
.cb-lang-btn.is-active { opacity: 1; background: rgba(199,242,60,.22); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; display: none; }
.drawer.open { display: block; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); }
.drawer .panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
  background: var(--black-2); border-left: 1px solid var(--line-dk);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 6px;
  animation: drawIn .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes drawIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.drawer .panel a { color: rgba(255,255,255,0.82); font-weight: 600; padding: 13px 4px; border-bottom: 1px solid var(--line-dk); }
.drawer .panel .btn { margin-top: 10px; }
.drawer-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 42px 0 10px;
  padding: 10px 4px 14px;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid var(--line-dk);
  font-size: 12px;
  font-weight: 700;
}
.drawer-lang .cb-lang-switch { flex: 0 0 auto; }
.drawer .x { position: absolute; top: 18px; right: 18px; color: #fff; width: 38px; height: 38px; display: grid; place-items: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--black); color: #fff; overflow: hidden; padding: 116px 0 34px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg image-slot { width: 100%; height: 100%; display: block; }
/* anchor the cover crop toward the top so faces/heads stay visible */
.hero-bg image-slot::part(image) {
  width: 100% !important; height: 100% !important;
  left: 0 !important; top: 0 !important; transform: none !important;
  object-fit: cover !important; object-position: 40% 26% !important;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, var(--black) 18%, rgba(12,13,11,0.78) 34%, rgba(12,13,11,0.26) 49%, rgba(12,13,11,0.04) 64%, rgba(12,13,11,0) 76%),
    linear-gradient(180deg, rgba(12,13,11,0.16) 0%, rgba(12,13,11,0) 20%, rgba(12,13,11,0) 72%, rgba(12,13,11,0.40) 100%);
}
.hero-inner { position: relative; z-index: 2; pointer-events: none; }
.hero-inner a, .hero-inner button, .hero-inner .statbar, .hero-inner .fcard, .hero-inner .pill { pointer-events: auto; }
.hero::before {
  content: ""; position: absolute; top: -10%; right: -5%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(var(--lime-rgb),0.07), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; min-height: 600px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-dk-2); border-radius: var(--r-pill);
  padding: 7px 15px 7px 12px; font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.04);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(199,242,60,0.18); }

.hero h1 { font-size: clamp(40px, 5.4vw, 70px); margin: 22px 0 0; }
.hero .lead { color: var(--on-dk-soft); font-size: 17.5px; max-width: 480px; margin: 22px 0 0; line-height: 1.6; }
.hero-cta { display: flex; gap: 13px; margin-top: 30px; flex-wrap: wrap; }
.hero-checks { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.hero-checks .c { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.72); font-weight: 500; }
.hero-checks .c .tick { width: 18px; height: 18px; border-radius: 50%; background: rgba(199,242,60,0.18); color: var(--lime); display: grid; place-items: center; }
.hero-checks .c .tick svg { width: 11px; height: 11px; }

/* hero visual — floating cards over the full-bleed photo */
.hero-visual { position: relative; min-height: 600px; }

.fcard {
  position: absolute; z-index: 3; background: rgba(20,22,18,0.72); backdrop-filter: blur(10px);
  border: 1px solid var(--line-dk-2); border-radius: var(--r-md); padding: 14px;
  box-shadow: var(--shadow-float); width: 215px;
  animation: floaty 6s ease-in-out infinite;
}
.fcard .row { display: flex; align-items: center; gap: 11px; }
.fcard .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.fcard .ico svg { width: 18px; height: 18px; }
.fcard .ttl { font-size: 13.5px; font-weight: 700; color: #fff; white-space: nowrap; }
.fcard .meta { font-size: 12px; color: var(--on-dk-soft); margin-top: 2px; line-height: 1.4; }
.fcard .amt { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.fcard .lnk { display: inline-flex; align-items: center; gap: 8px; margin-top: 13px; font-size: 12px; font-weight: 700; color: #fff; border: 1px solid var(--line-dk-2); border-radius: var(--r-pill); padding: 7px 13px; background: rgba(255,255,255,0.05); transition: background .15s; }
.fcard .lnk svg { width: 13px; height: 13px; }
.fcard .lnk:hover { background: rgba(255,255,255,0.13); }
.fcard.f1 { top: 3%; left: -12%; animation-delay: 0s; }
.fcard.f2 { top: 18%; right: 6%; width: 206px; animation-delay: 1.4s; }
.fcard.f3 { bottom: 8%; left: 47%; width: 232px; animation-delay: .7s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.wa-pulse { position: relative; }
.wa-pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: inherit; border: 2px solid var(--wa);
  opacity: 0; animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse { 0% { opacity: .6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.4); } }

/* ---------- stat bar ---------- */
.statbar {
  margin-top: 38px; border: 1px solid var(--line-dk); border-radius: var(--r-lg);
  background: rgba(12,13,11,0.66); backdrop-filter: blur(10px); padding: 22px 30px;
  display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr; gap: 24px; align-items: center;
}
.statbar .rate { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--black); object-fit: cover; margin-left: -12px; }
.avatars img:first-child { margin-left: 0; }
.rate .stars { color: var(--lime); font-size: 13px; letter-spacing: 1px; }
.rate .score { font-size: 15px; font-weight: 800; color: #fff; }
.rate .sub { font-size: 11.5px; color: var(--on-dk-mute); }
.statbar .st { border-left: 1px solid var(--line-dk); padding-left: 22px; }
.statbar .st .n { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.statbar .st .l { font-size: 12.5px; color: var(--on-dk-soft); margin-top: 2px; }

/* ============================================================
   SECTION SHELLS
   ============================================================ */
.section { padding: 92px 0; }
.section.light { background: var(--paper); color: var(--ink); }
.section.dark { background: var(--black); color: #fff; }
.sec-head { max-width: 560px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { margin-top: 16px; }
.sec-head p { color: var(--muted); font-size: 16px; margin-top: 16px; }
.section.dark .sec-head p { color: var(--on-dk-soft); }
.headrow { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.headrow .sub { max-width: 360px; color: var(--muted); font-size: 15px; padding-bottom: 6px; }

/* ============================================================
   FEATURES (light) — cards with mini mockups
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.fcardL {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.fcardL:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--line-2); }
.fcardL .top { display: flex; align-items: center; gap: 11px; }
.fcardL .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--lime); color: #1a1f08; display: grid; place-items: center; flex-shrink: 0; }
.fcardL .ico svg { width: 20px; height: 20px; }
.fcardL h3 { font-size: 16.5px; }
.fcardL > p { color: var(--muted); font-size: 14px; margin: 12px 0 0; }
.fcardL .demo { margin-top: 18px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line); padding: 14px; min-height: 132px; flex: 1; }
.fcardL .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 13.5px; font-weight: 700; color: var(--ink); transition: gap .15s; }
.fcardL .more svg { width: 15px; height: 15px; }
.fcardL:hover .more { gap: 11px; }

/* mini agenda mock */
.m-agenda .mhead { font-size: 11px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.m-agenda .ev { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-top: 1px solid var(--line); }
.m-agenda .ev:first-of-type { border-top: none; }
.m-agenda .ev .bar { width: 3px; height: 26px; border-radius: 2px; background: var(--lime-2); }
.m-agenda .ev .nm { font-size: 11px; font-weight: 600; }
.m-agenda .ev .tm { margin-left: auto; font-size: 10px; color: var(--muted); }

/* mini whatsapp mock */
.m-wa { background: #E9F2E7; border-color: #cfe3cb !important; }
.m-wa .bub { background: #fff; border-radius: 12px 12px 12px 3px; padding: 9px 11px; font-size: 11.5px; color: #2a3328; box-shadow: 0 2px 6px -3px rgba(0,0,0,.2); max-width: 90%; }
.m-wa .bub .hi { font-weight: 700; }
.m-wa .stamp { display: flex; align-items: center; gap: 5px; justify-content: flex-end; margin-top: 7px; font-size: 10px; color: #5b7a55; }

/* mini pago mock */
.m-pay .lbl { font-size: 10.5px; color: var(--muted); font-weight: 600; }
.m-pay .big { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; margin-top: 4px; }
.m-pay .card { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; font-size: 11px; color: var(--muted); }
.m-pay .ok { width: 26px; height: 26px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; }
.m-pay .ok svg { width: 13px; height: 13px; }

/* mini chart mock */
.m-rep .lbl { font-size: 10.5px; color: var(--muted); font-weight: 600; }
.m-rep .up { font-size: 11px; color: var(--lime-ink); font-weight: 700; margin-top: 2px; }
.m-rep svg { width: 100%; height: 70px; margin-top: 6px; display: block; }

/* ============================================================
   HOW IT WORKS (dark) — 4 steps with connector
   ============================================================ */
.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; position: relative; }
.steps4::before {
  content: ""; position: absolute; top: 46px; left: 12%; right: 12%; height: 0;
  border-top: 2px dashed var(--line-dk-2); z-index: 0;
}
.step {
  position: relative; z-index: 1; background: var(--card-dk); border: 1px solid var(--line-dk);
  border-radius: var(--r-lg); padding: 26px 22px; transition: transform .2s, border-color .2s;
}
.step:hover { transform: translateY(-5px); border-color: var(--line-dk-2); }
.step .scirc { width: 54px; height: 54px; border-radius: 50%; background: var(--black-2); border: 1px solid var(--line-dk-2); display: grid; place-items: center; color: #fff; position: relative; }
.step .scirc svg { width: 24px; height: 24px; }
.step .num { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: var(--lime); color: #14170A; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.step h4 { font-size: 16.5px; margin-top: 20px; }
.step p { color: var(--on-dk-soft); font-size: 14px; margin: 9px 0 0; }

/* ============================================================
   RESULTS (light) — stats + testimonial carousel
   ============================================================ */
.res-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.res-stats { display: flex; gap: 34px; margin-top: 30px; }
.res-stats .rs .ico { width: 30px; height: 30px; border-radius: 8px; background: var(--lime); color: #1a1f08; display: grid; place-items: center; margin-bottom: 10px; }
.res-stats .rs .ico svg { width: 16px; height: 16px; }
.res-stats .rs .n { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.res-stats .rs .l { font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.35; }

.carousel { position: relative; }
.car-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px;
  transition: opacity .4s, transform .4s;
}
.tcard .who { display: flex; align-items: center; gap: 11px; }
.tcard .who img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.tcard .who .nm { font-size: 13.5px; font-weight: 700; }
.tcard .who .rl { font-size: 11.5px; color: var(--muted); }
.tcard .stars { color: var(--lime-2); font-size: 13px; letter-spacing: 1px; margin: 14px 0 9px; }
.tcard p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.car-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.dots { display: flex; gap: 7px; }
.dots .d { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: width .25s, background .25s; }
.dots .d.on { width: 22px; border-radius: 5px; background: var(--ink); }
.car-arrows { display: flex; gap: 10px; }
.car-arrows button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--white); display: grid; place-items: center; color: var(--ink); transition: background .15s, transform .15s; }
.car-arrows button:hover { background: var(--ink); color: #fff; }
.car-arrows button svg { width: 17px; height: 17px; }

/* ============================================================
   PRICING (dark)
   ============================================================ */
.toggle3 {
  display: inline-flex; align-items: center; gap: 4px; margin: 28px auto 0;
  background: var(--card-dk); border: 1px solid var(--line-dk); border-radius: var(--r-pill); padding: 5px;
}
.toggle3 button { padding: 9px 20px; border-radius: var(--r-pill); font-size: 14px; font-weight: 700; color: var(--on-dk-soft); transition: color .2s; }
.toggle3 button.on { background: var(--lime); color: #14170A; }
.toggle3 .save { font-size: 11px; color: var(--lime-ink); background: var(--lime); border-radius: var(--r-pill); padding: 6px 13px; font-weight: 800; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; align-items: start; }
.plan {
  background: var(--card-dk); border: 1px solid var(--line-dk); border-radius: var(--r-xl); padding: 30px 26px;
  position: relative; transition: transform .2s, border-color .2s;
}
.plan:hover { transform: translateY(-4px); }
.plan.pop { background: linear-gradient(180deg, #20241c, #15170f); border-color: rgba(199,242,60,0.4); box-shadow: 0 30px 70px -30px rgba(199,242,60,0.25); }
.plan .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lime); color: #14170A; font-size: 11.5px; font-weight: 800; padding: 6px 16px; border-radius: var(--r-pill); }
.plan .pname { font-size: 18px; font-weight: 800; }
.plan .pdesc { font-size: 13px; color: var(--on-dk-soft); margin-top: 5px; min-height: 36px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-top: 18px; }
.plan .price .cur { font-size: 22px; font-weight: 700; color: #fff; }
.plan .price .amt { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; color: #fff; }
.plan .price .per { font-size: 13px; color: var(--on-dk-mute); }
.plan .annual { display: flex; align-items: center; gap: 9px; margin-top: 8px; font-size: 12.5px; color: var(--on-dk-soft); }
.plan .annual .badge { background: rgba(199,242,60,0.16); color: var(--lime); font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); font-size: 11px; }
.plan .btn { margin: 22px 0; }
.plan ul { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--line-dk); display: flex; flex-direction: column; gap: 12px; }
.plan ul .inc { font-size: 11.5px; font-weight: 700; color: var(--on-dk-mute); text-transform: uppercase; letter-spacing: .06em; margin-bottom: -2px; }
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.84); }
.plan li .ck { width: 18px; height: 18px; border-radius: 50%; background: var(--lime); color: #14170A; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.plan li .ck svg { width: 11px; height: 11px; }
.price-note { text-align: center; color: var(--on-dk-mute); font-size: 12.5px; margin-top: 26px; }

/* ============================================================
   FAQ (light)
   ============================================================ */
.faq-wrap { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 48px; align-items: start; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s; }
.faq:hover { border-color: var(--line-2); }
.faq .q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; font-size: 14.5px; font-weight: 700; cursor: pointer; }
.faq .q .pm { width: 26px; height: 26px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; flex-shrink: 0; transition: transform .25s, background .2s; }
.faq .q .pm svg { width: 14px; height: 14px; }
.faq.open .q .pm { transform: rotate(45deg); background: var(--lime); }
.faq .a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq .a p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 13.5px; }

/* ============================================================
   CTA BAND (dark)
   ============================================================ */
.cta { background: var(--black); color: #fff; padding: 30px 0 86px; }
.cta-box {
  background: var(--card-dk); border: 1px solid var(--line-dk); border-radius: var(--r-xl);
  padding: 48px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-box::before { content: ""; position: absolute; top: -40%; left: -10%; width: 50%; height: 150%; background: radial-gradient(circle, rgba(199,242,60,0.14), transparent 60%); pointer-events: none; }
.cta-box h2 { position: relative; }
.cta-feats { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; position: relative; }
.cta-feats .cf { display: flex; align-items: center; gap: 11px; }
.cta-feats .cf .i { width: 38px; height: 38px; border-radius: 10px; background: rgba(199,242,60,0.14); color: var(--lime); display: grid; place-items: center; }
.cta-feats .cf .i svg { width: 18px; height: 18px; }
.cta-feats .cf .t { font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.cta-feats .cf .s { font-size: 12px; color: var(--on-dk-soft); line-height: 1.3; }
.cta-form { position: relative; }
.cta-form .lbl { font-size: 13px; font-weight: 700; color: var(--on-dk-soft); margin-bottom: 10px; }
.cta-form .field { display: flex; gap: 10px; }
.cta-form input { flex: 1; height: 52px; border-radius: var(--r-pill); border: 1px solid var(--line-dk-2); background: var(--black-2); color: #fff; padding: 0 20px; font-size: 14.5px; outline: none; transition: border-color .15s; }
.cta-form input:focus { border-color: var(--lime); }
.cta-form input::placeholder { color: var(--on-dk-mute); }
.cta-form .terms { font-size: 11.5px; color: var(--on-dk-mute); margin-top: 12px; }
.cta-form .terms a { color: var(--on-dk-soft); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: #fff; padding: 64px 0 30px; border-top: 1px solid var(--line-dk); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 30px; }
.footer-about { color: var(--on-dk-soft); font-size: 14px; margin: 16px 0 18px; max-width: 280px; line-height: 1.6; }
.socials { display: flex; gap: 9px; }
.socials a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: rgba(255,255,255,0.7); transition: background .15s, color .15s; }
.socials a:hover { background: var(--lime); color: #14170A; }
.socials a svg { width: 16px; height: 16px; }
.footer-col h5 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--on-dk-mute); margin: 4px 0 16px; }
.footer-col a { display: block; color: var(--on-dk-soft); font-size: 14px; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line-dk); }
.footer-bottom .cp { font-size: 12.5px; color: var(--on-dk-mute); }
.made { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,0.8); border: 1px solid var(--line-dk); border-radius: var(--r-pill); padding: 8px 14px; }
.made .flag { display: inline-flex; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; }
.reveal.in { animation: revealUp .7s cubic-bezier(.2,.8,.2,1) both; }
.reveal.shown { animation: none !important; opacity: 1 !important; transform: none !important; }
.reveal.d1.in { animation-delay: .08s; }
.reveal.d2.in { animation-delay: .16s; }
.reveal.d3.in { animation-delay: .24s; }
.reveal.d4.in { animation-delay: .32s; }
@keyframes revealUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; }
  .reveal.in { animation: none !important; }
  .fcard, .wa-pulse::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .wrap-wide { padding: 0 30px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps4 { grid-template-columns: repeat(2, 1fr); }
  .steps4::before { display: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .res-grid { grid-template-columns: 1fr; gap: 36px; }
  .car-track { grid-template-columns: 1fr 1fr; }
  .car-track .tcard:nth-child(3) { display: none; }
  .cta-box { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .hero-grid { gap: 28px; }
  .fcard.f1 { left: -2%; }
  .fcard.f2 { right: -2%; }
  .fcard.f3 { left: 4%; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost-dk { display: none; }
  .nav-burger { display: grid; }
  .hero { padding: 104px 0 30px; }
  .hero-shade { background: linear-gradient(180deg, rgba(12,13,11,0.6) 0%, rgba(12,13,11,0.22) 28%, rgba(12,13,11,0.55) 60%, var(--black) 96%); }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; min-height: 0; }
  .hero-visual { position: static; min-height: 0; display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
  .fcard { position: static !important; width: 100% !important; max-width: 340px; animation: none; }
  .statbar { grid-template-columns: 1fr 1fr; gap: 20px; }
  .statbar .rate { grid-column: 1 / -1; }
  .statbar .st:nth-child(2) { border-left: none; padding-left: 0; }
  .headrow { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .nav-cta .btn-lime { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-in { gap: 8px; }
  .nav-in .brand { margin-right: auto; }
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .feat-grid, .car-track { grid-template-columns: 1fr; }
  .car-track .tcard:nth-child(2), .car-track .tcard:nth-child(3) { display: none; }
  .steps4 { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 30px 22px; }
  .cta-feats { flex-direction: column; gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-checks { gap: 14px; }
}

/* WordPress integration for the final bundled design. */
body.admin-bar .nav { top: 32px; }
.hero-bg .cb-home-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% 26%;
  filter: saturate(.92) contrast(1.02) brightness(.86);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16,18,13,.02);
  pointer-events: none;
}
@media (min-width: 861px) {
  .hero-bg .cb-home-hero-image {
    position: absolute;
    top: -10%;
    right: 3%;
    width: auto;
    max-width: none;
    height: 145%;
    object-fit: contain;
    object-position: center;
    filter: saturate(.96) contrast(1.02) brightness(.92);
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0,0,0,.18) 5%,
      rgba(0,0,0,.68) 13%,
      #000 22%,
      #000 91%,
      rgba(0,0,0,.72) 96%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0,0,0,.18) 5%,
      rgba(0,0,0,.68) 13%,
      #000 22%,
      #000 91%,
      rgba(0,0,0,.72) 96%,
      transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}
.nav .brand-logo,
.footer .brand-logo { object-fit: contain; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}
