/* ============================================================
   Bristol Medical Imaging Partners — Design System
   style.css
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:        #154A3D;
  --navy-dark:   #0C2E26;
  --navy-light:  #236657;
  --teal:        #178769;
  --teal-dark:   #0F6450;
  --teal-light:  #E2F2EC;
  --teal-mid:    #B2DDCE;
  --off-white:   #F7F9FC;
  --grey-50:     #F0F4F8;
  --grey-100:    #E2EAF0;
  --grey-300:    #CBD5E0;
  --grey-500:    #566072;   /* darkened for readability. To revert, restore: #718096 */
  --grey-700:    #3A4353;   /* darkened for readability. To revert, restore: #4A5568 */
  --dark:        #1E2D3D;
  --white:       #FFFFFF;
  --danger:      #C0392B;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --max-width:   1160px;
  --transition:  all .2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; color: var(--grey-700); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--grey-500); line-height: 1.8; }

/* ---- Layout ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--off-white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.text-center { text-align: center; }

/* ---- Section Labels ---- */
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-header { max-width: 640px; margin-bottom: 3rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-text span {
  display: block;
  font-size: .75rem;
  color: var(--grey-500);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .8125rem;
  font-weight: 500;
  color: #2A3340;   /* darkened top-nav text for readability. To revert, restore: var(--grey-700) */
  padding: .5rem .5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--grey-50); }
.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-phone { font-size: .8125rem; color: var(--grey-500); white-space: nowrap; }
.nav-phone strong { display: block; font-size: .875rem; color: var(--dark); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--navy);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-mobile { display: none; }
.nav-mobile.open {
  display: block;
  border-top: 1px solid var(--grey-100);
  background: var(--white);
  padding: 1rem 1.5rem;
}
.nav-mobile a {
  display: block;
  padding: .875rem 0;
  font-weight: 500;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: .75rem; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1E5799 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .375rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num { font-size: 1.75rem; font-weight: 700; color: var(--white); }
.hero-stat-label { font-size: .8125rem; color: rgba(255,255,255,.65); }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img,
.hero-image video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-placeholder {
  text-align: center;
  color: rgba(255,255,255,.4);
  padding: 2rem;
}
.hero-image-placeholder svg { margin: 0 auto 1rem; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 0;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; margin-bottom: 0; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 1.125rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  font-weight: 500;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}
.card h3 { margin-bottom: .5rem; font-size: 1.125rem; }
.card p { font-size: .9375rem; margin-bottom: 0; }
.card-link { display: block; text-decoration: none; color: inherit; }
.card-link:hover { color: inherit; }
.card-arrow {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 1.25rem;
}

/* ---- Scan cards ---- */
.scan-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.scan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.scan-card-img {
  aspect-ratio: 16/9;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  font-size: .875rem;
}
.scan-card-body { padding: 1.5rem; }
.scan-card-body h3 { margin-bottom: .5rem; }

/* ---- Consultant cards ---- */
.consultants-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.consultant-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-sizing: border-box;
}
.consultant-card:hover { box-shadow: var(--shadow-md); }
.consultant-avatar {
  width: 120px;
  height: 150px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  object-fit: cover;
  object-position: top;
}
.consultant-card h3 { font-size: 1rem; margin-bottom: .25rem; }
.consultant-card .role { font-size: .875rem; color: var(--teal); font-weight: 500; margin-bottom: .75rem; }
.consultant-card .specialism-tags { display: flex; flex-wrap: wrap; gap: .375rem; justify-content: center; }
.tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 500;
  padding: .25rem .625rem;
  border-radius: 100px;
}
.tag-navy { background: var(--grey-50); color: var(--navy); }

/* ---- Steps ---- */
.steps { display: grid; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: .9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .125rem;
}
.step-content h4 { margin-bottom: .375rem; color: var(--navy); }
.step-content p { margin-bottom: 0; font-size: .9375rem; }

/* ---- Accordion / FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { background: var(--grey-50); }
.faq-question.open { background: var(--teal-light); }
.faq-arrow { transition: transform .2s ease; flex-shrink: 0; color: var(--teal); }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem;
  color: var(--grey-700);
  border-top: 1px solid var(--grey-100);
  background: var(--white);
}
.faq-answer.open { display: block; }

/* ---- Info Box ---- */
.info-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { color: var(--dark); margin: 0; font-size: .9375rem; }
.info-box strong { color: var(--teal-dark); }
.warning-box {
  background: #FEF9E7;
  border-left: 4px solid #F39C12;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

/* ---- Two-col content ---- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: .5rem; }
.cta-banner p { color: rgba(255,255,255,.75); margin: 0; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- Insurance logos ---- */
.insurance-bar {
  background: var(--grey-50);
  padding: 2.5rem 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}
.insurance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.insurance-logo {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-sm);
  padding: .625rem 1.25rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--grey-700);
  letter-spacing: .03em;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-body { font-size: .9375rem; color: var(--grey-700); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { font-size: .875rem; font-weight: 600; color: var(--dark); }
.testimonial-date { font-size: .8125rem; color: var(--grey-500); }

/* ---- Location card ---- */
.location-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.location-card-map {
  height: 160px;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  font-size: .875rem;
  border-bottom: 1px solid var(--grey-100);
}
.location-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.location-card-body { padding: 1.75rem; }
.location-detail {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: .9375rem;
  color: var(--grey-700);
}
.location-detail svg { color: var(--teal); flex-shrink: 0; margin-top: .15rem; }

/* ---- Contact form ---- */
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .375rem;
}
.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s ease;
  appearance: none;
}
.contact-form input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--teal);
}
.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31,158,127,.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .8125rem; color: var(--grey-500); margin-top: .375rem; }

/* ---- Condition page ---- */
.condition-intro { font-size: 1.125rem; color: var(--grey-700); line-height: 1.8; }
.what-to-expect-list { display: grid; gap: 1rem; }
.expect-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.expect-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .875rem;
  font-weight: 700;
}
.expect-item h4 { font-size: .9375rem; margin-bottom: .25rem; color: var(--navy); }
.expect-item p { font-size: .875rem; margin: 0; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 1rem; margin-bottom: 1.5rem; color: rgba(255,255,255,.7); }
.footer-logo { display: flex; align-items: center; gap: .75rem; }
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-text strong { display: block; font-size: .9375rem; color: var(--white); }
.footer-logo-text span { font-size: .75rem; color: rgba(255,255,255,.5); }
.footer-col h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: .625rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: .625rem; margin-bottom: .75rem; font-size: .875rem; }
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: .2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--teal); }
.footer-reg { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .375rem; }

/* ---- Utilities ---- */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--grey-500); }
.font-weight-600 { font-weight: 600; }
.divider { border: none; border-top: 1px solid var(--grey-100); margin: 2.5rem 0; }
.highlight { background: var(--teal-light); border-radius: var(--radius-sm); padding: 0 .375rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .consultants-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-contact { display: none; }
  .nav-hamburger { display: block; }
  .consultants-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .grid-2, .content-split { grid-template-columns: 1fr; gap: 2rem; }
  .content-split.reverse { direction: ltr; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 2.5rem; }
  .cta-banner-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { justify-content: center; }
  .section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .consultants-grid { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3.5rem; }
  .page-hero { padding: 3rem 0; }
}
