/* =========================================================
   GetCompQuotes.com — styles.css
   Fintech aesthetic: white space · navy trust · emerald action
   ========================================================= */

/* ── VARIABLES ── */
:root {
  --navy-900: #0b2242;
  --navy-800: #0e2d55;
  --navy-700: #123765;
  --navy-400: #3a5f8a;
  --navy-100: #eaf0fb;
  --emerald-500: #0e9f6e;
  --emerald-600: #0b8a60;
  --emerald-100: #e7f6f0;
  --ink: #102033;
  --muted: #5f6f85;
  --line: #dce5f3;
  --white: #ffffff;
  --bg: #f6f9ff;
  --shadow-sm: 0 4px 14px rgba(11,34,66,0.08);
  --shadow-md: 0 18px 45px rgba(11,34,66,0.12);
  --shadow-lg: 0 28px 60px rgba(11,34,66,0.16);
  --radius-sm: 0.6rem;
  --radius-md: 1rem;
  --radius-lg: 1.4rem;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 60%, #f6f9ff 100%);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* ── LAYOUT ── */
.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.center { text-align: center; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  color: var(--navy-900);
  line-height: 1.2;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--emerald-600);
  margin: 0 0 0.7rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 62ch;
}

.muted { color: var(--muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 0;
  background: var(--emerald-500);
  color: var(--white);
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--emerald-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,159,110,0.3);
}

.btn-sm { padding: 0.6rem 1rem; font-size: 0.95rem; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.1rem; }
.btn-white { background: #fff; color: var(--navy-900); }
.btn-white:hover { background: #f0f5ff; box-shadow: 0 6px 20px rgba(11,34,66,0.15); }

.btn-ghost {
  background: var(--navy-100);
  color: var(--navy-700);
}

.btn-ghost:hover {
  background: #dce7fb;
  transform: translateY(-1px);
  box-shadow: none;
}

.btn[disabled], .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.93);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-dot { color: var(--emerald-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--navy-700);
  font-weight: 600;
}

.nav-links a:hover { color: var(--emerald-600); }
.nav-links a[aria-current="page"] { color: var(--emerald-600); border-bottom: 2px solid var(--emerald-500); padding-bottom: 2px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-700);
  border-radius: 2px;
  transition: 0.2s;
}

/* ── HERO ── */
.hero {
  padding: 4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.hero-copy h1 { margin-bottom: 0.8rem; }

.trust-row {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-pill {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-700);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.pill-icon { font-size: 1rem; }

.hero-badges {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  min-width: 130px;
}

.hero-badge strong { display: block; font-size: 0.98rem; margin-bottom: 0.1rem; }
.hero-badge span { font-size: 0.82rem; opacity: 0.7; }

/* ── FUNNEL CARD ── */
.funnel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.funnel-header {
  background: var(--navy-900);
  padding: 1.3rem 1.4rem 1.1rem;
  color: #fff;
}

.funnel-header h2 { color: #fff; font-size: 1.3rem; margin-bottom: 0.25rem; }
.funnel-header .muted { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.funnel-card form { padding: 0 1.4rem 0.8rem; }

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.1rem 1.4rem 0.6rem;
  background: #fff;
}

.step-dot {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  background: #fff;
  flex-shrink: 0;
  transition: 0.2s;
}

.step-dot.active {
  background: var(--navy-700);
  color: #fff;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(18,55,101,0.15);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 3px;
}

.form-step { display: none; margin-bottom: 0.2rem; }
.form-step.active { display: block; }

label, .field-wrap span {
  display: block;
  font-weight: 700;
  margin: 0.9rem 0 0.35rem;
  color: var(--navy-800);
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #bfd0e7;
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(18,55,101,0.12);
}

.field-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.3rem 0 0;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding-bottom: 0.4rem;
}

.error-message {
  color: #b3261e;
  font-size: 0.9rem;
  min-height: 1.2rem;
  margin: 0.5rem 0 0;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  padding: 0.7rem 1rem 1rem;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-900);
  padding: 2.2rem 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-num {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--emerald-500);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.15);
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 5rem 0 4rem;
}

.how-section h2 { margin-bottom: 0.5rem; }

.how-grid {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.how-card {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.how-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.how-card--featured {
  border-color: var(--navy-700);
  background: var(--navy-900);
  color: #fff;
}

.how-card--featured h3,
.how-card--featured .step-num { color: #fff; }
.how-card--featured p { color: rgba(255,255,255,0.75); }
.how-card--featured .how-list li { color: rgba(255,255,255,0.7); }
.how-card--featured .how-list li::before { color: var(--emerald-500); }

.how-icon-wrap { margin-bottom: 0.8rem; }

.how-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald-100);
  font-size: 1.4rem;
}

.how-card--featured .how-icon { background: rgba(255,255,255,0.12); }

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-600);
  margin-bottom: 0.4rem;
}

.how-card h3 { margin-bottom: 0.5rem; }

.how-list {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.how-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}

.how-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald-600);
  font-weight: 700;
}

