:root {
  --navy-950: #062e3d;
  --navy-900: #073f55;
  --navy-800: #0b526c;
  --navy-700: #126680;
  --blue-600: #1782ae;
  --blue-500: #20a1ce;
  --blue-100: #dff4fb;
  --blue-50: #effaFD;
  --lime-500: #b6d533;
  --lime-400: #cce45d;
  --lime-100: #f1f8d7;
  --green-600: #16834d;
  --green-100: #e1f5ea;
  --ink: #16262f;
  --muted: #586a74;
  --line: #d7e4e9;
  --surface: #fff;
  --tint: #f4f8fa;
  --shadow-sm: 0 10px 28px rgba(6, 46, 61, .09);
  --shadow-lg: 0 28px 70px rgba(6, 46, 61, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.13;
}

h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.55rem, 5.6vw, 4.65rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime-400);
  outline-offset: 4px;
}

.servicebar {
  color: #fff;
  background: var(--navy-950);
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: .015em;
}

.servicebar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.servicebar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.servicebar-inner span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-400);
  content: "";
}

.servicebar a {
  color: #fff;
  font-size: .96rem;
  font-weight: 850;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(7, 63, 85, .09);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 26px rgba(6, 46, 61, .06);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 210px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(17px, 2vw, 30px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--navy-900);
  font-size: .91rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--lime-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 10px 18px;
  font-size: .96rem;
}

.button-primary,
.header-call {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 9px 24px rgba(23, 130, 174, .23);
}

.button-primary:hover,
.header-call:hover {
  background: var(--navy-800);
}

.button-outline {
  border-color: var(--navy-800);
  color: var(--navy-900);
  background: transparent;
}

.button-outline:hover {
  color: #fff;
  background: var(--navy-800);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .58);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .16);
}

.button-light {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 9px 24px rgba(6, 46, 61, .2);
}

.button-light:hover {
  background: var(--lime-100);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 14%, rgba(32, 161, 206, .34), transparent 34%),
    linear-gradient(128deg, var(--navy-950), var(--navy-900) 56%, #0c5e75);
}

.hero::before {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
  padding-block: 72px 96px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--lime-500);
  content: "";
}

.eyebrow-light {
  color: var(--lime-400);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions,
.final-actions,
.condition-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, .92);
  font-size: .91rem;
  font-weight: 700;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 5px rgba(204, 228, 93, .13);
  content: "";
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-image {
  width: 100%;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .11);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-price-card {
  position: absolute;
  bottom: 52px;
  left: -32px;
  min-width: 210px;
  padding: 21px 24px;
  border-radius: var(--radius-md);
  color: var(--navy-950);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-price-card span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-price-card strong {
  display: block;
  margin: 3px 0 2px;
  color: var(--navy-900);
  font-size: 2rem;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.hero-price-card small {
  color: var(--muted);
}

.hero-badge {
  position: absolute;
  top: 70px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  padding: 13px;
  border: 6px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--lime-400);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transform: rotate(8deg);
}

.hero-wave {
  position: absolute;
  right: -5%;
  bottom: -76px;
  left: -5%;
  height: 120px;
  border-radius: 50% 50% 0 0;
  background: #fff;
}

.quick-contact {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.quick-contact-grid > div {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.quick-contact-grid > div:last-child {
  border-right: 0;
}

.quick-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--lime-100);
  font-size: 1.12rem;
}

.quick-contact p {
  margin: 0;
  line-height: 1.35;
}

.quick-contact strong,
.quick-contact a,
.quick-contact p > span {
  display: block;
}

.quick-contact strong {
  margin-bottom: 4px;
  color: var(--navy-950);
  font-size: .93rem;
}

.quick-contact a,
.quick-contact p > span {
  color: var(--muted);
  font-size: .86rem;
}

.section {
  padding-block: clamp(76px, 9vw, 120px);
}

.section-tint {
  background: var(--tint);
}

.intro-section {
  padding-top: 110px;
}

.intro-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(45px, 8vw, 110px);
}

.intro-grid h2 {
  max-width: 540px;
}

.prose {
  color: var(--muted);
  font-size: 1.06rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.compact {
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.featured-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.price-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--blue-500);
  box-shadow: 0 16px 44px rgba(23, 130, 174, .14);
}

.price-card.featured::after {
  position: absolute;
  top: -46px;
  right: -46px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--lime-400);
  content: "";
  opacity: .84;
}

.price-label,
.location-area {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--blue-100);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 9px;
}

.price {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}

.price-card > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
}

.price-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table caption {
  padding: 22px 26px;
  color: var(--navy-950);
  font-weight: 850;
  text-align: left;
  background: var(--blue-100);
}

.price-table th,
.price-table td {
  padding: 15px 26px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: #fff;
  background: var(--navy-900);
  font-size: .84rem;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
}

.price-table td:last-child {
  color: var(--navy-900);
  font-weight: 900;
}

