/* ==========================================================================
   Fix It Reviews — design system
   Teal/cyan identity carried verbatim from the build spec (CLAUDE.md §2/§4).
   Single stylesheet for the whole marketing site. No build step.
   ========================================================================== */

:root {
  /* Teal / cyan accents (brand core) */
  --teal:       #0e7490;
  --teal-dark:  #155e75;
  --teal-deep:  #0c4a6e;
  --teal-light: #e0f2fe;
  --cyan-tint:  #f0f9ff;

  /* Green (success / confirmation only) */
  --green:      #10b981;
  --green-dark: #059669;

  /* Slate / neutral text scale */
  --slate:     #1e3a4f;
  --slate-900: #0f2942;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1e293b;

  --amber: #d97706;
  --red:   #dc2626;
  --white: #ffffff;

  --radius:    8px;
  --shadow:    0 1px 2px rgba(15,41,66,.04), 0 2px 8px rgba(15,41,66,.05);
  --shadow-lg: 0 6px 24px rgba(15,41,66,.08);

  --serif: 'Libre Franklin', system-ui, -apple-system, sans-serif;
  --sans:  'Libre Franklin', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--slate);
  letter-spacing: -.02em;
  line-height: 1.12;
  font-weight: 800;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Section rhythm */
section { padding: 96px 0; }
.section-soft  { background: linear-gradient(180deg, #ffffff, #f8fcff); }
.section-soft2 { background: linear-gradient(180deg, #f8fcff, #ffffff); }

.head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.head.left { margin-left: 0; text-align: left; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

h2 { font-size: clamp(30px, 4vw, 46px); }
.head h2 { margin-bottom: 16px; }

.subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
}
.head.left .subtitle { margin: 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn:active { transform: scale(.98); }
.btn-green { background: var(--teal-dark); color: #fff; }
.btn-green:hover { background: var(--teal-deep); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-text {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 17px;
  color: var(--slate);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.nav-logo-text span { display: block; font-weight: 600; font-size: 12px; color: var(--teal); letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-700); }
.nav-links a:hover { color: var(--teal); }

.btn-quiz-pill {
  background: var(--teal-dark);
  color: #fff !important;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 600;
}
.btn-quiz-pill:hover { background: var(--teal-deep); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--slate); border-radius: 2px; transition: .2s; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background:
    radial-gradient(1200px 500px at 50% -10%, #d3edfb 0%, transparent 60%),
    linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero .subtitle { font-size: 19px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust { margin-top: 22px; font-size: 13px; color: var(--gray-500); }

/* page-header (inner pages) */
.page-header {
  padding: 72px 0 64px;
  text-align: center;
  background:
    radial-gradient(1200px 500px at 50% -10%, #d3edfb 0%, transparent 60%),
    linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}
.page-header h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.page-header p { font-size: 17px; color: var(--gray-600); max-width: 660px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--cyan-tint);
  border: 1px solid var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--teal); }
.card h3 { font-size: 19px; margin-bottom: 8px; color: var(--slate); }
.card p { font-size: 14.5px; color: var(--gray-600); line-height: 1.6; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--teal-dark);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label { margin-top: 10px; font-size: 14px; color: var(--gray-600); font-weight: 500; }

/* --------------------------------------------------------------------------
   Credentials bar
   -------------------------------------------------------------------------- */
.credentials { background: #fff; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 28px 0; }
.credentials-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
}
.credentials-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--gray-700); }
.credentials-list svg { width: 20px; height: 20px; stroke: var(--teal); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Two-column feature rows (science / how-it-works / expert)
   -------------------------------------------------------------------------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.narrow { gap: 64px; }

.badge-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cyan-tint);
  border: 1px solid var(--teal-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px; font-weight: 600; color: var(--teal-dark);
}
.badge svg { width: 18px; height: 18px; stroke: var(--teal); flex-shrink: 0; }

.feature-visual {
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  background:
    linear-gradient(to top, rgba(15,41,66,.82) 0%, rgba(15,41,66,.15) 45%, rgba(15,41,66,.05) 100%),
    linear-gradient(135deg, var(--teal-dark), var(--teal));
  position: relative;
  display: flex; align-items: flex-end;
  padding: 28px;
}
.feature-visual .vcap { color: #fff; font-weight: 600; font-size: 15px; }

.prose-block h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.prose-block p { color: var(--gray-700); line-height: 1.8; margin-bottom: 14px; }

/* how-it-works steps */
.hiw-steps { display: flex; flex-direction: column; gap: 26px; }
.hiw-step { display: flex; gap: 18px; align-items: flex-start; }
.hiw-num {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--teal);
  color: #fff;
  font-family: var(--serif);
  font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hiw-step h3 { font-size: 18px; margin-bottom: 4px; color: var(--slate); }
.hiw-step p { font-size: 14.5px; color: var(--gray-600); }

/* --------------------------------------------------------------------------
   Accent (invert) sections
   -------------------------------------------------------------------------- */
.accent {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
}
.accent h2, .accent h3 { color: #fff; }
.accent .section-label { color: rgba(255,255,255,.85); }
.accent .subtitle { color: rgba(255,255,255,.85); }

.research-grid, .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.research-card, .testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.research-card .stat-num { color: var(--teal-dark); }
.research-card h3 { font-size: 16px; color: var(--slate); margin-top: 8px; margin-bottom: 8px; }
.research-card p { font-size: 14px; color: var(--gray-600); }

.disclaimer-note {
  margin-top: 32px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,.9);
}

/* testimonials */
.testimonial-card .stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { color: var(--gray-700); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-meta .who { font-weight: 700; font-size: 14px; color: var(--slate); }
.testimonial-meta .where { font-size: 13px; color: var(--gray-500); }

/* --------------------------------------------------------------------------
   Compare table
   -------------------------------------------------------------------------- */
.compare-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--gray-200); }
.compare-table thead th { background: var(--gray-400); color: #fff; font-weight: 700; }
.compare-table thead th:first-child { background: var(--slate); }
.compare-table thead th.highlight { background: var(--teal); }
.compare-table td.highlight { background: var(--cyan-tint); }
.compare-table tbody td:first-child { font-weight: 600; color: var(--slate); }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: var(--red); font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }

/* --------------------------------------------------------------------------
   mid-cta band
   -------------------------------------------------------------------------- */
.mid-cta { padding: 72px 0; }
.mid-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.mid-cta h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 640px; }
.mid-cta p { color: rgba(255,255,255,.85); margin-top: 8px; max-width: 560px; }

/* --------------------------------------------------------------------------
   match steps
   -------------------------------------------------------------------------- */
.match-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.match-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 800; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.match-step h3 { font-size: 19px; margin-bottom: 8px; }
.match-step p { font-size: 14.5px; color: var(--gray-600); }

/* --------------------------------------------------------------------------
   condition / service pills
   -------------------------------------------------------------------------- */
.condition-pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pill {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 15px; font-weight: 600;
  color: var(--gray-700);
  transition: .2s;
}
.pill:hover { border-color: var(--teal); color: var(--teal); background: var(--cyan-tint); }

/* --------------------------------------------------------------------------
   benefits
   -------------------------------------------------------------------------- */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.benefit-card {
  display: flex; gap: 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: var(--cyan-tint);
  border: 1px solid var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.benefit-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--slate); }
.benefit-card p { font-size: 14.5px; color: var(--gray-600); }

/* --------------------------------------------------------------------------
   expert trust list
   -------------------------------------------------------------------------- */
.trust-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.trust-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--gray-700); }
.trust-list svg { width: 22px; height: 22px; stroke: var(--green); flex-shrink: 0; margin-top: 1px; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-search {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 15px;
  font-family: var(--sans);
  margin-bottom: 24px;
  background: #fff;
}
.faq-search:focus { outline: none; border-color: var(--teal); }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--slate);
  text-align: left;
}
.faq-chevron {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s, color .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--teal); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--gray-600); font-size: 15px; line-height: 1.7; }

