/* ============================================================
   Northwest Thyroid Center — Thyroid Biopsy Atlanta
   Design System: Teal #1A6B72 | Gold #C8922A | Warm Gray #F5F5F0
   Font: Inter (Google Fonts)
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #f2f8fd;
  color: #2D2D2D;
  line-height: 1.7;
}

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

a { color: #1A6B72; text-decoration: none; transition: color 0.2s; }
a:hover { color: #C8922A; }

ul { list-style: none; }

/* ---------- CSS Variables ---------- */
:root {
  --teal: #00599d;
  --teal-dark: #042945;
  --teal-light: #e8f5ff;
  --gold: #abb537;
  --gold-dark: #8a9420;
  --bg: #f2f8fd;
  --white: #ffffff;
  --gray-100: #eef4fa;
  --gray-200: #dce9f5;
  --gray-500: #8a8a82;
  --gray-700: #4a4a44;
  --text: #212429;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,89,157,0.10);
  --shadow-lg: 0 8px 40px rgba(0,89,157,0.15);
  --transition: 0.25s ease;
  --max-width: 1140px;
  --nav-height: 70px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--teal-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--gray-700); }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); font-weight: 600; }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--white);
}

.section--teal {
  background: var(--teal);
  color: var(--white);
}

.section--teal h2,
.section--teal h3,
.section--teal h4 {
  color: var(--white);
}

.section--teal p {
  color: rgba(255,255,255,0.88);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-teal { color: var(--teal) !important; }
.text-gold { color: var(--gold) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(171,181,55,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: var(--teal-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
  text-decoration: none;
}

.nav__logo-primary {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
}

.nav__logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--teal);
  background: var(--teal-light);
}

.nav__phone {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  margin-left: 12px;
  padding: 8px 16px;
  border: 2px solid var(--teal);
  border-radius: 50px;
  transition: all var(--transition);
}

.nav__phone:hover {
  background: var(--teal);
  color: var(--white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.nav__hamburger:hover { background: var(--gray-100); }

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.nav__drawer a:hover {
  color: var(--teal);
  background: var(--teal-light);
}

.nav__drawer .btn {
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  background: var(--gray-100);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb__list li {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__list li::after {
  content: '›';
  color: var(--gray-500);
}

.breadcrumb__list li:last-child::after { display: none; }

.breadcrumb__list a {
  color: var(--teal);
  font-weight: 500;
}

.breadcrumb__list li:last-child {
  color: var(--gray-700);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #1d86ef 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(171,181,55,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(171,181,55,0.2);
  color: #abb537;
  border: 1px solid rgba(171,181,55,0.4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.hero__phone a {
  color: #abb537;
  font-weight: 700;
  font-size: 1.1rem;
}

.hero__image-wrap {
  position: relative;
}

.hero__img-placeholder {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

.hero__img-placeholder .ph-icon {
  font-size: 3rem;
  opacity: 0.5;
}

/* Page Hero (interior) */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Differentiator Cards ---------- */
.diff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.diff-card__icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.diff-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.diff-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ---------- Who Needs Section ---------- */
.who-needs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.who-needs__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-needs__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.who-needs__item .item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.who-needs__item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--teal-dark);
}

.who-needs__item p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--gray-500);
}

/* Image Placeholder (general) */
.img-placeholder {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 24px;
  min-height: 280px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px dashed var(--teal-light);
}

.img-placeholder .ph-icon {
  font-size: 3.5rem;
  opacity: 0.4;
}

/* ---------- Why Choose Section ---------- */
.why-choose__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-choose__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.why-choose__item:hover {
  transform: translateX(6px);
}

.why-choose__num {
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-choose__text h4 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.why-choose__text p {
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--teal-light), var(--teal), var(--teal-light));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: transform var(--transition);
}

.step-card:hover { transform: translateY(-4px); }

.step-card__num {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 18px;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--teal-light);
}

.step-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.step-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Stat Bar ---------- */
.stat-bar {
  background: var(--teal);
  padding: 48px 0;
}

.stat-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__number span {
  color: #abb537;
}

.stat-item__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* ---------- Locations ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gold);
  transition: transform var(--transition);
}

.location-card:hover { transform: translateY(-4px); }

.location-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.location-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.location-card address {
  font-style: normal;
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.location-card .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
  margin-bottom: 16px;
}

