  :root {
    --bg:        #FAFAFA;
    --bg-card:   #FFFFFF;
    --ink:       #0A0A0A;
    --ink-2:     #404040;
    --ink-3:     #6B6B6B;
    --ink-4:     #A3A3A3;
    --line:      #EBEBEB;
    --line-2:    #E0E0E0;
    --lime:      oklch(0.88 0.22 130);
    --lime-d:    oklch(0.78 0.22 130);
    --whatsapp:  #25D366;
    --whatsapp-d:#1EB854;
    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Geist', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  .mono { font-family: 'Geist Mono', ui-monospace, monospace; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  .container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  img { display: block; max-width: 100%; }

  h1, h2, h3, h4 { letter-spacing: -0.035em; margin: 0; font-weight: 800; line-height: 1; }
  .tight { letter-spacing: -0.045em; }

  /* ============ LOGO ============ */
  .logo {
    display: inline-flex; align-items: center; gap: 9px;
    font-weight: 900; font-size: 22px;
    letter-spacing: -0.05em;
  }
  .logo-mark {
    width: 32px; height: 32px;
    background: var(--ink);
    border-radius: 9px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .logo-mark svg { width: 18px; height: 18px; }
  .logo-text { line-height: 1; padding-top: 1px; }
  .logo-text .dot { color: var(--lime-d); }

  /* ============ NAV ============ */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-links { display: flex; gap: 32px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
  .nav-links a { transition: color .15s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-actions { display: flex; gap: 10px; align-items: center; }
  .btn-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    transition: all .15s ease;
  }
  .btn-dark { background: var(--ink); color: var(--bg); }
  .btn-dark:hover { background: #1a1a1a; transform: translateY(-1px); }
  .btn-outline { border: 1px solid var(--line-2); color: var(--ink); }
  .btn-outline:hover { border-color: var(--ink); }
  @media (max-width: 760px) { .nav-links { display: none; } }

  /* ============ HERO ============ */
  .hero {
    background: var(--ink);
    color: var(--bg);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 28px 0 56px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    padding-top: 48px;
  }
  @media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 24px; } }

  .pill-live {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px 8px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
  }
  .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 0 oklch(0.88 0.22 130 / 0.55);
    animation: pulse 1.8s infinite;
    flex-shrink: 0;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 oklch(0.88 0.22 130 / 0.5); }
    70%  { box-shadow: 0 0 0 8px oklch(0.88 0.22 130 / 0); }
    100% { box-shadow: 0 0 0 0 oklch(0.88 0.22 130 / 0); }
  }

  .hero h1 {
    font-size: clamp(56px, 9vw, 128px);
    letter-spacing: -0.05em;
    line-height: 0.92;
    margin-bottom: 28px;
  }
  .hero h1 .lime {
    color: var(--lime);
    font-style: italic;
    font-weight: 800;
  }
  .hero-sub {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.45;
    color: rgba(250,250,250,0.7);
    max-width: 480px;
    margin-bottom: 36px;
  }
  .hero-cta-row {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .btn-lime {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--lime); color: var(--ink);
    padding: 18px 28px;
    border-radius: 999px;
    font-size: 16px; font-weight: 700;
    letter-spacing: -0.01em;
    transition: all .15s ease;
  }
  .btn-lime:hover { background: var(--lime-d); transform: translateY(-2px); }
  .btn-lime svg { width: 18px; height: 18px; }
  .btn-ghost-dark {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 18px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--bg);
    font-size: 16px; font-weight: 500;
    transition: all .15s ease;
  }
  .btn-ghost-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }

  .hero-trust {
    display: flex; gap: 28px; flex-wrap: wrap;
    color: rgba(250,250,250,0.6);
    font-size: 14px;
  }
  .hero-trust .item { display: inline-flex; align-items: center; gap: 8px; }
  .hero-trust .dot-sm { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); }

  /* ============ COTIZADOR (ride-hail style) ============ */
  .quoter {
    background: var(--bg-card);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
    position: relative;
  }
  .quoter-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px;
  }
  .quoter-title { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
  .quoter-eta {
    font-size: 12px; font-weight: 600; color: var(--ink-3);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .quoter-eta .pulse { width: 6px; height: 6px; background: oklch(0.62 0.14 150); box-shadow: 0 0 0 0 oklch(0.62 0.14 150 / 0.5); }

  .route {
    background: #F4F4F4;
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 16px;
  }
  .route-input {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 14px;
    background: white;
    border-radius: 12px;
  }
  .route-input + .route-input { margin-top: 4px; }
  .route-dot {
    width: 10px; height: 10px; border-radius: 50%;
    flex-shrink: 0;
  }
  .route-dot.origin { background: var(--ink); border: 3px solid #D1D1D1; box-sizing: border-box; }
  .route-dot.dest { background: var(--lime-d); border-radius: 2px; transform: rotate(45deg); }
  .route input {
    flex: 1;
    border: none; background: none;
    font-family: inherit; font-size: 15px; font-weight: 500; color: var(--ink);
    outline: none;
  }
  .route input::placeholder { color: var(--ink-4); }
  .route-divider {
    height: 0; border-top: 1px dashed var(--line-2);
    margin-left: 30px;
  }

  .service-pick {
    display: flex; flex-direction: column; gap: 6px;
    margin-bottom: 18px;
  }
  .svc-card {
    background: #F4F4F4;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    transition: all .15s ease;
    text-align: left;
    width: 100%;
  }
  .svc-card:hover { background: #ECECEC; }
  .svc-card.active {
    background: var(--ink); color: var(--bg);
  }
  .svc-left { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
  .svc-tag {
    font-size: 15px; font-weight: 700; letter-spacing: -0.02em;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .svc-tag::before {
    content: ''; width: 14px; height: 14px; border-radius: 4px;
    background: currentColor; opacity: 0.18;
  }
  .svc-card.active .svc-tag::before { background: var(--lime); opacity: 1; }
  .svc-badge {
    font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--lime); color: var(--ink);
    padding: 2px 6px; border-radius: 4px;
    white-space: nowrap;
  }
  .svc-desc { font-size: 12.5px; opacity: 0.65; font-weight: 500; }
  .svc-price { font-size: 13px; font-weight: 600; opacity: 0.85; font-family: 'Geist Mono', monospace; white-space: nowrap; }

  /* ============ PLANS ============ */
  .plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    align-items: stretch;
  }
  @media (max-width: 980px) { .plans-grid { grid-template-columns: 1fr; } }
  .plan {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 18px;
    position: relative;
    transition: all .2s ease;
  }
  .plan:hover { border-color: var(--ink); transform: translateY(-3px); }
  .plan-featured {
    background: var(--ink); color: var(--bg);
    border-color: var(--ink);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
  }
  .plan-featured:hover { transform: translateY(-5px); }
  .plan-flag {
    position: absolute; top: -14px; left: 32px;
    background: var(--lime); color: var(--ink);
    font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px;
    white-space: nowrap;
  }
  .plan-head { display: flex; flex-direction: column; gap: 4px; }
  .plan-name {
    font-size: 22px; font-weight: 600; letter-spacing: -0.025em;
  }
  .plan-name .em { font-weight: 900; }
  .plan-tagline {
    font-family: 'Geist Mono', monospace;
    font-size: 11.5px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--ink-3);
  }
  .plan-featured .plan-tagline { color: rgba(250,250,250,0.5); }
  .plan-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .plan-featured .plan-price { border-bottom-color: rgba(255,255,255,0.1); }
  .plan-price .from { font-size: 13px; color: var(--ink-3); }
  .plan-featured .plan-price .from { color: rgba(250,250,250,0.5); }
  .plan-price .amount { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
  .plan-price .to { font-size: 14px; color: var(--ink-3); font-family: 'Geist Mono', monospace; }
  .plan-featured .plan-price .to { color: rgba(250,250,250,0.5); }
  .plan-pitch { font-size: 15.5px; line-height: 1.45; margin: 0; font-weight: 500; }
  .plan-featured .plan-pitch { color: rgba(250,250,250,0.85); }
  .plan-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .plan-list li {
    font-size: 14.5px; color: var(--ink-2);
    display: flex; gap: 10px; align-items: flex-start;
    line-height: 1.4;
  }
  .plan-featured .plan-list li { color: rgba(250,250,250,0.75); }
  .plan-list li::before {
    content: ''; width: 16px; height: 16px; border-radius: 50%;
    background: var(--lime); flex-shrink: 0;
    margin-top: 2px;
    background-image: linear-gradient(var(--lime), var(--lime));
    position: relative;
  }
  .plan-list li { position: relative; }
  .plan-list li::after {
    content: ''; position: absolute; left: 5px; top: 7px;
    width: 6px; height: 3px;
    border-left: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    transform: rotate(-45deg);
  }
  .plan-example {
    background: var(--bg);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13.5px; color: var(--ink-2);
    line-height: 1.45;
    margin-top: auto;
  }
  .plan-featured .plan-example { background: rgba(255,255,255,0.06); color: rgba(250,250,250,0.8); }
  .ex-label {
    display: block;
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 4px;
  }
  .plan-featured .ex-label { color: rgba(250,250,250,0.45); }
  .plan-cta {
    display: block; text-align: center;
    background: var(--ink); color: var(--bg);
    padding: 16px 22px;
    border-radius: 999px;
    font-size: 15px; font-weight: 700;
    transition: all .15s ease;
  }
  .plan-cta:hover { background: #1a1a1a; transform: translateY(-1px); }
  .plan-cta-lime { background: var(--lime); color: var(--ink); }
  .plan-cta-lime:hover { background: var(--lime-d); }
  .plan-featured .plan-cta:not(.plan-cta-lime) { background: var(--bg); color: var(--ink); }

  .plans-foot {
    margin-top: 36px;
    display: flex; gap: 18px; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    color: var(--ink-3); font-size: 14.5px;
  }
  .plans-foot a {
    color: var(--ink); font-weight: 600;
    border-bottom: 1px solid var(--ink-3);
    padding-bottom: 2px;
  }
  .plans-foot a:hover { border-bottom-color: var(--ink); }

  /* ============ MUVER PRO (B2B) ============ */
  .plan-pro {
    margin-top: 24px;
    background: var(--ink);
    color: var(--bg);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    overflow: hidden;
  }
  .plan-pro::before {
    content: ''; position: absolute;
    right: -180px; top: -180px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, oklch(0.88 0.22 130 / 0.18), transparent 65%);
    pointer-events: none;
  }
  @media (max-width: 880px) {
    .plan-pro { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  }
  .pro-left, .pro-right { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; }
  .pro-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Geist Mono', monospace;
    font-size: 11.5px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--lime);
  }
  .pro-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
  }
  .pro-title {
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: -0.045em;
    font-weight: 600;
    margin: 0;
  }
  .pro-title .em { font-weight: 900; }
  .pro-desc {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(250,250,250,0.7);
    margin: 0;
    max-width: 42ch;
  }
  .pro-cta {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--lime); color: var(--ink);
    padding: 16px 24px;
    border-radius: 999px;
    font-size: 15px; font-weight: 700;
    margin-top: 8px;
    transition: all .15s ease;
  }
  .pro-cta:hover { background: var(--lime-d); transform: translateY(-2px); }

  .pro-list-label {
    font-family: 'Geist Mono', monospace;
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(250,250,250,0.5);
  }
  .pro-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
  }
  .pro-list li {
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; gap: 14px; align-items: baseline;
    font-size: 15.5px; font-weight: 500;
    color: rgba(250,250,250,0.92);
    letter-spacing: -0.01em;
  }
  .pro-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pro-list li span {
    font-family: 'Geist Mono', monospace;
    font-size: 11px; color: rgba(250,250,250,0.4); font-weight: 500;
    min-width: 22px;
  }
  .pro-meta {
    display: flex; gap: 24px; flex-wrap: wrap;
    margin-top: 16px;
    font-size: 13.5px;
    color: rgba(250,250,250,0.7);
  }
  .pro-meta .k {
    display: block;
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(250,250,250,0.4);
    margin-bottom: 2px;
  }

  .price-bar {
    background: var(--ink); color: var(--bg);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
  }
  .price-bar .label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
    font-weight: 600; color: rgba(250,250,250,0.55);
    margin-bottom: 4px;
  }
  .price-bar .price {
    font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  }
  .price-bar .price .from {
    font-size: 12px; color: rgba(250,250,250,0.55);
    font-weight: 500; margin-right: 6px;
    letter-spacing: -0.01em;
  }
  .price-bar .go {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--lime); color: var(--ink);
    padding: 13px 18px;
    border-radius: 999px;
    font-size: 14px; font-weight: 700;
    transition: all .15s ease;
  }
  .price-bar .go:hover { background: var(--lime-d); }

  .quoter-foot {
    text-align: center;
    color: var(--ink-3); font-size: 12.5px;
    margin-top: 14px;
  }

  /* ============ MARQUEE / SOCIAL STRIP ============ */
  .marquee {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .marquee-inner {
    display: flex; gap: 64px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .marquee-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--ink-2); font-size: 14px;
  }
  .marquee-item .big {
    font-size: 22px; font-weight: 800; color: var(--ink);
    letter-spacing: -0.02em;
  }
  .stars { color: var(--ink); letter-spacing: 1px; }

  /* ============ SECTION DEFAULTS ============ */
  section { padding: 112px 0; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Geist Mono', monospace;
    font-size: 12px; font-weight: 500;
    color: var(--ink-3);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 18px;
  }
  .eyebrow::before {
    content: ''; width: 6px; height: 6px; background: var(--lime-d); border-radius: 50%;
  }
  h2.section-title {
    font-size: clamp(40px, 5.5vw, 80px);
    letter-spacing: -0.045em;
    margin-bottom: 22px;
    max-width: 16ch;
  }
  .section-intro {
    font-size: 19px; color: var(--ink-3);
    max-width: 560px;
    margin-bottom: 60px;
    line-height: 1.45;
  }

  /* ============ BENEFITS ============ */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
  }
  .benefit {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex; flex-direction: column; gap: 14px;
    transition: all .2s ease;
  }
  .benefit:hover { border-color: var(--ink); transform: translateY(-2px); }
  .benefit-large { grid-column: span 7; min-height: 360px; background: var(--ink); color: var(--bg); border-color: var(--ink); position: relative; overflow: hidden; }
  .benefit-large:hover { border-color: var(--ink); }
  .benefit-small { grid-column: span 5; min-height: 360px; }
  .benefit-third { grid-column: span 4; }
  @media (max-width: 900px) {
    .benefit-large, .benefit-small, .benefit-third { grid-column: span 12; }
  }
  .b-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--bg);
    color: var(--ink);
    display: grid; place-items: center;
  }
  .benefit:not(.benefit-large) .b-icon { background: var(--ink); color: var(--bg); }
  .b-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .benefit h3 {
    font-size: 26px; letter-spacing: -0.03em;
    margin-top: 8px;
  }
  .benefit-large h3 { font-size: 44px; max-width: 12ch; }
  .benefit p { color: var(--ink-3); font-size: 15.5px; line-height: 1.5; margin: 0; }
  .benefit-large p { color: rgba(250,250,250,0.65); font-size: 17px; max-width: 38ch; }

  .benefit-large { padding-right: 220px; }
  .benefit-large p { max-width: 30ch; }
  .benefit-large .decorative {
    position: absolute; right: -60px; bottom: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: var(--lime);
    opacity: 0.95;
    z-index: 0;
  }
  .benefit-large .decorative::after {
    content: '60 min'; position: absolute; inset: 0;
    display: grid; place-items: center;
    padding-bottom: 60px; padding-right: 60px;
    font-size: 38px; font-weight: 900; color: var(--ink); letter-spacing: -0.04em;
  }
  .benefit-large > *:not(.decorative) { position: relative; z-index: 1; }
  @media (max-width: 700px) {
    .benefit-large { padding-right: 32px; padding-bottom: 200px; }
    .benefit-large .decorative { right: -80px; bottom: -80px; width: 220px; height: 220px; }
  }

  /* ============ HOW IT WORKS (WhatsApp mockup focus) ============ */
  .how {
    background: var(--bg);
  }
  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 980px) { .how-grid { grid-template-columns: 1fr; gap: 40px; } }
  .steps-list { display: flex; flex-direction: column; gap: 0; }
  .step {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    display: flex; gap: 22px;
    cursor: pointer;
    transition: opacity .2s;
  }
  .step:first-child { padding-top: 0; }
  .step:last-child { border-bottom: none; }
  .step .num {
    font-family: 'Geist Mono', monospace;
    font-size: 13px; font-weight: 500;
    color: var(--ink-3);
    min-width: 40px;
    padding-top: 6px;
  }
  .step h3 {
    font-size: 26px; letter-spacing: -0.03em;
    margin-bottom: 6px;
  }
  .step p { color: var(--ink-3); font-size: 16px; margin: 0; }

  /* WhatsApp Phone Mockup */
  .phone {
    background: var(--ink);
    border-radius: 42px;
    padding: 14px;
    width: 340px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 60px 80px -30px rgba(0,0,0,0.3);
    position: relative;
  }
  .phone::before {
    content: ''; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 22px; background: var(--ink); border-radius: 999px; z-index: 2;
  }
  .phone-screen {
    background: #ECE5DD;
    border-radius: 30px;
    overflow: hidden;
    height: 580px;
    display: flex; flex-direction: column;
  }
  .wa-header {
    background: #075E54;
    color: white;
    padding: 48px 18px 14px;
    display: flex; align-items: center; gap: 12px;
  }
  .wa-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--lime);
    display: grid; place-items: center;
    color: var(--ink); font-weight: 900; font-size: 14px;
  }
  .wa-name { font-size: 14px; font-weight: 600; }
  .wa-status { font-size: 11.5px; color: rgba(255,255,255,0.7); }
  .wa-body {
    flex: 1; padding: 14px 12px;
    display: flex; flex-direction: column; gap: 8px;
    overflow: hidden;
    background: #ECE5DD;
    background-image:
      radial-gradient(circle at 25% 30%, rgba(0,0,0,0.02) 1px, transparent 1px),
      radial-gradient(circle at 75% 70%, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
  }
  .bubble {
    max-width: 78%;
    padding: 8px 10px 6px;
    border-radius: 8px;
    font-size: 13.5px; line-height: 1.35;
    position: relative;
    color: #1a1a1a;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
  }
  .bubble.me {
    background: #DCF8C6;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
  }
  .bubble.them {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
  }
  .bubble .time { font-size: 9.5px; color: #888; margin-left: 8px; float: right; margin-top: 4px; }
  .bubble .check { display: inline-block; color: #4FC3F7; margin-left: 2px; font-size: 11px; }

  .typing {
    display: inline-flex; gap: 3px; align-self: flex-start;
    background: white; padding: 10px 12px; border-radius: 8px;
    border-bottom-left-radius: 2px;
  }
  .typing span {
    width: 6px; height: 6px; border-radius: 50%;
    background: #999;
    animation: typing 1.2s infinite;
  }
  .typing span:nth-child(2) { animation-delay: 0.15s; }
  .typing span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes typing {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-3px); }
  }

  /* ============ PROOF ============ */
  .proof { background: var(--bg); }
  .stats-strip {
    background: var(--ink); color: var(--bg);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    margin-bottom: 64px;
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  @media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
  .stat-item .num {
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 800; letter-spacing: -0.05em; line-height: 1;
  }
  .stat-item .num .u { color: var(--lime); }
  .stat-item .label {
    color: rgba(250,250,250,0.6);
    font-size: 14.5px;
    margin-top: 10px;
    max-width: 18ch;
  }

  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  @media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
  .review {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .review-stars { color: var(--ink); letter-spacing: 2px; font-size: 14px; }
  .review blockquote {
    margin: 0;
    font-size: 18px; line-height: 1.4; letter-spacing: -0.015em;
    font-weight: 500; color: var(--ink);
  }
  .review-meta {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; gap: 12px;
  }
  .review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 700; font-size: 14px;
    color: var(--ink);
  }
  .review-name { font-weight: 600; font-size: 14px; }
  .review-where { font-size: 13px; color: var(--ink-3); }
  .review-src {
    margin-left: auto;
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px; color: var(--ink-3);
    background: #F0F0F0; padding: 4px 8px; border-radius: 6px;
  }

  /* ============ FAQ ============ */
  .faq-section { background: var(--bg-card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .faq-list { margin-top: 8px; }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%; padding: 26px 4px;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    font-size: 22px; font-weight: 700; letter-spacing: -0.025em;
    color: var(--ink); text-align: left;
  }
  .faq-q .plus {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--line-2);
    display: grid; place-items: center;
    font-size: 18px; color: var(--ink-2);
    flex-shrink: 0;
    transition: all .25s ease;
  }
  .faq-item.open .faq-q .plus {
    transform: rotate(45deg);
    background: var(--ink); color: var(--bg); border-color: var(--ink);
  }
  .faq-a {
    max-height: 0; overflow: hidden;
    color: var(--ink-2); font-size: 16.5px; line-height: 1.55;
    padding-right: 80px;
    transition: max-height .35s ease, padding .35s ease;
  }
  .faq-item.open .faq-a { max-height: 280px; padding-bottom: 24px; }

  /* ============ FINAL CTA ============ */
  .final {
    background: var(--ink); color: var(--bg);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 140px 0 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, oklch(0.88 0.22 130 / 0.12), transparent 60%);
    pointer-events: none;
  }
  .final-inner { position: relative; z-index: 1; }
  .final h2 {
    font-size: clamp(56px, 9vw, 128px);
    letter-spacing: -0.055em;
    margin-bottom: 36px;
  }
  .final h2 .lime { color: var(--lime); font-style: italic; }
  .final p {
    color: rgba(250,250,250,0.6);
    font-size: 19px;
    max-width: 480px;
    margin: 0 auto 44px;
  }
  .final .btn-lime { font-size: 19px; padding: 22px 36px; }
  .final .below {
    margin-top: 22px;
    color: rgba(250,250,250,0.45);
    font-size: 13px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ink); color: rgba(250,250,250,0.55);
    padding: 48px 0 32px;
    font-size: 13.5px;
  }
  .footer-grid {
    display: flex; flex-wrap: wrap; gap: 24px;
    justify-content: space-between; align-items: center;
  }
  .footer-grid .logo { color: var(--bg); }
  .footer-grid .logo-mark { background: var(--bg); }
  .footer-grid .logo-mark svg path { stroke: var(--ink) !important; }
  .footer-grid .logo .dot { color: var(--lime); }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a:hover { color: var(--bg); }

  /* ============ STICKY WHATSAPP ============ */
  .sticky-wa {
    position: fixed; right: 22px; bottom: 22px; z-index: 100;
    background: var(--whatsapp);
    color: white;
    border-radius: 999px;
    padding: 14px 20px 14px 16px;
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 14.5px;
    box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.6);
    transition: all .15s ease;
  }
  .sticky-wa:hover { background: var(--whatsapp-d); transform: translateY(-2px); }
  .sticky-wa svg { width: 22px; height: 22px; }
  @media (max-width: 520px) {
    .sticky-wa { padding: 14px; }
    .sticky-wa .label { display: none; }
  }