@font-face {
  font-family: "Poppins";
  src: url("../vendor/fonts/poppins-v24-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../vendor/fonts/poppins-v24-latin-500.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../vendor/fonts/poppins-v24-latin-700.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple-950: #35133f;
  --purple-900: #451651;
  --purple-800: #572064;
  --purple-700: #6b2679;
  --purple-600: #81348f;
  --purple-100: #f0e2f4;
  --purple-50: #faf5fb;
  --pink-500: #d94b88;
  --pink-100: #fbe6ef;
  --gold-500: #e6aa36;
  --gold-100: #fff1d5;
  --green-600: #198754;
  --green-100: #e3f5eb;
  --ink: #24202a;
  --muted: #69616f;
  --line: #e6dee8;
  --white: #fff;
  --soft: #f8f5f9;
  --shadow-sm: 0 10px 28px rgba(69, 22, 81, .08);
  --shadow-lg: 0 25px 70px rgba(53, 19, 63, .17);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  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(--purple-950);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.14;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.6vw, 4.7rem);
}

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

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

.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(--purple-950);
  transform: translateY(-150%);
}

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

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

.topbar {
  color: #fff;
  background: var(--purple-950);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.topbar-inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 29px;
}

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

.topbar span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  content: "";
}

.topbar a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(69, 22, 81, .09);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(53, 19, 63, .05);
  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: 230px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

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

.main-nav a {
  position: relative;
  color: var(--purple-900);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pink-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: 9px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

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

.button-small {
  min-height: 45px;
  padding: 10px 17px;
  font-size: .78rem;
}

.button-primary {
  color: #fff;
  background: var(--purple-700);
  box-shadow: 0 11px 25px rgba(107, 38, 121, .24);
}

.button-primary:hover {
  color: #fff;
  background: var(--purple-950);
}

.button-outline {
  border-color: var(--purple-700);
  color: var(--purple-700);
  background: #fff;
}

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

.button-light {
  color: var(--purple-950);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

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

.button-ghost:hover {
  color: var(--purple-950);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  background: linear-gradient(125deg, #fff 0%, #fbf5fc 56%, #efe0f3 100%);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: -240px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: rgba(217, 75, 136, .08);
}

.hero-orb-two {
  bottom: -230px;
  left: 27%;
  width: 460px;
  height: 460px;
  background: rgba(129, 52, 143, .07);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
  padding-block: 78px 92px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
  color: var(--purple-700);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 29px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--gold-500);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.17rem);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 23px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--purple-950);
  font-size: .8rem;
  font-weight: 700;
  list-style: none;
}

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

.trust-list li::before {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  flex: 0 0 21px;
  border-radius: 50%;
  color: #fff;
  background: var(--green-600);
  content: "✓";
  font-size: .7rem;
}

.hero-visual {
  position: relative;
  padding: 23px 13px 13px 23px;
}

.hero-image-wrap {
  position: relative;
  border-radius: 42% 18% 42% 18%;
  background: var(--purple-700);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

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

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-price {
  position: absolute;
  right: -18px;
  bottom: 43px;
  min-width: 235px;
  display: grid;
  gap: 1px;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lg);
}

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

.hero-price strong {
  color: var(--purple-700);
  font-size: 1.78rem;
  letter-spacing: -.05em;
}

.hero-price small {
  color: var(--muted);
  font-size: .67rem;
}

.hero-chip {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--purple-950);
  box-shadow: var(--shadow-sm);
  font-size: .72rem;
  font-weight: 800;
}

.hero-chip span {
  font-size: 1rem;
}

.contact-strip {
  position: relative;
  z-index: 3;
  margin-top: -36px;
}

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

.contact-strip-grid > div {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 27px;
  border-right: 1px solid var(--line);
}

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

.strip-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  flex: 0 0 49px;
  border-radius: 50%;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: 1.13rem;
  font-weight: 800;
}

.contact-strip p {
  display: grid;
  gap: 1px;
  margin: 0;
  line-height: 1.4;
}

.contact-strip strong {
  color: var(--purple-950);
  font-size: .83rem;
}

.contact-strip a,
.contact-strip p span {
  color: var(--muted);
  font-size: .75rem;
}

.section {
  padding-block: 104px;
}

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

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

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
}

.intro-grid h2 {
  margin-bottom: 0;
}

.prose {
  padding-left: 34px;
  border-left: 3px solid var(--pink-500);
}

.prose p {
  margin-bottom: 20px;
  color: var(--muted);
}

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

.section-heading {
  max-width: 800px;
  margin-bottom: 52px;
}

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

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

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

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

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

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

.price-card.primary-card {
  border-color: var(--purple-600);
  box-shadow: 0 18px 45px rgba(107, 38, 121, .15);
}

.card-label {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.14rem;
}

