/* SocialProof shared landing page styles */

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

    :root {
      --purple: #6C5CE7;
      --purple-light: #a29bfe;
      --dark: #0f0e17;
      --darker: #0a0910;
      --mid: #1e1c2e;
      --text: #e8e6f0;
      --muted: #9ca3af;
      --border: rgba(108,92,231,0.2);
      --card-bg: rgba(255,255,255,0.04);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
    }

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

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
    }
    .nav-logo img {
      width: 28px;
      height: 28px;
      border-radius: 6px;
    }
    .nav-logo span { color: var(--purple); }

    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color 0.2s; }
    .nav-links a:hover { color: var(--text); }

    .btn {
      display: inline-block; padding: 10px 22px; border-radius: 8px;
      font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer;
      transition: all 0.2s; border: none;
    }
    .btn-primary { background: var(--purple); color: #fff; }
    .btn-primary:hover { background: #7c6ff7; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(108,92,231,0.4); }
    .btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
    .btn-outline:hover { border-color: var(--purple-light); color: var(--purple-light); }
    .btn-large { padding: 14px 32px; font-size: 17px; border-radius: 10px; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      padding: 120px 6% 80px;
      background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(108,92,231,0.15) 0%, transparent 70%);
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 14px; border-radius: 20px;
      border: 1px solid var(--border); background: rgba(108,92,231,0.1);
      font-size: 13px; color: var(--purple-light); margin-bottom: 28px;
    }

    .hero h1 {
      font-size: clamp(38px, 6vw, 72px);
      font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
      max-width: 14ch; margin: 0 auto 20px;
    }
    .hero h1 em { color: var(--purple); font-style: normal; }

    .hero p {
      font-size: clamp(17px, 2vw, 21px);
      color: var(--muted); max-width: 46ch; margin: 0 auto 40px;
    }

    .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

    /* Mock testimonial cards */
    .mock-cards {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      max-width: 900px; margin: 0 auto;
    }

    .mock-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 20px 22px;
      width: 260px; text-align: left;
      backdrop-filter: blur(8px);
    }
    .mock-card .stars { color: #f59e0b; font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
    .mock-card .quote { font-size: 14px; color: var(--text); line-height: 1.5; margin-bottom: 14px; }
    .mock-card .author { display: flex; align-items: center; gap: 10px; }
    .mock-card .avatar {
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: #fff;
    }
    .mock-card .name { font-size: 13px; font-weight: 600; }
    .mock-card .role { font-size: 12px; color: var(--muted); }

    /* ── SECTION BASE ── */
    section { padding: 96px 6%; }
    .section-label {
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      color: var(--purple-light); text-transform: uppercase; margin-bottom: 14px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 44px); font-weight: 800;
      letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px;
    }
    .section-sub { font-size: 18px; color: var(--muted); max-width: 50ch; }
    .text-center { text-align: center; }
    .text-center .section-sub { margin: 0 auto; }

    /* ── HOW IT WORKS ── */
    .how-it-works { background: var(--mid); }
    .steps {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2px; margin-top: 56px;
      border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    }
    .step {
      padding: 36px 28px;
      background: var(--card-bg);
      position: relative;
    }
    .step-num {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      color: var(--purple-light); text-transform: uppercase; margin-bottom: 14px;
    }
    .step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
    .step p { font-size: 15px; color: var(--muted); line-height: 1.5; }
    .step-icon { font-size: 32px; margin-bottom: 16px; }

    /* ── FEATURES ── */
    .features-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px; margin-top: 56px;
    }
    .feature-tile {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 28px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .feature-tile:hover { border-color: var(--purple); transform: translateY(-2px); }
    .feature-icon { font-size: 28px; margin-bottom: 14px; }
    .feature-tile h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
    .feature-tile p { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* ── PRICING ── */
    .pricing { background: var(--mid); }
    .pricing-cards {
      display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
      margin-top: 56px;
    }
    .pricing-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px; padding: 36px 32px;
      width: 320px; position: relative;
    }
    .pricing-card.featured {
      border-color: var(--purple);
      background: rgba(108,92,231,0.08);
    }
    .featured-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--purple); color: #fff;
      font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px;
    }
    .plan-name { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
    .plan-price { font-size: 48px; font-weight: 800; letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
    .plan-price span { font-size: 18px; font-weight: 400; color: var(--muted); }
    .plan-desc { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
    .plan-features { list-style: none; margin-bottom: 32px; }
    .plan-features li {
      font-size: 15px; padding: 8px 0;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 10px;
    }
    .plan-features li::before { content: '✓'; color: var(--purple-light); font-weight: 700; }
    .plan-features li.muted { color: var(--muted); }
    .plan-features li.muted::before { content: '—'; color: var(--muted); }
    .w-full { width: 100%; text-align: center; }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(135deg, #1a1537 0%, #0d0b1e 50%, #1a1537 100%);
      text-align: center; padding: 100px 6%;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .cta-banner h2 {
      font-size: clamp(32px, 5vw, 56px); font-weight: 800;
      letter-spacing: -1px; margin-bottom: 16px;
    }
    .cta-banner p { font-size: 18px; color: var(--muted); margin-bottom: 40px; }

    /* ── FOOTER ── */
    footer {
      padding: 40px 6%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
      border-top: 1px solid var(--border);
    }
    footer a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    footer a:hover { color: var(--text); }
    .footer-links { display: flex; gap: 24px; }
    .footer-copy { font-size: 13px; color: var(--muted); }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .nav-links .btn-outline { display: none; }
      .mock-cards { flex-direction: column; align-items: center; }
      .mock-card { width: 100%; max-width: 320px; }
      .pricing-card { width: 100%; max-width: 360px; }
    }

    /* ── LIVE DEMO ── */
    .live-demo { padding: 96px 24px; text-align: center; background: var(--bg); }
    .demo-controls { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin: 40px 0 32px; }
    .demo-toggle-group { display: flex; align-items: center; gap: 8px; background: var(--mid); border-radius: 10px; padding: 4px 4px 4px 12px; }
    .demo-toggle-label { font-size: 13px; color: var(--muted); font-weight: 500; }
    .demo-btn { background: none; border: none; padding: 6px 14px; border-radius: 7px; font-size: 13px; font-weight: 500; color: var(--muted); cursor: pointer; transition: all 0.15s; }
    .demo-btn.active { background: var(--purple); color: #fff; }
    .demo-btn:hover:not(.active) { background: rgba(255,255,255,0.06); color: var(--text); }
    .demo-stage { max-width: 900px; margin: 0 auto; min-height: 200px; padding: 8px; }
    .demo-code { max-width: 620px; margin: 32px auto 0; text-align: left; }
    .demo-code-label { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
    .demo-code-block { background: var(--mid); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 16px 20px; font-family: 'SF Mono', 'Fira Code', monospace; font-size: 13px; color: var(--purple-light); overflow-x: auto; margin: 0; white-space: pre; }

  
    /* ── BLOG / ARTICLE STYLES ── */
    /* Alias variables used by blog post pages */
    :root {
      --primary: var(--purple);
      --primary-light: var(--purple-light);
      --surface: var(--mid);
      --bg: var(--dark);
      --card: rgba(255,255,255,0.04);
    }

    /* Article layout */
    .article-wrap { max-width: 780px; margin: 0 auto; padding: 80px 24px 100px; }
    .article-wrap h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 16px; color: var(--text); }
    .article-wrap .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
    .article-wrap h2 { font-size: 1.4rem; font-weight: 700; margin: 48px 0 12px; letter-spacing: -0.02em; color: var(--text); }
    .article-wrap h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 8px; color: var(--purple-light); }
    .article-wrap p { margin-bottom: 16px; line-height: 1.75; color: var(--text); }
    .article-wrap ul, .article-wrap ol { line-height: 1.75; margin-bottom: 16px; padding-left: 24px; }
    .article-wrap li { margin-bottom: 8px; color: var(--text); }
    .article-wrap strong { color: var(--text); font-weight: 600; }
    .article-wrap a { color: var(--purple-light); text-decoration: none; }
    .article-wrap a:hover { text-decoration: underline; }

    /* Table of Contents */
    .toc { background: var(--mid); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; margin: 32px 0; }
    .toc h3 { margin-top: 0; margin-bottom: 12px; font-size: 1rem; color: var(--purple-light); }
    .toc ol { margin: 0; }
    .toc li { color: var(--muted); }
    .toc a { color: var(--purple-light); }

    /* Callout boxes — override light-mode inline styles */
    .callout { background: rgba(108,92,231,0.08) !important; border-left: 4px solid var(--purple) !important; border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0; font-size: 0.95rem; color: var(--text) !important; }
    .callout strong { color: var(--purple-light) !important; }

    /* Example / quote boxes */
    .example-box { background: var(--mid) !important; border: 1px solid var(--border) !important; border-radius: 12px; padding: 24px 28px; margin: 24px 0; }
    .example-box .quote { font-style: italic; font-size: 1.05rem; line-height: 1.65; margin-bottom: 12px; color: var(--text); }
    .example-box .byline { font-size: 0.85rem; color: var(--muted); }

    /* Stat rows / cards */
    .stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
    .stat-card { background: var(--mid) !important; border: 1px solid var(--border) !important; border-radius: 12px; padding: 20px 24px; }
    .stat-card .num { font-size: 1.8rem; font-weight: 800; color: var(--purple-light); }
    .stat-card .label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

    /* CTA blocks in articles */
    .cta-block { background: var(--purple) !important; color: white !important; border-radius: 16px; padding: 40px; text-align: center; margin: 56px 0 32px; }
    .cta-block h2 { color: white !important; margin-top: 0; }
    .cta-block p { color: rgba(255,255,255,0.85) !important; margin-bottom: 24px; }
    .cta-btn { display: inline-block; background: white; color: var(--purple) !important; font-weight: 700; padding: 14px 32px; border-radius: 8px; text-decoration: none !important; font-size: 1rem; }
    .cta-btn:hover { background: var(--purple-light) !important; color: white !important; text-decoration: none !important; }

    /* Code snippets */
    .article-wrap code { background: var(--mid); padding: 2px 7px; border-radius: 4px; font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.88em; color: var(--purple-light); border: 1px solid var(--border); }
    pre { background: var(--mid) !important; border: 1px solid var(--border); border-radius: 8px; padding: 20px; overflow-x: auto; margin: 20px 0; }
    pre code { background: none; border: none; padding: 0; font-size: 0.9rem; color: var(--text); }

    /* Stat boxes (alternate naming) */
    .stat-box { background: var(--mid) !important; border: 1px solid var(--border) !important; border-radius: 12px; padding: 20px 24px; }
    .stat-box .stat-num { font-size: 2rem; font-weight: 800; color: var(--purple-light); }
    .stat-box .stat-label { font-size: 0.85rem; color: var(--muted); }

    /* Tables in articles */
    .article-wrap table { width: 100%; border-collapse: collapse; margin: 24px 0; }
    .article-wrap th { background: var(--mid); padding: 10px 14px; text-align: left; font-weight: 600; color: var(--purple-light); border: 1px solid var(--border); font-size: 0.9rem; }
    .article-wrap td { padding: 10px 14px; border: 1px solid var(--border); font-size: 0.9rem; color: var(--text); }
    .article-wrap tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

    /* Blockquotes */
    .article-wrap blockquote { border-left: 3px solid var(--purple); padding: 12px 20px; margin: 24px 0; background: rgba(108,92,231,0.06); border-radius: 0 8px 8px 0; }
    .article-wrap blockquote p { color: var(--muted); font-style: italic; margin: 0; }

    /* ── FAQ PAGE ── */
    .faq-hero { padding: 100px 24px 48px; text-align: center; max-width: 720px; margin: 0 auto; }
    .faq-hero h1 { font-size: 2.5rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
    .faq-hero p { font-size: 1.2rem; color: var(--muted); }
    .faq-container { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
    .faq-section-title { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple-light); margin: 48px 0 16px; }
    .faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
    .faq-item:last-child { border-bottom: none; }
    .faq-question { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
    .faq-answer { font-size: 1rem; color: var(--muted); line-height: 1.7; }
    .faq-answer a { color: var(--purple-light); text-decoration: underline; }
    .faq-answer code { background: var(--mid); padding: 2px 6px; border-radius: 4px; font-size: 0.9rem; font-family: monospace; color: var(--purple-light); border: 1px solid var(--border); }
    .faq-cta { background: rgba(108,92,231,0.12); border: 1px solid var(--border); border-radius: 12px; padding: 40px 32px; text-align: center; margin-top: 60px; }
    .faq-cta h2 { color: var(--text); margin-bottom: 12px; }
    .faq-cta p { color: var(--muted); margin-bottom: 24px; }

    /* ── ARTICLE RESPONSIVE ── */
    @media (max-width: 600px) {
      .stat-row { grid-template-columns: 1fr; }
      .article-wrap { padding-top: 80px; }
      .faq-hero { padding-top: 90px; }
    }

    /* ── BLOG / ARTICLE STYLES ── */
    /* Alias variables used by blog post pages */
    :root {
      --primary: var(--purple);
      --primary-light: var(--purple-light);
      --surface: var(--mid);
      --bg: var(--dark);
    }

    /* Article layout */
    .article-wrap { max-width: 780px; margin: 0 auto; padding: 80px 24px 100px; }
    .article-wrap h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 16px; color: var(--text); }
    .article-wrap .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
    .article-wrap h2 { font-size: 1.4rem; font-weight: 700; margin: 48px 0 12px; letter-spacing: -0.02em; color: var(--text); }
    .article-wrap h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 8px; color: var(--purple-light); }
    .article-wrap p { margin-bottom: 16px; line-height: 1.75; color: var(--text); }
    .article-wrap ul, .article-wrap ol { line-height: 1.75; margin-bottom: 16px; padding-left: 24px; }
    .article-wrap li { margin-bottom: 8px; color: var(--text); }
    .article-wrap strong { color: var(--text); font-weight: 600; }
    .article-wrap a { color: var(--purple-light); text-decoration: none; }
    .article-wrap a:hover { text-decoration: underline; }

    /* Table of Contents */
    .toc { background: var(--mid); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; margin: 32px 0; }
    .toc h3 { margin-top: 0; margin-bottom: 12px; font-size: 1rem; color: var(--purple-light); }
    .toc ol { margin: 0; }
    .toc li { color: var(--muted); }
    .toc a { color: var(--purple-light); }

    /* Callout boxes */
    .callout { background: rgba(108,92,231,0.08) !important; border-left: 4px solid var(--purple) !important; border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0; font-size: 0.95rem; color: var(--text) !important; }
    .callout strong { color: var(--purple-light) !important; }

    /* Example / quote boxes */
    .example-box { background: var(--mid) !important; border: 1px solid var(--border) !important; border-radius: 12px; padding: 24px 28px; margin: 24px 0; }
    .example-box .quote { font-style: italic; font-size: 1.05rem; line-height: 1.65; margin-bottom: 12px; color: var(--text); }
    .example-box .byline { font-size: 0.85rem; color: var(--muted); }

    /* Stat rows / cards */
    .stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
    .stat-card { background: var(--mid) !important; border: 1px solid var(--border) !important; border-radius: 12px; padding: 20px 24px; }
    .stat-card .num { font-size: 1.8rem; font-weight: 800; color: var(--purple-light); }
    .stat-card .label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

    /* CTA blocks in articles */
    .cta-block { background: var(--purple) !important; color: white !important; border-radius: 16px; padding: 40px; text-align: center; margin: 56px 0 32px; }
    .cta-block h2 { color: white !important; margin-top: 0; }
    .cta-block p { color: rgba(255,255,255,0.85) !important; margin-bottom: 24px; }
    .cta-btn { display: inline-block; background: white; color: var(--purple) !important; font-weight: 700; padding: 14px 32px; border-radius: 8px; text-decoration: none !important; font-size: 1rem; }
    .cta-btn:hover { background: var(--purple-light) !important; color: white !important; text-decoration: none !important; }

    /* Code */
    .article-wrap code { background: var(--mid); padding: 2px 7px; border-radius: 4px; font-family: 'SF Mono','Fira Code',monospace; font-size: 0.88em; color: var(--purple-light); border: 1px solid var(--border); }
    pre { background: var(--mid) !important; border: 1px solid var(--border); border-radius: 8px; padding: 20px; overflow-x: auto; margin: 20px 0; }
    pre code { background: none; border: none; padding: 0; font-size: 0.9rem; color: var(--text); }

    /* Stat boxes */
    .stat-box { background: var(--mid) !important; border: 1px solid var(--border) !important; border-radius: 12px; padding: 20px 24px; }
    .stat-box .stat-num { font-size: 2rem; font-weight: 800; color: var(--purple-light); }
    .stat-box .stat-label { font-size: 0.85rem; color: var(--muted); }

    /* Tables */
    .article-wrap table { width: 100%; border-collapse: collapse; margin: 24px 0; }
    .article-wrap th { background: var(--mid); padding: 10px 14px; text-align: left; font-weight: 600; color: var(--purple-light); border: 1px solid var(--border); font-size: 0.9rem; }
    .article-wrap td { padding: 10px 14px; border: 1px solid var(--border); font-size: 0.9rem; color: var(--text); }
    .article-wrap tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

    /* Blockquotes */
    .article-wrap blockquote { border-left: 3px solid var(--purple); padding: 12px 20px; margin: 24px 0; background: rgba(108,92,231,0.06); border-radius: 0 8px 8px 0; }
    .article-wrap blockquote p { color: var(--muted); font-style: italic; margin: 0; }

    /* ── FAQ PAGE ── */
    .faq-hero { padding: 100px 24px 48px; text-align: center; max-width: 720px; margin: 0 auto; }
    .faq-hero h1 { font-size: 2.5rem; font-weight: 700; color: var(--text) !important; margin-bottom: 16px; }
    .faq-hero p { font-size: 1.2rem; color: var(--muted) !important; }
    .faq-container { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
    .faq-section-title { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple-light) !important; margin: 48px 0 16px; }
    .faq-item { border-bottom: 1px solid var(--border) !important; padding: 20px 0; }
    .faq-item:last-child { border-bottom: none; }
    .faq-question { font-size: 1.1rem; font-weight: 600; color: var(--text) !important; margin-bottom: 10px; }
    .faq-answer { font-size: 1rem; color: var(--muted) !important; line-height: 1.7; }
    .faq-answer a { color: var(--purple-light) !important; text-decoration: underline; }
    .faq-answer code { background: var(--mid) !important; padding: 2px 6px; border-radius: 4px; font-size: 0.9rem; font-family: monospace; color: var(--purple-light) !important; border: 1px solid var(--border) !important; }
    .faq-cta { background: rgba(108,92,231,0.12) !important; border: 1px solid var(--border) !important; border-radius: 12px; padding: 40px 32px; text-align: center; margin-top: 60px; }
    .faq-cta h2 { color: var(--text) !important; margin-bottom: 12px; }
    .faq-cta p { color: var(--muted) !important; margin-bottom: 24px; }

    /* ── ARTICLE RESPONSIVE ── */
    @media (max-width: 600px) {
      .stat-row { grid-template-columns: 1fr; }
      .article-wrap { padding-top: 80px; }
      .faq-hero { padding-top: 90px; }
    }