.location-card .phone-link:hover { color: var(--gold); }

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-dark);
  transition: background var(--transition);
}

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

.faq-question.active { background: var(--teal-light); color: var(--teal-dark); }

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--teal);
}

.faq-question.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 28px;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 28px 22px;
}

.faq-answer p {
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-band .phone-display {
  display: block;
  color: #abb537;
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 18px;
}

.cta-band .phone-display:hover { color: var(--white); }

/* ---------- Content Sections (interior pages) ---------- */
.content-section {
  padding: 64px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-body h2 {
  margin-bottom: 20px;
}

.content-body h3 {
  color: var(--teal);
  margin: 28px 0 10px;
  font-size: 1.1rem;
}

.content-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1rem;
}

.content-body ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.content-body ul li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  background: var(--teal);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
}

.comparison-table th:first-child {
  background: var(--teal-dark);
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  color: var(--gray-700);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--gray-100);
  width: 30%;
}

.comparison-table tr:nth-child(even) td:not(:first-child) {
  background: var(--bg);
}

.comparison-table .highlight {
  color: var(--teal);
  font-weight: 700;
}

.comparison-table .downside {
  color: #c0392b;
  font-size: 0.88rem;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--gold));
}

.timeline-item {
  position: relative;
  padding: 24px 0 24px 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-item:last-child::before {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item h4 {
  margin-bottom: 6px;
  color: var(--teal-dark);
}

.timeline-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* Info Box */
.info-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box h4 {
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.info-box p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--gray-700);
}

/* Gold info box */
.info-box--gold {
  background: #fef8ee;
  border-left-color: var(--gold);
}

.info-box--gold h4 { color: var(--gold-dark); }

/* Credential badges */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.credential-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.credential-card .cred-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.credential-card h4 {
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--teal-dark);
}

/* ---------- Related Sites Strip ---------- */
.related-sites {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 16px 0;
}

.related-sites__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.related-sites__label {
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.related-sites__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 6px 16px;
  font-weight: 600;
  color: var(--teal);
  font-size: 0.82rem;
  transition: all var(--transition);
}

.related-sites__link:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ---------- Footer ---------- */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer__brand-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__about p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer__phone {
  color: #abb537;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer__phone:hover { color: var(--white); }

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer__disclaimer {
  margin-top: 8px;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  max-width: 800px;
  margin: 8px auto 0;
}

/* ---------- Highlight Callout ---------- */
.callout {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 5px solid var(--gold);
}

.callout h3 {
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.callout p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ---------- Tag / Badge Pills ---------- */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.pill {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
}

.pill--gold {
  background: #fef8ee;
  color: var(--gold-dark);
  border: 1px solid #f0d8a0;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- ≤1024px ---------- */
@media (max-width: 1024px) {
  .diff-cards { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stat-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: span 2; }
  .credential-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- ≤768px ---------- */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .section { padding: 56px 0; }

  /* Nav */
  .nav__links,
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__actions { justify-content: center; }
  .hero__phone { justify-content: center; }
  .hero__image-wrap { display: none; }

  /* Grids */
  .diff-cards { grid-template-columns: 1fr; }
  .who-needs__grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 36px; }
  .content-grid.reverse { direction: ltr; }
  .locations-grid { grid-template-columns: 1fr; }
  .stat-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .credential-grid { grid-template-columns: 1fr 1fr; }

  .comparison-table { font-size: 0.85rem; }
  .comparison-table th,
  .comparison-table td { padding: 10px 14px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__about { grid-column: span 1; }
}

/* ---------- ≤480px ---------- */
@media (max-width: 480px) {
  .section { padding: 44px 0; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .hero { padding: 56px 0; }
  .hero__actions { flex-direction: column; }
  .btn-lg { padding: 15px 28px; font-size: 1rem; }

  .process-steps { grid-template-columns: 1fr; }
  .stat-bar__grid { grid-template-columns: 1fr 1fr; }
  .credential-grid { grid-template-columns: 1fr; }

  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-answer.open { padding: 0 18px 16px; }

  .comparison-table th:nth-child(3),
  .comparison-table td:nth-child(3) { display: none; }

  .related-sites__inner { flex-direction: column; }

  .page-hero { padding: 40px 0; }
}
