:root {
  --ink: #17304a;
  --muted: #68788a;
  --line: #e3e8ef;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #0b6fb3;
  --blue-dark: #084f88;
  --orange: #f36f21;
  --orange-dark: #d75a12;
  --green: #12947f;
  --shadow: 0 18px 44px rgba(23, 48, 74, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 10px clamp(18px, 5vw, 96px);
  background: var(--white);
  border-top: 7px solid #222c35;
  border-bottom: 1px solid rgba(227, 232, 239, 0.8);
  box-shadow: 0 10px 26px rgba(23, 48, 74, 0.05);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 250px;
  align-items: center;
}

.brand-logo {
  width: 250px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: var(--orange);
  border-radius: 9px;
  box-shadow: inset 0 -8px 0 rgba(8, 79, 136, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--orange);
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand strong span {
  color: #142541;
}

.brand small {
  margin-top: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  color: #121923;
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 800;
  white-space: nowrap;
}

.nav a {
  padding: 12px 0;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dropdown-trigger::after {
  width: 8px;
  height: 8px;
  content: "";
  border: solid currentColor;
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 255px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(227, 232, 239, 0.95);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(23, 48, 74, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-menu a {
  padding: 18px 24px;
  color: #2a3038;
  font-size: 16px;
  font-weight: 700;
  white-space: normal;
}

.dropdown-menu a:hover {
  color: var(--orange);
  background: #fff7f1;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-tools {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-portal-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: #163350;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(23, 48, 74, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-portal-link:hover {
  background: #21456b;
  box-shadow: 0 14px 28px rgba(23, 48, 74, 0.18);
  transform: translateY(-1px);
}

.icon-link {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #1b2430;
}

.icon-link svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 900;
  border-radius: 999px;
}

.portal-cta {
  color: var(--white);
  background: #163350;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.portal-cta:hover {
  background: #21456b;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--orange);
}

.button.primary {
  box-shadow: 0 12px 28px rgba(243, 111, 33, 0.26);
}

.button.secondary {
  color: var(--white);
  background: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  padding: clamp(66px, 8vw, 108px) clamp(18px, 8vw, 150px) clamp(46px, 6vw, 74px);
  background: #14213a;
}

.hero-video,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  overflow: hidden;
}

.hero-bg {
  width: 112%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  animation: universityFilm 18s ease-in-out infinite;
  transform: translate3d(-4%, 0, 0) scale(1.04);
}

.hero-bg-one {
  animation-delay: 0s;
}

.hero-bg-two {
  animation-delay: 6s;
}

.hero-bg-three {
  animation-delay: 12s;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 28, 48, 0.92) 0%, rgba(15, 28, 48, 0.82) 43%, rgba(15, 28, 48, 0.38) 100%),
    linear-gradient(0deg, rgba(15, 28, 48, 0.5), rgba(15, 28, 48, 0.18));
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7bd;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

@keyframes universityFilm {
  0% {
    opacity: 0;
    transform: translate3d(-5%, 0, 0) scale(1.04);
  }

  9% {
    opacity: 1;
  }

  32% {
    opacity: 1;
  }

  43% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1.09);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1.09);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    opacity: 0;
    transform: translate3d(-3%, 0, 0) scale(1.04);
  }

  .hero-bg-one {
    opacity: 1;
  }
}

.country-pill::before {
  width: 12px;
  height: 12px;
  content: "";
  background: var(--orange);
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(243, 111, 33, 0.18);
}

.hero-collage {
  position: relative;
  z-index: 2;
  min-height: 580px;
}

.landmark-card,
.student-card {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
}

.landmark-card img,
.student-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landmark-card.tower {
  top: 8px;
  right: 18%;
  width: min(270px, 38vw);
  height: 420px;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 180px 180px 16px 16px;
}

.landmark-card.campus {
  right: 0;
  bottom: 66px;
  width: min(320px, 42vw);
  height: 220px;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  transform: rotate(5deg);
}

