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

    :root {
      --bg:        #07090F;
      --dark:      #0C0F1A;
      --dark-2:    #111827;
      --dark-3:    #1A2235;
      --card:      #0F1520;
      --blue:      #2563EB;
      --blue-lite: #3B82F6;
      --blue-glow: rgba(37,99,235,0.2);
      --green:     #22C55E;
      --orange:    #F97316;
      --white:     #FFFFFF;
      --off-white: #F1F5F9;
      --muted:     #64748B;
      --muted2:    #94A3B8;
      --border:    rgba(255,255,255,0.07);
      --radius:    10px;
      --ff:        'Plus Jakarta Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--ff); background: var(--bg); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
    ::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar-track { background: var(--dark); } ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

    /* ── UTILITIES ── */
    .container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--blue-lite); background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2);
      padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
    }
    .section-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
    .section-sub { font-size: 1.05rem; color: var(--muted2); line-height: 1.75; max-width: 540px; }
    .btn-blue {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--blue); color: var(--white);
      font-size: 0.9rem; font-weight: 700; padding: 13px 26px;
      border-radius: 8px; border: none; cursor: pointer; text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-blue:hover { background: var(--blue-lite); transform: translateY(-2px); box-shadow: 0 8px 28px var(--blue-glow); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: var(--white);
      font-size: 0.9rem; font-weight: 600; padding: 12px 24px;
      border-radius: 8px; border: 1px solid rgba(255,255,255,0.18); cursor: pointer; text-decoration: none;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
    .btn-white {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--white); color: var(--dark);
      font-size: 0.9rem; font-weight: 700; padding: 13px 26px;
      border-radius: 8px; border: none; cursor: pointer; text-decoration: none;
      transition: opacity 0.2s, transform 0.15s;
    }
    .btn-white:hover { opacity: 0.9; transform: translateY(-2px); }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; } }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: 64px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px;
      background: rgba(7,9,15,0.85);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo-icon {
      width: 40px; height: 40px; flex-shrink: 0;
    }
    .nav-logo-text { font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--muted2); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--white); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all 0.25s; }
    .mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--dark); border-bottom: 1px solid var(--border); padding: 24px 28px; z-index: 999; }
    .mobile-menu.open { display: block; }
    .mobile-menu a { display: block; color: var(--white); text-decoration: none; font-size: 1rem; font-weight: 600; padding: 13px 0; border-bottom: 1px solid var(--border); }
    .mobile-menu .mobile-btns { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
    @media (max-width: 900px) { .nav-links { display: none; } .nav-right .btn-ghost { display: none; } .hamburger { display: block; } }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      min-height: 100dvh; display: flex; align-items: center;
      padding-top: 64px; position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,99,235,0.12) 0%, transparent 65%),
                  radial-gradient(ellipse 50% 50% at 80% 80%, rgba(34,197,94,0.06) 0%, transparent 60%),
                  var(--bg);
    }
    .hero-bg::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 72px 72px;
    }
    .hero-content { position: relative; z-index: 2; text-align: center; padding: 80px 0 60px; }
    .hero-title { font-size: clamp(2.8rem, 6.5vw, 5.2rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.04em; margin-bottom: 26px; }
    .hero-title .hl { color: var(--blue-lite); }
    .hero-desc { font-size: 1.15rem; color: var(--muted2); line-height: 1.75; max-width: 560px; margin: 0 auto 40px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 20px; }
    .hero-scroll-link { display: block; text-align: center; font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .hero-scroll-link:hover { color: var(--white); }

    /* ═══════════════════════════════════════
       MARQUEE
    ═══════════════════════════════════════ */
    .marquee-strip { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; overflow: hidden; }
    .marquee-inner { display: inline-flex; animation: marquee 32s linear infinite; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .marquee-item { display: inline-flex; align-items: center; gap: 16px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 0 28px; white-space: nowrap; }
    .marquee-sep { color: var(--blue); }

    /* ═══════════════════════════════════════
       FEATURES
    ═══════════════════════════════════════ */
    .features { padding: 100px 0; background: var(--dark); border-bottom: 1px solid var(--border); }
    .features-header { text-align: left; margin-bottom: 64px; }
    .features-header .section-sub { margin: 16px 0 0; }
    .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .feat-card { background: var(--card); padding: 40px 36px; transition: background 0.25s; }
    .feat-card:hover { background: var(--dark-3); }
    .feat-icon { width: 48px; height: 48px; background: rgba(37,99,235,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue-lite); margin-bottom: 22px; }
    .feat-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
    .feat-desc { font-size: 0.9rem; color: var(--muted2); line-height: 1.7; }
    @media (max-width: 700px) { .features-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════
       SERVICES
    ═══════════════════════════════════════ */
    .services { padding: 100px 0; background: var(--bg); }
    .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .service-card {
      background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 26px 22px; transition: border-color 0.25s, transform 0.2s;
      position: relative; overflow: hidden;
    }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
    .service-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); }
    .service-card:hover::before { transform: scaleX(1); }
    .svc-icon { color: var(--blue-lite); margin-bottom: 14px; }
    .svc-name { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
    .svc-desc { font-size: 0.82rem; color: var(--muted2); line-height: 1.6; }
    @media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════ */
    .process { padding: 100px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .process-header { text-align: left; margin-bottom: 72px; }
    .process-steps { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
    .process-step { display: flex; gap: 32px; align-items: flex-start; position: relative; padding-bottom: 48px; }
    .process-step:last-child { padding-bottom: 0; }
    .ps-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
    .ps-num-circle {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--dark-3); border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 800; color: var(--muted2);
      flex-shrink: 0;
      transition: border-color 0.3s, color 0.3s;
    }
    .process-step:hover .ps-num-circle { border-color: var(--blue); color: var(--blue-lite); }
    .process-step:nth-child(1) .ps-num-circle { background: rgba(37,99,235,0.12); border-color: var(--blue); color: var(--blue-lite); }
    .ps-line { width: 2px; flex: 1; background: var(--border); margin: 10px 0; }
    .process-step:last-child .ps-line { display: none; }
    .ps-right { padding-top: 12px; }
    .ps-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .ps-desc { font-size: 0.9rem; color: var(--muted2); line-height: 1.7; }
    @media (max-width: 600px) { .process-step { gap: 20px; } .ps-num-circle { width: 44px; height: 44px; } }

    /* ═══════════════════════════════════════
       BENEFITS
    ═══════════════════════════════════════ */
    .benefits { padding: 100px 0; background: var(--bg); }
    .benefits-header { text-align: center; margin-bottom: 64px; }
    .benefits-header .section-sub { margin: 16px auto 0; }
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .benefit-card {
      background: var(--card); border: 1px solid var(--border); border-radius: 14px;
      padding: 32px 28px; transition: border-color 0.25s, transform 0.2s;
    }
    .benefit-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); }
    .benefit-icon {
      width: 44px; height: 44px; background: rgba(37,99,235,0.12); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; color: var(--blue-lite); margin-bottom: 18px;
    }
    .benefit-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .benefit-desc { font-size: 0.84rem; color: var(--muted2); line-height: 1.65; }
    @media (max-width: 800px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════
       COMPARISON TABLE
    ═══════════════════════════════════════ */
    .comparison { padding: 100px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .comparison-header { text-align: center; margin-bottom: 56px; }
    .comparison-wrap { overflow-x: auto; }
    .comparison-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .comparison-table th { font-size: 0.85rem; font-weight: 700; text-align: center; padding: 18px 20px; letter-spacing: 0.04em; }
    .comparison-table th:first-child { text-align: left; color: var(--muted); font-weight: 500; }
    .th-us { background: rgba(37,99,235,0.1); color: var(--blue-lite) !important; border-bottom: 2px solid var(--blue); }
    .th-other { background: var(--dark-2); color: var(--muted2) !important; }
    .comparison-table td { padding: 14px 20px; font-size: 0.88rem; border-bottom: 1px solid var(--border); text-align: center; color: var(--muted2); }
    .comparison-table td:first-child { text-align: left; color: var(--white); font-weight: 500; }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
    .check { color: var(--green); } .cross { color: #EF4444; }
    .us-col { background: rgba(37,99,235,0.04); }

    /* ═══════════════════════════════════════
       CASE STUDIES
    ═══════════════════════════════════════ */
    .case-studies { padding: 100px 0; background: var(--bg); }
    .cs-header { margin-bottom: 56px; }
    .cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .cs-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: border-color 0.25s, transform 0.2s; text-decoration: none; display: block; }
    .cs-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-5px); }
    .cs-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-lite); background: rgba(59,130,246,0.1); border-radius: 100px; padding: 4px 10px; margin-bottom: 16px; }
    .cs-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
    .cs-desc { font-size: 0.84rem; color: var(--muted2); line-height: 1.65; margin-bottom: 20px; }
    .cs-link { font-size: 0.82rem; font-weight: 700; color: var(--blue-lite); display: flex; align-items: center; gap: 6px; }
    .cs-preview { width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 20px; border: 1px solid var(--border); background: #0A1020; }
    .cs-preview-bar { background: #131B2E; padding: 8px 12px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border); }
    .cs-preview-dot { width: 8px; height: 8px; border-radius: 50%; }
    .cs-preview-dot:nth-child(1){background:#EF4444;} .cs-preview-dot:nth-child(2){background:#F59E0B;} .cs-preview-dot:nth-child(3){background:#22C55E;}
    .cs-preview-url { flex: 1; background: #0C1628; border-radius: 4px; height: 16px; margin-left: 8px; display: flex; align-items: center; padding: 0 8px; }
    .cs-preview-url span { font-size: 9px; color: var(--muted); font-family: monospace; }
    .cs-preview svg { display: block; width: 100%; height: auto; }
    @media (max-width: 800px) { .cs-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .cs-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
    .testimonials { padding: 100px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .testimonials-header { margin-bottom: 52px; }
    .testimonials-heading { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--white); margin-bottom: 18px; }
    .testimonials-aggregate { display: inline-flex; align-items: center; gap: 10px; background: var(--dark-2); border: 1px solid var(--border); border-radius: 100px; padding: 7px 16px; }
    .testimonials-aggregate-stars { display: flex; gap: 3px; color: #F59E0B; font-size: 0.85rem; }
    .testimonials-aggregate-text { font-size: 0.82rem; font-weight: 600; color: var(--muted2); }
    .testimonials-aggregate-text strong { color: var(--white); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .tcard { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 30px 28px; display: flex; flex-direction: column; }
    .tcard-mark { font-size: 3rem; line-height: 1; color: rgba(37,99,235,0.25); font-family: Georgia, serif; margin-bottom: 14px; }
    .tcard-stars { display: flex; gap: 3px; color: #F59E0B; font-size: 0.9rem; margin-bottom: 16px; }
    .tcard-quote { font-size: clamp(0.78rem, 1.4vw, 0.9rem); color: var(--muted2); line-height: 1.7; font-style: italic; flex: 1; }
    .tcard-divider { height: 1px; background: var(--border); margin: 20px 0; }
    .tcard-author { display: flex; align-items: center; gap: 12px; }
    .tcard-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(37,99,235,0.15); border: 2px solid rgba(37,99,235,0.25); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--blue-lite); font-size: 0.85rem; flex-shrink: 0; }
    .tcard-name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
    .tcard-role { font-size: 0.76rem; color: var(--muted2); margin-top: 2px; }
    @media (max-width: 768px) { .testimonials { padding: 64px 0; } }
    @media (max-width: 520px) { .testimonials-grid { grid-template-columns: 1fr; } }
    @media (max-width: 480px) { .testimonials { padding: 48px 0; } .tcard { padding: 24px 20px; } }

    /* ═══════════════════════════════════════
       PRICING
    ═══════════════════════════════════════ */
    .pricing { padding: 100px 0; background: var(--bg); }
    .pricing-header { text-align: center; margin-bottom: 56px; }
    .pricing-header .section-sub { margin: 16px auto 0; }
    .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
    .pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; position: relative; }
    .pricing-card.popular { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 20px 60px rgba(37,99,235,0.15); }
    .popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
    .plan-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); margin-bottom: 10px; }
    .plan-tagline { font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 8px; }
    .plan-desc { font-size: 0.87rem; color: var(--muted2); line-height: 1.6; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
    .plan-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--muted2); }
    .plan-features li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
    .plan-features li span { font-weight: 600; color: var(--white); }
    .plan-cta { width: 100%; justify-content: center; }
    .plan-note { text-align: center; margin-top: 14px; font-size: 0.78rem; color: var(--muted); }
    @media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════
       FAQ
    ═══════════════════════════════════════ */
    .faq { padding: 100px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .faq-header { text-align: center; margin-bottom: 56px; }
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: none; }
    .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; background: none; border: none; color: var(--white); font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: left; font-family: var(--ff); transition: background 0.2s; }
    .faq-q:hover { background: rgba(255,255,255,0.03); }
    .faq-q.open { color: var(--blue-lite); }
    .faq-icon { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s, border-color 0.2s, background 0.2s; }
    .faq-q.open .faq-icon { transform: rotate(45deg); border-color: var(--blue); background: rgba(37,99,235,0.1); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; font-size: 0.9rem; color: var(--muted2); line-height: 1.75; }
    .faq-a.open { max-height: 400px; padding: 0 26px 24px; }

    /* ═══════════════════════════════════════
       CTA BANNER
    ═══════════════════════════════════════ */
    .cta-banner { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; text-align: center; }
    .cta-banner::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
    .cta-banner-content { position: relative; z-index: 2; }
    .cta-banner-title { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.06; margin-bottom: 20px; }
    .cta-banner-sub { font-size: 1.05rem; color: var(--muted2); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
    .cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .cta-guarantee { margin-top: 24px; font-size: 0.82rem; color: var(--muted); }
    .cta-guarantee strong { color: var(--green); }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    .footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 0 28px; }
    .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
    .footer-brand {}
    .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
    .footer-logo-icon { width: 34px; height: 34px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
    .footer-logo-text { font-size: 0.95rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
    .footer-tagline { font-size: 0.87rem; color: var(--muted2); line-height: 1.7; max-width: 300px; margin-bottom: 22px; }
    .footer-guarantee { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 100px; padding: 6px 14px; font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.06em; }
    .footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 0.87rem; color: var(--muted2); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: 0.8rem; color: var(--muted); }
    .footer-copy a { color: var(--muted); text-decoration: none; }
    .footer-copy a:hover { color: var(--white); }
    @media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
    @media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

    /* ═══════════════════════════════════════
       DASHBOARD SHOWCASE
    ═══════════════════════════════════════ */
    .dashboard-section { padding: 100px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .dashboard-header { text-align: center; margin-bottom: 56px; }
    .dashboard-title { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; }
    .dashboard-title .thin { font-weight: 300; color: var(--muted2); display: block; }
    .dashboard-sub { font-size: 1rem; color: var(--muted2); line-height: 1.75; max-width: 560px; margin: 0 auto; }
    .dashboard-mockup { max-width: 900px; margin: 0 auto 60px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 48px 100px rgba(0,0,0,0.5), 0 0 80px rgba(37,99,235,0.08); background: #0A0D18; }
    .db-bar { background: #0E1320; padding: 12px 18px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--border); }
    .db-dot { width: 10px; height: 10px; border-radius: 50%; }
    .db-dot:nth-child(1){background:#EF4444;opacity:0.8;} .db-dot:nth-child(2){background:#F59E0B;opacity:0.8;} .db-dot:nth-child(3){background:#22C55E;opacity:0.8;}
    .db-urlbar { flex: 1; max-width: 240px; margin: 0 auto; background: #141A28; border-radius: 5px; height: 20px; display: flex; align-items: center; justify-content: center; }
    .db-urlbar span { font-size: 10px; color: var(--muted); font-family: monospace; }
    .db-mockup-inner { padding: 24px; }
    .db-header-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
    .db-star { width: 32px; height: 32px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .db-title { font-size: 1rem; font-weight: 700; color: var(--white); }
    .db-date { font-size: 0.75rem; color: var(--muted2); margin-top: 2px; }
    .db-cards-top { display: grid; grid-template-columns: 1.4fr 1.4fr 1fr; gap: 14px; margin-bottom: 14px; }
    .db-card { background: #0C1220; border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; }
    .db-card-title { font-size: 0.75rem; font-weight: 600; color: var(--muted2); margin-bottom: 12px; }
    .db-card-row { display: flex; gap: 24px; margin-bottom: 8px; }
    .db-card-label { font-size: 0.7rem; color: var(--muted); }
    .db-card-val { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-top: 2px; }
    .db-card-val-sm { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-top: 2px; }
    .db-bar-track { height: 4px; background: var(--dark-3); border-radius: 2px; margin-top: 10px; overflow: hidden; }
    .db-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), #7C3AED); width: 62%; }
    .db-revenue-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.75rem; }
    .db-revenue-row:last-child { border-bottom: none; }
    .db-revenue-name { color: var(--muted2); }
    .db-revenue-val { color: var(--white); font-weight: 600; }
    .db-rt-num { font-size: 2.2rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; margin: 8px 0 4px; }
    .db-rt-label { font-size: 0.7rem; color: var(--muted2); }
    .db-rt-chart { margin-top: 10px; }
    .db-cards-bottom { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .db-stat-card { background: #0C1220; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; }
    .db-stat-icon { width: 28px; height: 28px; background: var(--dark-3); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--muted2); }
    .db-stat-label { font-size: 0.68rem; color: var(--muted2); margin-bottom: 4px; }
    .db-stat-val { font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
    .dashboard-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 860px; margin: 0 auto; }
    .dash-feat { display: flex; align-items: flex-start; gap: 14px; }
    .dash-feat-icon { width: 36px; height: 36px; background: rgba(37,99,235,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue-lite); flex-shrink: 0; margin-top: 2px; }
    .dash-feat-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
    .dash-feat-desc { font-size: 0.82rem; color: var(--muted2); line-height: 1.65; }
    @media (max-width: 700px) { .db-cards-top { grid-template-columns: 1fr; } .db-cards-bottom { grid-template-columns: repeat(2,1fr); } .dashboard-features { grid-template-columns: 1fr; } }

    /* ── FADE IN ── */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ═══════════════════════════════════════
       IS THIS YOU STRIP
    ═══════════════════════════════════════ */
    .ity-strip { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
    .ity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
    .ity-card { background: var(--card); padding: 26px 28px; display: flex; align-items: flex-start; gap: 14px; }
    .ity-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--green); }
    .ity-text { font-size: 0.9rem; color: var(--muted2); line-height: 1.6; }
    .ity-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; text-align: center; }
    @media (max-width: 700px) { .ity-grid { grid-template-columns: 1fr; } }

    /* ═══════════════════════════════════════
       LET'S BE HONEST SECTION
    ═══════════════════════════════════════ */
    .honest { padding: 100px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .honest-inner { max-width: 800px; margin: 0 auto; }
    .honest-header { margin-bottom: 40px; }
    .honest-body { display: flex; flex-direction: column; gap: 28px; }
    .honest-block { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; }
    .honest-block-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
    .honest-block p { font-size: 0.92rem; color: var(--muted2); line-height: 1.75; }
    .honest-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
    .honest-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--muted2); line-height: 1.6; }
    .honest-list li svg { color: var(--blue-lite); flex-shrink: 0; margin-top: 2px; }
    .honest-list li strong { color: var(--white); }
    .honest-cta-note { margin-top: 28px; font-size: 0.87rem; color: var(--muted); text-align: center; font-style: italic; }
    .honest-cta-note a { color: var(--blue-lite); text-decoration: none; }
    .honest-cta-note a:hover { text-decoration: underline; }
    @media (max-width: 768px) { .honest { padding: 64px 0; } .honest-block { padding: 22px 20px; } }
    @media (max-width: 480px) { .honest { padding: 48px 0; } }

    /* ═══════════════════════════════════════
       THE MATH (ROI TABLE)
    ═══════════════════════════════════════ */
    .the-math { padding: 100px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
    .the-math-header { text-align: center; margin-bottom: 48px; }
    .the-math-header .section-sub { margin: 14px auto 0; }
    .math-table-wrap { overflow-x: auto; max-width: 860px; margin: 0 auto 40px; }
    .math-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .math-table th { font-size: 0.82rem; font-weight: 700; text-align: left; padding: 16px 22px; letter-spacing: 0.04em; }
    .math-table th:first-child { color: var(--muted); font-weight: 500; }
    .math-th-before { background: var(--dark-2); color: var(--muted2) !important; text-align: center !important; }
    .math-th-after { background: rgba(37,99,235,0.1); color: var(--blue-lite) !important; border-bottom: 2px solid var(--blue); text-align: center !important; }
    .math-table td { padding: 14px 22px; font-size: 0.88rem; border-bottom: 1px solid var(--border); color: var(--muted2); text-align: center; }
    .math-table td:first-child { text-align: left; color: var(--white); font-weight: 500; }
    .math-table tr:last-child td { border-bottom: none; }
    .math-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
    .math-after-col { background: rgba(37,99,235,0.04); color: var(--green) !important; font-weight: 600; }
    .math-roi-callout { max-width: 860px; margin: 0 auto; background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.2); border-radius: 12px; padding: 22px 28px; display: flex; align-items: center; gap: 16px; }
    .math-roi-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(34,197,94,0.12); display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
    .math-roi-text { font-size: 0.92rem; color: var(--muted2); line-height: 1.65; }
    .math-roi-text strong { color: var(--white); }
    @media (max-width: 768px) { .the-math { padding: 64px 0; } }
    @media (max-width: 640px) { .math-table th, .math-table td { padding: 10px 14px; font-size: 0.82rem; } }
    @media (max-width: 480px) { .the-math { padding: 48px 0; } .math-roi-callout { flex-direction: column; text-align: center; } }

    /* ═══════════════════════════════════════
       BEFORE / AFTER TABLE (in benefits)
    ═══════════════════════════════════════ */
    .before-after { max-width: 860px; margin: 0 auto 64px; overflow-x: auto; }
    .ba-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .ba-table th { font-size: 0.82rem; font-weight: 700; padding: 16px 22px; text-align: center; letter-spacing: 0.05em; text-transform: uppercase; }
    .ba-th-before { background: var(--dark-2); color: var(--muted2); width: 50%; }
    .ba-th-after { background: rgba(37,99,235,0.1); color: var(--blue-lite); border-bottom: 2px solid var(--blue); width: 50%; }
    .ba-table td { padding: 13px 22px; font-size: 0.87rem; border-bottom: 1px solid var(--border); color: var(--muted2); text-align: center; vertical-align: top; line-height: 1.55; }
    .ba-table tr:last-child td { border-bottom: none; }
    .ba-after-col { color: var(--white) !important; background: rgba(37,99,235,0.03); }
    @media (max-width: 640px) { .ba-table th, .ba-table td { padding: 10px 12px; font-size: 0.82rem; } }

    /* ═══════════════════════════════════════
       MOBILE OPTIMIZATIONS
    ═══════════════════════════════════════ */

    /* Nav tighten on mobile */
    @media (max-width: 900px) {
      .nav { padding: 0 20px; }
    }

    /* Section padding: 100px → 64px on tablet, 48px on phone */
    @media (max-width: 768px) {
      .features, .services, .process, .benefits,
      .case-studies, .testimonials, .faq, .cta-banner,
      .dashboard-section { padding: 64px 0; }
      .container { padding: 0 20px; }
    }
    @media (max-width: 480px) {
      .features, .services, .process, .benefits,
      .case-studies, .testimonials, .faq, .cta-banner,
      .dashboard-section { padding: 48px 0; }
    }

    /* Hero */
    @media (max-width: 768px) {
      .hero-content { padding: 52px 0 40px; }
      .hero-desc { font-size: 1rem; }
      .hero-actions { gap: 10px; }
      .hero-actions .btn-blue { width: 100%; justify-content: center; }
    }

    /* Dashboard mockup */
    @media (max-width: 700px) {
      .dashboard-mockup { border-radius: 10px; }
      .db-mockup-inner { padding: 14px; }
      .db-header-row { margin-bottom: 14px; }
    }
    @media (max-width: 480px) {
      .db-cards-bottom { grid-template-columns: 1fr 1fr; }
      .db-stat-val { font-size: 0.95rem; }
    }
    @media (max-width: 360px) {
      .db-cards-bottom { grid-template-columns: 1fr; }
    }

    /* Services header: stack CTA button below heading on mobile */
    @media (max-width: 768px) {
      .services-header { flex-direction: column; align-items: flex-start; }
      .services-header .btn-blue { width: 100%; justify-content: center; }
    }

    /* Features header already left-aligned */

    /* Benefits: 2→1 col sooner on phones */
    @media (max-width: 400px) {
      .benefits-grid { grid-template-columns: 1fr; }
    }

    /* Comparison table: shrink text on mobile */
    @media (max-width: 640px) {
      .comparison-table th,
      .comparison-table td { padding: 10px 12px; font-size: 0.8rem; }
      .comparison-table th:first-child,
      .comparison-table td:first-child { font-size: 0.8rem; }
    }

    /* Process: reduce padding */
    @media (max-width: 480px) {
      .process-step { padding-bottom: 32px; }
      .ps-right { padding-top: 8px; }
      .ps-title { font-size: 0.95rem; }
    }

    /* Case studies: ensure images don't overflow */
    @media (max-width: 560px) {
      .cs-card { padding: 20px; }
      .cs-preview { margin-bottom: 14px; }
    }

    /* Testimonials */
    @media (max-width: 480px) {
      .tcard { padding: 24px 20px; }
    }

    /* CTA banner */
    @media (max-width: 600px) {
      .cta-banner-actions { flex-direction: column; align-items: center; }
      .cta-banner-actions .btn-blue { width: 100%; max-width: 320px; justify-content: center; }
    }

    /* Footer: stack guarantee pill */
    @media (max-width: 480px) {
      .footer-guarantee { font-size: 10px; padding: 5px 10px; }
      .footer-tagline { font-size: 0.83rem; }
      .footer-col-title { margin-top: 4px; }
    }

    /* Dashboard features 3→1 at 600px */
    @media (max-width: 600px) {
      .dashboard-features { gap: 20px; }
      .dash-feat { gap: 12px; }
    }

    /* Section titles: no orphan lines on small phones */
    @media (max-width: 420px) {
      .section-title { font-size: 1.65rem; }
      .cta-banner-title { font-size: 1.8rem; }
      .dashboard-title { font-size: 1.8rem; }
    }

    /* Eyebrow pill: don't overflow */
    @media (max-width: 400px) {
      .eyebrow { font-size: 10px; padding: 4px 10px; }
    }

/* ═══════════════ SERVICE / USE-CASE PAGES (Tier 2) ═══════════════ */
.sp-main { padding-top: 90px; }
.sp-hero { position: relative; padding: 70px 0 40px; border-bottom: 1px solid var(--border); overflow: hidden; }
.sp-hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(700px 380px at 80% -20%, rgba(37,99,235,0.22), transparent 60%),
  radial-gradient(600px 400px at 0% 120%, rgba(37,99,235,0.10), transparent 60%);
  pointer-events: none; }
.sp-crumb { position: relative; font-size: 14px; color: var(--muted2); margin-bottom: 22px; }
.sp-crumb a { color: var(--muted2); text-decoration: none; }
.sp-crumb a:hover { color: var(--off-white); }
.sp-eyebrow { position: relative; display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-lite); padding: 7px 14px; border: 1px solid rgba(59,130,246,0.35); border-radius: 999px; background: rgba(37,99,235,0.08); margin-bottom: 22px; }
.sp-h1 { position: relative; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; font-weight: 800; letter-spacing: -0.03em; max-width: 880px; }
.sp-h1 .hl { color: var(--blue-lite); }
.sp-sub { position: relative; margin-top: 22px; font-size: clamp(17px, 2.2vw, 20px); line-height: 1.6; color: var(--muted2); max-width: 720px; }
.sp-hero-actions { position: relative; margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

.sp-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.sp-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.sp-h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; max-width: 760px; }
.sp-body { margin-top: 20px; font-size: 17px; line-height: 1.75; color: var(--muted2); max-width: 760px; }
.sp-body p { margin-top: 16px; }
.sp-body p:first-child { margin-top: 0; }

.sp-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.sp-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.sp-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; }
.sp-card p { font-size: 15px; line-height: 1.65; color: var(--muted2); }
.sp-card .sp-ic { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: rgba(37,99,235,0.12); border: 1px solid rgba(59,130,246,0.30); color: var(--blue-lite); margin-bottom: 16px; }

.sp-steps { margin-top: 36px; display: grid; gap: 16px; }
.sp-step { display: flex; gap: 20px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; }
.sp-step-n { flex: 0 0 auto; font-size: 15px; font-weight: 800; color: var(--blue-lite); width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: rgba(37,99,235,0.10); border: 1px solid rgba(59,130,246,0.30); }
.sp-step h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.sp-step p { font-size: 15px; line-height: 1.6; color: var(--muted2); }

.sp-related { padding: 56px 0; border-bottom: 1px solid var(--border); }
.sp-related-links { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.sp-chip { font-size: 15px; font-weight: 600; color: var(--off-white); text-decoration: none; padding: 11px 18px; border: 1px solid var(--border); border-radius: 999px; background: var(--card); transition: border-color .15s ease, color .15s ease; }
.sp-chip:hover { border-color: rgba(59,130,246,0.5); color: #fff; }

.sp-cta { position: relative; padding: 72px 0; text-align: center; overflow: hidden; }
.sp-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(37,99,235,0.20), transparent 65%); pointer-events: none; }
.sp-cta h2 { position: relative; font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.sp-cta p { position: relative; margin: 16px auto 0; max-width: 560px; color: var(--muted2); font-size: 17px; line-height: 1.6; }
.sp-cta .sp-hero-actions { justify-content: center; }

.svc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--blue-lite); text-decoration: none; }
.svc-link:hover { color: #fff; }
