/* ============================================================
   FQintel — Landing page styles
   Page-specific styles only. Shared tokens, resets, and the
   utility-bar / nav / button / footer / reveal chrome live in
   css/theme.css (loaded site-wide by the base layout).
   ============================================================ */

  /* ─── HERO ─────────────────────────────────────────────────── */
  .hero {
    padding: 40px 0 40px;
    position: relative;
    overflow: hidden;
  }
  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--ink-mute);
    display: inline-block;
  }

  .hero h1 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-top: 0;
    max-width: 16ch;
    color: var(--ink);
  }
  .hero h1 em {
    font-style: normal;
    font-weight: 600;
    color: var(--navy);
  }

  .hero-sub {
    margin-top: 18px;
    max-width: 48ch;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.5;
    color: var(--ink-soft);
    font-weight: 400;
  }
  .hero-sub-second {
    margin-top: 10px;
    max-width: 48ch;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-mute);
  }

  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
  }
  .hero-text { min-width: 0; }
  .hero-visual { min-width: 0; }

  .hero-device {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--rule);
    box-shadow: 0 28px 64px -32px rgba(20, 37, 107, 0.22), 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    aspect-ratio: 16 / 11;
  }
  .hero-device-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--rule);
    background: var(--tint);
    flex-shrink: 0;
  }
  .hero-device-dots { display: flex; gap: 6px; }
  .hero-device-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #D5D0C3;
    display: block;
  }
  .hero-device-url {
    flex: 1;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
    margin-left: 6px;
    text-align: center;
    padding-right: 51px; /* offset for visual symmetry vs left dots */
  }
  .hero-device-screen {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: var(--paper);
  }
  .hero-device-screen img {
    width: 118%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top left;
  }

  .cta-row {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cta-note {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }

  /* Data ticker */
  .ticker {
    margin-top: 110px;
    padding: 36px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .ticker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .ticker-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .ticker-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
  }
  .ticker-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .ticker-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
  .ticker-value {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--ink);
  }

  /* ─── SHOWCASE CAROUSEL ───────────────────────────────────── */
  .showcase {
    padding: 120px 0 110px;
    background: var(--paper-tint);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
  }
  .showcase-head {
    text-align: center;
    margin-bottom: 40px;
  }
  .showcase-head .eyebrow {
    display: inline-flex;
  }
  .showcase-head h2 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-top: 24px;
    color: var(--ink);
  }
  .showcase-head h2 em {
    font-style: normal;
    color: var(--navy);
    font-weight: 600;
  }
  .showcase-frame {
    position: relative;
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
  }
  .showcase-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .showcase-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
  }
  .showcase-caption {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
    padding: 0 16px;
  }
  .showcase-icon {
    margin: 0 auto 22px;
    width: 44px;
    height: 44px;
    display: block;
  }
  .showcase-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .showcase-label {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .showcase-caption h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(24px, 2.8vw, 34px);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--ink);
  }
  .showcase-caption p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-soft);
  }
  .showcase-caption .blur-note {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-mute);
    background: rgba(20, 37, 107, 0.06);
    padding: 5px 10px;
    border-radius: 2px;
  }
  .showcase-stage {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    background: var(--paper);
    padding: 6px;
    box-shadow:
      0 30px 60px -25px rgba(14,14,15,0.18),
      0 10px 25px -10px rgba(14,14,15,0.08);
  }
  .showcase-stage::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky) 0% 38%, var(--navy) 38% 100%);
    clip-path: polygon(0 0, 100% 0, 99% 100%, 0 100%);
    z-index: 2;
  }
  .showcase-stage img {
    width: 100%;
    height: auto;
    display: block;
  }
  .showcase-controls {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .showcase-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--rule-strong);
    background: var(--paper);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
  }
  .showcase-arrow:hover {
    background: var(--ink);
    border-color: var(--ink);
  }
  .showcase-arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--ink);
    transition: stroke 0.2s;
  }
  .showcase-arrow:hover svg { stroke: var(--paper); }
  .showcase-dots {
    display: flex;
    gap: 10px;
  }
  .showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rule-strong);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }
  .showcase-dot.active {
    background: var(--navy);
    transform: scale(1.5);
  }
  .showcase-counter {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    min-width: 56px;
    text-align: center;
  }

  /* ─── SECTION FRAMEWORK ───────────────────────────────────── */
  section.standard { padding: 130px 0; border-bottom: 1px solid var(--rule); }
  .section-num {
    font-family: var(--mono);
    font-size: 17px;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 500;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
  }
  .section-num span:first-child {
    color: var(--navy);
    font-weight: 600;
    font-size: 19px;
  }
  .section-num span:last-child {
    text-transform: uppercase;
  }

  /* ─── WHY WE EXIST ────────────────────────────────────────── */
  .why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .why-heading {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }
  .why-heading em {
    font-style: normal;
    color: var(--navy);
    font-weight: 600;
  }
  .why-body {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 12px;
  }

  /* ─── WHAT'S INSIDE ───────────────────────────────────────── */
  .features-intro {
    max-width: 720px;
    margin-bottom: 72px;
  }
  .features-intro h2 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--rule);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .feature {
    background: var(--paper);
    padding: 36px 32px 40px;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s;
    position: relative;
  }
  .feature:hover { background: var(--paper-tint); }
  .feature.wide { grid-column: span 3; background: var(--ink); color: var(--paper); }
  .feature.wide:hover { background: var(--navy-deep); }
  .feature.tall { grid-column: span 3; }

  .feature-visual {
    height: 84px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .feature-visual svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
  }

  .feature-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
  }
  .feature.wide .feature-num { color: var(--sky-soft); }

  .feature h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.18;
    margin-top: 4px;
    font-variation-settings: "opsz" 60, "SOFT" 40;
  }
  .feature.wide h3 { font-size: 34px; line-height: 1.1; }

  .feature p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-mute);
  }
  .feature.wide p { color: rgba(255,255,255,0.72); font-size: 16px; }

  /* ─── WHO IT'S FOR ────────────────────────────────────────── */
  .audiences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .audience {
    border-top: 1px solid var(--ink);
    padding-top: 32px;
  }
  .audience-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
  }
  .audience-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .audience h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-variation-settings: "opsz" 60, "SOFT" 40;
  }
  .audience p {
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* ─── WHY WE BUILT IT ─────────────────────────────────────── */
  .built-by {
    background: var(--paper-tint);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .built-by-inner {
    max-width: 880px;
  }
  .built-by .section-num { margin-bottom: 56px; }
  .built-by h2 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.025em;
  }
  .built-by h2 em {
    font-style: normal;
    color: var(--navy);
    font-weight: 600;
  }
  .built-by p {
    margin-top: 32px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
  }
  .built-by p + p { margin-top: 22px; }

  /* ─── PRICING ─────────────────────────────────────────────── */
  .pricing-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }
  .pricing-head h2 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .pricing-head h2 em {
    font-style: normal;
    color: var(--navy);
    font-weight: 600;
  }
  .pricing-head p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
    padding-bottom: 8px;
  }

  .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .plan {
    border: 1px solid var(--rule-strong);
    background: var(--paper);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    min-height: 460px;
  }
  .plan.featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    position: relative;
  }
  .plan-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }
  .plan.featured .plan-tag { color: var(--sky); }
  .plan-name {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-top: 8px;
    font-variation-settings: "opsz" 60, "SOFT" 40;
  }
  .plan-price {
    margin-top: 28px;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .plan-price .amount {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 350;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variation-settings: "opsz" 144, "SOFT" 30;
  }
  .plan-price .unit {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }
  .plan.featured .plan-price .unit { color: var(--sky-soft); }

  .plan-seats {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--ink-mute);
    font-family: var(--mono);
    letter-spacing: 0.02em;
  }
  .plan.featured .plan-seats { color: var(--sky-soft); }

  .plan hr {
    margin: 28px 0;
    border: none;
    border-top: 1px solid var(--rule-strong);
  }
  .plan.featured hr { border-top-color: rgba(247,243,235,0.18); }

  .plan-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    flex: 1;
  }
  .plan.featured .plan-desc { color: rgba(247,243,235,0.78); }

  .plan-cta {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
  }
  .plan-cta:hover { background: var(--ink); color: var(--paper); }
  .plan.featured .plan-cta {
    border-color: var(--sky);
    color: var(--sky);
  }
  .plan.featured .plan-cta:hover { background: var(--sky); color: var(--ink); }

  /* ─── COMPARISON TABLE ────────────────────────────────────── */
  .compare {
    margin-top: 80px;
  }
  .compare-head {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .compare-head h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.15;
  }
  .compare-head p {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-mute);
  }
  .compare-wrap {
    overflow-x: auto;
    border-top: 1px solid var(--ink);
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 740px;
  }
  .compare-table th,
  .compare-table td {
    padding: 20px 22px;
    text-align: center;
    border-bottom: 1px solid var(--rule);
    font-size: 17px;
    vertical-align: middle;
    color: var(--ink);
  }
  .compare-table thead th {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 20px;
    padding: 30px 22px;
    border-bottom: 2px solid var(--ink);
    letter-spacing: -0.01em;
    text-align: center;
  }
  .compare-table thead .price {
    display: block;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-mute);
    margin-top: 6px;
    letter-spacing: 0.05em;
  }
  .compare-table thead .col-pro {
    background: var(--ink);
    color: var(--paper);
    position: relative;
  }
  .compare-table thead .col-pro .price { color: var(--sky-soft); }
  .compare-table thead .col-pro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--sky);
  }
  .compare-table th.row-label,
  .compare-table td.row-label {
    text-align: left;
    font-weight: 400;
    color: var(--ink-soft);
    width: 38%;
    padding-left: 4px;
  }
  .compare-table thead th.row-label { border-bottom-color: var(--ink); }
  .compare-table tbody tr.group-row td {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 30px 4px 12px;
    text-align: left;
    border-bottom: 1px solid var(--rule-strong);
    font-weight: 600;
  }
  .compare-table tbody tr:not(.group-row):hover td:not(.col-pro) {
    background: rgba(14,14,15,0.018);
  }
  .compare-table td.col-pro {
    background: rgba(20, 37, 107, 0.035);
  }
  .compare-table tbody tr:not(.group-row):hover td.col-pro {
    background: rgba(20, 37, 107, 0.07);
  }
  .check-icon {
    width: 23px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
  }
  .compare-table .dash {
    color: var(--ink-mute);
    opacity: 0.4;
    font-size: 23px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
  }
  .compare-table .text-val {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
  }
  .compare-table .footnote-row td {
    padding-top: 22px;
    padding-bottom: 0;
    border-bottom: none;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink-mute);
    text-align: left;
    letter-spacing: 0.03em;
  }

  /* ─── FQHC DISCOUNT BAND ──────────────────────────────────── */
  .fqhc-offer {
    margin-top: 56px;
    background: var(--tint);
    border: 1px solid var(--rule-strong);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
  }
  .fqhc-offer .copy { max-width: 60ch; }
  .fqhc-offer .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .fqhc-offer .eyebrow svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  .fqhc-offer .copy h3 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--ink);
    font-variation-settings: "opsz" 60, "SOFT" 40;
  }
  .fqhc-offer .copy p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
  }
  .fqhc-offer .fqhc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .fqhc-offer .fqhc-cta:hover { background: var(--navy); transform: translateY(-1px); }

  /* ─── FAQ ─────────────────────────────────────────────────── */
  .faq-head {
    max-width: 600px;
    margin-bottom: 64px;
  }
  .faq-head h2 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
  }
  .faq-item {
    border-top: 1px solid var(--rule);
    padding: 28px 0;
  }
  .faq-item h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    font-variation-settings: "opsz" 60, "SOFT" 40;
  }
  .faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* ─── FINAL CTA ───────────────────────────────────────────── */
  .final {
    background: var(--ink);
    color: var(--paper);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--sky) 0%, var(--sky) 38%, var(--navy) 38%, var(--navy) 100%);
    clip-path: polygon(0 0, 100% 0, 99% 100%, 0 100%);
  }
  .final-inner {
    max-width: 880px;
  }
  .final .eyebrow { color: var(--sky-soft); }
  .final .eyebrow::before { background: var(--sky-soft); }
  .final h2 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-top: 32px;
  }
  .final h2 em {
    font-style: normal;
    color: var(--sky);
    font-weight: 600;
  }
  .final-cta-row {
    margin-top: 56px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }
  .final .btn-primary {
    background: var(--sky);
    color: var(--ink);
  }
  .final .btn-primary:hover { background: var(--paper); }
  .final .btn-secondary {
    color: var(--paper);
    border-bottom-color: var(--paper);
  }
  .final .btn-secondary:hover { border-color: var(--sky); }

  /* ─── RESPONSIVE ──────────────────────────────────────────── */
  @media (max-width: 980px) {
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { padding: 60px 0 50px; }
    .hero-layout { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { order: 2; max-width: 560px; margin: 0 auto; width: 100%; }
    .hero-text { order: 1; }
    .ticker { margin-top: 70px; }
    .ticker-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    section.standard { padding: 80px 0; }
    .showcase { padding: 70px 0; }
    .showcase-head { margin-bottom: 40px; }
    .showcase-caption { margin-bottom: 28px; }
    .showcase-caption h3 { font-size: 22px; }
    .showcase-caption p { font-size: 14.5px; }
    .showcase-controls { margin-bottom: 28px; gap: 18px; }
    .showcase-stage { padding: 4px; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature, .feature.wide, .feature.tall { grid-column: span 1; }
    .audiences { grid-template-columns: 1fr; gap: 32px; }
    .pricing-head { grid-template-columns: 1fr; gap: 24px; }
    .plans { grid-template-columns: 1fr; }
    .compare { margin-top: 56px; }
    .compare-table thead th { font-size: 17px; padding: 22px 14px; }
    .compare-table th, .compare-table td { padding: 16px 14px; font-size: 15.5px; }
    .faq-grid { grid-template-columns: 1fr; gap: 0; }
    .fqhc-offer { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
    .fqhc-offer .copy h3 { font-size: 24px; }
    .final { padding: 90px 0; }
    footer .container { flex-direction: column; align-items: flex-start; }
    .footer-meta { text-align: left; }
  }