/* --------------------------------------------------------------------------
   providers (B2B)
   -------------------------------------------------------------------------- */
.providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.providers-card {
  background: var(--slate-900);
  color: #fff;
  border-radius: 12px;
  padding: 40px 36px;
}
.providers-card h3 { color: #fff; font-size: 22px; margin-bottom: 14px; }
.providers-card ul { display: flex; flex-direction: column; gap: 12px; margin: 18px 0 26px; }
.providers-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,.85); }
.providers-card li svg { width: 20px; height: 20px; stroke: var(--green); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   final-cta
   -------------------------------------------------------------------------- */
#final-cta { background: linear-gradient(180deg, #ffffff, #f8fcff); }
.final-cta-card {
  background: var(--cyan-tint);
  border: 1px solid var(--teal-light);
  border-radius: 12px;
  padding: 64px 40px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.urgency-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid var(--teal-light);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px; font-weight: 700; color: var(--teal-dark);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 20px;
}
.final-cta-card h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.final-cta-card p { color: var(--gray-600); font-size: 17px; max-width: 560px; margin: 0 auto 28px; }

/* --------------------------------------------------------------------------
   Prose / legal (inner pages)
   -------------------------------------------------------------------------- */
.prose-section { padding: 72px 0 96px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(24px, 3vw, 34px); margin: 36px 0 14px; }
.prose h3 { font-size: 20px; margin: 28px 0 10px; color: var(--slate); }
.prose p { font-size: 16px; line-height: 1.8; color: var(--gray-700); margin-bottom: 16px; }
.prose ul.bullets { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose ul.bullets li { margin-bottom: 8px; color: var(--gray-700); }

.legal-section { padding: 56px 0 96px; }
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 22px; margin: 30px 0 12px; }
.legal p { font-size: 15px; line-height: 1.8; color: var(--gray-700); margin-bottom: 14px; }
.legal .updated { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }

.note-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px 18px;
  color: #92400e;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 20px 0;
}

/* values grid (about) */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.value-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--slate); }
.value-card p { font-size: 14.5px; color: var(--gray-600); }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.post-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.post-card .post-body { padding: 24px; }
.post-card .post-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-dark); }
.post-card h3 { font-size: 18px; margin: 8px 0; color: var(--slate); }
.post-card p { font-size: 14.5px; color: var(--gray-600); }

.post-cta {
  background: var(--cyan-tint);
  border: 1px solid var(--teal-light);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  margin: 36px 0;
}
.post-cta h3 { font-size: 20px; color: var(--slate); }
.post-cta p { font-size: 14.5px; color: var(--gray-600); margin-top: 4px; }

.post article p { margin-bottom: 16px; line-height: 1.8; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer { background: var(--slate-900); color: rgba(255,255,255,.7); padding: 56px 0 40px; }
.footer-disclaimer-title { font-weight: 700; color: #fff; font-size: 14px; margin-bottom: 8px; }
.medical-disclaimer { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 900px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 28px 0; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.7); }
.footer-links a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .two-col, .providers-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .match-grid { grid-template-columns: 1fr; gap: 28px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .feature-visual { min-height: 260px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px 0; width: 100%; }
  .btn-quiz-pill { margin-top: 8px; }
  section { padding: 64px 0; }
  .mid-cta .container { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 64px 0 50px; }
  .final-cta-card { padding: 44px 24px; }
  .compare-table th, .compare-table td { padding: 12px 12px; font-size: 13px; }
}