.student-card.main-student {
  left: 4%;
  bottom: 20px;
  width: min(410px, 45vw);
  height: 285px;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
}

.student-card.small-student {
  left: 0;
  top: 84px;
  width: min(230px, 25vw);
  height: 230px;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.floating-note {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: min(290px, 42vw);
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-left: 7px solid var(--orange);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 4px;
  font-size: 24px;
}

.floating-note span {
  color: var(--muted);
  font-weight: 800;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-band div {
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: 21px;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.5;
}

.requirements-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 8vw, 150px);
  color: var(--white);
  background: var(--orange);
}

.advisory-bar {
  background: linear-gradient(90deg, var(--blue-dark), #142541);
}

.requirements-bar p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.requirements-bar div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.requirements-bar span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: #172234;
  font-size: 14px;
  font-weight: 900;
  background: var(--white);
  border-radius: 999px;
}

.advisory-bar span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.complete-route {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(34px, 6vw, 80px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, #10263b, var(--blue-dark));
}

.complete-route .eyebrow {
  color: #ffd7bd;
}

.complete-route p,
.student-portal p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

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

.route-steps article {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
}

.route-steps span {
  color: var(--orange);
  font-weight: 900;
}

.route-steps strong {
  font-size: 18px;
}

.eligibility-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.eligibility-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.eligibility-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.eligibility-form label {
  display: grid;
  gap: 8px;
  color: #2e4055;
  font-size: 14px;
  font-weight: 900;
}

.eligibility-form input,
.eligibility-form select {
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.eligibility-result {
  grid-column: 1 / -1;
  display: block;
  min-height: 62px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 800;
  background: #fff7f1;
  border: 1px solid rgba(243, 111, 33, 0.32);
  border-radius: 10px;
}

.eligibility-result:empty {
  display: none;
}

.eligibility-result strong {
  color: var(--orange-dark);
  font-size: 26px;
}

.eligibility-result a {
  display: inline-flex;
  margin-left: 10px;
  color: var(--orange-dark);
  font-weight: 900;
}

.proof-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px dashed rgba(243, 111, 33, 0.65);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(23, 48, 74, 0.06);
}

.proof-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--orange);
  border-radius: 999px;
}

.proof-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.student-portal {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #10263b;
}

.student-portal .eyebrow {
  color: #ffd7bd;
}

.portal-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.portal-showcase {
  display: grid;
  gap: 18px;
}

.portal-image-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 360px;
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.portal-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.28);
}

.portal-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.portal-image-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 8px;
  padding: 24px 26px 26px;
  background: linear-gradient(180deg, rgba(10, 22, 36, 0), rgba(10, 22, 36, 0.84));
}

.portal-chip {
  width: fit-content;
  margin: 0;
  padding: 7px 12px;
  color: #0f2236;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f7cc67;
  border-radius: 999px;
}

.portal-image-overlay strong {
  font-size: clamp(22px, 2vw, 30px);
}

.portal-image-overlay span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.portal-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portal-board article {
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.portal-board strong,
.portal-board span {
  display: block;
}

.portal-board span {
  margin-top: 8px;
  color: var(--orange-dark);
  font-weight: 900;
}

.visual-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 48px);
  padding: clamp(46px, 6vw, 74px) clamp(18px, 5vw, 72px);
  background: #15222d;
}

.visual-card {
  display: grid;
  min-height: 620px;
  overflow: hidden;
  background: #101b25;
  border: 3px solid var(--orange);
  border-radius: 2px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.visual-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.08);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.visual-card:hover img {
  filter: brightness(0.86) saturate(1.16);
  transform: scale(1.04);
}

.visual-card div {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px 28px 28px;
}

.visual-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.visual-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  background: #1c9d36;
  border-radius: 4px;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

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

.service-card {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 48, 74, 0.06);
}

.service-card span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 900;
  background: var(--blue);
  border-radius: 8px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--orange-dark);
  font-weight: 900;
}

.service-card:nth-child(3) {
  border-color: rgba(243, 111, 33, 0.55);
  box-shadow: 0 16px 36px rgba(243, 111, 33, 0.13);
}

