  :root {
    --bg: #080810;
    --surface: #0e0e1a;
    --card: #13131e;
    --border: #252535;
    --gold: #f0c040;
    --gold2: #d4960a;
    --gold-glow: rgba(240,192,64,0.15);
    --green: #1fd17a;
    --text: #f4f0e8;
    --muted: #7070a0;
    --accent: #ff6b35;
    --white: #ffffff;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Baloo 2', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── GRAIN ── */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(8,8,16,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
    color: var(--gold);
    text-decoration: none;
  }

  .nav-logo span { color: var(--white); }

  .nav-cta {
    background: var(--gold);
    color: #000;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 22px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s;
  }

  .nav-cta:hover { background: #ffd44a; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
  }

  /* Background grid */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(240,192,64,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(240,192,64,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  }

  /* Glow orb */
  .hero-orb {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(240,192,64,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -60%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,192,64,0.1);
    border: 1px solid rgba(240,192,64,0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 10vw, 110px);
    letter-spacing: 4px;
    line-height: 0.95;
    margin-bottom: 12px;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  .hero h1 .gold { color: var(--gold); }
  .hero h1 .outline {
    -webkit-text-stroke: 2px var(--gold);
    color: transparent;
  }

  .hero-sub {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--muted);
    max-width: 560px;
    margin: 16px auto 36px;
    font-weight: 400;
    animation: fadeUp 0.6s 0.2s ease both;
    line-height: 1.5;
  }

  .hero-sub strong { color: var(--text); font-weight: 600; }

  .hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    background: var(--gold);
    color: #000;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: 0 0 30px rgba(240,192,64,0.25);
  }

  .btn-primary:hover {
    background: #ffd44a;
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(240,192,64,0.4);
  }

  .btn-secondary {
    background: transparent;
    color: var(--text);
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    animation: fadeUp 0.6s 0.4s ease both;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat { text-align: center; }

  .hero-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
  }

  .hero-stat .lbl {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION BASE ── */
  section { padding: 90px 24px; }
  .container { max-width: 1060px; margin: 0 auto; }

  .section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .section-desc {
    color: var(--muted);
    font-size: 15px;
    max-width: 520px;
    line-height: 1.7;
  }

  /* ── PROBLEMS ── */
  .problems { background: var(--surface); }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 48px;
  }

  .problem-item {
    background: var(--card);
    padding: 32px 28px;
    transition: background 0.2s;
  }

  .problem-item:hover { background: #181826; }

  .problem-emoji { font-size: 32px; margin-bottom: 14px; }

  .problem-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text);
  }

  .problem-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

  /* ── FEATURES ── */
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }

  .feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
  }

  .feature-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #13131e, #1a1a28);
    border-color: rgba(240,192,64,0.2);
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .feature-card:hover::before { opacity: 1; }

  .feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .feature-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
  }

  .feature-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

  .feature-list {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .feature-list li {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .feature-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Mock phone screen */
  .phone-mock {
    background: #0a0a14;
    border: 2px solid #2a2a40;
    border-radius: 20px;
    padding: 16px;
    font-size: 12px;
  }

  .phone-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .phone-title { font-weight: 700; font-size: 13px; color: var(--gold); }
  .phone-date { font-size: 10px; color: var(--muted); }

  .phone-metric {
    background: #13131e;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .pm-label { font-size: 11px; color: var(--muted); }
  .pm-value { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--gold); }
  .pm-value.green { color: var(--green); }

  .phone-bar-wrap { margin-top: 12px; }
  .phone-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 4px;
  }

  .phone-bar {
    height: 6px;
    background: #1e1e30;
    border-radius: 3px;
    margin-bottom: 6px;
    overflow: hidden;
  }

  .phone-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    animation: barGrow 1.5s ease both;
  }

  @keyframes barGrow {
    from { width: 0; }
  }

  /* ── HOW IT WORKS ── */
  .how { background: var(--surface); }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 52px;
    position: relative;
  }

  .step {
    text-align: center;
    padding: 40px 28px;
    position: relative;
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: -12px;
  }

  .step-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
  }

  .step-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

  .step-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--gold);
    opacity: 0.3;
    z-index: 2;
  }

  /* ── TESTIMONIALS ── */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 0.2s;
  }

  .testi-card:hover { border-color: var(--gold); }

  .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }

  .testi-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .testi-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #000;
    flex-shrink: 0;
  }

  .testi-name { font-weight: 700; font-size: 13px; }
  .testi-loc { font-size: 11px; color: var(--muted); }

  /* ── CTA SECTION ── */
  .cta-section {
    background: linear-gradient(135deg, #0f0f1c, #141420);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(240,192,64,0.06) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 3px;
    margin-bottom: 16px;
    line-height: 1;
  }

  .cta-section h2 span { color: var(--gold); }

  .cta-section p {
    color: var(--muted);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }

  .cta-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-input {
    flex: 1;
    min-width: 200px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Baloo 2', sans-serif;
    font-size: 14px;
    padding: 13px 18px;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
  }

  .cta-input:focus { border-color: var(--gold); }
  .cta-input::placeholder { color: var(--muted); }

  .cta-submit {
    background: var(--gold);
    color: #000;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .cta-submit:hover {
    background: #ffd44a;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(240,192,64,0.3);
  }

  .cta-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 12px;
    letter-spacing: 0.5px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--gold);
    text-decoration: none;
  }

  .footer-logo span { color: var(--white); }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-copy { font-size: 11px; color: var(--muted); }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: white;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    z-index: 50;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: fadeUp 1s 0.8s ease both;
  }

  .wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .problem-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .hero-stats .stat-divider { display: none; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.cta-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

