/* ================================================
   AsbestosLegal.net — Shared Stylesheet
   ================================================ */

:root {
  --bg:         #F6F8FA;
  --white:      #FFFFFF;
  --navy:       #0B1F3A;
  --navy2:      #142D50;
  --blue:       #1B4F8A;
  --teal:       #0D9488;
  --teal-light: #14B8A6;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --text:       #1E293B;
  --red:        #B91C1C;
  --amber:      #B45309;
  --green:      #15803D;
  --surface:    #EFF6FF;
  --max-w:      1100px;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.25; }

/* ── Layout helpers ───────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 64px 0; }
.section-sm { padding: 40px 0; }

/* ── Navigation ───────────────────────────────── */
.site-nav {
  background: var(--navy);
  height: 66px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  font-family: 'Merriweather', serif;
  font-size: 19px;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--teal-light); }
.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  color: #8A9BB0;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover  { color: white; background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--teal-light); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-phone {
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--teal-light); }
.btn-nav {
  padding: 8px 18px;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--teal-light); color: white; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
@media(max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 16px 24px 20px; gap: 2px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; font-size: 15px; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-nav { display: none; }
  .site-nav { position: relative; }
}

/* ── Awareness bar ────────────────────────────── */
.awareness-bar {
  background: var(--teal);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  color: white;
  font-weight: 500;
}
.awareness-bar a { color: white; font-weight: 700; }
.awareness-bar strong { font-weight: 700; }

