/* ─── RESET & BASE ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: #52525B;
      background: #fff;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ─── UTILITIES ────────────────────────────────── */
    .container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

    /* ─── NAV ──────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: #ffffff;
      border-bottom: 1px solid #F4F4F5;
    }
    .nav-inner {
      max-width: 1152px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      height: 60px;
    }
    .nav-logo {
      font-size: 1.1rem; font-weight: 700; color: #18181B; letter-spacing: -0.02em;
    }
    .nav-logo span { color: #B45309; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { font-size: 0.875rem; font-weight: 500; color: #71717A; transition: color 0.15s; }
    .nav-links a:hover { color: #18181B; }
    .nav-links .nav-login { color: #52525B; }
    .nav-cta {
      background: #18181B; color: #fff;
      font-size: 0.875rem; font-weight: 600;
      padding: 8px 16px; border-radius: 8px;
      transition: background 0.15s;
    }
    .nav-cta:hover { background: #3F3F46; }
    .nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
    .nav-burger span { display: block; width: 22px; height: 2px; background: #18181B; border-radius: 2px; margin: 5px 0; }

    /* ─── HERO ─────────────────────────────────────── */
    .hero {
      padding-top: 144px; padding-bottom: 112px;
      background: #ffffff; text-align: center;
    }
    .hero-eyebrow {
      display: inline-block;
      border: 1px solid #E4E4E7; background: #ffffff;
      border-radius: 999px; padding: 6px 16px;
      font-size: 0.75rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: #A1A1AA; margin-bottom: 32px;
    }
    h1 {
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
      color: #18181B; max-width: 720px; margin: 0 auto 24px;
    }
    .hero-sub {
      font-size: 1.125rem; color: #71717A; line-height: 1.7;
      max-width: 520px; margin: 0 auto 40px; font-weight: 400;
    }
    .hero-ctas {
      display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
      margin-bottom: 16px;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: #292524; color: #fff;
      padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 1rem;
      transition: background 0.15s;
    }
    .btn-primary:hover { background: #18181B; }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      color: #71717A; font-weight: 500; font-size: 1rem;
      transition: color 0.15s;
    }
    .btn-secondary:hover { color: #18181B; }
    .hero-trust {
      font-size: 0.875rem; color: #A1A1AA; margin-top: 4px;
    }
    /* Hero stats */
    .hero-stats {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 32px; margin-top: 64px;
    }
    .hero-stat-number {
      font-size: 1.875rem; font-weight: 800; color: #B45309; display: block;
    }
    .hero-stat-label {
      font-size: 0.875rem; font-weight: 400; color: #71717A; margin-top: 2px; display: block;
    }

    /* ─── TRUST STRIP ──────────────────────────────── */
    .trust-strip {
      padding: 40px 0;
      border-top: 1px solid #F4F4F5;
      border-bottom: 1px solid #F4F4F5;
      background: #FAFAF9;
    }
    .trust-strip-eyebrow {
      text-align: center;
      font-size: 0.75rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: #A1A1AA; margin-bottom: 20px;
    }
    .trust-strip-items {
      display: flex; flex-wrap: wrap; align-items: center;
      justify-content: center; gap: 32px;
    }
    .trust-strip-items span {
      font-size: 0.875rem; font-weight: 500; color: #52525B;
    }

    /* ─── PAIN POINTS ──────────────────────────────── */
    .pain-section { padding: 96px 0; background: #ffffff; }
    .section-eyebrow {
      font-size: 0.75rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: #A1A1AA; margin-bottom: 16px; display: block;
    }
    h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700;
      letter-spacing: -0.025em; line-height: 1.2;
      color: #18181B; margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1.125rem; color: #71717A; line-height: 1.7;
      max-width: 560px; margin-bottom: 48px;
    }
    .pain-grid {
      display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr);
    }
    .pain-card {
      background: #ffffff; border: 1px solid #F4F4F5;
      border-radius: 12px; padding: 32px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .pain-card:hover { border-color: #E4E4E7; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .pain-icon {
      width: 44px; height: 44px; border-radius: 8px;
      background: #F5F5F4; display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; margin-bottom: 20px;
    }
    .pain-card h3 { font-size: 1.125rem; font-weight: 600; color: #18181B; margin-bottom: 10px; }
    .pain-card p { font-size: 0.9rem; color: #71717A; line-height: 1.65; margin-bottom: 14px; }
    .pain-impact { font-size: 0.875rem; font-weight: 500; color: #B45309; }

    /* ─── FEATURES ─────────────────────────────────── */
    .features-section { padding: 96px 0; background: #FAFAF9; }
    .features-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    }
    .feature-card {
      background: #ffffff; border: 1px solid #F4F4F5;
      border-radius: 12px; padding: 32px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
      transition: border-color 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .feature-card:hover { border-color: #E4E4E7; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .feature-ordinal {
      position: absolute; top: 32px; right: 32px;
      font-size: 0.75rem; font-weight: 500; color: #D4D4D8;
    }
    .feature-icon {
      width: 44px; height: 44px; border-radius: 8px;
      background: #F5F5F4; display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; margin-bottom: 20px;
    }
    .feature-card h3 { font-size: 1.125rem; font-weight: 700; color: #18181B; margin-bottom: 6px; }
    .feature-subtitle { font-size: 0.875rem; font-weight: 500; color: #A1A1AA; margin-bottom: 12px; }
    .feature-card p { font-size: 0.9rem; color: #71717A; line-height: 1.65; }
    .features-banner {
      margin-top: 32px; background: #F5F5F4; border-radius: 12px; padding: 32px 40px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
    }
    .features-banner-stats { display: flex; gap: 40px; }
    .banner-stat-number { font-size: 1.875rem; font-weight: 800; color: #B45309; display: block; }
    .banner-stat-label { font-size: 0.875rem; color: #71717A; display: block; margin-top: 2px; }

    /* ─── RNQ COVERAGE ─────────────────────────────── */
    .rnq-section { padding: 96px 0; background: #ffffff; }
    .rnq-categories { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 32px; }
    .rnq-cat {
      background: #FAFAF9; border: 1px solid #F4F4F5;
      border-radius: 12px; padding: 24px;
    }
    .rnq-cat-title {
      font-size: 0.875rem; font-weight: 600; color: #18181B;
      margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
    }
    .rnq-badges { display: flex; flex-wrap: wrap; gap: 6px; }
    .rnq-badge {
      padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 600;
      background: #F5F5F4; color: #52525B; border: 1px solid #E4E4E7;
    }
    .rnq-badge.required {
      background: #FFFBEB; color: #B45309; border-color: #FDE68A;
    }
    .rnq-legend { display: flex; gap: 24px; margin-bottom: 32px; }
    .rnq-legend span { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #71717A; }
    .legend-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
    .legend-dot.required { background: #B45309; }
    .legend-dot.all { background: #A1A1AA; }
    .rnq-cta-banner {
      background: #F5F5F4; border-radius: 12px; padding: 40px 48px;
      display: flex; align-items: center; justify-content: space-between; gap: 32px;
    }
    .rnq-cta-banner h3 { font-size: 1.25rem; font-weight: 700; color: #18181B; margin-bottom: 8px; }
    .rnq-cta-banner p { font-size: 0.95rem; color: #71717A; }
    .btn-dark {
      display: inline-flex; align-items: center; gap: 8px;
      background: #292524; color: #fff; white-space: nowrap;
      padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
      transition: background 0.15s; flex-shrink: 0;
    }
    .btn-dark:hover { background: #18181B; }

    /* ─── TESTIMONIALS ─────────────────────────────── */
    .testi-section { padding: 96px 0; background: #FAFAF9; }
    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .testi-card {
      background: #ffffff; border: 1px solid #F4F4F5;
      border-radius: 12px; padding: 32px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    .testi-stars { color: #B45309; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
    .testi-text { font-size: 0.95rem; color: #52525B; line-height: 1.7; margin-bottom: 24px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: #F5F5F4;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.85rem; color: #52525B; flex-shrink: 0;
    }
    .testi-name { font-weight: 600; font-size: 0.875rem; color: #18181B; }
    .testi-role { font-size: 0.8rem; color: #A1A1AA; margin-top: 2px; }

    /* ─── PRICING ──────────────────────────────────── */
    .pricing-section { padding: 96px 0; background: #ffffff; }
    .pricing-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      max-width: 768px; margin: 0 auto 48px;
    }
    .pricing-stat-card {
      background: #FAFAF9; border: 1px solid #F4F4F5;
      border-radius: 12px; padding: 24px; text-align: center;
    }
    .pricing-stat-number { font-size: 1.875rem; font-weight: 800; color: #B45309; margin-bottom: 4px; }
    .pricing-stat-label { font-size: 0.875rem; color: #71717A; }
    .pricing-plans {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
      max-width: 896px; margin: 0 auto;
    }
    .plan-card {
      border-radius: 12px; overflow: hidden;
      border: 1px solid #E4E4E7;
      background: #ffffff;
    }
    .plan-header-light { background: #FAFAF9; padding: 32px; border-bottom: 1px solid #F4F4F5; }
    .plan-header-dark { background: #3F3F46; padding: 32px; }
    .plan-label {
      font-size: 0.75rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: #A1A1AA; margin-bottom: 12px; display: block;
    }
    .plan-label-dark { color: rgba(255,255,255,0.5); }
    .plan-price { display: flex; align-items: baseline; gap: 8px; }
    .plan-price-number { font-size: 3rem; font-weight: 800; color: #3F3F46; }
    .plan-price-number-light { color: #ffffff; }
    .plan-price-unit { font-size: 1.25rem; color: #A1A1AA; }
    .plan-price-unit-light { color: rgba(255,255,255,0.6); }
    .plan-desc { font-size: 0.875rem; color: #71717A; margin-top: 4px; }
    .plan-desc-dark { color: rgba(255,255,255,0.6); }
    .plan-badge {
      display: inline-block; margin-top: 12px;
      background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
      font-size: 0.75rem; font-weight: 500;
      padding: 4px 12px; border-radius: 999px;
    }
    .plan-cta-light {
      display: block; width: 100%; text-align: center;
      margin-top: 24px; padding: 12px;
      border: 1px solid #E4E4E7; border-radius: 8px;
      font-size: 0.875rem; font-weight: 600; color: #3F3F46;
      transition: background 0.15s, border-color 0.15s;
    }
    .plan-cta-light:hover { background: #FAFAF9; border-color: #D4D4D8; }
    .plan-cta-dark {
      display: block; width: 100%; text-align: center;
      margin-top: 24px; padding: 14px;
      background: #292524; border-radius: 8px;
      font-size: 1rem; font-weight: 600; color: #ffffff;
      transition: background 0.15s;
    }
    .plan-cta-dark:hover { background: #18181B; }
    .plan-body { padding: 32px; }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .plan-features li { display: flex; gap: 10px; font-size: 0.875rem; color: #52525B; align-items: flex-start; }
    .plan-check { color: #A1A1AA; flex-shrink: 0; margin-top: 1px; }
    .plan-check-amber { color: #B45309; flex-shrink: 0; margin-top: 1px; }
    .plan-guarantee {
      padding: 20px; background: #FAFAF9; border: 1px solid #F4F4F5; border-radius: 12px;
    }
    .plan-guarantee-title { font-size: 0.875rem; font-weight: 600; color: #18181B; margin-bottom: 4px; }
    .plan-guarantee-text { font-size: 0.875rem; color: #71717A; }
    .plan-note { font-size: 0.75rem; color: #A1A1AA; text-align: center; margin-top: 12px; }

    /* ─── FAQ ──────────────────────────────────────── */
    .faq-section { padding: 96px 0; background: #FAFAF9; }
    .faq-list { max-width: 720px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid #E4E4E7; }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; font-size: 1rem; font-weight: 600; color: #18181B;
      text-align: left; font-family: 'DM Sans', sans-serif;
    }
    .faq-icon { font-size: 1.1rem; color: #A1A1AA; transition: transform 0.25s; flex-shrink: 0; margin-left: 16px; }
    .faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
    .faq-a p { padding: 0 0 22px; font-size: 0.95rem; color: #71717A; line-height: 1.7; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-item.open .faq-a { max-height: 400px; }

    /* ─── FINAL CTA ─────────────────────────────────── */
    .cta-section { padding: 96px 0; background: #ffffff; text-align: center; }
    .cta-section h2 { max-width: 560px; margin: 16px auto; }
    .cta-section .section-sub { margin: 0 auto 40px; }
    .cta-features {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 40px;
    }
    .cta-feature {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.875rem; color: #71717A; font-weight: 500;
    }
    .cta-check { color: #B45309; }

    /* ─── FOOTER ────────────────────────────────────── */
    footer {
      background: #09090B; color: #71717A;
      padding: 80px 0 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 64px;
    }
    .footer-logo {
      font-size: 1.1rem; font-weight: 700; color: #ffffff; letter-spacing: -0.02em;
      display: inline-block; margin-bottom: 12px;
    }
    .footer-logo span { color: #B45309; }
    .footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 240px; color: #71717A; }
    .footer-col h4 {
      font-size: 0.75rem; font-weight: 600; color: #ffffff;
      text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 0.875rem; color: #71717A; transition: color 0.15s; }
    .footer-col a:hover { color: #E4E4E7; }
    .footer-bottom {
      border-top: 1px solid #27272A; padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 0.8rem; color: #52525B; }

    /* ─── RESPONSIVE ────────────────────────────────── */
    @media (max-width: 1024px) {
      .pain-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .rnq-categories { grid-template-columns: repeat(2,1fr); }
      .testi-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .pricing-plans { grid-template-columns: 1fr; max-width: 480px; }
      .pricing-stats { grid-template-columns: 1fr; max-width: 320px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-burger { display: block; }
      .nav-mobile {
        display: none; position: absolute; top: 60px; left: 0; right: 0;
        background: #ffffff; border-bottom: 1px solid #F4F4F5;
        padding: 20px 24px;
      }
      .nav-mobile.open { display: flex; flex-direction: column; gap: 16px; }
      .nav-mobile a { font-size: 1rem; color: #52525B; font-weight: 500; padding: 8px 0; }
      .nav-mobile .nav-cta { text-align: center; }
      .hero { padding-top: 112px; padding-bottom: 80px; }
      h1 { font-size: 2.25rem; }
      .hero-stats { gap: 24px; }
      .rnq-categories { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .rnq-cta-banner { flex-direction: column; }
      .features-banner { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; }
    }