.service-card:nth-child(3) span {
  background: var(--orange);
}

.service-card:nth-child(3) h3 {
  color: var(--orange-dark);
}

.all-inclusive {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.all-inclusive > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.all-inclusive p,
.about-copy p,
.insurance p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 16px 15px 48px;
  font-weight: 800;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 15px;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.check-list li::after {
  position: absolute;
  left: 23px;
  top: 19px;
  width: 6px;
  height: 10px;
  content: "";
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: #edf5fb;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stats div {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--orange);
  font-size: 28px;
}

.stats span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 800;
}

.insurance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
}

.insurance h2 {
  max-width: 680px;
}

.insurance p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
}

.insurance .eyebrow {
  color: #ffd7bd;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-details p {
  margin: 0;
  color: #51657c;
}

.contact-details a {
  color: var(--ink);
  font-weight: 800;
}

.contact-actions {
  margin-top: 22px;
}

.profile-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.profile-form label {
  display: grid;
  gap: 8px;
  color: #2e4055;
  font-size: 14px;
  font-weight: 900;
}

.profile-form input,
.profile-form select,
.profile-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-form textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.profile-form label:has(textarea),
.form-button {
  grid-column: 1 / -1;
}

.form-button {
  border: 0;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: 32px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #10263b;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.76);
}

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

.footer h3 {
  color: var(--white);
}

.footer a {
  display: block;
  margin-top: 8px;
}

.service-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) clamp(18px, 8vw, 150px);
  background: #142541;
}

.service-hero > img,
.service-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero > img {
  object-fit: cover;
  animation: serviceHeroMove 18s ease-in-out infinite alternate;
}

.service-hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 28, 48, 0.94), rgba(15, 28, 48, 0.76) 48%, rgba(15, 28, 48, 0.28)),
    linear-gradient(0deg, rgba(15, 28, 48, 0.54), rgba(15, 28, 48, 0.12));
}

.service-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

.service-hero-content h1 {
  max-width: 800px;
}

.service-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.advisory-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.advisory-summary article {
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--white);
}

.advisory-summary strong,
.advisory-summary span {
  display: block;
}

.advisory-summary strong {
  color: var(--orange);
  font-size: 27px;
}

.advisory-summary span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.advisory-process {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.advisory-process p,
.destination-plan p,
.booking-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 48, 74, 0.06);
}

.process-list span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
}

.destination-plan {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.8fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.destination-plan > img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 0.6fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #142541);
}

.booking-section .eyebrow {
  color: #ffd7bd;
}

.booking-section p {
  color: rgba(255, 255, 255, 0.82);
}

.booking-card {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-top: 7px solid var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-card strong,
.booking-card span {
  display: block;
}

.booking-card strong {
  font-size: 26px;
}

.booking-card span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.booking-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding-left: 20px;
  color: #344451;
  font-weight: 800;
}

.insurance-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: 650px;
  padding: clamp(64px, 8vw, 110px) clamp(18px, 8vw, 150px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 111, 33, 0.28), transparent 32%),
    linear-gradient(135deg, #073c6b, #10263b 68%);
}

.insurance-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
}

.insurance-price {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 8px;
  align-items: end;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
}

.insurance-price span,
.insurance-price small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.insurance-price strong {
  color: var(--orange);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.82;
}

.insurance-card-stack {
  display: grid;
  gap: 18px;
}

.insurance-card-stack article {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.insurance-card-stack article:first-child {
  border-top: 8px solid var(--orange);
}

.insurance-card-stack article:last-child {
  margin-left: 42px;
  border-top: 8px solid var(--green);
}

.insurance-card-stack p,
.insurance-card-stack strong,
.insurance-card-stack span {
  display: block;
}

.insurance-card-stack p {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.insurance-card-stack strong {
  color: var(--blue-dark);
  font-size: 58px;
  line-height: 0.95;
}

.insurance-card-stack span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.insurance-card-stack a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 18px;
  padding: 0 18px;
  color: var(--white);
  font-weight: 900;
  background: var(--orange);
  border-radius: 999px;
}

.annual-insurance {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 8vw, 108px) clamp(18px, 8vw, 150px);
  background: var(--white);
}

