/* AgencyKit shared design system — extracted from landing. Used by /features/* pages. */
    /* ── Reset & Tokens ─────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --indigo:   #6366F1;
      --indigo-d: #4F46E5;
      --indigo-l: #818CF8;
      --amber:    #F59E0B;
      --emerald:  #10B981;
      --rose:     #F43F5E;
      --dark:     #0F0C29;
      --dark2:    #1a1740;
      --slate-50:  #F8FAFC;
      --slate-100: #F1F5F9;
      --slate-200: #E2E8F0;
      --slate-300: #CBD5E1;
      --slate-400: #94A3B8;
      --slate-500: #64748B;
      --slate-600: #475569;
      --slate-700: #334155;
      --slate-800: #1E293B;
      --slate-900: #0F172A;
      --radius: 14px;
      --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
      --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
      --shadow-lg: 0 20px 60px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.10);
      --shadow-xl: 0 32px 80px rgba(0,0,0,.22);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--slate-900);
      background: #fff;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── Utility ────────────────────────────────────────────────────────────── */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    @media (max-width: 480px) { .container { padding: 0 16px; } }
    .text-center { text-align: center; }
    .flex { display: flex; }
    .items-center { align-items: center; }
    .gap-2 { gap: 8px; }
    .gap-3 { gap: 12px; }

    /* ── Buttons ────────────────────────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 26px; border-radius: 8px;
      font-size: 15px; font-weight: 600; cursor: pointer;
      border: none; text-decoration: none;
      min-height: 52px;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      background: var(--indigo); color: #fff;
      box-shadow: 0 4px 14px rgba(99,102,241,.35);
    }
    .btn-primary:hover {
      background: var(--indigo-d);
      box-shadow: 0 6px 20px rgba(99,102,241,.45);
    }
    .btn-secondary {
      background: #fff; color: var(--slate-800);
      border: 1.5px solid var(--slate-200);
      box-shadow: var(--shadow-sm);
    }
    .btn-secondary:hover {
      border-color: var(--indigo-l); color: var(--indigo);
      box-shadow: var(--shadow-md);
    }
    .btn-deal {
      background: var(--indigo);
      color: #fff;
      box-shadow: 0 4px 14px rgba(99,102,241,.35);
    }
    .btn-deal:hover {
      background: var(--indigo-d);
      box-shadow: 0 6px 24px rgba(99,102,241,.5);
    }
    .btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 8px; }
    .btn-xl { padding: 18px 40px; font-size: 17px; border-radius: 8px; }

    /* ── Badge ──────────────────────────────────────────────────────────────── */
    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 12px; border-radius: 999px;
      font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    }
    .badge-indigo { background: rgba(99,102,241,.1); color: var(--indigo); }
    .badge-amber  { background: rgba(245,158,11,.12); color: #B45309; }
    .badge-emerald{ background: rgba(16,185,129,.12); color: #065F46; }

    /* ── Nav ────────────────────────────────────────────────────────────────── */
    #nav {
      position: fixed; top: 48px; left: 0; right: 0; z-index: 100;
      padding: 0 24px;
      transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
    }
    #nav.scrolled {
      background: rgba(255,255,255,.95);
      backdrop-filter: blur(16px) saturate(180%);
      box-shadow: 0 1px 0 rgba(0,0,0,.08);
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-size: 18px; font-weight: 800; color: #fff;
      text-decoration: none; transition: color 0.3s;
    }
    #nav.scrolled .nav-logo { color: var(--slate-900); }
    #nav.scrolled .nav-link { color: var(--slate-600); }
    .nav-link { color: rgba(255,255,255,.75); }
    .nav-logo-mark {
      width: 34px; height: 34px;
      background: #6366F1;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .nav-logo-agency { font-weight: 800; }
    .nav-logo-kit    { font-weight: 300; letter-spacing: 4px; color: #818CF8; font-size: 13px; }
    #nav.scrolled .nav-logo-kit { color: #6366F1; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-link {
      padding: 6px 14px; border-radius: 8px;
      font-size: 14px; font-weight: 500;
      text-decoration: none; transition: color 0.15s, background 0.15s;
    }
    .nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
    #nav.scrolled .nav-link:hover { color: var(--slate-900); background: var(--slate-100); }
    .nav-cta { display: flex; align-items: center; gap: 10px; }
    @media (max-width: 768px) {
      .nav-links { display: none; }
    }

    /* ── Hero ───────────────────────────────────────────────────────────────── */
    #hero {
      padding: 172px 0 80px; /* ribbon(48) + nav(68) + 56px breathing room */
      background: linear-gradient(160deg, #0F0F1A 0%, #111827 45%, #1E1B4B 100%);
      position: relative; overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    #hero::after {
      content: '';
      position: absolute; bottom: -100px; left: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(99,102,241,.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 1; }
    .hero-eyebrow {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-bottom: 24px;
    }
    .hero-eyebrow-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px; border-radius: 999px;
      background: rgba(99,102,241,.2); border: 1px solid rgba(99,102,241,.35);
      font-size: 12.5px; font-weight: 600; color: #A5B4FC; letter-spacing: .03em;
    }
    .hero-eyebrow-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--emerald);
      box-shadow: 0 0 0 3px rgba(16,185,129,.25);
      animation: pulse-dot 2s infinite;
      flex-shrink: 0;
    }
    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,.25); }
      50% { box-shadow: 0 0 0 6px rgba(16,185,129,.1); }
    }
    .hero-eyebrow-text {
      font-size: 13px; font-weight: 600; color: #A5B4FC; letter-spacing: .03em;
    }
    .hero-h1 {
      font-size: clamp(38px, 6vw, 72px);
      font-weight: 900; line-height: 1.08; letter-spacing: -.03em;
      color: #fff; margin-bottom: 24px;
    }
    .hero-h1 .highlight {
      background: linear-gradient(135deg, #818CF8, #C4B5FD);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: clamp(16px, 2.2vw, 20px); color: #CBD5E1;
      max-width: 560px; margin: 0 auto 40px; line-height: 1.65;
    }
    .hero-cta-row {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 14px; margin-bottom: 20px;
    }
    /* Secondary button on dark hero */
    #hero .btn-secondary {
      background: rgba(255,255,255,.08); color: #E2E8F0;
      border-color: rgba(255,255,255,.15);
    }
    #hero .btn-secondary:hover {
      background: rgba(255,255,255,.14); color: #fff;
      border-color: rgba(255,255,255,.3);
    }
    .hero-trust {
      font-size: 12.5px; color: rgba(255,255,255,.4); margin-top: 8px;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    /* Carousel labels/dots on dark bg */
    #hero .carousel-label {
      background: rgba(255,255,255,.07); color: rgba(255,255,255,.55);
      border-color: transparent;
    }
    #hero .carousel-label.active {
      background: rgba(99,102,241,.25); color: #A5B4FC;
      border-color: rgba(99,102,241,.4);
    }
    #hero .carousel-dot { background: rgba(255,255,255,.25); }
    #hero .carousel-dot.active { background: var(--indigo-l); }

    /* ── Browser Chrome Carousel ────────────────────────────────────────────── */
    .carousel-wrap {
      position: relative; max-width: 960px; margin: 64px auto 0;
      padding: 0 16px;
    }
    .browser-chrome {
      background: #1E1E2E;
      border-radius: 14px 14px 0 0;
      padding: 12px 16px 0;
      display: flex; align-items: center; gap: 8px;
    }
    .chrome-dots { display: flex; gap: 6px; }
    .chrome-dot {
      width: 12px; height: 12px; border-radius: 50%;
    }
    .chrome-dot.red    { background: #FF5F57; }
    .chrome-dot.yellow { background: #FFBD2E; }
    .chrome-dot.green  { background: #28C840; }
    .chrome-bar {
      flex: 1; height: 26px;
      background: rgba(255,255,255,.07);
      border-radius: 5px; margin-left: 8px;
      display: flex; align-items: center; padding: 0 10px;
      font-size: 11.5px; color: rgba(255,255,255,.35);
      font-family: monospace; gap: 6px;
    }
    .chrome-bar-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.18); }
    .carousel-viewport {
      background: #0F172A; border-radius: 0 0 14px 14px;
      overflow: hidden; position: relative;
      box-shadow: var(--shadow-xl);
      aspect-ratio: 16/9;
    }
    .carousel-slide {
      position: absolute; inset: 0;
      opacity: 0; transition: opacity 0.6s ease;
    }
    .carousel-slide.active { opacity: 1; }
    .carousel-slide img {
      width: 100%; height: 100%; object-fit: cover; object-position: top left;
      display: block;
    }
    .carousel-controls {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      margin-top: 20px;
    }
    .carousel-dot {
      width: 8px; height: 8px; border-radius: 999px;
      background: var(--slate-300); border: none; cursor: pointer;
      transition: width 0.3s ease, background 0.3s ease;
      padding: 0;
    }
    .carousel-dot.active {
      width: 28px; background: var(--indigo);
    }
    .carousel-labels {
      display: flex; justify-content: center; gap: 6px;
      margin-top: 14px; flex-wrap: wrap;
    }
    .carousel-label {
      padding: 5px 14px; border-radius: 999px;
      font-size: 12px; font-weight: 500;
      background: var(--slate-100); color: var(--slate-500);
      border: 1.5px solid transparent; cursor: pointer;
      transition: all 0.2s ease;
    }
    .carousel-label.active {
      background: rgba(99,102,241,.1); color: var(--indigo);
      border-color: rgba(99,102,241,.25);
    }

    /* ── Social Proof ───────────────────────────────────────────────────────── */
    #social-proof {
      background: linear-gradient(135deg, #0A0A14 0%, #1E1B4B 100%);
      padding: 64px 0;
    }
    .social-proof-inner {
      display: flex; align-items: center; justify-content: center;
      gap: 0;
    }
    .proof-stat {
      text-align: center;
      flex: 1;
      padding: 0 40px;
    }
    .proof-eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; color: #818CF8;
      margin-bottom: 10px;
    }
    .proof-number {
      font-size: 48px; font-weight: 800; letter-spacing: -.03em;
      line-height: 1;
      background: linear-gradient(135deg, #818CF8, #6366F1);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
    }
    .proof-desc {
      font-size: 13px; color: #4B4B8B; font-weight: 400; line-height: 1.5;
    }
    .proof-divider {
      width: 1px; height: 48px; background: #2D2D5E; flex-shrink: 0;
    }
    @media (max-width: 767px) {
      .social-proof-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }
      .proof-divider { display: none; }
      .proof-stat {
        padding: 32px 24px;
      }
      .proof-stat:nth-child(1),
      .proof-stat:nth-child(3) {
        border-right: 1px solid #2D2D5E;
      }
      .proof-stat:nth-child(3),
      .proof-stat:nth-child(5) {
        border-top: 1px solid #2D2D5E;
      }
      .proof-number { font-size: 36px; }
    }

    /* ── Section base ───────────────────────────────────────────────────────── */
    section { padding: 96px 0; }
    @media (max-width: 768px) { section { padding: 56px 0; } }
    .section-eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--indigo); margin-bottom: 14px;
    }
    .section-h2 {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800; line-height: 1.15; letter-spacing: -.025em;
      color: var(--slate-900); margin-bottom: 18px;
    }
    .section-sub {
      font-size: 17px; color: var(--slate-500); max-width: 560px;
      margin: 0 auto 56px; line-height: 1.65;
    }

    /* ── Problem / Solution ─────────────────────────────────────────────────── */
    #problem { background: var(--slate-900); color: #fff; }
    #problem .section-h2 { color: #fff; }
    #problem .section-sub { color: rgba(255,255,255,.55); }
    .problem-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 24px; margin-bottom: 64px;
    }
    @media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }
    .problem-card {
      padding: 28px; border-radius: var(--radius);
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
    }
    .problem-card-title {
      font-size: 15px; font-weight: 600; color: rgba(255,255,255,.85);
      margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
    }
    .problem-card-body { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; }
    .solution-row {
      display: flex; align-items: center; gap: 40px;
      flex-wrap: wrap;
    }
    .solution-text { flex: 1; min-width: 260px; }
    .solution-h3 {
      font-size: 28px; font-weight: 800; color: #fff;
      margin-bottom: 16px; letter-spacing: -.02em;
    }
    .solution-p { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7; }
    .solution-visual {
      flex: 1; min-width: 260px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .solution-chip {
      padding: 14px 18px; border-radius: 12px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.09);
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.75);
    }
    .solution-chip .chip-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(99,102,241,.25);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      color: var(--indigo-l);
    }

    /* ── Features ───────────────────────────────────────────────────────────── */
    #features { background: var(--slate-50); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px; align-items: stretch;
    }
    @media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
    .feature-card {
      padding: 32px; border-radius: 18px;
      background: #fff; border: 1px solid var(--slate-200);
      transition: box-shadow 0.2s ease, transform 0.2s ease;
      display: flex; flex-direction: column;
    }
    .feature-card:hover {
      box-shadow: var(--shadow-md); transform: translateY(-2px);
    }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; flex-shrink: 0;
    }
    .feature-icon.indigo { background: rgba(99,102,241,.1); color: var(--indigo); }
    .feature-icon.amber  { background: rgba(245,158,11,.1);  color: var(--amber); }
    .feature-icon.emerald{ background: rgba(16,185,129,.1);  color: var(--emerald); }
    .feature-icon.rose   { background: rgba(244,63,94,.1);   color: var(--rose); }
    .feature-icon.violet { background: rgba(139,92,246,.1);  color: #7C3AED; }
    .feature-icon.sky    { background: rgba(14,165,233,.1);  color: #0284C7; }
    .feature-card h3 { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
    .feature-card p  { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

    /* ── How It Works ───────────────────────────────────────────────────────── */
    #how {
      background: linear-gradient(180deg, #fff 0%, var(--slate-50) 100%);
    }
    .steps-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative;
    }
    @media (max-width: 768px) { .steps-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
    @media (max-width: 480px) { .steps-row { grid-template-columns: 1fr; } }
    .steps-row::before {
      content: '';
      position: absolute; top: 32px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
      height: 2px;
      background: linear-gradient(to right, var(--indigo), var(--indigo-l));
      opacity: .25;
      pointer-events: none;
    }
    @media (max-width: 768px) { .steps-row::before { display: none; } }
    .step {
      padding: 0 20px; text-align: center;
    }
    .step-num {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--indigo); color: #fff;
      font-size: 22px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; position: relative; z-index: 1;
      box-shadow: 0 4px 16px rgba(99,102,241,.35);
    }
    .step h3 { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
    .step p   { font-size: 13.5px; color: var(--slate-500); line-height: 1.6; }

    /* ── Testimonials ───────────────────────────────────────────────────────── */
    #testimonials { background: #fff; }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }
    .testimonial-card {
      padding: 30px; border-radius: 18px;
      background: var(--slate-50); border: 1px solid var(--slate-200);
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute; top: 20px; right: 24px;
      font-size: 72px; line-height: 1;
      color: var(--slate-200); font-family: Georgia, serif;
    }
    .stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .star { color: var(--amber); }
    .testimonial-body {
      font-size: 14.5px; color: var(--slate-700); line-height: 1.7;
      margin-bottom: 20px; position: relative; z-index: 1;
    }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: #fff;
      flex-shrink: 0;
    }
    .author-name { font-size: 14px; font-weight: 600; color: var(--slate-900); }
    .author-role { font-size: 12px; color: var(--slate-400); }

    /* ── Pricing ────────────────────────────────────────────────────────────── */
    #pricing { background: var(--slate-50); }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; align-items: stretch;
    }
    @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
    .pricing-card {
      padding: 36px; border-radius: 20px;
      background: #fff; border: 1.5px solid var(--slate-200);
      position: relative; overflow: hidden;
      display: flex; flex-direction: column;
    }
    .pricing-card.popular {
      border-color: var(--indigo);
      transform: scale(1.03);
      box-shadow: 0 12px 48px rgba(99,102,241,.2);
    }
    @media (max-width: 900px) { .pricing-card.popular { transform: none; } }
    .popular-badge {
      position: absolute; top: 0; right: 24px;
      background: var(--indigo); color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: .04em;
      padding: 4px 12px; border-radius: 0 0 8px 8px;
      text-transform: uppercase;
    }
    .pricing-tier { font-size: 13px; font-weight: 600; color: var(--slate-500); margin-bottom: 8px; }
    .pricing-price {
      display: flex; align-items: baseline; gap: 4px;
      margin-bottom: 6px;
    }
    .price-num { font-size: 42px; font-weight: 900; letter-spacing: -.04em; color: var(--slate-900); }
    .price-period { font-size: 14px; color: var(--slate-400); }
    .pricing-orig {
      font-size: 13px; color: var(--slate-400);
      text-decoration: line-through; margin-bottom: 4px;
    }
    .pricing-save {
      font-size: 12px; font-weight: 600; color: var(--emerald);
      margin-bottom: 20px;
    }
    .pricing-desc { font-size: 14px; color: var(--slate-500); margin-bottom: 24px; line-height: 1.6; }
    .pricing-features { list-style: none; margin-bottom: 0; flex: 1; }
    .pricing-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--slate-600); padding: 7px 0;
      border-bottom: 1px solid var(--slate-100);
    }
    .pricing-features li:last-child { border-bottom: none; }
    .check-icon { color: var(--emerald); flex-shrink: 0; margin-top: 1px; }
    .pricing-cta { width: 100%; text-align: center; justify-content: center; margin-top: 28px; }

    /* ── FAQ ────────────────────────────────────────────────────────────────── */
    #faq { background: #fff; }
    .faq-list { max-width: 720px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--slate-100); overflow: hidden;
    }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 0; text-align: left;
      font-size: 16px; font-weight: 600; color: var(--slate-900);
      gap: 20px;
    }
    .faq-q:hover { color: var(--indigo); }
    .faq-chevron {
      flex-shrink: 0; color: var(--slate-400);
      transition: transform 0.3s ease;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--indigo); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s ease;
      font-size: 15px; color: var(--slate-500); line-height: 1.7;
      padding: 0 0 0 0;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

    /* ── Final CTA ──────────────────────────────────────────────────────────── */
    #cta {
      background: linear-gradient(135deg, var(--dark) 0%, #1a1035 50%, #0f0c29 100%);
      padding: 120px 0;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-content { position: relative; z-index: 1; }
    .cta-h2 {
      font-size: clamp(32px, 5vw, 60px);
      font-weight: 900; letter-spacing: -.035em; line-height: 1.1;
      color: #fff; margin-bottom: 20px;
    }
    .cta-sub { font-size: 18px; color: rgba(255,255,255,.55); margin-bottom: 44px; line-height: 1.65; max-width: 500px; margin-left: auto; margin-right: auto; }
    .cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .cta-note { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 16px; }

    /* ── Footer ─────────────────────────────────────────────────────────────── */
    footer {
      background: var(--slate-900); color: rgba(255,255,255,.4);
      padding: 48px 0 32px;
    }
    .footer-inner {
      display: flex; align-items: flex-start; justify-content: space-between;
      flex-wrap: wrap; gap: 32px; padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-logo {
      display: flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 700; color: rgba(255,255,255,.7);
      text-decoration: none;
    }
    .footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
    .footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 12px; }
    .footer-col-links { display: flex; flex-direction: column; gap: 8px; }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-link {
      font-size: 13px; color: rgba(255,255,255,.4);
      text-decoration: none; transition: color 0.15s;
    }
    .footer-link:hover { color: rgba(255,255,255,.7); }
    .footer-copy { font-size: 12px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-copy-links { display: flex; gap: 16px; }
    .footer-copy-links a { font-size: 12px; color: rgba(255,255,255,.25); text-decoration: none; transition: color .15s; }
    .footer-copy-links a:hover { color: rgba(255,255,255,.5); }

    /* ── Mobile sticky bar ───────────────────────────────────────────────────── */
    #sticky-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
      background: rgba(67,56,202,.97);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(255,255,255,.12);
      padding: 12px 20px;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    #sticky-bar.visible { transform: translateY(0); }
    @media (min-width: 769px) { #sticky-bar { display: none; } }
    .sticky-text { font-size: 14px; font-weight: 600; color: #fff; flex: 1; }
    .sticky-sub { font-size: 11px; color: rgba(255,255,255,.45); }

    /* ── Scroll animations ───────────────────────────────────────────────────── */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .fade-up { opacity: 1; transform: none; transition: none; }
    }

    /* ══════════════════════════════════════════════════════════════
       MOBILE OVERHAUL — max-width: 768px
       Desktop (min-width: 769px) is 100% untouched.
    ══════════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* ── No horizontal scroll ─────────────────────────── */
      html, body { overflow-x: hidden; }
      * { max-width: 100%; }

      /* ── FIX 8: Remove sticky bottom bar — hero CTAs enough ─ */
      #sticky-bar { display: none !important; }
      body { padding-bottom: 0 !important; }

      /* ── FIX 6: Hide top announcement ribbon on mobile ────── */
      .announce-ribbon { display: none !important; height: 0 !important; padding: 0 !important; margin: 0 !important; }
      /* Nav was offset by ribbon height (48px) — reset to top */
      #nav { top: 0 !important; }
      /* Hero only needs to clear nav height (~68px) + breathing room */
      #hero { padding-top: 88px !important; }

      /* ── FIX 7 + FIX 1: Navbar — logo + login only ────────── */
      .nav-inner { padding: 0 16px; }
      .nav-links { display: none !important; } /* hide feature/pricing links */
      .nav-logo-mark { width: 28px; height: 28px; border-radius: 7px; }
      .nav-logo-mark svg { width: 18px; height: 18px; }
      .nav-logo-agency { font-size: 14px; }
      .nav-logo-kit { font-size: 10px; letter-spacing: 2px; }
      .nav-cta { gap: 6px; }
      .nav-cta .nav-link {
        font-size: 13px !important;
        white-space: nowrap;
        padding: 6px 8px !important;
        color: #818CF8 !important;
        font-weight: 500 !important;
      }
      /* FIX 7: Hide "Start Free Trial" button in navbar */
      .nav-cta .btn.btn-primary {
        display: none !important;
      }

      /* ── FIX 6: General — sections padding ────────────── */
      section { padding: 48px 0 !important; }
      .container { padding: 0 20px !important; }

      /* ── FIX 6: Hero ──────────────────────────────────── */
      #hero { padding-top: 120px !important; padding-bottom: 56px !important; }
      .hero-h1 { font-size: 30px !important; line-height: 1.2 !important; letter-spacing: -0.02em !important; }
      .hero-sub { font-size: 15px !important; }
      .hero-cta-row {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
      }
      .hero-cta-row .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
      }

      /* ── Section headings ─────────────────────────────── */
      .section-h2 { font-size: 24px !important; line-height: 1.25 !important; }
      .section-sub { font-size: 15px !important; }

      /* ── FIX 2: Comparison table — hide on mobile ─────── */
      .compare-wrap { display: none !important; }
      /* Mobile cards shown instead via HTML below */
      .compare-cards-mobile { display: flex !important; }

      /* ── FIX 3: Final CTA ─────────────────────────────── */
      #cta { padding: 56px 0 !important; }
      .cta-h2 { font-size: 26px !important; line-height: 1.25 !important; }
      .cta-sub { font-size: 15px !important; margin-bottom: 28px !important; }
      .cta-btns {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important;
      }
      .cta-btns .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
      }

      /* ── Pricing grid: single column ──────────────────── */
      .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 420px !important;
        gap: 16px !important;
      }
      .pricing-card.popular { transform: none !important; }

      /* ── Features grid: single column ────────────────── */
      .features-grid { grid-template-columns: 1fr !important; }

      /* ── Problem grid ─────────────────────────────────── */
      .problem-grid { grid-template-columns: 1fr !important; }

      /* ── Solution row: stack ──────────────────────────── */
      .solution-row {
        flex-direction: column !important;
        gap: 28px !important;
      }

      /* ── How it works steps ───────────────────────────── */
      .steps-row { grid-template-columns: 1fr !important; gap: 20px !important; }

      /* ── Testimonials: single col ─────────────────────── */
      .testimonials-grid { grid-template-columns: 1fr !important; }

      /* ── Carousel ─────────────────────────────────────── */
      .carousel-wrap { margin-top: 24px !important; }
      .carousel-viewport img { border-radius: 8px !important; }
      .carousel-labels {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        scrollbar-width: none;
        padding: 4px 0 8px;
        justify-content: flex-start !important;
      }
      .carousel-labels::-webkit-scrollbar { display: none; }
      .carousel-label {
        font-size: 12px !important;
        padding: 6px 10px !important;
        white-space: nowrap !important;
        flex-shrink: 0;
      }

      /* sticky bar is hidden on mobile — no extra styles needed */

      /* ── Footer responsive ────────────────────────────── */
      .footer-inner { flex-direction: column; gap: 24px; }
      .footer-cols { gap: 28px; }
      .footer-copy { flex-direction: column; gap: 8px; text-align: center; }
      .footer-copy-links { flex-wrap: wrap; justify-content: center; }
    }

    /* Compare cards (desktop: hidden) */
    .compare-cards-mobile { display: none; flex-direction: column; gap: 10px; margin-top: 24px; }

    /* ── Announcement ribbon ─────────────────────────────────────────────────── */
    .announce-ribbon {
      background: #4338CA;
      text-align: center; padding: 0 20px;
      height: 48px;
      font-size: 14px; font-weight: 600; color: #fff;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    }
    .announce-ribbon a { color: rgba(255,255,255,.9); font-weight: 700; text-decoration: underline; }

    /* ── Comparison table ────────────────────────────────────────────────────── */
    .compare-wrap {
      overflow-x: auto; border-radius: 16px;
      border: 1px solid var(--slate-200); margin-top: 48px;
    }
    .compare-table { width: 100%; border-collapse: collapse; min-width: 520px; }
    .compare-table th, .compare-table td {
      padding: 14px 20px; text-align: left;
      font-size: 14px; border-bottom: 1px solid var(--slate-100);
    }
    .compare-table th {
      background: var(--slate-50); font-weight: 700;
      color: var(--slate-700); font-size: 13px;
    }
    .compare-table td:first-child { color: var(--slate-800); font-weight: 500; }
    .compare-table .col-them { color: var(--rose); }
    .compare-table .col-us   { color: var(--emerald); font-weight: 600; }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table tr:hover td { background: var(--slate-50); }
