:root {
    --blue:       #0091f7;
    --navy:       #193579;
    --dark:       #020817;
    --cyan:       #10e7e1;
    --white:      #ffffff;
    --gray-50:    #f8fafc;
    --gray-100:   #f1f5f9;
    --gray-200:   #e2e8f0;
    --gray-400:   #94a3b8;
    --gray-500:   #64748b;
    --gray-600:   #475569;
    --gray-800:   #1e293b;
    --gray-900:   #0f172a;
    --text:       #1d2839;
    --muted:      #64748b;
    --strike:     #ef4444;
    --border:     #e2e8f0;
    --radius:     12px;
    --radius-lg:  16px;
    --max:        1140px;
    --font:       'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --shadow:     0 1px 3px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 24px rgba(25,53,121,0.08);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--white);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

  /* ─── HEADER ─────────────────────────────────────────────── */
  .site-header {
    background: var(--navy);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header-inner {
    max-width: var(--max); margin: 0 auto;
    padding: 0 1.25rem;
    height: 65px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none; color: var(--white);
    font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em;
  }
  .logo-icon {
    width: 32px; height: 32px;
    border: 2px solid var(--blue);
    border-radius: 6px 6px 2px 2px;
    position: relative;
  }
  .logo-icon::before {
    content: '';
    position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 10px;
    border: 2px solid var(--blue); border-top: none;
    border-radius: 0 0 2px 2px;
  }
  .logo-icon::after {
    content: '';
    position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--blue);
  }

  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a {
    color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 500;
    text-decoration: none; transition: color .2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--blue); color: var(--white) !important;
    padding: 0.5rem 1rem; border-radius: 8px; font-weight: 600 !important;
  }
  .nav-cta:hover { background: #007ad4; }

  .nav-hamburger {
    display: none; cursor: pointer; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 4px;
  }
  .nav-hamburger span {
    width: 22px; height: 2px; background: var(--white); border-radius: 2px;
    display: block;
  }

  /* ─── BUTTONS ────────────────────────────────────────────── */
  .btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: linear-gradient(90deg, #0091f7 0%, #193579 100%);
    color: var(--white);
    padding: 0 2rem; height: 56px;
    border-radius: var(--radius-lg);
    font-weight: 600; font-size: 1rem;
    text-decoration: none; border: none; cursor: pointer;
    transition: opacity .2s, transform .2s;
    white-space: nowrap;
  }
  .btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }

  .btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--white); color: var(--gray-800);
    padding: 0 2rem; height: 56px;
    border-radius: var(--radius-lg);
    font-weight: 600; font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--gray-200);
    transition: border-color .2s, transform .2s;
    white-space: nowrap;
  }
  .btn-secondary:hover { border-color: var(--gray-400); transform: translateY(-1px); }

  .btn-white {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--white); color: var(--navy);
    padding: 0 2rem; height: 56px;
    border-radius: var(--radius-lg);
    font-weight: 700; font-size: 1rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
  }
  .btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

  /* ─── HERO ───────────────────────────────────────────────── */
  .hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0 0;
    overflow: hidden;
  }
  @media (min-width: 1024px) { .hero { padding-top: 5rem; } }

  .hero-content { text-align: center; max-width: 780px; margin: 0 auto 2.5rem; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(0,145,247,0.08);
    border: 1px solid rgba(0,145,247,0.25);
    color: var(--blue);
    font-size: 0.75rem; font-weight: 600;
    padding: 0.35rem 0.85rem; border-radius: 999px;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 1.25rem;
  }
  .hero h1 .hl-old {
    color: var(--gray-400);
    text-decoration: line-through;
    text-decoration-color: var(--strike);
    text-decoration-thickness: 2px;
    font-weight: 700;
  }
  .hero h1 .hl { color: var(--blue); }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 640px;
    margin-left: auto; margin-right: auto;
  }
  .hero-trust {
    font-size: 0.875rem; color: var(--gray-500);
    margin-bottom: 2rem;
  }

  .hero-btns {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.75rem; margin-bottom: 0.75rem;
  }
  @media (min-width: 640px) {
    .hero-btns { flex-direction: row; justify-content: center; }
  }
  .hero-note { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 3rem; }

  /* hero price cards */
  .price-cards {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--border);
    max-width: var(--max); margin: 0 auto;
  }
  @media (min-width: 768px) {
    .price-cards { grid-template-columns: repeat(3, 1fr); }
  }

  .price-card {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  @media (min-width: 768px) {
    .price-card { border-bottom: none; border-right: 1px solid var(--border); }
    .price-card:last-child { border-right: none; }
  }
  .price-card.featured { background: rgba(0,145,247,0.04); }

  .price-card-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--gray-500);
    margin-bottom: 0.75rem;
  }
  .price-card.featured .price-card-label { color: var(--blue); }

  .price-card-amount {
    font-size: 2.5rem; font-weight: 800;
    line-height: 1; margin-bottom: 0.5rem;
    color: var(--dark);
  }
  .price-card.featured .price-card-amount { color: var(--blue); }
  .price-card.strike .price-card-amount {
    color: var(--gray-400);
    text-decoration: line-through;
    text-decoration-color: var(--strike);
    font-size: 2rem;
  }
  .price-card-amount span { font-size: 1rem; font-weight: 500; color: var(--gray-500); }

  .price-card-desc {
    font-size: 0.875rem; color: var(--muted); line-height: 1.55;
    max-width: 220px; margin: 0 auto;
  }

  /* ─── SECTIONS ───────────────────────────────────────────── */
  section { padding: 4rem 0; }
  @media (min-width: 1024px) { section { padding: 6rem 0; } }

  .section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
  .section-header.left { text-align: left; margin-left: 0; }

  .section-eyebrow {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.15; color: var(--dark);
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: 1.05rem; color: var(--muted); line-height: 1.7;
  }

  /* ─── PAIN SECTION (dark) ────────────────────────────────── */
  .pain-section {
    background: var(--dark);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .pain-section .section-title { color: var(--white); }
  .pain-section .section-sub { color: var(--gray-400); }

  .pain-list {
    list-style: none; max-width: 680px;
    margin: 2.5rem auto 0;
    display: flex; flex-direction: column; gap: 1.25rem;
  }
  .pain-list li {
    display: flex; gap: 1rem; align-items: flex-start;
    font-size: 0.95rem; color: #cbd5e1; line-height: 1.6;
  }
  .pain-list li::before {
    content: '✕'; color: var(--strike);
    font-weight: 700; font-size: 0.85rem;
    flex-shrink: 0; margin-top: 2px;
  }
  .pain-close {
    text-align: center; margin-top: 2.5rem;
    font-size: 1.05rem; font-weight: 600; color: var(--white);
  }
  .pain-close span { color: var(--blue); }

  /* ─── FEATURES ───────────────────────────────────────────── */
  .features-section { background: var(--white); }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  @media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

  .feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow .2s, border-color .2s;
  }
  .feat-card:hover { box-shadow: var(--shadow-md); border-color: rgba(0,145,247,0.3); }

  .feat-icon {
    width: 44px; height: 44px;
    background: rgba(0,145,247,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1rem;
  }
  .feat-card h3 {
    font-size: 1rem; font-weight: 700;
    color: var(--dark); margin-bottom: 0.5rem;
  }
  .feat-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

  /* ─── HIGHLIGHT BAND ─────────────────────────────────────── */
  .highlight-band {
    background: var(--gray-50);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .highlight-inner {
    display: grid; gap: 2rem; align-items: center;
  }
  @media (min-width: 768px) {
    .highlight-inner { grid-template-columns: 1fr 1fr; }
  }
  .highlight-mock {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
  }
  .chat-bubble {
    background: var(--gray-100);
    border-radius: 12px 12px 12px 4px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem; color: var(--gray-800);
    margin-bottom: 0.75rem; max-width: 90%;
  }
  .chat-bubble.reply {
    background: rgba(0,145,247,0.1);
    border-radius: 12px 12px 4px 12px;
    margin-left: auto; color: var(--navy);
  }

  /* ─── COMPARE ────────────────────────────────────────────── */
  .compare-section { background: var(--gray-50); }

  .compare-table-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
  .compare-table th {
    padding: 1rem 1.25rem;
    font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    background: var(--navy); color: var(--white);
    text-align: center;
  }
  .compare-table th:first-child { text-align: left; }
  .compare-table td {
    padding: 0.85rem 1.25rem;
    border-top: 1px solid var(--border);
    text-align: center; color: var(--muted);
  }
  .compare-table td:first-child { text-align: left; color: var(--dark); font-weight: 500; }
  .compare-table .col-us { background: rgba(0,145,247,0.04); color: var(--blue); font-weight: 600; }
  .check { color: var(--blue); font-weight: 700; }
  .cross { color: var(--gray-400); }
  .price-cell { font-size: 1.5rem; font-weight: 800; }
  .price-cell.strike { text-decoration: line-through; color: var(--gray-400); font-size: 1.2rem; }

  /* ─── STEPS ──────────────────────────────────────────────── */
  .steps-section { background: var(--white); }

  .steps-grid {
    display: grid; gap: 1.5rem;
  }
  @media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

  .step-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    background: var(--white);
  }
  .step-num {
    font-size: 2.5rem; font-weight: 800;
    color: rgba(0,145,247,0.15);
    line-height: 1; margin-bottom: 1rem;
  }
  .step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
  .step-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

  /* ─── TRADES ─────────────────────────────────────────────── */
  .trades-section { background: var(--gray-50); }

  .trades-pills {
    display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
  }
  .trade-pill {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--gray-600);
    padding: 0.4rem 0.9rem; border-radius: 999px;
    font-size: 0.8rem; font-weight: 500;
    transition: border-color .2s, color .2s;
  }
  .trade-pill:hover { border-color: var(--blue); color: var(--blue); }

  /* ─── TESTIMONIALS ───────────────────────────────────────── */
  .testimonials-section { background: var(--white); }

  .testimonials-grid {
    display: grid; gap: 1.25rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

  .tcard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
  }
  .stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 1px; }
  .tcard blockquote { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
  .tcard cite { font-style: normal; font-size: 0.8rem; font-weight: 600; color: var(--dark); }

  /* ─── PRICING ────────────────────────────────────────────── */
  .pricing-section { background: var(--gray-50); }

  .pricing-grid {
    display: grid; gap: 1.25rem;
    grid-template-columns: 1fr;
    max-width: 960px; margin: 0 auto;
  }
  @media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

  .plan-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    position: relative;
  }
  .plan-card.featured {
    border: 2px solid var(--blue);
    box-shadow: var(--shadow-md);
  }
  @media (min-width: 768px) {
    .plan-card.featured { transform: scale(1.03); }
  }

  .plan-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: var(--white);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem; border-radius: 999px;
    white-space: nowrap;
  }

  .plan-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
  .plan-desc { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.25rem; min-height: 2.5rem; }

  .plan-price {
    font-size: 2.75rem; font-weight: 800; color: var(--dark);
    line-height: 1; margin-bottom: 0.25rem;
  }
  .plan-card.featured .plan-price { color: var(--blue); }
  .plan-price span { font-size: 0.9rem; font-weight: 500; color: var(--gray-500); }

  .plan-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }

  .plan-features {
    list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .plan-features li {
    display: flex; gap: 0.5rem; align-items: flex-start;
    font-size: 0.8rem; color: var(--muted);
  }
  .plan-features li::before {
    content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0;
  }

  .plan-cta {
    display: block; width: 100%; text-align: center;
    padding: 0.75rem; border-radius: var(--radius);
    font-weight: 600; font-size: 0.875rem;
    text-decoration: none; transition: opacity .2s;
  }
  .plan-cta.primary {
    background: linear-gradient(90deg, #0091f7 0%, #193579 100%);
    color: var(--white);
  }
  .plan-cta.secondary {
    background: var(--white); color: var(--gray-800);
    border: 2px solid var(--gray-200);
  }
  .plan-cta:hover { opacity: 0.9; }

  .pricing-note {
    text-align: center; margin-top: 1.5rem;
    font-size: 0.8rem; color: var(--gray-400);
  }

  /* ─── FAQ ────────────────────────────────────────────────── */
  .faq-section { background: var(--white); }

  .faq-list { max-width: 700px; margin: 0 auto; }

  .faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
  .faq-q {
    font-size: 0.95rem; font-weight: 700; color: var(--dark);
    cursor: pointer; display: flex;
    justify-content: space-between; align-items: center; gap: 1rem;
  }
  .faq-q .arrow { color: var(--blue); font-size: 1.1rem; transition: transform .25s; flex-shrink: 0; }
  .faq-item.open .faq-q .arrow { transform: rotate(45deg); }
  .faq-a {
    color: var(--muted); font-size: 0.875rem; line-height: 1.7;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .35s;
  }
  .faq-item.open .faq-a { max-height: 300px; padding-top: 0.75rem; }

  /* ─── STORY ──────────────────────────────────────────────── */
  .story-section { background: var(--white); border-top: 1px solid var(--border); }
  .story-inner { max-width: 720px; margin: 0 auto; text-align: center; }
  .story-inner p { font-size: 1rem; color: var(--muted); line-height: 1.8; }

  /* ─── CTA BAND ───────────────────────────────────────────── */
  .cta-band {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 5rem 1.25rem;
  }
  .cta-band .section-title { color: var(--white); margin-bottom: 1rem; }
  .cta-band .section-sub { color: rgba(255,255,255,0.85); margin: 0 auto 2rem; max-width: 520px; }
  .cta-band .hero-note { color: rgba(255,255,255,0.65); margin-top: 1rem; }

  /* ─── FOOTER ─────────────────────────────────────────────── */
  .site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 0 2rem;
  }
  .footer-grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
  }
  @media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

  .footer-brand .logo { margin-bottom: 0.75rem; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 280px; }
  .footer-trust {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 1.25rem; font-size: 0.8rem;
  }
  .footer-trust span::before { content: '✓ '; color: var(--cyan); }

  .footer-col h4 {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--white);
    margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a {
    font-size: 0.85rem; color: rgba(255,255,255,0.65);
    text-decoration: none; transition: color .2s;
  }
  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
    font-size: 0.8rem;
  }

  /* ─── MOBILE NAV ─────────────────────────────────────────── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: absolute; top: 65px; left: 0; right: 0;
      background: var(--navy);
      padding: 1.5rem 1.25rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      gap: 1rem; align-items: flex-start;
    }
  }

  .nav-links a.active { color: var(--white); font-weight: 600; }

  /* ─── SUBPAGE HERO ───────────────────────────────────────── */
  .page-hero {
    background: linear-gradient(180deg, var(--navy) 0%, #0f2555 100%);
    color: var(--white);
    padding: 4rem 0 3.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  @media (min-width: 1024px) { .page-hero { padding: 5rem 0 4rem; } }
  .page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.15; margin-bottom: 1rem;
  }
  .page-hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.75);
    max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.7;
  }
  .breadcrumb {
    font-size: 0.8rem; color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
  }
  .breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
  .breadcrumb a:hover { color: var(--white); }

  /* ─── DETAIL BLOCKS ──────────────────────────────────────── */
  .detail-block {
    display: grid; gap: 2.5rem; align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
  }
  .detail-block:last-child { border-bottom: none; }
  @media (min-width: 768px) {
    .detail-block { grid-template-columns: 1fr 1fr; }
    .detail-block.reverse .detail-content { order: 2; }
    .detail-block.reverse .detail-visual { order: 1; }
  }
  .detail-content h3 {
    font-size: 1.35rem; font-weight: 800; color: var(--dark);
    margin-bottom: 0.75rem; letter-spacing: -0.02em;
  }
  .detail-content p {
    font-size: 0.95rem; color: var(--muted); line-height: 1.75;
    margin-bottom: 1rem;
  }
  .detail-list {
    list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
  }
  .detail-list li {
    font-size: 0.875rem; color: var(--muted);
    display: flex; gap: 0.5rem; align-items: flex-start;
  }
  .detail-list li::before {
    content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0;
  }
  .detail-visual {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    font-size: 3rem;
  }

  .trade-grid {
    display: grid; gap: 1.25rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) { .trade-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .trade-grid { grid-template-columns: repeat(3, 1fr); } }

  .trade-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow .2s, border-color .2s;
  }
  .trade-card:hover { box-shadow: var(--shadow-md); border-color: rgba(0,145,247,0.3); }
  .trade-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .trade-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
  .trade-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

  .values-grid {
    display: grid; gap: 1.25rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
  .value-card {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .value-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
  .value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

  .inline-cta {
    text-align: center; padding: 3rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .inline-cta p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1rem; }

  .timeline { max-width: 700px; margin: 0 auto; }
  .timeline-item {
    display: flex; gap: 1.5rem;
    padding-bottom: 2rem;
    border-left: 2px solid var(--border);
    margin-left: 1.25rem;
    padding-left: 2rem;
    position: relative;
  }
  .timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
  .timeline-item::before {
    content: '';
    position: absolute; left: -7px; top: 4px;
    width: 12px; height: 12px;
    background: var(--blue); border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--blue);
  }
  .timeline-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
  .timeline-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
  .timeline-day {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--blue); margin-bottom: 0.25rem;
  }

  /* ─── AI AUDIT TEASER ────────────────────────────────────── */
  .audit-teaser {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .audit-teaser-inner {
    display: flex; flex-direction: column; gap: 1.5rem;
    align-items: flex-start;
  }
  @media (min-width: 768px) {
    .audit-teaser-inner {
      flex-direction: row; align-items: center; justify-content: space-between;
    }
  }
  .audit-teaser .section-eyebrow { color: var(--cyan); }
  .audit-teaser .section-title {
    color: var(--white); font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-bottom: 0.5rem;
  }
  .audit-teaser .section-sub {
    color: var(--gray-400); max-width: 520px; margin: 0;
    font-size: 0.95rem;
  }
  .audit-teaser .section-sub strong { color: var(--white); font-weight: 600; }
  .audit-teaser .btn-primary { flex-shrink: 0; }

  /* ─── AUDIT FORM ─────────────────────────────────────────── */
  .audit-form-wrap {
    max-width: 560px; margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
  }
  @media (min-width: 640px) { .audit-form-wrap { padding: 2.5rem; } }

  .audit-form label {
    display: block; font-size: 0.8rem; font-weight: 600;
    color: var(--dark); margin-bottom: 0.35rem;
  }
  .audit-form .field { margin-bottom: 1.25rem; }
  .audit-form input,
  .audit-form select,
  .audit-form textarea {
    width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--border); border-radius: var(--radius);
    font-family: var(--font); font-size: 0.9rem; color: var(--dark);
    background: var(--white);
    transition: border-color .2s;
  }
  .audit-form input:focus,
  .audit-form select:focus,
  .audit-form textarea:focus {
    outline: none; border-color: var(--blue);
  }
  .audit-form textarea { min-height: 100px; resize: vertical; }
  .audit-form .field-hint {
    font-size: 0.75rem; color: var(--gray-400); margin-top: 0.35rem;
  }
  .audit-form .btn-primary { width: 100%; }
  .audit-form-success {
    display: none; text-align: center; padding: 2rem 1rem;
  }
  .audit-form-success.show { display: block; }
  .audit-form-success h3 {
    font-size: 1.25rem; font-weight: 700; color: var(--dark);
    margin-bottom: 0.5rem;
  }
  .audit-form-success p { font-size: 0.9rem; color: var(--muted); }
  .audit-form.hidden { display: none; }

  .audit-eligibility {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(16,231,225,0.12);
    border: 1px solid rgba(16,231,225,0.3);
    color: var(--cyan);
    font-size: 0.75rem; font-weight: 600;
    padding: 0.35rem 0.85rem; border-radius: 999px;
    margin-bottom: 1rem;
  }