.annual-insurance h2 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 68px);
  text-transform: uppercase;
}

.annual-insurance p {
  max-width: 760px;
  color: #1d2a38;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
}

.age-price-list {
  display: grid;
  gap: 18px;
}

.age-price-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 7px solid var(--orange);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(23, 48, 74, 0.06);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.age-price-list button:hover {
  border-color: rgba(243, 111, 33, 0.8);
  box-shadow: 0 18px 38px rgba(23, 48, 74, 0.12);
  transform: translateY(-3px);
}

.age-price-list span {
  color: #101923;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.age-price-list strong {
  color: var(--orange-dark);
  font-size: clamp(22px, 3vw, 34px);
  white-space: nowrap;
}

.certificate-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px clamp(18px, 8vw, 150px);
  color: var(--white);
  background: var(--orange);
}

.certificate-strip strong,
.certificate-strip span {
  display: block;
}

.certificate-strip strong {
  font-size: clamp(24px, 3vw, 36px);
}

.certificate-strip span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.certificate-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.certificate-strip li {
  padding: 10px 14px;
  color: #16202a;
  font-weight: 900;
  background: var(--white);
  border-radius: 999px;
}

.insurance-features {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(23, 48, 74, 0.07);
}

.feature-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 900;
  background: var(--blue);
  border-radius: 50%;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.coverage-section > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.insurance-comparison {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #142541);
}

.insurance-comparison .eyebrow {
  color: #ffd7bd;
}

.insurance-comparison p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.comparison-list {
  display: grid;
  gap: 12px;
}

.comparison-list span {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  background: var(--white);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 38, 59, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.quote-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border-top: 8px solid var(--orange);
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.2s ease;
}

.quote-modal.is-open .quote-dialog {
  transform: translateY(0) scale(1);
}

.quote-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.quote-selected {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
  background: #fff7f1;
  border: 1px solid rgba(243, 111, 33, 0.28);
  border-radius: 10px;
}

.quote-selected strong {
  color: var(--orange-dark);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #2e4055;
  font-size: 14px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-form textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.quote-form label:has(textarea),
.quote-form .form-button {
  grid-column: 1 / -1;
}

@keyframes serviceHeroMove {
  0% {
    transform: scale(1.04) translateX(-2%);
  }

  100% {
    transform: scale(1.1) translateX(2%);
  }
}

.ai-helper {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(15, 28, 48, 0.28), rgba(15, 28, 48, 0.44)),
    url("https://images.unsplash.com/photo-1511739001486-6bfe10ce785f?auto=format&fit=crop&w=360&q=82");
  background-position: center;
  background-size: cover;
  border: 3px solid var(--orange);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  animation: aiFloat 3.2s ease-in-out infinite;
  cursor: pointer;
}

.ai-helper::before {
  position: absolute;
  inset: 9px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
}

.ai-speech {
  position: absolute;
  right: 76px;
  bottom: 76px;
  min-width: 92px;
  padding: 10px 14px;
  color: #172234;
  font-weight: 900;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 16px 16px 4px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  animation: aiBubble 2.4s ease-in-out infinite;
}

.ai-orbit {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 2px dashed rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  animation: aiSpin 8s linear infinite;
}