.big-price {
  margin-bottom: 16px;
  color: var(--purple-700);
  font-size: 2.04rem;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.big-price small {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: 0;
}

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

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

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

.price-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.price-table td:last-child {
  color: var(--purple-700);
  font-weight: 800;
}

.price-table tbody tr:nth-child(even) {
  background: var(--purple-50);
}

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

.price-explainer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid #ecd597;
  border-radius: var(--radius-md);
  background: #fffaf0;
}

.price-explainer h3 {
  margin-bottom: 8px;
  font-size: 1.09rem;
}

.price-explainer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .77rem;
}

.price-explainer ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  font-size: .75rem;
  font-weight: 700;
  list-style: none;
}

.price-explainer li {
  position: relative;
  padding-left: 22px;
}

.price-explainer li::before {
  position: absolute;
  left: 0;
  color: var(--green-600);
  content: "✓";
}

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

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

.service-card:hover {
  border-color: var(--purple-600);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--purple-50);
  content: "";
}

.service-card > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 50%;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: .7rem;
  font-weight: 800;
}

.service-card h3 {
  font-size: 1.12rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
}

.vehicle-section {
  padding-block: 105px;
  color: #fff;
  background: var(--purple-950);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(58px, 8vw, 110px);
  align-items: center;
}

.vehicle-photo {
  position: relative;
}

.vehicle-photo::before {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 48%;
  height: 48%;
  border-top: 4px solid var(--pink-500);
  border-right: 4px solid var(--pink-500);
  border-radius: 0 var(--radius-lg) 0 0;
  content: "";
}

.vehicle-photo > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 30px 75px rgba(0, 0, 0, .3);
}

.photo-note {
  position: absolute;
  right: -20px;
  bottom: 28px;
  z-index: 2;
  min-width: 185px;
  display: grid;
  gap: 1px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  color: var(--purple-950);
  background: var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.photo-note strong {
  font-size: .84rem;
}

.photo-note small {
  font-size: .68rem;
}

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

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

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

.feature-list li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 31px;
}

.feature-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pink-500);
  content: "✓";
  font-size: .66rem;
}

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

.feature-list span {
  color: rgba(255, 255, 255, .64);
  font-size: .72rem;
  line-height: 1.5;
}

.hospital-section {
  background: #fff;
}

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

.location-card {
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--purple-50);
}

.district {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--purple-700);
  background: var(--purple-100);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.location-card h3 {
  min-height: 2.35em;
  font-size: 1.06rem;
}

.location-card address {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .78rem;
  font-style: normal;
}

.location-card a {
  margin-top: auto;
  color: var(--purple-700);
  font-size: .7rem;
  font-weight: 800;
  text-decoration: none;
}

.hospital-tip {
  margin-top: 27px;
  padding: 20px 24px;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  background: #fffaf0;
  font-size: .77rem;
}

.hospital-tip strong {
  color: var(--purple-950);
}

.care-grid {
  display: grid;
  grid-template-columns: .87fr 1.13fr;
  gap: clamp(55px, 8vw, 105px);
  align-items: center;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple-700);
  font-size: .79rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.care-locations {
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.care-locations h3 {
  margin-bottom: 22px;
  font-size: 1.08rem;
}

.care-locations ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-locations li {
  display: grid;
  gap: 2px;
  padding: 15px;
  border-radius: var(--radius-sm);
  background: var(--purple-50);
}

.care-locations strong {
  color: var(--purple-950);
  font-size: .78rem;
}

.care-locations span {
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.4;
}

.affiliation-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .63rem;
}

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

.steps li {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 27px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  border-top: 2px dashed #ccbfd0;
  content: "";
}

.steps li > span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--purple-700);
  box-shadow: 0 0 0 1px var(--purple-700);
  font-size: .8rem;
  font-weight: 800;
}

.steps h3 {
  font-size: 1rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.55;
}

.airport-section {
  color: #fff;
  background: var(--purple-700);
}

.airport-grid {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.airport-copy {
  padding: clamp(72px, 8vw, 115px) clamp(38px, 8vw, 105px) clamp(72px, 8vw, 115px) max(20px, calc((100vw - var(--container)) / 2));
}

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

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

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

.airport-actions > span {
  display: grid;
}

.airport-actions strong {
  color: var(--gold-500);
  font-size: 1.35rem;
}

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

.airport-image {
  min-height: 620px;
}

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

.area-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(55px, 8vw, 105px);
  align-items: center;
}

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

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

.area-cards > div {
  display: grid;
  gap: 2px;
  padding: 19px 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--purple-50);
}

.area-cards strong {
  color: var(--purple-950);
  font-size: .81rem;
}

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

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

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

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

.faq-contact {
  display: grid;
  gap: 2px;
  margin-top: 34px;
  padding: 21px;
  border-left: 4px solid var(--pink-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff;
}

.faq-contact span {
  color: var(--muted);
  font-size: .72rem;
}

.faq-contact a {
  color: var(--purple-700);
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 23px 50px 23px 0;
  color: var(--purple-950);
  cursor: pointer;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple-700);
  background: var(--purple-100);
  content: "+";
  font-size: 1.12rem;
}

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

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