.price-table tbody tr:nth-child(even) {
  background: #f8fbfc;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-conditions {
  display: grid;
  grid-template-columns: 1.15fr .95fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 30px;
  padding: 30px;
  border-left: 5px solid var(--lime-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.price-conditions h3,
.price-conditions p,
.price-conditions ul {
  margin-bottom: 0;
}

.price-conditions p,
.price-conditions li {
  color: var(--muted);
  font-size: .9rem;
}

.price-conditions ul {
  padding-left: 20px;
}

.condition-actions {
  flex-direction: column;
  min-width: 198px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 248px;
  padding: 28px 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-100);
  content: "";
}

.service-card > span {
  display: inline-block;
  margin-bottom: 23px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .91rem;
}

.vehicle-section {
  color: #fff;
  background: var(--navy-950);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 650px;
}

.vehicle-photo {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.vehicle-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--navy-950) 100%);
  content: "";
}

.vehicle-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  right: 26px;
  bottom: 30px;
  z-index: 2;
  min-width: 190px;
  padding: 16px 20px;
  border-left: 4px solid var(--lime-400);
  border-radius: 8px;
  color: var(--navy-950);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.photo-badge strong,
.photo-badge small {
  display: block;
}

.photo-badge small {
  color: var(--muted);
}

.vehicle-copy {
  align-self: center;
  padding: 70px 0 70px clamp(44px, 7vw, 96px);
}

.vehicle-copy h2 {
  color: #fff;
}

.vehicle-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 23px;
}

.feature-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime-400);
  content: "";
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  color: #fff;
  font-size: .94rem;
}

.feature-list span {
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}

.hospital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.location-card.featured-location {
  border-color: var(--blue-500);
  background: linear-gradient(145deg, #fff, var(--blue-50));
}

.location-card address {
  margin-bottom: 18px;
  color: var(--muted);
}

.location-card a,
.source-link,
.text-link {
  color: var(--blue-600);
  font-size: .89rem;
  font-weight: 800;
}

.medical-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 5px solid var(--lime-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  background: var(--lime-100);
}

.medical-note strong {
  color: var(--navy-950);
}

.care-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: clamp(48px, 8vw, 105px);
}

.care-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.care-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.care-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 25px;
  margin: 22px 0;
}

.care-list > div {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.care-list strong,
.care-list span {
  display: block;
}

.care-list strong {
  color: var(--navy-900);
}

.care-list span {
  color: var(--muted);
  font-size: .82rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.steps li {
  position: relative;
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: -22px;
  width: 16px;
  height: 2px;
  background: var(--line);
  content: "";
}

.steps li > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--lime-400);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .91rem;
}

.airport-section {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
}

.airport-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  min-height: 610px;
}

.airport-copy {
  align-self: center;
  padding: 80px clamp(48px, 7vw, 100px) 80px 0;
}

.airport-copy h2 {
  color: #fff;
}

.airport-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
}

.airport-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.airport-actions span,
.airport-actions strong,
.airport-actions small {
  display: block;
}

.airport-actions strong {
  color: var(--lime-400);
  font-size: 1.15rem;
}

.airport-actions small {
  color: rgba(255, 255, 255, .68);
}

.airport-image {
  position: relative;
  min-height: 540px;
}

.airport-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--navy-700) 0, transparent 28%);
  content: "";
}

.airport-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(48px, 8vw, 105px);
}

