:root {
  --primary: #0e7490;
  --accent: #06b6d4;
  --ink: #0f172a;
  --muted: #64748b;
  --soft: #f5fbff;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --media-radius: 24px;
  --media-radius-mobile: 18px;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(14, 116, 144, 0.12);
  --container: 1200px;
  --header-h: 84px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; width: 100%; height: auto; display: block; border-radius: var(--radius-md); }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 2rem)); margin-inline: auto; }
.img-natural {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.card-media {
  overflow: hidden;
  border-radius: 24px;
  background: #f3f4f6;
}
.card-media .img-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  border-radius: 0;
}
.split-media {
  overflow: hidden;
  border-radius: 28px;
  background: #f3f4f6;
}
.split-media .img-split {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0;
}
.hero-media {
  overflow: hidden;
  border-radius: 28px;
}
.hero-media .img-hero {
  width: 100%;
  height: auto;
  display: block;
}
.media-frame {
  width: 100%;
  border-radius: var(--media-radius);
  overflow: hidden;
  background: #eef4f8;
  border: 1px solid rgba(148,163,184,.2);
  box-shadow: 0 16px 34px rgba(15,23,42,.08);
}
.media-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  object-position: center;
  border-radius: 0;
}
.media-frame--split {
  max-height: 620px;
}
.media-frame--hero {
  max-height: 720px;
}
.media-frame--compact {
  max-height: 360px;
}
.section {
  padding: 5rem 0;
}
.soft-bg { background: linear-gradient(180deg, #f8fdff 0%, var(--soft) 100%); }
.eyebrow { margin: 0 0 .75rem; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 700; }
h1,h2,h3 { margin: 0 0 1rem; }
h1,h2,h3,p,li { overflow-wrap: anywhere; }
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
p { margin: 0 0 1rem; color: var(--muted); }

.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: .75rem 1.125rem; font-size: .9375rem; font-weight: 600; border: 1px solid transparent; transition: .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-secondary { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.45); }
.text-link { color: var(--primary); font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(100,116,139,.16); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: .55rem; font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.logo-mark {
  width: clamp(106px, 30vw, 162px);
  height: auto;
  border-radius: 8px;
}
.desktop-nav { display: none; gap: 1.2rem; }
.desktop-nav a { font-size: 1.02rem; font-weight: 600; }
.mobile-drawer a { font-size: 1.1rem; font-weight: 600; }
.desktop-nav a[aria-current="page"] { color: var(--primary); }
.header-right { display: flex; align-items: center; gap: .75rem; }
.phone-link { color: var(--primary); font-weight: 700; }
.header-cta { display: none; }
.nav-toggle { width: 44px; height: 44px; border: 1px solid rgba(100,116,139,.3); border-radius: 10px; background: var(--white); display: grid; place-content: center; gap: 4px; cursor: pointer; }
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); display: block; }
.nav-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.45); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 70; }
.nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-drawer { position: fixed; top: 0; right: -320px; width: min(320px,88vw); height: 100vh; background: #fafdff; z-index: 80; display: flex; flex-direction: column; gap: 1rem; padding: 1.3rem; box-shadow: var(--shadow); transition: right .3s; }
.mobile-drawer.open { right: 0; }
.drawer-close { width: 40px; height: 40px; margin-left: auto; border: 1px solid rgba(100,116,139,.3); border-radius: 8px; background: var(--white); font-size: 1.4rem; cursor: pointer; }

.hero { position: relative; min-height: clamp(560px,76vh,720px); color: var(--white); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero-inner { min-height: clamp(420px,60vh,560px); }
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 0;
  z-index: 0;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,45,62,.78), rgba(14,116,144,.42)); }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 4rem 0;
}
.hero-subtext {
  color: rgba(255,255,255,.92);
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}
.section-sub {
  color: var(--muted);
  max-width: none;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.4rem 0 1rem; }