/* ── WHY US ── */
.why-section {
  padding: 5rem 0 4.5rem;
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-copy h2 { margin: 0.5rem 0 1rem; }

.why-features {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.wf-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-600);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.why-feature strong { display: block; font-size: 1rem; color: var(--navy-800); margin-bottom: 0.15rem; }
.why-feature p { font-size: 0.93rem; color: var(--muted); }

.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wcard {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.wcard-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  background: var(--navy-100);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.wcard strong { display: block; font-size: 0.97rem; color: var(--navy-900); margin-bottom: 0.2rem; }
.wcard p { font-size: 0.88rem; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 5rem 0 4.5rem;
}

.testimonials-section h2 { margin-bottom: 2rem; }

.testimonials-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  margin: 0;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 0.97rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.65;
  flex: 1;
}

.testimonial-card footer { margin-top: auto; }
.testimonial-card footer strong { display: block; font-size: 0.95rem; color: var(--navy-800); }
.testimonial-card footer span { font-size: 0.83rem; color: var(--muted); }

/* ── INJURY TYPES ── */
.injury-section {
  padding: 5rem 0 4.5rem;
  background: var(--bg);
}

.injury-section h2 { margin-bottom: 2rem; }

.injury-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.injury-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.injury-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.injury-icon {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.injury-card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.injury-card p { font-size: 0.9rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section {
  padding: 5rem 0 4.5rem;
}

.faq-section h2 { margin-bottom: 2rem; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  border-color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: none;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-800);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.faq-question:hover { background: var(--bg); }

.faq-arrow {
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--navy-700); }

.faq-answer {
  display: none;
  padding: 0 1.3rem 1.2rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 4rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner h2 { color: #fff; font-size: clamp(1.3rem, 3vw, 2rem); }
.cta-inner p { color: rgba(255,255,255,0.65); margin-top: 0.5rem; font-size: 1.05rem; }

/* ── PARTNERS DIRECTORY ── */
.directory-page { padding-bottom: 3.5rem; }

.directory-hero {
  background: var(--navy-900);
  color: #fff;
  padding: 3.5rem 0 2.5rem;
}

.directory-hero .eyebrow { color: var(--emerald-500); }
.directory-hero h1 { color: #fff; margin-bottom: 0.7rem; }
.directory-hero .lead { color: rgba(255,255,255,0.7); max-width: 72ch; }

.cat-summary-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1.2rem;
}

.cat-summary-pill {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.cat-summary-pill:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.directory-controls {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1.8fr 1fr;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
}

.directory-controls label span {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.directory-controls input,
.directory-controls select {
  background: rgba(255,255,255,0.95);
  border-color: transparent;
}

.directory-results { padding-top: 2.5rem; }

.results-count {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

/* Category section header */
.partner-grid { display: flex; flex-direction: column; gap: 0; }

.cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0.8rem;
  border-bottom: 2px solid var(--line);
  margin-bottom: 1.2rem;
}

.cat-icon { font-size: 1.3rem; }

.cat-title {
  font-size: 1.25rem;
  font-family: "Manrope", sans-serif;
  color: var(--navy-900);
  margin: 0;
}

.cat-count {
  margin-left: auto;
  background: var(--navy-100);
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

/* Cards row per category */
.partner-row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  margin-bottom: 2rem;
}

.partner-card {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-accent {
  height: 4px;
  background: var(--line);
}

/* Category accent colors */
.card-accent.cat-accent-Solar             { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.card-accent.cat-accent-Insurance         { background: linear-gradient(90deg, var(--navy-700), var(--navy-400)); }
.card-accent.cat-accent-Home_Improvement  { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.card-accent.cat-accent-Energy            { background: linear-gradient(90deg, var(--emerald-600), var(--emerald-500)); }
.card-accent.cat-accent-Marketing___Media { background: linear-gradient(90deg, #db2777, #f472b6); }
.card-accent.cat-accent-Other             { background: linear-gradient(90deg, #6b7280, #9ca3af); }

.card-body { padding: 0.9rem 1rem 1rem; flex: 1; }
.partner-card h3 { font-size: 0.97rem; margin-bottom: 0.5rem; line-height: 1.3; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  background: #ebf2fe;
  color: var(--navy-700);
}

/* Category badge colors */
.badge-Solar             { background: #fef3c7; color: #92400e; }
.badge-Insurance         { background: var(--navy-100); color: var(--navy-700); }
.badge-Home_Improvement  { background: #ede9fe; color: #5b21b6; }
.badge-Energy            { background: var(--emerald-100); color: var(--emerald-600); }
.badge-Marketing___Media { background: #fce7f3; color: #9d174d; }
.badge-Other             { background: #f3f4f6; color: #4b5563; }

.no-results { padding: 2rem 0; text-align: center; font-size: 1.05rem; }

/* ── SIMPLE PAGES (Terms, Privacy, Contact) ── */
.simple-page { padding: 3rem 0 4rem; }
.narrow { width: min(760px, calc(100% - 2rem)); }

.support-form {
  margin-top: 1.5rem;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  gap: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.legal h2 { margin: 1.5rem 0 0.5rem; font-size: 1.15rem; }
.legal p, .legal li { font-size: 0.97rem; line-height: 1.75; color: #2d3a4b; }
.legal ul { padding-left: 1.2rem; list-style: disc; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  margin-top: 1.8rem;
  align-items: start;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-info-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.ci-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--navy-100);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.contact-info-card strong { display: block; font-size: 0.92rem; color: var(--navy-800); margin-bottom: 0.2rem; }
.contact-info-card p { font-size: 0.86rem; color: var(--muted); }

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding-top: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand { color: #fff; font-size: 1.1rem; margin-bottom: 0.7rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col strong {
  color: #fff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.footer-col a { font-size: 0.93rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--emerald-500); }

.footer-bottom {
  padding: 1rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.disclaimer {
  padding: 1rem 0 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  line-height: 1.6;
}

.disclaimer strong { color: rgba(255,255,255,0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero-grid,
  .why-grid,
  .footer-top { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .how-grid,
  .injury-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { gap: 1.5rem; }
  .stat-divider { display: none; }
  .directory-controls { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    gap: 0.8rem;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-toggle { display: flex; }

  .how-grid,
  .injury-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-badges { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .partner-row { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