.ai-face {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  background: linear-gradient(145deg, #ffffff, #dff5ff);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 19px;
  box-shadow: inset 0 -10px 18px rgba(11, 111, 179, 0.18), 0 10px 22px rgba(0, 0, 0, 0.22);
}

.ai-face::before {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 4px;
  height: 12px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
  transform: translateX(-50%);
}

.ai-eye {
  position: absolute;
  top: 21px;
  width: 9px;
  height: 9px;
  background: #142541;
  border-radius: 50%;
  animation: aiBlink 4s infinite;
}

.ai-eye.left {
  left: 16px;
}

.ai-eye.right {
  right: 16px;
}

.ai-smile {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 22px;
  height: 10px;
  border: solid var(--orange);
  border-width: 0 0 3px;
  border-radius: 0 0 20px 20px;
  transform: translateX(-50%);
}

.ai-passport {
  position: absolute;
  right: 13px;
  top: 17px;
  width: 23px;
  height: 31px;
  background: #1741a3;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  transform: rotate(12deg);
}

.ai-passport::after {
  position: absolute;
  left: 5px;
  top: 9px;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid #ffd166;
  border-radius: 50%;
}

.ai-suitcase {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 28px;
  height: 23px;
  background: var(--orange);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 7px;
  transform: rotate(-7deg);
}

.ai-suitcase::before {
  position: absolute;
  left: 8px;
  top: -8px;
  width: 9px;
  height: 7px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.ai-helper.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
}

.ai-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 31;
  display: grid;
  grid-template-rows: auto minmax(210px, 1fr) auto auto;
  width: min(390px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 44px));
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(243, 111, 33, 0.65);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ai-chat.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #142541);
}

.ai-chat-header strong,
.ai-chat-header span {
  display: block;
}

.ai-chat-header strong {
  font-size: 18px;
}

.ai-chat-header span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.ai-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
}

.ai-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  max-height: 360px;
  padding: 18px;
  overflow-y: auto;
  background: #f5f8fb;
}

.ai-message {
  max-width: 86%;
  padding: 11px 13px;
  color: #223044;
  line-height: 1.45;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
}

.ai-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  border-radius: 14px 14px 4px 14px;
}

.ai-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--orange);
  border-radius: 999px;
}

.ai-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.ai-quick-actions button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--blue-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  background: #eef5fb;
  border: 1px solid #d5e3f0;
  border-radius: 999px;
  cursor: pointer;
}

.ai-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.ai-form input {
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.ai-form button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

@keyframes aiFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes aiBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.04);
  }
}

@keyframes aiSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aiBlink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }

  95% {
    transform: scaleY(0.15);
  }
}

@media (max-width: 1080px) {
  .visual-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .dropdown-menu {
    top: calc(100% + 6px);
    left: 0;
    min-width: 235px;
    transform: translateY(8px);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: translateY(0);
  }

  .hero,
  .complete-route,
  .eligibility-section,
  .student-portal,
  .section-heading,
  .all-inclusive,
  .about,
  .contact-section,
  .footer,
  .advisory-process,
  .destination-plan,
  .booking-section,
  .insurance-hero,
  .annual-insurance,
  .coverage-section,
  .insurance-comparison {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .intro-band,
  .stats,
  .route-steps,
  .portal-showcase,
  .portal-board,
  .advisory-summary,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .certificate-strip {
    display: grid;
  }

  .insurance-card-stack article:last-child {
    margin-left: 0;
  }

  .age-price-list button {
    display: grid;
  }

  .requirements-bar {
    align-items: flex-start;
    display: grid;
  }

  .requirements-bar div {
    justify-content: flex-start;
  }

  .insurance {
    display: grid;
  }
}

@media (max-width: 620px) {
  .topbar {
    display: grid;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-action {
    width: 100%;
  }

  .hero-media,
  .hero-media img,
  .all-inclusive > img {
    min-height: 340px;
  }

  .hero-actions,
  .portal-actions,
  .hero-actions .button,
  .portal-actions .button,
  .insurance .button {
    width: 100%;
  }

  .service-grid,
  .visual-services,
  .proof-grid,
  .eligibility-form,
  .profile-form,
  .quote-form,
  .footer-columns {
    grid-template-columns: 1fr;
  }

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

  .visual-card img {
    height: 360px;
  }

  .portal-image-card {
    min-height: 260px;
  }

  .ai-helper {
    right: 14px;
    bottom: 14px;
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }

  .ai-speech {
    right: 58px;
    bottom: 66px;
    min-width: 82px;
    padding: 8px 10px;
    font-size: 14px;
  }
}