.split > *,
.two-col > *,
.card-grid > *,
.form-grid > *,
.trad-footer__grid > * {
  min-width: 0;
}
.trust-bullets { margin: 0; padding: 0; list-style: none; display: grid; gap: .4rem; }
.trust-bullets li { color: rgba(255,255,255,.92); font-weight: 600; }
.trust-badge { margin-top: 1.2rem; display: inline-block; padding: .6rem 1rem; border-radius: 999px; background: rgba(255,255,255,.2); backdrop-filter: blur(8px); font-weight: 700; }

.stats-strip { margin-top: -3.2rem; position: relative; z-index: 2; }
.stats-grid { border-radius: var(--radius-lg); background: rgba(255,255,255,.75); backdrop-filter: blur(10px); box-shadow: var(--shadow); padding: 1.4rem; display: grid; gap: 1rem; grid-template-columns: repeat(2,minmax(0,1fr)); }
.stats-grid article { border-radius: var(--radius-sm); background: rgba(255,255,255,.85); padding: 1rem; }
.stats-grid h2 { color: var(--primary); margin-bottom: .3rem; font-size: 1.4rem; }
.stats-grid p { margin: 0; }

.split { display: grid; gap: 2rem; align-items: start; }
.image-card {
  background: var(--white);
  border-radius: 28px;
  padding: 0;
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-height: 620px;
}
.image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 620px;
  border-radius: 0;
}
.feature-list { margin: 1rem 0; padding-left: 1.2rem; color: var(--ink); }
.service-area-line { color: var(--primary); font-weight: 700; margin-top: .75rem; }
.section-head { margin-bottom: 1.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.card-grid { display: grid; gap: 1.1rem; }
.card-grid-2,.card-grid-3,.card-grid-4 { grid-template-columns: 1fr; }
.modern-card,.service-card,.testimonial-slide,.faq-item,.map-placeholder,.contact-stack .modern-card { background: var(--white); border: 1px solid rgba(148,163,184,.24); border-radius: var(--radius-md); box-shadow: 0 10px 25px rgba(15,23,42,.05); transition: .25s; }
.modern-card,.service-card,.contact-stack .modern-card { padding: 1.2rem; }
.modern-card:hover,.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon-badge { width: 38px; height: 38px; border-radius: 999px; display: grid; place-content: center; margin-bottom: .8rem; background: linear-gradient(135deg, rgba(14,116,144,.15), rgba(6,182,212,.2)); color: var(--primary); font-weight: 800; }
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card .card-media {
  margin-bottom: .9rem;
  border-radius: 16px;
}
.service-card .card-media .img-card {
  border-radius: 0;
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  border-radius: 16px;
  margin-bottom: .9rem;
}

.testimonial-slider {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}
.testimonial-slider:focus-visible {
  outline: 2px solid rgba(14,116,144,.5);
  outline-offset: 8px;
  border-radius: 18px;
}
.slider-track { position: relative; min-height: 340px; }
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.98), #f7fcff);
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(15,23,42,.08);
  padding: 1.9rem 2rem;
  transition: opacity .38s ease, transform .38s ease;
}
.testimonial-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial-head { display: flex; justify-content: space-between; align-items: center; gap: .9rem; margin-bottom: 1.05rem; }
.star-rating { margin: 0; color: #f59e0b; letter-spacing: .08em; font-size: 1.05rem; }
.testimonial-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.testimonial-tag {
  border-radius: 999px;
  background: rgba(14,116,144,.1);
  border: 1px solid rgba(14,116,144,.25);
  color: #0e7490;
  padding: .2rem .55rem;
  font-size: .75rem;
  font-weight: 700;
}
.testimonial-slide blockquote {
  margin: 0;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.8;
}
.testimonial-author {
  margin: 1.2rem 0 0;
  color: #0f172a;
  font-weight: 700;
}
.slider-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(100,116,139,.28);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #eef7fc);
  box-shadow: 0 8px 16px rgba(15,23,42,.1);
  color: #0e7490;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.slider-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 20px rgba(15,23,42,.14); }
.slider-btn:focus-visible { outline: 2px solid rgba(14,116,144,.45); outline-offset: 2px; }
.slider-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(100,116,139,.35);
  cursor: pointer;
}
.slider-dot.active { background: #0e7490; transform: scale(1.18); }
.testimonial-note {
  margin-top: 1rem;
  text-align: center;
  font-size: .88rem;
  color: #64748b;
}

.faq-list { display: grid; gap: .8rem; }
.faq-question { width: 100%; text-align: left; border: 0; background: transparent; padding: 1rem 1.1rem; font-size: 1rem; font-weight: 700; cursor: pointer; }
.faq-answer { padding: 0 1.1rem 1rem; }

.cta-band { background: linear-gradient(120deg, #0e7490, #06b6d4); color: var(--white); padding: 3.5rem 0; }
.cta-band p { color: rgba(255,255,255,.93); }
.cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }

.two-col { display: grid; gap: 1.5rem; }
.contact-stack { display: grid; gap: .9rem; }
.modern-form { background: var(--white); border: 1px solid rgba(148,163,184,.25); border-radius: var(--radius-md); padding: 1.2rem; box-shadow: var(--shadow); }
.form-grid { display: grid; gap: .95rem; }
.form-grid .field-full { grid-column: 1 / -1; }
label { display: grid; gap: .4rem; font-weight: 700; color: var(--ink); }
input,select,textarea { border-radius: 10px; border: 1px solid rgba(100,116,139,.35); padding: .7rem .75rem; font: inherit; }
.microcopy { font-size: .9rem; }
.form-feedback {
  margin: 0.9rem 0 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-feedback.is-info { color: #0e7490; }
.form-feedback.is-success { color: #0f766e; }
.form-feedback.is-error { color: #b91c1c; }

.site-footer { background: #081826; color: rgba(255,255,255,.92); padding: 3rem 0 5.5rem; }
.footer-grid { display: grid; gap: 1.5rem; }
.footer-grid a { display: block; margin-bottom: .45rem; color: rgba(255,255,255,.95); }
.footer-bottom { margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid rgba(226,232,240,.2); display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center; }

.mobile-cta-bar { position: fixed; left: 0; right: 0; bottom: 0; display: flex; gap: .6rem; padding: .6rem; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-top: 1px solid rgba(100,116,139,.25); z-index: 85; }
.mobile-cta-bar .btn { flex: 1; padding: .75rem .7rem; }
.mobile-cta-bar .btn-secondary { color: var(--primary); border-color: rgba(14,116,144,.3); background: #e6f7fb; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .45s, transform .45s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.hero-overlay--frost {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(15,23,42,.66) 0%, rgba(14,116,144,.38) 50%, rgba(6,182,212,.22) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-content { z-index: 2; }

@media (min-width: 700px) {
  .header-cta { display: inline-flex; }
  .stats-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .card-grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .card-grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .card-grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .two-col { grid-template-columns: 1.1fr .9fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid label:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (min-width: 980px) {
  .desktop-nav { display: flex; }
  .nav-toggle { display: none; }
  .card-grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .card-grid-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .mobile-cta-bar { display: none; }
  .site-footer { padding-bottom: 3rem; }
}

@media (max-width: 980px) {
  .split,
  .two-col {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-overlay--frost { backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
  .testimonial-slider { grid-template-columns: 1fr; gap: .7rem; }
  .slider-track { min-height: 380px; }
  .testimonial-slide { padding: 1.5rem 1.2rem; }
  .slider-btn--modern { width: 48px; height: 48px; justify-self: center; }
  .hero {
    min-height: clamp(430px, 68vh, 560px);
  }
  .hero-inner {
    min-height: clamp(360px, 56vh, 470px);
  }
  .hero-content {
    padding: 2.75rem 0 2.25rem;
  }
  .hero-bg-img {
    object-position: 50% 32%;
  }
  h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.7rem);
  }
  h2 {
    font-size: clamp(1.45rem, 6.4vw, 2rem);
  }
  .section {
    padding: 3.25rem 0;
  }
  .media-frame {
    border-radius: var(--media-radius-mobile);
  }
  .media-frame--split,
  .image-card {
    max-height: 520px;
  }
  .media-frame--hero {
    max-height: 500px;
  }
  .media-frame--compact,
  .service-card img {
    max-height: 360px;
  }
  .card-media .img-card,
  .service-card .img-card,
  .service-card > img {
    aspect-ratio: 4 / 4.8;
  }
  .split-media .img-split,
  .image-card .img-split {
    max-height: none;
  }
  .stats-strip {
    margin-top: -2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .cta-band-inner .hero-actions {
    width: 100%;
  }
  .modern-form {
    padding: 1rem;
  }
  input,
  select,
  textarea {
    min-height: 46px;
    font-size: 16px;
  }
  textarea {
    min-height: 120px;
  }
  .modern-form button[type="submit"],
  .careers-form #careers-submit {
    width: 100%;
  }
  .trad-footer__wrap {
    width: min(1200px, calc(100% - 1.25rem));
  }
  .trad-footer__bottom {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-slide { transition: none; }
  .slider-btn { transition: none; }
}

/* Premium healthcare footer: calm gradient base + glassy cards + high legibility */
.ac-footer {
  --ac-f-bg-1: #06344c;
  --ac-f-bg-2: #0a5f80;
  --ac-f-panel: rgba(255, 255, 255, 0.12);
  --ac-f-panel-border: rgba(188, 236, 255, 0.28);
  --ac-f-text: #ecfaff;
  --ac-f-muted: #c7ebf7;
  --ac-f-link: #e9fbff;
  --ac-f-focus: #7ee7ff;

  color: var(--ac-f-text);
  background:
    radial-gradient(1200px 500px at 12% -20%, rgba(96, 227, 255, 0.26), transparent 60%),
    linear-gradient(145deg, var(--ac-f-bg-1), var(--ac-f-bg-2));
  padding: clamp(2rem, 4vw, 3rem) 1rem 1rem;
}

/* Rounded shell keeps the footer cohesive and premium */
.ac-footer__shell {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(173, 228, 248, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 48px rgba(4, 26, 39, 0.35);
}

.ac-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 1rem;
}

.ac-footer__panel {
  background: var(--ac-f-panel);
  border: 1px solid var(--ac-f-panel-border);
  border-radius: 18px;
  padding: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(2, 20, 30, 0.18);
}

.ac-footer-brandline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.ac-footer-brandmark {
  width: 34px;
  height: auto;
  object-fit: contain;
  border-radius: 9px;
}

.ac-footer h2,
.ac-footer h3 {
  margin: 0 0 0.6rem;
  line-height: 1.25;
}

.ac-footer p {
  margin: 0 0 0.8rem;
  color: var(--ac-f-muted);
}

.ac-footer__contact,
.ac-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac-footer__contact li,
.ac-footer__links li {
  margin-bottom: 0.55rem;
}

.ac-footer a {
  color: var(--ac-f-link);
  text-decoration: none;
  text-underline-offset: 3px;
}

.ac-footer a:hover {
  text-decoration: underline;
}

/* Strong keyboard visibility for accessibility */
.ac-footer a:focus-visible,
.ac-footer button:focus-visible,
.ac-footer input:focus-visible {
  outline: 2px solid var(--ac-f-focus);
  outline-offset: 2px;
  border-radius: 10px;
}

.ac-footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.ac-footer__social a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(194, 236, 252, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.ac-footer__social svg {
  width: 18px;
  height: 18px;
  fill: #f0fdff;
}

.ac-footer__form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.ac-footer__field-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.ac-footer__form input {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(190, 234, 250, 0.5);
  background: rgba(255, 255, 255, 0.94);
  color: #0d2b3b;
  padding: 0.6rem 0.7rem;
}

.ac-footer__form button {
  min-height: 42px;
  border: 1px solid rgba(183, 236, 252, 0.5);
  border-radius: 10px;
  background: linear-gradient(135deg, #17a8c7, #0f7ea8);
  color: #ffffff;
  font-weight: 700;
  padding: 0.6rem 0.85rem;
  cursor: pointer;
}

.ac-footer__form small {
  display: block;
  margin-top: 0.5rem;
  color: var(--ac-f-muted);
}

.ac-footer__compliance {
  margin: 1rem 0 0.5rem;
  padding: 0.75rem 0.2rem 0;
  border-top: 1px solid rgba(195, 234, 248, 0.28);
  font-size: 0.92rem;
  color: #d7f1fb;
}

.ac-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.3rem;
}

.ac-footer__bottom p {
  margin: 0;
  color: #dff4fc;
}

.ac-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

@media (max-width: 1080px) {
  .ac-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .ac-footer {
    padding: 1.2rem 0.75rem 0.9rem;
  }

  .ac-footer__top {
    grid-template-columns: 1fr;
  }

  .ac-footer__field-row {
    grid-template-columns: 1fr;
  }

  .ac-footer__form button {
    width: 100%;
  }

  .ac-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Traditional dark footer: clear columns, high readability, responsive layout */
.trad-footer {
  background: linear-gradient(180deg, #0b1f2c 0%, #0a1823 100%);
  color: #e7f4fb;
  margin-top: 3rem;
}

.trad-footer__wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 2.25rem 0 1.25rem;
}

.trad-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.25rem;
}

.trad-footer h2,
.trad-footer h3 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  line-height: 1.25;
}

.trad-footer__brand-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.trad-footer p {
  margin: 0 0 0.7rem;
  color: #c7dceb;
}

.trad-footer__tagline {
  font-weight: 600;
  color: #d9edf9;
}

.trad-footer__compliance {
  font-size: 0.92rem;
  color: #b5cede;
  margin-top: 0.9rem;
}

.trad-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trad-footer__list li {
  margin-bottom: 0.55rem;
}

.trad-footer a {
  color: #dff4ff;
  text-decoration: none;
  text-underline-offset: 3px;
}

.trad-footer a:hover {
  text-decoration: underline;
}

.trad-footer a:focus-visible {
  outline: 2px solid #59c7ec;
  outline-offset: 2px;
  border-radius: 6px;
}

.trad-footer__bottom {
  border-top: 1px solid rgba(181, 214, 231, 0.25);
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trad-footer__legal {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .trad-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trad-footer__grid {
    grid-template-columns: 1fr;
  }
}

.careers-divider {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  border: 0;
  border-top: 1px solid rgba(148,163,184,.3);
}

.careers-form .field-full {
  grid-column: 1 / -1;
}

.careers-form .checkbox-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
}

.careers-form .checkbox-line input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.careers-form .form-section-title {
  margin: 1rem 0 .25rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(148,163,184,.26);
}

.careers-form .references-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.careers-form .reference-card {
  padding: 1rem;
}

.careers-form .reference-card h4 {
  margin: 0 0 .7rem;
}

.field-error {
  display: block;
  margin-top: .4rem;
  color: #b91c1c;
  font-size: .88rem;
  font-weight: 600;
}

.invalid-field {
  border-color: rgba(14,116,144,.45) !important;
  box-shadow: 0 0 0 2px rgba(14,116,144,.14);
}

#careers-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.careers-form #careers-submit {
  display: block;
  margin: 0.75rem auto 0;
}

.careers-form .hiring-note {
  text-align: center;
}

@media (max-width: 700px) {
  .careers-form .references-grid {
    grid-template-columns: 1fr;
  }
}

.contact-trust-strip {
  padding-top: 2rem;
}

.trust-strip-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: 1fr;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1rem;
}

.trust-chip p {
  margin: 0;
  color: #334155;
  font-weight: 700;
}

.trust-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #0e7490;
  background: rgba(14,116,144,.12);
  border: 1px solid rgba(14,116,144,.24);
  font-weight: 800;
}

@media (min-width: 900px) {
  .trust-strip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Social icons row for existing traditional footer */
.trad-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
  justify-content: center;
}

.trad-social-link {
  width: 51px;
  height: 51px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(180, 210, 228, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #e7f4fb;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.trad-social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.trad-social-link:hover {
  transform: translateY(-1px) scale(1.04);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(220, 240, 250, 0.45);
}

.trad-social-link:focus-visible {
  outline: 2px solid #59c7ec;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .trad-footer__social {
    margin-top: 0.75rem;
    gap: 0.5rem;
  }

  .trad-social-link {
    width: 48px;
    height: 48px;
  }
}

/* Privacy page: premium structured policy layout */
.policy-hero {
  position: relative;
  overflow: hidden;
  color: #f8fcff;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 3.2rem);
  background:
    radial-gradient(800px 320px at 15% -10%, rgba(126,231,255,.34), transparent 70%),
    linear-gradient(125deg, #0a2a3d 0%, #0e7490 55%, #0891b2 100%);
}

.policy-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,42,61,.14), rgba(10,42,61,.3));
}

.policy-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.policy-hero h1 {
  margin-bottom: .7rem;
}

.policy-hero__subhead {
  margin: 0 0 1rem;
  color: rgba(246,252,255,.95);
  font-size: clamp(1rem, 2.3vw, 1.15rem);
  max-width: 700px;
}

.policy-effective-date {
  margin: 0 0 1.1rem;
  color: #dff4ff;
  font-weight: 600;
}

.policy-compliance {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(211,241,255,.46);
  border-radius: 999px;
  padding: .55rem .9rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}

.policy-compliance svg {
  width: 18px;
  height: 18px;
  fill: #e8faff;
}

.policy-main {
  padding-top: 2.2rem;
}

.policy-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.policy-summary {
  background: linear-gradient(180deg, #f8fdff, #f0f9ff);
  border: 1px solid rgba(148,163,184,.3);
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.policy-summary h2 {
  margin-bottom: .75rem;
}

.policy-sections {
  display: grid;
  gap: .95rem;
}

.policy-card,
.policy-contact-card {
  background: #ffffff;
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
  padding: 1.15rem 1.2rem;
}

.policy-card h3,
.policy-contact-card h3 {
  margin-bottom: .65rem;
  color: #0f172a;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.policy-card h4 {
  margin: .75rem 0 .4rem;
  color: #0e7490;
  font-size: .98rem;
}

.policy-card p,
.policy-card li,
.policy-contact-card p {
  color: #334155;
  line-height: 1.75;
  margin-bottom: .65rem;
}

.policy-card ul {
  margin: 0 0 .5rem;
  padding-left: 1.2rem;
}

.policy-rights {
  border-color: rgba(14,116,144,.34);
  background: linear-gradient(180deg, #f3fbff, #ffffff);
}

.policy-contact-card {
  border-color: rgba(14,116,144,.34);
  background: linear-gradient(180deg, #f7fdff, #f0f9ff);
}

.policy-contact-card a {
  color: #0e7490;
  font-weight: 700;
}

.resource-guide-btn {
  margin-top: .45rem;
  padding: .55rem .9rem;
  font-size: .88rem;
}

@media (min-width: 980px) {
  .policy-layout {
    grid-template-columns: minmax(260px, .44fr) minmax(0, 1fr);
    align-items: start;
  }

  .policy-summary {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

@media (max-width: 700px) {
  .policy-hero {
    padding-top: 3.4rem;
  }

  .policy-compliance {
    border-radius: 12px;
    display: flex;
  }

  .policy-card,
  .policy-contact-card {
    padding: 1rem;
  }
}

/* content-visibility: auto removed - caused mobile sections to stay blank
   when IntersectionObserver didn't fire before the first paint.
   The reveal observer already handles lazy-showing sections efficiently. */

/* Production contact UX */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-toast {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 1200;
  min-width: 240px;
  max-width: 92vw;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.site-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-toast.is-success {
  background: #0f766e;
}

.site-toast.is-error {
  background: #991b1b;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }
  .header-inner {
    gap: 0.55rem;
  }
  .mobile-sticky-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1100;
    height: 46px;
    border-radius: 999px;
    background: #0ea5a3;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.22);
  }
}

.locations-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 700px) {
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .locations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.micro-cta { margin-top: 10px; }

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.highlight-card { border: 1px solid rgba(20, 184, 166, .35); }

.geo-dominant {
  margin-top: 28px;
  padding: 1.2rem;
  border-radius: 18px;
  background: linear-gradient(145deg, #073448, #0b4a65);
  color: #f8fdff;
}

.geo-head h2 { margin: 0 0 8px; }

.geo-head p { margin: 0 0 18px; opacity: .9; color: #d6f0fb; }

.geo-groups { display: grid; gap: 14px; }

.geo-group h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .2px;
  opacity: .95;
}

.geo-chips { display: flex; flex-wrap: wrap; gap: 10px; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(20, 184, 166, .45);
}

.chip:active { transform: translateY(0) scale(.98); }

.geo-cta { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

.geo-cta .btn-primary,
.geo-cta .btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
}

.geo-cta .btn-primary {
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: #06121a;
  box-shadow: none;
}

.geo-cta .btn-secondary {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .25);
  color: #fff;
}

.local-faq { margin-top: 22px; }

.local-faq .faq-item {
  border: 1px solid rgba(100, 116, 139, .24);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .95);
}

.local-faq .faq-item + .faq-item { margin-top: 10px; }

.local-faq .faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.local-faq .faq-item p {
  margin: 10px 0 0;
  opacity: .9;
}

/* ========== HOME PAGE PREMIUM UI ========== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.2rem;
}

.section {
  padding: 4rem 0;
}

.section.soft,
.section.soft-bg {
  background: linear-gradient(180deg, #f5fbff, #ffffff);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0e7490;
  margin-bottom: 0.6rem;
}

.h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.sub {
  color: #64748b;
  max-width: 700px;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  margin-top: -2rem;
  padding-bottom: 1.5rem;
}

/* ---------- HERO MICRO (near-me local intent) ---------- */
.hero-micro {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.01em;
}

/* ---------- LOCATION INTRO (near-me) ---------- */
.loc-intro {
  max-width: 640px;
  margin: 0.6rem 0 1.2rem;
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
}

/* ---------- NEAR-ME SECTION ---------- */
.near-me-section {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #f0f9ff, #ffffff);
}

.near-me-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.near-me-section p {
  max-width: 700px;
  color: #475569;
  line-height: 1.7;
}

.near-me-section .hero-actions {
  margin-top: 1.5rem;
}

/* ---------- NEAR-ME FAQ ---------- */
.near-me-faq {
  margin-top: 1.5rem;
}

.near-me-faq details {
  border: 1px solid rgba(100, 116, 139, .18);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  background: #fff;
}

.near-me-faq details + details {
  margin-top: 0.6rem;
}

.near-me-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
}

.near-me-faq details p {
  margin: 0.7rem 0 0;
  color: #475569;
  line-height: 1.65;
}

/* ---------- VISUALLY HIDDEN (a11y + SEO) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  gap: 1rem;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
}

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
}

/* ---------- SPLIT SECTION ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.feature {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(14, 116, 144, 0.15);
  color: #0e7490;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.feature-title {
  font-weight: 700;
}

.feature-text {
  color: #64748b;
  font-size: 0.95rem;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.step-card {
  background: #fff;
  padding: 1.2rem;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.step-num {
  width: 34px;
  height: 34px;
  background: rgba(14, 116, 144, 0.15);
  color: #0e7490;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  font-size: 1.6rem;
}

.service-title {
  font-weight: 800;
  margin-top: 0.6rem;
}

.service-text {
  color: #64748b;
  font-size: 0.95rem;
}

/* ---------- TESTIMONIAL ---------- */
.t-card {
  background: #fff;
  padding: 1.4rem;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.t-stars {
  color: #facc15;
  font-size: 1.1rem;
}

/* ---------- FAQ ---------- */
.faq-q,
.faq-question {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid #cfe8f3;
  background: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
  cursor: pointer;
}

.faq-a,
.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: #64748b;
}

.faq-q[aria-expanded="true"] + .faq-a,
.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, #0e7490, #0b4f66);
  color: #fff;
  padding: 3rem 0;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .stats-grid,
  .steps,
  .services-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .h2 {
    font-size: 1.6rem;
  }
}