.area-grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.area-cards > div {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.area-cards strong,
.area-cards span {
  display: block;
}

.area-cards strong {
  margin-bottom: 6px;
  color: var(--navy-900);
}

.area-cards span {
  color: var(--muted);
  font-size: .84rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-help {
  margin-top: 30px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
}

.faq-help span,
.faq-help a {
  display: block;
}

.faq-help span {
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.faq-help a {
  color: #fff;
  font-weight: 900;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-list details:first-child {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.faq-list details:last-child {
  border-bottom: 0;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.faq-list summary {
  position: relative;
  padding: 22px 55px 22px 24px;
  color: var(--navy-950);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--blue-100);
  content: "+";
  font-size: 1.18rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] summary {
  color: var(--blue-600);
}

.faq-list details p {
  margin: -5px 55px 0 24px;
  padding-bottom: 23px;
  color: var(--muted);
  font-size: .94rem;
}

.final-cta {
  color: #fff;
  background:
    radial-gradient(circle at 88% 30%, rgba(32, 161, 206, .28), transparent 26%),
    var(--navy-950);
}

.final-cta-inner {
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-block: 70px;
}

.final-cta h2 {
  max-width: 760px;
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.final-actions {
  flex-direction: column;
  min-width: 210px;
}

.site-footer {
  padding-top: 70px;
  color: rgba(255, 255, 255, .7);
  background: #041f2a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr 1fr;
  gap: 50px;
}

.footer-about img {
  width: 205px;
  height: 62px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.footer-grid h2 {
  margin-bottom: 19px;
  color: #fff;
  font-size: .96rem;
  letter-spacing: .02em;
}

.footer-grid p {
  font-size: .88rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: .88rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .78rem;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.floating-contact a {
  min-width: 174px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(6, 46, 61, .24);
  font-size: .96rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease;
}

.floating-contact a:hover {
  filter: brightness(1.08);
  transform: translateX(-3px);
}

.floating-contact i {
  width: 18px;
  font-size: 1.14rem;
  text-align: center;
}

/* Extra leesbaarheid voor oudere bezoekers en belangrijke contactgegevens. */
.main-nav a,
.trust-list,
.service-card p,
.steps p,
.faq-list details p,
.footer-grid p,
.footer-links a {
  font-size: .98rem;
}

.quick-contact strong {
  font-size: 1rem;
}

.quick-contact a,
.quick-contact p > span,
.care-list span {
  font-size: .94rem;
}

.quick-contact a[href^="tel:"],
.faq-help a {
  color: var(--navy-900);
  font-size: 1.14rem;
  font-weight: 900;
}

.header-call,
.footer-links a[href^="tel:"] {
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-help a {
  color: #fff;
}

.location-card a,
.source-link,
.text-link {
  font-size: .96rem;
}

.float-call {
  background: var(--navy-900);
}

.float-whatsapp {
  background: var(--green-600);
}

.float-price {
  background: var(--blue-600);
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .header-call {
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr .85fr;
    gap: 48px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-conditions {
    grid-template-columns: 1fr 1fr;
  }

  .condition-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .hospital-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .servicebar-inner {
    justify-content: space-between;
  }

  .servicebar-inner span:nth-child(2) {
    display: none;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 68px 120px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-price-card {
    bottom: -20px;
    left: 20px;
  }

  .hero-badge {
    top: 35px;
    right: -8px;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid > div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-contact-grid > div:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .care-grid,
  .area-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .featured-prices {
    grid-template-columns: 1fr;
  }

  .price-conditions {
    grid-template-columns: 1fr;
  }

  .condition-actions {
    grid-column: auto;
  }

  .vehicle-grid,
  .airport-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .vehicle-photo,
  .airport-image {
    min-height: 500px;
  }

  .vehicle-photo::after,
  .airport-image::before {
    background: linear-gradient(0deg, var(--navy-950) 0, transparent 30%);
  }

  .vehicle-copy,
  .airport-copy {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 65px 0 80px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps li::after {
    display: none;
  }

  .airport-copy {
    order: 2;
  }

  .airport-image {
    order: 1;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-actions {
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 660px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 78px;
    font-size: 18px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .servicebar {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 165px;
    height: 52px;
  }

  .header-call {
    min-width: 46px;
    width: 46px;
    padding-inline: 0;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    font-size: 0;
  }

  .header-call i {
    color: #fff;
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .hero-layout {
    padding-block: 54px 105px;
  }

  .hero-actions .button,
  .condition-actions .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-image {
    border-width: 5px;
    border-radius: 24px;
  }

  .hero-badge {
    top: 18px;
    right: -3px;
    width: 90px;
    height: 90px;
    font-size: .73rem;
  }

  .hero-price-card {
    bottom: -42px;
    left: 10px;
    min-width: 190px;
    padding: 17px 20px;
  }

  .quick-contact {
    margin-top: -24px;
  }

  .intro-section {
    padding-top: 82px;
  }

  .section {
    padding-block: 76px;
  }

  .price-card,
  .location-card,
  .care-card {
    padding: 24px 21px;
  }

  .price-table-wrap {
    overflow-x: auto;
  }

  .price-table {
    min-width: 500px;
  }

  .price-table th,
  .price-table td {
    padding: 13px 18px;
  }

  .price-conditions {
    padding: 24px 21px;
  }

  .service-grid,
  .hospital-grid,
  .feature-list,
  .care-list,
  .area-cards,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .vehicle-photo,
  .airport-image {
    min-height: 380px;
  }

  .photo-badge {
    right: 15px;
    bottom: 15px;
  }

  .airport-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-list summary {
    padding-left: 18px;
  }

  .faq-list details p {
    margin-right: 45px;
    margin-left: 18px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .floating-contact {
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .8);
    background: #fff;
    box-shadow: 0 -8px 28px rgba(6, 46, 61, .18);
  }

  .floating-contact a {
    min-width: 0;
    min-height: 76px;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding: 7px 4px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: .9rem;
    font-weight: 900;
  }

  .floating-contact a:hover {
    transform: none;
  }

  .floating-contact i {
    margin-bottom: 2px;
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .servicebar,
  .site-header,
  .floating-contact,
  .hero-actions,
  .condition-actions,
  .final-cta {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    font-size: 12pt;
  }

  .hero {
    color: #000;
    background: #fff;
  }

  .hero h1,
  .hero-lead {
    color: #000;
  }

  .section {
    padding-block: 28px;
  }
}