.faq-list details p {
  margin: -3px 50px 24px 0;
  color: var(--muted);
  font-size: .81rem;
}

.final-cta {
  color: #fff;
  background: var(--purple-900);
}

.final-cta-inner {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 60px;
  align-items: center;
  padding-block: 65px;
}

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

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

.final-actions {
  justify-content: flex-end;
}

.site-footer {
  padding-top: 70px;
  color: rgba(255, 255, 255, .65);
  background: #29102f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .75fr 1fr;
  gap: 45px;
  padding-bottom: 55px;
}

.footer-about img {
  width: 210px;
  height: 56px;
  margin-bottom: 21px;
  object-fit: contain;
  object-position: left center;
}

.footer-grid h2 {
  margin: 7px 0 21px;
  color: #fff;
  font-size: .9rem;
  letter-spacing: 0;
}

.footer-grid p {
  margin-bottom: 0;
  font-size: .74rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-size: .74rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-500);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .68rem;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-contact a {
  min-width: 178px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 10px 28px rgba(41, 16, 47, .25);
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-contact a:hover {
  color: #fff;
  box-shadow: 0 14px 34px rgba(41, 16, 47, .34);
  transform: translateY(-2px);
}

.floating-contact a > span,
.floating-contact a > img {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  object-fit: contain;
  font-size: 1rem;
}

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

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

.float-whatsapp img {
  filter: brightness(0) invert(1);
}

.float-price {
  background: #167ca2;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: .75rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr .92fr;
    gap: 55px;
  }

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

  .price-explainer .button {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .topbar span:nth-child(2),
  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-grid {
    gap: 55px;
    padding-block: 70px 90px;
  }

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

  .hero-visual {
    width: min(100%, 610px);
    margin-inline: auto;
  }

  .contact-strip {
    margin-top: -25px;
  }

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

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

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

  .prose {
    padding-left: 26px;
  }

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

  .vehicle-photo {
    width: min(100%, 620px);
  }

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

  .steps li:nth-child(2)::after {
    display: none;
  }

  .airport-grid {
    grid-template-columns: 1fr;
  }

  .airport-copy {
    padding: 80px max(20px, calc((100vw - var(--container)) / 2));
  }

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

  .faq-intro {
    position: static;
  }

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

  .final-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 660px) {
  body {
    padding-bottom: 64px;
    font-size: 15px;
  }

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

  .topbar-inner {
    justify-content: space-between;
    gap: 9px;
    font-size: .64rem;
  }

  .topbar span:first-child::before {
    display: none;
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand img {
    width: 158px;
    height: 46px;
  }

  .header-phone {
    min-height: 41px;
    padding: 9px 12px;
    font-size: .68rem;
  }

  .hero-grid {
    padding-block: 58px 74px;
  }

  .hero-lead {
    font-size: .96rem;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 9px;
  }

  .hero-visual {
    padding: 15px 6px 8px 15px;
  }

  .hero-price {
    right: -4px;
    bottom: 18px;
    min-width: 190px;
    padding: 15px 17px;
  }

  .hero-price strong {
    font-size: 1.46rem;
  }

  .hero-chip {
    font-size: .63rem;
  }

  .contact-strip-grid > div {
    padding: 19px 20px;
  }

  .section,
  .vehicle-section {
    padding-block: 73px;
  }

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

  .section-heading {
    margin-bottom: 37px;
  }

  .featured-prices,
  .services-grid,
  .hospital-grid,
  .feature-list,
  .care-locations ul,
  .area-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .service-card,
  .location-card {
    padding: 25px;
  }

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

  .service-card > span {
    margin-bottom: 23px;
  }

  .price-table th,
  .price-table td {
    padding: 15px 16px;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: 140px;
  }

  .price-table th {
    font-size: .61rem;
  }

  .price-explainer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .photo-note {
    right: -8px;
    bottom: 17px;
    min-width: 165px;
  }

  .location-card h3 {
    min-height: 0;
  }

  .care-locations {
    padding: 24px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps li:not(:last-child)::after {
    top: 60px;
    left: 50%;
    width: 0;
    height: 30px;
    display: block;
    border-top: 0;
    border-left: 2px dashed #ccbfd0;
  }

  .airport-copy {
    padding: 72px 15px;
  }

  .airport-actions {
    display: grid;
  }

  .airport-image {
    min-height: 430px;
  }

  .faq-list summary {
    padding-right: 45px;
    font-size: .86rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta-inner {
    min-height: 0;
    padding-block: 69px;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-bottom {
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-align: center;
  }

  .floating-contact {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
    background: var(--purple-950);
    box-shadow: 0 -7px 24px rgba(0, 0, 0, .18);
  }

  .floating-contact a {
    min-width: 0;
    min-height: 64px;
    justify-content: center;
    padding: 8px 6px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0;
    box-shadow: none;
    font-size: .65rem;
  }

  .floating-contact a:last-child {
    border-right: 0;
  }

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

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

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

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

  .section,
  .vehicle-section {
    padding-block: 30px;
  }
}