/* ── Breadcrumb ───────────────────────────────── */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb ol { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; gap: 8px; list-style: none; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Hero ─────────────────────────────────────── */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 100%); padding: 72px 24px 88px; }
.hero-inner { max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,148,136,0.15); border: 1px solid rgba(20,184,166,0.3);
  border-radius: 100px; padding: 6px 16px; font-size: 12px;
  color: var(--teal-light); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px;
}
.hero h1 { font-family: 'Merriweather', serif; font-size: clamp(26px, 3.8vw, 46px); color: white; line-height: 1.25; margin-bottom: 20px; }
.hero h1 em { color: var(--teal-light); font-style: italic; }
.hero p { font-size: 17px; color: #94A3B8; line-height: 1.7; max-width: 580px; margin-bottom: 32px; }
.hero-sm { padding: 48px 24px 64px; }
.hero-sm h1 { font-size: clamp(22px, 3vw, 36px); }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-reassurance { display: flex; gap: 32px; flex-wrap: wrap; }
.reassurance-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #64748B; }
.reassurance-item .icon { color: var(--teal-light); font-size: 16px; }

/* ── Buttons ──────────────────────────────────── */
.btn { display: inline-block; padding: 14px 28px; font-size: 15px; font-weight: 700; border-radius: 10px; cursor: pointer; text-decoration: none; border: none; font-family: inherit; transition: all 0.2s; }
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-light); color: white; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.2); color: white; }
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: #991B1B; color: white; }
.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-lg  { padding: 16px 36px; font-size: 17px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── Cards ────────────────────────────────────── */
.card { background: var(--white); border-radius: 16px; padding: 28px; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.card h2, .card h3 { font-family: 'Merriweather', serif; color: var(--navy); margin-bottom: 12px; }
.card h2 { font-size: 20px; }
.card h3 { font-size: 17px; }
.card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.card-dark { background: var(--navy); border-radius: 16px; padding: 28px; color: white; }
.card-dark h2, .card-dark h3 { color: var(--teal-light); margin-bottom: 12px; }
.card-dark h3 { font-size: 16px; font-weight: 700; }

/* ── Stat grid ────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-item { background: var(--surface); border-radius: 12px; padding: 20px; text-align: center; }
.stat-num   { font-family: 'Merriweather', serif; font-size: 26px; color: var(--blue); font-weight: 700; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
@media(max-width: 640px) { .stat-grid { grid-template-columns: 1fr 1fr; } }

/* ── Content layout ───────────────────────────── */
.content-section { max-width: var(--max-w); margin: 0 auto; padding: 64px 24px; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
@media(max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

/* ── Prose ────────────────────────────────────── */
.prose h2 { font-family: 'Merriweather', serif; font-size: 24px; color: var(--navy); margin: 40px 0 14px; }
.prose h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.prose p  { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.prose strong { color: var(--navy); }
.prose a { color: var(--teal); }

/* ── Icon list ────────────────────────────────── */
.icon-list { list-style: none; }
.icon-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--bg); font-size: 14px; color: var(--text); }
.icon-list li:last-child { border-bottom: none; }
.icon-list .ic { color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ── Trust rows ───────────────────────────────── */
.trust-row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; color: #94A3B8; }
.trust-row:last-child { border-bottom: none; }
.trust-row .ic { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ── Steps ────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: white; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-content p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Data table ───────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 24px 0; border-radius: 12px; overflow: hidden; }
.data-table th { background: var(--navy); color: white; padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 600; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) td { background: var(--bg); }
.data-table tr:hover td { background: var(--surface); }
.data-table .amount { font-weight: 700; color: var(--green); }

/* ── Lead form ────────────────────────────────── */
.lead-form { background: var(--white); border-radius: 20px; padding: 32px; border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.lead-form h3 { font-family: 'Merriweather', serif; font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.lead-form .sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--text); background: var(--bg);
  transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); background: white;
}
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-success { background: #ECFDF5; border: 1px solid #6EE7B7; border-radius: 12px; padding: 24px; text-align: center; display: none; }
.form-success h4 { color: var(--green); font-size: 18px; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--muted); }
@media(max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Alerts ───────────────────────────────────── */
.alert { border-radius: 12px; padding: 22px 24px; margin-bottom: 20px; }
.alert-red   { background: linear-gradient(135deg,#7F1D1D,#991B1B); color: white; }
.alert-green { background: linear-gradient(135deg,#064E3B,#065F46); color: white; }
.alert h3 { font-family: 'Merriweather', serif; font-size: 19px; margin-bottom: 8px; }
.alert p  { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* ── Ad units ─────────────────────────────────── */
.ad-unit { max-width: var(--max-w); margin: 0 auto 24px; padding: 0 24px; }
.ad-label { font-size: 10px; color: var(--muted); text-align: center; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Blog grid ────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }
.blog-card-img { background: var(--navy2); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: var(--surface); color: var(--blue); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-body h3 { font-family: 'Merriweather', serif; font-size: 16px; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-card-footer { padding: 12px 20px; border-top: 1px solid var(--bg); font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; }
@media(max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 580px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ── Attorney cards ───────────────────────────── */
.attorney-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.attorney-card { background: var(--white); border-radius: 16px; padding: 24px; border: 1px solid var(--border); }
.attorney-card .stars { color: #F59E0B; font-size: 14px; margin-bottom: 10px; }
.attorney-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.attorney-card .location { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.attorney-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.attorney-card .tag { font-size: 11px; background: var(--surface); color: var(--blue); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
@media(max-width: 700px) { .attorney-grid { grid-template-columns: 1fr; } }

/* ── State selector ───────────────────────────── */
.state-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.state-btn { display: flex; flex-direction: column; align-items: center; padding: 16px 10px; background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; text-decoration: none; color: var(--text); transition: all 0.2s; text-align: center; }
.state-btn:hover { border-color: var(--teal); background: rgba(13,148,136,0.04); color: var(--teal); }
.state-btn .state-icon { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 6px; color: var(--navy); }
.state-btn .state-name { font-size: 13px; font-weight: 600; }
.state-btn .state-sol  { font-size: 11px; color: var(--muted); margin-top: 2px; }
@media(max-width: 700px) { .state-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width: 440px) { .state-grid { grid-template-columns: repeat(2,1fr); } }

/* ── FAQ ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); user-select: none; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--teal); font-weight: 300; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; background: var(--white); }
.faq-item.open .faq-a { display: block; }

/* ── Screener (home page) ─────────────────────── */
.screener-wrap { background: white; border-radius: 20px; padding: 36px; border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.05); }
.screener-title { font-family: 'Merriweather', serif; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.screener-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.step-indicator { display: flex; align-items: center; margin-bottom: 28px; }
.step-dot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.step-dot.active  { background: var(--teal); color: white; }
.step-dot.done    { background: var(--green); color: white; }
.step-dot.pending { background: var(--border); color: var(--muted); }
.step-line { flex: 1; height: 2px; background: var(--border); }
.step-line.done { background: var(--green); }
.q-block { display: none; }
.q-block.active { display: block; }
.q-text { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.q-sub  { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.option-list { display: flex; flex-direction: column; gap: 10px; }
.option-btn { padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-weight: 500; text-align: left; cursor: pointer; background: var(--bg); color: var(--text); font-family: 'Source Sans 3', sans-serif; transition: all 0.2s; display: flex; align-items: center; gap: 12px; }
.option-btn:hover    { border-color: var(--teal); background: rgba(13,148,136,0.04); }
.option-btn.selected { border-color: var(--teal); background: rgba(13,148,136,0.08); color: var(--teal); }
.option-icon { font-size: 20px; width: 28px; flex-shrink: 0; }
.multi-select-note { font-size: 12px; color: var(--muted); margin-bottom: 12px; font-style: italic; }
.checkbox-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 500; transition: all 0.2s; user-select: none; }
.checkbox-item.checked { border-color: var(--teal); background: rgba(13,148,136,0.06); color: var(--teal); }
.nav-btns { display: flex; gap: 10px; margin-top: 24px; }
.nav-btn { padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Source Sans 3', sans-serif; transition: all 0.2s; }
.nav-btn.primary   { background: var(--teal); color: white; border: none; flex: 1; }
.nav-btn.primary:hover   { background: var(--teal-light); }
.nav-btn.secondary { background: transparent; border: 1.5px solid var(--border); color: var(--muted); }
.nav-btn.secondary:hover { border-color: var(--text); color: var(--text); }

/* Result panels */
.result-panel { display: none; }
.result-panel.show { display: block; }
.result-urgent   { background: linear-gradient(135deg,#7F1D1D,#991B1B); border-radius: 16px; padding: 28px; color: white; margin-bottom: 20px; }
.result-positive { background: linear-gradient(135deg,#064E3B,#065F46); border-radius: 16px; padding: 28px; color: white; margin-bottom: 20px; }
.result-urgent h3, .result-positive h3 { font-family: 'Merriweather', serif; font-size: 20px; margin-bottom: 10px; }
.result-urgent p,  .result-positive p  { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 16px; }
.urgent-cta { display: inline-block; padding: 12px 28px; background: white; color: var(--red); font-weight: 700; font-size: 14px; border-radius: 8px; text-decoration: none; }
.result-detail { background: white; border-radius: 14px; padding: 24px; border: 1px solid var(--border); margin-bottom: 16px; }
.result-detail h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.detail-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bg); font-size: 13px; }
.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--muted); }
.detail-row span:last-child  { font-weight: 600; color: var(--navy); }

/* Home main grid */
.home-main { max-width: var(--max-w); margin: -28px auto 0; padding: 0 24px 80px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
@media(max-width: 800px) { .home-main { grid-template-columns: 1fr; margin-top: 0; } }
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: white; border-radius: 16px; padding: 24px; border: 1px solid var(--border); }
.info-card-heading { font-family: 'Merriweather', serif; font-size: 17px; color: var(--navy); margin-bottom: 14px; }
.info-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.info-card ul { list-style: none; }
.info-card ul li { font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--bg); color: var(--text); display: flex; gap: 10px; align-items: flex-start; }
.info-card ul li:last-child { border-bottom: none; }
.info-card ul li::before { content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.stat-grid-sm { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.stat-item-sm { background: var(--surface); border-radius: 10px; padding: 14px; text-align: center; }
.stat-num-sm  { font-family: 'Merriweather', serif; font-size: 22px; color: var(--blue); }
.stat-label-sm { font-size: 11px; color: var(--muted); margin-top: 2px; }
.trust-card { background: var(--navy); border-radius: 16px; padding: 24px; color: white; }
.trust-card-heading { font-size: 16px; font-weight: 700; color: var(--teal-light); margin-bottom: 12px; }

/* ── Footer ───────────────────────────────────── */
.site-footer { background: var(--navy); color: #475569; padding: 60px 24px 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { display: inline-block; margin-bottom: 14px; font-size: 20px; }
.footer-brand p { font-size: 13px; color: #64748B; line-height: 1.7; max-width: 280px; }
.footer-brand .footer-phone { margin-top: 16px; }
.footer-brand .footer-phone a { color: white; font-size: 16px; font-weight: 700; text-decoration: none; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #8A9BB0; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #64748B; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: #475569; text-decoration: none; }
.footer-links a:hover { color: var(--teal-light); }
.footer-disclaimer { font-size: 12px; line-height: 1.7; color: #334155; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04); }
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 500px)  { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; } }

/* ── Highlight box ────────────────────────────── */
.highlight-box { background: var(--surface); border-left: 4px solid var(--teal); border-radius: 0 12px 12px 0; padding: 18px 20px; margin: 24px 0; }
.highlight-box p { font-size: 15px; color: var(--text); line-height: 1.6; margin: 0; }
.highlight-box strong { color: var(--navy); }

/* ── Section headings ─────────────────────────── */
.section-heading { font-family: 'Merriweather', serif; font-size: 30px; color: var(--navy); margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; max-width: 600px; }
