:root {
    --bg: #070810;
    --surface: #0d0f1e;
    --surface2: #131628;
    --border: rgba(255,255,255,0.07);
    --accent: #00e5ff;
    --accent2: #7b5cff;
    --accent3: #ff3d6b;
    --text: #f0f2ff;
    --muted: #8890b5;
    --white: #ffffff;
    --gold: #f0b429;
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  html { scroll-behavior: smooth; }
 
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }
 
  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
  }
 
  /* ─── STICKY NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7,8,16,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
 
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
 
  .nav-cta {
    background: var(--accent3);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    animation: pulse-btn 2s infinite;
  }
 
  @keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,61,107,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255,61,107,0); }
  }
 
  .nav-cta:hover { background: #ff1f57; transform: translateY(-1px); }
 
  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
  }
 
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,255,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 80% 80%, rgba(123,92,255,0.1) 0%, transparent 50%),
      radial-gradient(ellipse 40% 30% at 20% 70%, rgba(255,61,107,0.06) 0%, transparent 50%);
  }
 
  .urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,61,107,0.1);
    border: 1px solid rgba(255,61,107,0.3);
    color: var(--accent3);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
  }
 
  .urgency-badge .dot {
    width: 7px; height: 7px;
    background: var(--accent3);
    border-radius: 50%;
    animation: blink 1s infinite;
  }
 
  @keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.2; }
  }
 
  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
 
  h1 .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
 
  h1 .red { color: var(--accent3); -webkit-text-fill-color: var(--accent3); }
 
  .subheadline {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
  }
 
  /* VSL Placeholder */
  .vsl-wrapper {
    width: 100%;
    max-width: 780px;
    margin: 0 auto 44px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 80px rgba(0,229,255,0.08);
    animation: fadeUp 0.6s 0.3s ease both;
    position: relative;
    background: var(--surface);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
 
  .vsl-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d0f1e 0%, #131628 100%);
  }
 
  .vsl-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
 
  .play-btn {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 40px rgba(0,229,255,0.3);
  }
 
  .play-btn:hover { transform: scale(1.1); box-shadow: 0 0 60px rgba(0,229,255,0.5); }
 
  .play-btn svg { fill: white; margin-left: 5px; }
 
  .vsl-label { color: var(--muted); font-size: 14px; letter-spacing: 1px; }
 
  .vsl-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
  }
 
  .cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: fadeUp 0.6s 0.4s ease both;
  }
 
  .btn-primary {
    background: linear-gradient(135deg, var(--accent3) 0%, #ff6b35 100%);
    color: white;
    padding: 18px 48px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 8px 40px rgba(255,61,107,0.35);
  }
 
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 50px rgba(255,61,107,0.5); }
 
  .cta-micro { color: var(--muted); font-size: 13px; }
  .cta-micro span { color: var(--accent3); font-weight: 600; }
 
  /* ─── SECTIONS ─── */
  section { padding: 100px 24px; position: relative; }
 
  .container { max-width: 1100px; margin: 0 auto; }
 
  .section-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
  }
 
  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
 
  h2 .c-accent { color: var(--accent); }
  h2 .c-red { color: var(--accent3); }
 
  .section-sub {
    color: var(--muted);
    font-size: 18px;
    max-width: 560px;
    line-height: 1.7;
  }
 
  /* ─── LOGOS / TRUST ─── */
  .trust-bar {
    padding: 32px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
 
  .trust-bar p { color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
 
  .industries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
 
  .industry-tag {
    background: var(--surface2);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.5px;
  }
 
  /* ─── PROBLEM ─── */
  .problem-section { background: var(--surface); }
 
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 56px;
  }
 
  .pain-card {
    background: var(--bg);
    border: 1px solid rgba(255,61,107,0.15);
    border-radius: 12px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
 
  .pain-card:hover {
    border-color: rgba(255,61,107,0.4);
    transform: translateY(-4px);
  }
 
  .pain-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent3), transparent);
  }
 
  .pain-emoji { font-size: 32px; margin-bottom: 16px; }
 
  .pain-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
  }
 
  .pain-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
 
  .problem-closer {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255,61,107,0.08), rgba(123,92,255,0.08));
    border: 1px solid rgba(255,61,107,0.2);
    border-radius: 16px;
    text-align: center;
  }
 
  .problem-closer p {
    font-family: 'Syne', sans-serif;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
  }
 
  .problem-closer span { color: var(--accent3); }
 
  /* ─── SOLUTION ─── */
  .solution-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
  }
 
  .features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }
 
  .features-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
 
  .feat-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(123,92,255,0.15));
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
 
  .feat-text h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--white);
  }
 
  .feat-text p { color: var(--muted); font-size: 14px; }
 
  /* Steps */
  .steps-heading {
    text-align: center;
    margin-bottom: 56px;
  }
 
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
  }
 
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    z-index: 1;
  }
 
  .step-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: background 0.3s;
  }
 
  .step-card:first-child { border-radius: 12px 0 0 12px; }
  .step-card:last-child { border-radius: 0 12px 12px 0; }
  .step-card:hover { background: rgba(0,229,255,0.04); }
 
  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--bg);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
  }
 
  .step-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--white);
  }
 
  .step-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
 
  /* ─── PROOF ─── */
  .proof-section { background: var(--surface); }
 
  .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
  }
 
  .stat-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .stat-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
  }
 
  .stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
  }
 
  .stat-label { color: var(--muted); font-size: 13px; letter-spacing: 0.5px; }
 
  /* Testimonials */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
  }
 
  .testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
 
  .testimonial-card:hover {
    border-color: rgba(0,229,255,0.25);
    transform: translateY(-4px);
  }
 
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(0,229,255,0.06);
    line-height: 1;
  }
 
  .stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; }
 
  .testimonial-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
  }
 
  .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
  }
 
  .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent2), var(--accent3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
  }
 
  .reviewer-info strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
  }
 
  .reviewer-info span { color: var(--muted); font-size: 12px; }
 
  /* Case studies */
  .case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
 
  .case-card {
    background: linear-gradient(135deg, rgba(0,229,255,0.05), rgba(123,92,255,0.05));
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 16px;
    padding: 36px;
  }
 
  .case-industry {
    display: inline-block;
    background: rgba(0,229,255,0.1);
    border: 1px solid rgba(0,229,255,0.2);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
 
  .case-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
  }
 
  .case-metrics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
 
  .case-metrics li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
  }
 
  .case-metrics li::before {
    content: '↑';
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
  }
 
  /* ─── OFFER ─── */
  .offer-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface2);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 20px;
    padding: 56px;
    position: relative;
    overflow: hidden;
  }
 
  .offer-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.04), rgba(123,92,255,0.04));
  }
 
  .offer-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  }
 
  .offer-box .offer-inner { position: relative; z-index: 1; }
 
  .offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
  }
 
  .offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(0,229,255,0.04);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.2s;
  }
 
  .offer-list li:hover { border-color: rgba(0,229,255,0.2); }
 
  .offer-list li .check {
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    min-width: 20px;
    margin-top: 1px;
  }
 
  .offer-list li strong { color: var(--white); font-family: 'Syne', sans-serif; font-weight: 700; }
 
  .offer-note {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
 
  .offer-note strong { color: var(--accent3); }
 
  /* ─── OBJECTIONS ─── */
  .objections-section { background: var(--surface); }
 
  .objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 56px;
  }
 
  .obj-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
  }
 
  .obj-card:hover {
    border-color: rgba(123,92,255,0.3);
    transform: translateY(-4px);
  }
 
  .obj-icon { font-size: 32px; margin-bottom: 16px; }
 
  .obj-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--white);
  }
 
  .obj-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
 
  /* ─── FAQ ─── */
  .faq-list { max-width: 780px; margin: 56px auto 0; }
 
  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
 
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    transition: color 0.2s;
  }
 
  .faq-q:hover { color: var(--accent); }
 
  .faq-q .arrow {
    min-width: 24px;
    height: 24px;
    background: var(--surface2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s, background 0.2s;
    color: var(--muted);
  }
 
  .faq-item.open .faq-q .arrow {
    transform: rotate(180deg);
    background: rgba(0,229,255,0.1);
    color: var(--accent);
  }
 
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }
 
  .faq-a-inner { padding-bottom: 24px; }
 
  .faq-item.open .faq-a { max-height: 300px; }
 
  /* ─── FINAL CTA ─── */
  .final-cta {
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
    text-align: center;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
  }
 
  .final-cta-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,229,255,0.07) 0%, transparent 70%);
  }
 
  .final-cta .container { position: relative; z-index: 1; }
 
  .scarcity-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(240,180,41,0.1);
    border: 1px solid rgba(240,180,41,0.25);
    color: var(--gold);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
  }
 
  .slots-indicator {
    display: flex;
    gap: 5px;
    align-items: center;
  }
 
  .slot {
    width: 12px; height: 12px;
    border-radius: 2px;
    background: var(--gold);
    opacity: 0.2;
  }
 
  .slot.filled { opacity: 1; }
 
  .final-cta h2 { margin-bottom: 20px; }
 
  .final-cta .section-sub { margin: 0 auto 40px; }
 
  .guarantee {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
  }
 
  .guarantee .shield { font-size: 22px; }
 
  /* ─── FOOTER ─── */
  footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border);
    text-align: center;
  }
 
  footer .logo { font-size: 22px; display: block; margin-bottom: 12px; }
  footer p { color: var(--muted); font-size: 13px; }
 
  /* ─── WHATSAPP BUTTON ─── */
  .wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    text-decoration: none;
    transition: transform 0.2s;
    animation: wa-pop 3s 2s both;
  }
 
  @keyframes wa-pop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
  }
 
  .wa-btn:hover { transform: scale(1.1); }
 
  .wa-btn svg { width: 30px; height: 30px; fill: white; }
 
  /* ─── STICKY CTA BOTTOM BAR ─── */
  .sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(7,8,16,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    z-index: 990;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
 
  .sticky-cta-bar p {
    color: var(--muted);
    font-size: 13px;
  }
 
  .sticky-cta-bar strong { color: var(--white); }
 
  @media (max-width: 768px) {
    .sticky-cta-bar { display: flex; }
    .solution-intro { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .step-card:first-child { border-radius: 12px 12px 0 0; }
    .step-card:last-child { border-radius: 0 0 12px 12px; }
    .offer-box { padding: 32px 24px; }
    nav { padding: 14px 20px; }
    .wa-btn { bottom: 80px; }
  }
 
  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
 
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
 
  /* divider */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0;
  }
 
  /* guarantee section */
  .guarantee-box {
    background: rgba(0,229,255,0.04);
    border: 1px solid rgba(0,229,255,0.1);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 60px;
  }
 
  .guarantee-box .g-icon { font-size: 40px; }
 
  .guarantee-box h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 6px;
  }
 
  .guarantee-box p { color: var(--muted); font-size: 14px; line-height: 1.6; }
 
  /* numbered list overrides */
  .no-list { list-style: none; }
  
  /* ─── BOOKING PAGE ADDITIONS ─── */
  .booking-hero {
    min-height: 38vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 60px;
    position: relative;
    overflow: hidden;
  }

  .booking-hero .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,255,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 80%, rgba(123,92,255,0.08) 0%, transparent 50%);
  }

  .booking-hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    margin-bottom: 16px;
  }

  .booking-hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ─── BOOKING LAYOUT ─── */
  .booking-section {
    padding: 60px 24px 100px;
  }

  .booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
  }

  /* ─── SIDEBAR INFO ─── */
  .booking-info {
    position: sticky;
    top: 100px;
  }

  .booking-info-header {
    margin-bottom: 32px;
  }

  .booking-info-header h2 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 12px;
  }

  .booking-info-header p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }

  .info-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .info-items li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
  }

  .info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(0,229,255,0.08);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .info-items li strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 2px;
  }

  .slots-box {
    background: rgba(255,61,107,0.07);
    border: 1px solid rgba(255,61,107,0.2);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--accent3);
    font-weight: 600;
  }

  .slots-box .dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--accent3);
    border-radius: 50%;
    animation: blink 1s infinite;
  }

  /* ─── FORM CARD ─── */
  .form-card {
    background: var(--surface2);
    border: 1px solid rgba(0,229,255,0.12);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }

  .form-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  }

  .form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.03), rgba(123,92,255,0.03));
    pointer-events: none;
  }

  .form-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 6px;
  }

  .form-subtitle {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 32px;
  }

  /* ─── FORM FIELDS ─── */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .field-group.full { grid-column: 1 / -1; }

  label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
  }

  label .req { color: var(--accent3); margin-left: 3px; }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  select,
  textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text);
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }

  input::placeholder,
  textarea::placeholder { color: rgba(136,144,181,0.4); }

  input:focus,
  select:focus,
  textarea:focus {
    border-color: rgba(0,229,255,0.4);
    box-shadow: 0 0 0 3px rgba(0,229,255,0.06);
  }

  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238890b5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }

  select option { background: #131628; color: var(--text); }

  textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

  /* ─── RADIO PILLS ─── */
  .pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .pill-group input[type="radio"] { display: none; }

  .pill-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--muted);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .pill-group input[type="radio"]:checked + label {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0,229,255,0.06);
  }

  /* ─── CONSENT ─── */
  .consent-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  .consent-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
    border-radius: 4px;
  }

  /* ─── SUBMIT BUTTON ─── */
  .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent3) 0%, #ff6b35 100%);
    color: white;
    padding: 18px 24px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 32px rgba(255,61,107,0.3);
    position: relative;
    overflow: hidden;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,61,107,0.45);
  }

  .submit-btn:active { transform: translateY(0); }

  .submit-note {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
  }

  /* ─── SUCCESS STATE ─── */
  .success-state {
    display: none;
    text-align: center;
    padding: 60px 24px;
  }

  .success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(123,92,255,0.15));
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
  }

  .success-state h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
  }

  .success-state p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto 28px;
  }

  .success-state .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s;
  }

  .success-state .whatsapp-link:hover { transform: translateY(-2px); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    .booking-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .booking-info {
      position: static;
    }

    .form-card {
      padding: 32px 24px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }
  }
