:root {
  --warm-white: #f7f7f6;
  --cool-white: #f0ede8;
  --white: #fffdfa;
  --navy: #242323;
  --slate: #5f5953;
  --muted: #938b82;
  --blue: #ff5a0a;
  --blue-2: #ff7936;
  --orange: #ff9c69;
  --line: #dddcd8;
  --soft-blue: #ffe0cd;
  --shadow: 0 22px 60px rgba(36, 35, 35, 0.08);
  --container: min(1360px, calc(100vw - 48px));
  --grid-gap: 24px;
  --grid-columns: repeat(12, minmax(0, 1fr));
  --section-rhythm: clamp(60px, 5vw, 84px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 82% 4%, rgba(64, 87, 232, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--warm-white), #fbfcff 36rem, var(--warm-white));
  color: var(--navy);
  font-family: Manrope, "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 28, 68, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 68, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0, transparent 760px);
}

.ambient-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-line {
  --ambient-y: 0px;
  position: absolute;
  display: block;
  width: 46vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(64, 87, 232, 0.32), transparent);
  opacity: 0.8;
  transform: translate3d(0, var(--ambient-y), 0) rotate(-18deg);
  will-change: transform;
}

.ambient-line-1 {
  top: 11rem;
  left: -8vw;
}

.ambient-line-2 {
  top: 62rem;
  right: -11vw;
  transform: translate3d(0, var(--ambient-y), 0) rotate(16deg);
}

.ambient-mark {
  --ambient-y: 0px;
  --ambient-rotate: 0deg;
  position: absolute;
  display: block;
  overflow: visible;
  opacity: 0.36;
  fill: rgba(64, 87, 232, 0.045);
  stroke: rgba(64, 87, 232, 0.34);
  stroke-width: 4;
  filter: drop-shadow(0 24px 42px rgba(64, 87, 232, 0.12));
  transform: translate3d(0, var(--ambient-y), 0) rotate(var(--ambient-rotate));
  will-change: transform;
  animation: ambient-float 16s cubic-bezier(0.37, 0, 0.63, 1) infinite alternate;
}

.ambient-mark path {
  vector-effect: non-scaling-stroke;
}

.ambient-mark-1 {
  top: 8.8rem;
  left: -4.8rem;
  width: 8.8rem;
  height: auto;
  --ambient-rotate: -18deg;
}

.ambient-mark-2 {
  top: 29rem;
  right: 4vw;
  width: 12.5rem;
  height: auto;
  --ambient-rotate: 14deg;
}

.ambient-mark-3 {
  top: 76rem;
  left: 5vw;
  width: 15rem;
  height: auto;
  --ambient-rotate: -8deg;
}

.ambient-mark-4 {
  top: 126rem;
  right: -2.6rem;
  width: 9rem;
  height: auto;
  --ambient-rotate: 22deg;
}

.ambient-mark-5 {
  top: 174rem;
  left: 7vw;
  width: 18rem;
  height: auto;
  --ambient-rotate: 10deg;
}

.ambient-mark-6 {
  top: 224rem;
  right: 12vw;
  width: 11rem;
  height: auto;
  --ambient-rotate: -16deg;
}

@keyframes ambient-float {
  from {
    transform: translate3d(0, -8px, 0);
  }

  to {
    transform: translate3d(0, 10px, 0);
  }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.grid-debug {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: var(--grid-gap);
  width: var(--container);
  margin: 0 auto;
  pointer-events: none;
}

.grid-debug::before {
  content: "12 колонок";
  position: fixed;
  top: 12px;
  left: max(12px, calc((100vw - min(1360px, calc(100vw - 48px))) / 2));
  padding: 7px 10px;
  border: 1px solid rgba(64, 87, 232, 0.28);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(17, 28, 68, 0.08);
}

.grid-debug span {
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(64, 87, 232, 0.12), rgba(64, 87, 232, 0.04)),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(64, 87, 232, 0.12) 31px 32px);
  border-right: 1px solid rgba(64, 87, 232, 0.28);
  border-left: 1px solid rgba(64, 87, 232, 0.28);
}

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

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

button,
input,
select {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid rgba(64, 87, 232, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(calc(-100% - 24px));
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  width: min(var(--container), calc(100vw - 48px));
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  backdrop-filter: none;
}

.brand {
  display: none;
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

.header-nav {
  display: flex;
  flex: 0 1 auto;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 26px);
  min-width: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.header-nav a {
  padding: 10px 0;
  white-space: nowrap;
}

.header-nav a:hover,
.site-footer a:hover {
  color: rgba(255, 255, 255, 1);
}

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: var(--grid-gap);
  width: var(--container);
  min-height: min(840px, calc(100dvh - 84px));
  margin: 0 auto;
  padding: 28px 0 24px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / span 6;
  min-width: 0;
  max-width: 690px;
  padding-top: clamp(16px, 3vw, 56px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.6vw, 72px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 span,
h2 span,
blockquote span {
  color: var(--blue);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 18px;
  color: var(--slate);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.5;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--slate);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1),
    background 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button svg {
  width: 22px;
  height: 22px;
  margin-left: 12px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button-primary {
  border: 1px solid var(--blue);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 34px rgba(64, 87, 232, 0.22);
}

.button-secondary {
  border: 1px solid rgba(64, 87, 232, 0.5);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
}

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

.button:active {
  transform: translateY(0) scale(0.99);
}

.button:hover svg {
  transform: translateX(3px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin: 0;
  color: var(--navy);
}

.hero-meta div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta dt,
.hero-meta dd {
  margin: 0;
}

.hero-meta svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.hero-meta dd {
  font-weight: 700;
}

.hero-route-card {
  margin-top: 28px;
  padding: 22px 24px 20px;
  border: 1px solid rgba(255, 156, 105, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 242, 0.84)),
    radial-gradient(circle at right top, rgba(255, 156, 105, 0.14), transparent 11rem);
  box-shadow: 0 18px 40px rgba(36, 35, 35, 0.06);
}

.hero-route-head,
.hero-signal-row {
  display: flex;
  align-items: center;
}

.hero-route-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.route-stamp,
.route-code,
.hero-signal-row span,
.program-intel span,
.program-badges span,
.request-pass-label,
.request-pass-meta span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-stamp {
  color: var(--blue);
}

.route-code {
  color: var(--muted);
  text-align: right;
}

.hero-route-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

.route-stop {
  min-width: 0;
  padding: 14px 14px 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(221, 220, 216, 0.72);
}

.route-stop small,
.route-stop span,
.program-intel span,
.request-pass p {
  display: block;
}

.route-stop small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-stop strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.15;
}

.route-stop span {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.35;
}

.route-arrow {
  align-self: center;
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
}

.hero-signal-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-signal-row span,
.program-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 156, 105, 0.22);
  border-radius: 999px;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.74);
  letter-spacing: 0.1em;
}

.hero-visual {
  position: relative;
  grid-column: 7 / -1;
  min-height: 640px;
}

.passport-stamp {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  width: 196px;
  min-height: 138px;
  padding: 14px 18px 12px;
  border: 3px solid rgba(255, 90, 10, 0.34);
  border-radius: 22px;
  color: rgba(255, 90, 10, 0.78);
  background: rgba(255, 252, 247, 0.18);
  box-shadow: 0 10px 28px rgba(36, 35, 35, 0.05);
  backdrop-filter: blur(3px);
  opacity: 0.5;
  pointer-events: none;
  text-align: center;
  transform: rotate(-8deg);
}

.passport-stamp::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 90, 10, 0.28);
  border-radius: 18px;
}

.passport-stamp::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 42px;
  bottom: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 90'%3E%3Cg fill='none' stroke='%23ff5a0a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' opacity='0.9'%3E%3Cpath d='M24 62h132'/%3E%3Cpath d='M34 62c7-18 19-28 36-28c10 0 12 6 20 6s10-6 20-6c17 0 29 10 36 28'/%3E%3Cpath d='M52 62V47M90 62V41M128 62V47'/%3E%3Cpath d='M46 34h88'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.65;
}

.passport-stamp span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  line-height: 1.1;
}

.passport-stamp span:first-child {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 90, 10, 0.22);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.passport-stamp span:last-child {
  align-self: end;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 90, 10, 0.22);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stamp-hero {
  left: 4px;
  bottom: 18px;
}

.production {
  position: relative;
}

.stamp-factory {
  right: 28px;
  bottom: 28px;
  transform: rotate(9deg);
}

.hero-image {
  position: absolute;
  top: -58px;
  right: -150px;
  width: min(770px, 62vw);
  height: min(770px, 62vw);
  min-width: 520px;
  min-height: 520px;
  overflow: hidden;
  border-radius: 50% 0 0 50%;
  box-shadow: var(--shadow);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 249, 252, 0.1), rgba(64, 87, 232, 0.06));
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: 48% 56%;
  opacity: 0;
  filter: saturate(0.92) brightness(1.05);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 5200ms ease;
  transform: scale(1.01);
}

.hero-image img.is-active {
  opacity: 1;
  transform: scale(1.045);
}

.hero-image img:nth-child(2) {
  object-position: 52% 52%;
}

.hero-image img:nth-child(3) {
  object-position: 55% 50%;
}

.hero-image img:nth-child(4),
.hero-image img:nth-child(5) {
  object-position: 50% 50%;
}

.count-card {
  position: absolute;
  right: 46px;
  top: 46%;
  width: 206px;
  padding: 24px;
  border: 1px solid rgba(232, 235, 242, 0.85);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(17, 28, 68, 0.12);
  backdrop-filter: blur(16px);
}

.count-card span,
.count-card em {
  display: block;
  color: var(--slate);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.count-card strong {
  display: inline-block;
  margin: 12px 8px 0 0;
  color: var(--navy);
  font-size: 62px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
}

.count-card hr {
  height: 1px;
  margin: 22px 0;
  border: 0;
  background: var(--line);
}

.count-card b {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.count-card b span {
  display: inline;
  color: var(--blue);
  font-size: inherit;
}

.hero-version-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: var(--container);
  margin: 0 auto 28px;
  color: var(--muted);
}

.hero-version-divider::before,
.hero-version-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(64, 87, 232, 0.18);
}

.hero-version-divider span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(64, 87, 232, 0.2);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stored-hidden {
  display: none !important;
}

.hero-video {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100vw;
  max-width: none;
  min-height: 100dvh;
  margin: 0 calc(50% - 50vw) 42px;
  padding: 0 clamp(24px, 4.4vw, 64px);
  border-radius: 0;
  background: #10100f;
  box-shadow: 0 26px 70px rgba(17, 28, 68, 0.16);
  isolation: isolate;
}

.hero-video-frame,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-frame {
  z-index: -3;
  overflow: hidden;
  border-radius: inherit;
}

.hero-video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100dvw;
  height: 56.25dvw;
  min-width: 177.78dvh;
  min-height: 100dvh;
  border: 0;
  pointer-events: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate(-50%, -50%) scale(1.18);
  filter: saturate(0.94) contrast(1.02) brightness(0.7);
}

@media (min-width: 1180px) {
  .hero-video-embed {
    transform: translate(-50%, -50%) scale(1.24);
  }
}

@media (min-width: 1560px) {
  .hero-video-embed {
    transform: translate(-50%, -50%) scale(1.28);
  }
}

.hero-video-overlay {
  z-index: -2;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.28), rgba(16, 16, 15, 0.06) 22%, rgba(16, 16, 15, 0) 46%),
    linear-gradient(180deg, rgba(16, 16, 15, 0.08), rgba(16, 16, 15, 0.12));
}

.hero-video-copy {
  position: relative;
  z-index: 1;
  grid-column: 1 / span 5;
  align-self: center;
  max-width: 640px;
  margin: 0;
  padding: clamp(88px, 11vw, 132px) 0;
  text-align: left;
}

.hero-video-copy::before {
  content: "";
  position: absolute;
  inset: -48px -52px -52px -52px;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 44%, rgba(16, 16, 15, 0.54), rgba(16, 16, 15, 0.32) 32%, rgba(16, 16, 15, 0.08) 58%, transparent 78%),
    linear-gradient(90deg, rgba(16, 16, 15, 0.6), rgba(16, 16, 15, 0.34) 45%, transparent 88%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-video-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-info span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-video-info svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-video-info i {
  display: block;
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-video-copy .eyebrow,
.hero-video-copy h1,
.hero-video-copy .hero-lead {
  color: var(--white);
}

.hero-video-copy .hero-lead {
  max-width: 560px;
  color: rgba(255, 253, 250, 0.88);
}

.hero-video-copy .hero-actions {
  justify-content: flex-start;
}

.hero-video-copy .button-primary {
  box-shadow: 0 18px 44px rgba(255, 90, 10, 0.34);
}

.hero-video-copy .button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-video-copy .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-video-side {
  position: relative;
  z-index: 1;
  grid-column: 9 / -1;
  align-self: center;
  justify-self: end;
  width: min(320px, 100%);
}

.hero-video-status {
  display: grid;
  gap: 12px;
}

.hero-video-status-card {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-video-status-card span,
.hero-video-status-card em {
  display: block;
  color: rgba(255, 253, 250, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-video-status-card strong {
  display: inline-block;
  margin: 8px 6px 0 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 0.92;
}

.hero-video-status-card b {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.18;
}

.hero-video-status-card b span {
  display: inline;
  color: var(--blue-2);
  font-size: inherit;
  letter-spacing: 0;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: var(--container);
  margin: 0 auto var(--section-rhythm);
  padding: 26px 30px;
  border: 1px solid rgba(232, 235, 242, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 50px rgba(17, 28, 68, 0.05);
}

.trust-band article {
  display: flex;
  grid-column: auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 82px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.trust-band article:first-child {
  border-left: 0;
  padding-left: 0;
}

.trust-band strong {
  color: var(--blue);
  font-size: clamp(32px, 3vw, 46px);
  white-space: nowrap;
  line-height: 1;
}

.trust-band span {
  min-width: 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: balance;
}

.trust-band svg {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--blue);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 var(--section-rhythm);
}

.section + .section {
  margin-top: var(--section-rhythm);
}

.section-light + .production {
  margin-top: var(--section-rhythm);
}

.section-heading {
  min-width: 0;
  max-width: 880px;
  margin-bottom: 48px;
}

.production-copy,
.request-copy {
  min-width: 0;
}

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

.section-heading.wide {
  max-width: 980px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.production-copy p,
.request-copy p {
  color: var(--slate);
  font-size: 18px;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  padding: 28px 28px 24px;
  border-top: 1px solid var(--line);
  border-radius: 24px;
}

.section-cta-right {
  margin-top: 38px;
}

.section-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.18;
}

.section-cta .button {
  flex: 0 0 auto;
}

.access-grid {
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: var(--grid-gap);
}

.feature-card {
  grid-column: span 3;
}

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(17, 28, 68, 0.05);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(17, 28, 68, 0.08);
}

.feature-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover img {
  transform: scale(1.035);
}

.feature-card:nth-child(3) img {
  object-fit: contain;
  background: #f2f3f5;
}

.icon-bubble {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: -28px 0 24px 24px;
  border: 1px solid rgba(64, 87, 232, 0.13);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(17, 28, 68, 0.08);
}

.icon-bubble svg {
  width: 29px;
  height: 29px;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.22;
}

.feature-card p {
  color: var(--slate);
  font-size: 15px;
}

.production {
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: var(--grid-gap);
  align-items: center;
}

.production-media {
  grid-column: 1 / span 7;
}

.production-copy {
  grid-column: 8 / -1;
}

.production-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 0 34px 34px 0;
  box-shadow: var(--shadow);
}

.production-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(64, 87, 232, 0.08));
}

.production-media video {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.06);
}

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

.metrics-grid article {
  padding: 24px;
  border-top: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.metrics-grid strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1.1;
}

.metrics-grid span {
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}

.outcomes {
  padding-top: var(--section-rhythm);
  background: linear-gradient(180deg, transparent 0, rgba(243, 246, 251, 0.78) 11%, rgba(243, 246, 251, 0.78) 88%, transparent 100%);
}

.outcome-grid {
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: 20px var(--grid-gap);
}

.outcome-grid article {
  grid-column: span 6;
}

.outcome-grid article {
  display: grid;
  grid-template-columns: 94px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 24px;
  row-gap: 10px;
  padding: 30px 28px;
  border: 1px solid rgba(221, 220, 216, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(17, 28, 68, 0.06);
}

.outcome-grid span {
  grid-row: 1 / span 2;
  color: rgba(214, 106, 53, 0.62);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}

.outcome-grid h3 {
  grid-column: 2;
  margin-bottom: 10px;
  font-size: 24px;
}

.outcome-grid p {
  grid-column: 2;
  max-width: 500px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.58;
}

.program .section-heading {
  max-width: 820px;
}

.program-intel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 30px;
}

.program-intel article {
  padding: 18px 18px 16px;
  border: 1px solid rgba(221, 220, 216, 0.8);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 242, 0.8)),
    radial-gradient(circle at top right, rgba(255, 156, 105, 0.12), transparent 7rem);
}

.program-intel span {
  margin-bottom: 8px;
  color: var(--blue);
}

.program-intel strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
}

.program-scroll {
  position: relative;
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: var(--grid-gap);
  align-items: start;
}

.program-media-panel {
  grid-column: 1 / span 5;
  grid-row: 1;
  position: sticky;
  top: calc(50vh - min(29vh, 260px));
  height: min(58vh, 520px);
  min-height: 440px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(17, 28, 68, 0.06);
  box-shadow: var(--shadow);
}

.program-media-panel.is-fixed {
  position: fixed;
  top: var(--program-panel-top, calc(50vh - min(29vh, 260px)));
  left: var(--program-panel-left, 24px);
  width: var(--program-panel-width, 40vw);
  z-index: 2;
}

.program-media-panel.is-locked-bottom {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: var(--program-panel-width, 40vw);
  z-index: 2;
}

.program-media {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(0, var(--program-media-y, 0px), 0) scale(var(--program-media-scale, 1.16));
  transition: opacity 180ms linear;
  will-change: opacity, transform;
}

.program-media.is-active {
  opacity: 1;
}

.program-media-portrait {
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: #fffdfa;
  object-fit: contain;
  object-position: center top;
  transform: translate3d(0, var(--program-media-y, 0px), 0) scale(1);
}

.program-scroll-list {
  grid-column: 7 / -1;
  grid-row: 1;
  display: grid;
  gap: clamp(92px, 16vh, 150px);
  padding: clamp(34px, 7vh, 72px) 0 clamp(110px, 18vh, 180px);
}

.program-scroll-item {
  display: grid;
  align-content: center;
  min-height: clamp(260px, 38vh, 340px);
  opacity: 0.48;
  transform: translateY(20px);
  transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1), transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.program-scroll-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.program-day-head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 20px;
}

.program-day-head time {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-day-head h3 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1.04;
}

.program-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.program-mobile-media {
  display: none;
}

.program-mobile-media-portrait {
  padding: 0 12px;
  background: #fffdfa;
  object-fit: contain;
  object-position: center top;
}

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

.accordion-item {
  border: 0;
  background: transparent;
}

.accordion-item:last-child {
  border-bottom: 0;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(64, 87, 232, 0.1);
  border-radius: 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(17, 28, 68, 0.045);
  cursor: pointer;
  list-style: none;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-trigger:hover,
.accordion-item[open] .accordion-trigger {
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 28, 68, 0.08);
  transform: translateY(-1px);
}

.accordion-trigger::-webkit-details-marker {
  display: none;
}

.accordion-question {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.accordion-help,
.accordion-message,
.accordion-chevron {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
}

.accordion-help {
  width: 34px;
  height: 34px;
  color: var(--blue);
  background: rgba(64, 87, 232, 0.1);
}

.accordion-chevron {
  width: 34px;
  height: 34px;
  color: var(--navy);
  background: rgba(64, 87, 232, 0.1);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item[open] .accordion-chevron {
  color: var(--blue);
  background: rgba(64, 87, 232, 0.14);
  transform: rotate(180deg);
}

.accordion-help svg,
.accordion-message svg,
.accordion-chevron svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.accordion-content {
  margin: 12px 0 0 48px;
  padding: 18px;
  border: 1px solid rgba(64, 87, 232, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(17, 28, 68, 0.055);
}

.accordion-message {
  width: 36px;
  height: 36px;
  color: var(--blue);
  background: rgba(64, 87, 232, 0.1);
}

.day-number {
  color: var(--blue);
  font-size: 64px;
  font-weight: 800;
  line-height: 0.9;
}

.program-scroll-item ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.56;
  list-style: none;
}

.program-scroll-item li {
  position: relative;
  padding-left: 20px;
}

.program-scroll-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(64, 87, 232, 0.1);
}

.people {
  overflow: visible;
  padding-top: calc(var(--section-rhythm) * 0.52);
  background: linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.7) 18%, rgba(255, 255, 255, 0.72) 76%, transparent 100%);
}

.people-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc((var(--container) - 100vw) / 2);
  overflow: hidden;
}

.people-marquee::before,
.people-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(14vw, 170px);
  pointer-events: none;
}

.people-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--warm-white), rgba(248, 249, 252, 0));
}

.people-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--warm-white), rgba(248, 249, 252, 0));
}

.people-marquee-track {
  --people-distance: calc(50% + 12px);
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 10px 24px 28px;
  animation: people-marquee 58s linear infinite;
  will-change: transform;
}

.people-marquee:hover .people-marquee-track {
  animation-play-state: paused;
}

.doctor-card {
  position: relative;
  flex: 0 0 260px;
  height: 380px;
  overflow: hidden;
  border: 1px solid rgba(232, 235, 242, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(17, 28, 68, 0.08);
}

.doctor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.95);
  transform: scale(1.02);
  transition: filter 320ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card:hover img {
  filter: grayscale(0);
  transform: scale(1.06);
}

.doctor-card div {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(17, 28, 68, 0.12);
  backdrop-filter: blur(14px);
}

.doctor-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.16;
  text-wrap: balance;
}

.doctor-card p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.42;
  text-wrap: pretty;
}

@keyframes people-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--people-distance) * -1));
  }
}

.gallery {
  overflow: hidden;
}

.gallery-head {
  margin-bottom: 32px;
}

.gallery-head .section-heading {
  margin-bottom: 0;
}

.gallery-carousel {
  width: min(100%, 980px);
  margin: 0 auto;
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(17, 28, 68, 0.06);
  box-shadow: var(--shadow);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.gallery-viewport.is-dragging {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  height: clamp(360px, 55vw, 620px);
  will-change: transform;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-track.is-dragging {
  transition: none;
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.gallery-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(64, 87, 232, 0.28);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(17, 28, 68, 0.06);
  transform: translateY(-50%);
  transition: opacity 240ms cubic-bezier(0.16, 1, 0.3, 1), transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-button:hover {
  transform: translateY(-50%) scale(1.08);
  background: var(--white);
}

.gallery-button:active {
  transform: translateY(-50%) scale(0.98);
}

.gallery-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-button-prev {
  left: 18px;
}

.gallery-button-next {
  right: 18px;
}

.gallery-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.gallery-counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 28, 68, 0.58);
  font-size: 14px;
  font-weight: 800;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.gallery-thumbnails {
  display: flex;
  gap: 2px;
  height: 82px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.gallery-thumbnails::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  position: relative;
  flex: 0 0 36px;
  width: 36px;
  height: 80px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: rgba(17, 28, 68, 0.08);
  cursor: pointer;
  opacity: 0.58;
  transition: flex-basis 300ms cubic-bezier(0.16, 1, 0.3, 1), width 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-thumb.is-active {
  flex-basis: 128px;
  width: 128px;
  opacity: 1;
}

.gallery-thumb:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.gallery-thumb:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.testimonials-carousel {
  display: grid;
  gap: 16px;
  width: 100vw;
  margin-left: calc((100vw - var(--container)) / -2);
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.testimonial-marquee-row {
  overflow: hidden;
}

.testimonial-marquee-track {
  --testimonial-distance: calc(50% + 12px);
  --testimonial-duration: 96s;
  display: flex;
  width: max-content;
  gap: 24px;
  animation: testimonial-scroll-left var(--testimonial-duration) linear infinite;
  will-change: transform;
}

.testimonial-marquee-row-reverse .testimonial-marquee-track {
  animation-name: testimonial-scroll-right;
}

.testimonials-carousel:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

.testimonial-marquee-card {
  display: flex;
  flex: 0 0 340px;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  padding: 20px;
  border: 1px solid rgba(64, 87, 232, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(17, 28, 68, 0.07);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-marquee-card:hover {
  transform: scale(1.035) rotate(0.5deg);
  box-shadow: 0 22px 52px rgba(17, 28, 68, 0.11);
}

.testimonial-marquee-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.testimonial-marquee-card p span {
  color: var(--blue);
  font-weight: 900;
}

.testimonial-person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  color: var(--navy);
  font-size: 15px;
}

.testimonial-person span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

@keyframes testimonial-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--testimonial-distance) * -1));
  }
}

@keyframes testimonial-scroll-right {
  from {
    transform: translateX(calc(var(--testimonial-distance) * -1));
  }

  to {
    transform: translateX(0);
  }
}

.request {
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: var(--grid-gap);
  align-items: start;
  padding: 72px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(238, 242, 255, 0.94), rgba(255, 255, 255, 0.82)),
    url("assets/optimized/media-02-pexels-chhabiraj-adhikari-2157043271-34554.webp") center / cover;
  box-shadow: var(--shadow);
}

.request-copy {
  grid-column: 1 / span 8;
}

.lead-form {
  grid-column: 9 / -1;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.request-status {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 24px;
  margin-top: 38px;
}

.request-pass {
  max-width: 430px;
  margin: 22px 0 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(10px);
}

.request-pass-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 215, 194, 0.92);
}

.request-pass strong {
  display: block;
  margin-bottom: 10px;
  color: #fff7f1;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.request-pass-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.request-pass-meta span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 244, 236, 0.86);
  background: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.1em;
}

.request-pass p {
  margin: 0;
  color: rgba(255, 247, 241, 0.84);
  font-size: 14px;
  line-height: 1.5;
}

.request-note {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.request-status strong {
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

.request-status span {
  color: var(--slate);
  font-weight: 700;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(232, 235, 242, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(17, 28, 68, 0.08);
  backdrop-filter: blur(16px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.lead-form input,
.lead-form select {
  height: 52px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 14px;
  line-height: 1.5;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(64, 87, 232, 0.1);
}

.lead-form .button,
.lead-form small,
.form-wide,
.form-message {
  grid-column: 1 / -1;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  margin-top: 2px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.consent-control {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.consent-control input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.consent-box {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.consent-box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(45deg);
  transition: border-color 200ms ease;
}

.consent-control input:checked + .consent-box {
  border-color: rgba(255, 139, 82, 0.8);
  background: rgba(255, 139, 82, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 139, 82, 0.1);
}

.consent-control input:checked + .consent-box::after {
  border-color: #fff7f1;
}

.consent-control input:focus-visible + .consent-box {
  outline: 3px solid rgba(255, 139, 82, 0.28);
  outline-offset: 2px;
}

.consent-control input[aria-invalid="true"] + .consent-box {
  border-color: #d24b4b;
  box-shadow: 0 0 0 4px rgba(210, 75, 75, 0.11);
}

.consent-text {
  min-width: 0;
}

.consent-text a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.consent-text a:hover {
  color: var(--blue-2);
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: #26724a;
  font-size: 14px;
  font-weight: 700;
}

.form-message.is-error {
  color: #b83232;
}

.lead-form input[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
  border-color: #d24b4b;
  box-shadow: 0 0 0 4px rgba(210, 75, 75, 0.11);
}

.lead-form button:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.lead-form small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.faq {
  padding-top: var(--section-rhythm);
}

.faq-list {
  display: grid;
  gap: 16px;
  width: 100%;
}

.faq-answer p {
  flex: 1;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.62;
}

.faq-question,
.faq-help,
.faq-chevron,
.faq-message {
  display: flex;
  align-items: center;
}

.faq-help svg,
.faq-message svg,
.faq-chevron svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.faq-question {
  flex: 1;
  min-width: 0;
  gap: 14px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.faq-help,
.faq-message,
.faq-chevron {
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(64, 87, 232, 0.1);
}

.faq-message {
  width: 36px;
  height: 36px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(64, 87, 232, 0.1);
  border-radius: 20px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(17, 28, 68, 0.045);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::before {
  content: none;
}

.faq-item summary::after {
  content: none;
}

.faq-item[open] summary {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(17, 28, 68, 0.08);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-left: 48px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(64, 87, 232, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(17, 28, 68, 0.055);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  margin: 0 auto;
  padding: 44px 24px 56px;
  border-top: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  color: var(--slate);
}

.site-footer p {
  margin: 0;
  max-width: 34ch;
  text-wrap: pretty;
}

.site-footer > a:last-child {
  color: var(--blue);
  font-weight: 800;
  flex: 0 0 auto;
}

.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.program.section-reveal,
.program.section-reveal.is-visible {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ambient-mark {
    animation: none !important;
  }

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

@media (max-width: 1320px) {
  .site-header {
    top: 18px;
    gap: 18px;
  }

  .header-nav {
    gap: 14px;
    font-size: 12px;
  }

  .header-cta {
    padding: 0 14px;
  }
}

@media (max-width: 1180px) {
  :root {
    --container: calc(100vw - 36px);
  }

  .header-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 38px;
  }

  .hero-copy {
    grid-column: auto;
    max-width: 780px;
  }

  .hero-route-line {
    grid-template-columns: 1fr;
  }

  .route-arrow {
    display: none;
  }

  .hero-visual {
    grid-column: auto;
    min-height: 540px;
  }

  .hero-image {
    top: 0;
    right: -60px;
    width: 640px;
    height: 540px;
    min-width: 0;
    min-height: 0;
  }

  .count-card {
    right: 32px;
    top: 240px;
  }

  .hero-video-copy {
    grid-column: 1 / span 6;
  }

  .hero-video-side {
    grid-column: 8 / -1;
  }

  .stamp-factory {
    right: 18px;
    bottom: 24px;
  }

  .trust-band,
  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band article,
  .feature-card,
  .outcome-grid article,
  .production-media,
  .production-copy,
  .request-copy,
  .lead-form {
    grid-column: auto;
  }

  .trust-band article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 12px;
  }

  .trust-band article:nth-child(-n + 2) {
    border-top: 0;
  }

  .production,
  .request {
    grid-template-columns: 1fr;
  }

  .program .section-heading {
    position: static;
  }

  .program-intel {
    grid-template-columns: 1fr;
  }

  .production-media {
    min-height: 480px;
  }

  .production-media video {
    height: 480px;
  }

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

  .gallery-carousel {
    width: 100%;
  }

  .gallery-track {
    height: clamp(340px, 58vw, 540px);
  }
}

@media (max-width: 760px) {
  :root {
    --section-rhythm: 56px;
  }

  :root {
    --container: calc(100vw - 32px);
  }

  .site-header,
  .hero,
  .trust-band,
  .section,
  .site-footer {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  body::before {
    display: none;
  }

  .ambient-mark {
    opacity: 0.14;
  }

  .ambient-line {
    opacity: 0.45;
  }

  .ambient-mark-1 {
    top: 12rem;
    left: -4.6rem;
    width: 6.8rem;
  }

  .ambient-mark-2 {
    top: 31rem;
    right: -5.6rem;
    width: 10rem;
  }

  .ambient-mark-5 {
    top: 38rem;
    left: 48vw;
    width: 11rem;
  }

  .ambient-mark-3,
  .ambient-mark-4,
  .ambient-mark-6 {
    display: none;
  }

  .site-header {
    top: 16px;
    padding: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-version-divider {
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-version-divider span {
    padding: 0 12px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(38px, 10.6vw, 48px);
    max-width: 12ch;
    text-wrap: balance;
  }

  .hero-lead,
  .hero-text,
  .hero-actions,
  .hero-meta,
  .hero-route-card {
    max-width: none;
  }

  h2 {
    font-size: clamp(31px, 9vw, 42px);
    text-wrap: balance;
  }

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

  .button-secondary {
    min-height: 54px;
  }

  .hero-meta {
    display: grid;
    gap: 14px;
  }

  .hero-route-card {
    padding: 18px 16px;
  }

  .hero-route-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-code {
    text-align: left;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-image {
    right: -74px;
    width: 520px;
    height: 400px;
    border-radius: 48% 0 0 48%;
  }

  .count-card {
    right: 0;
    top: auto;
    bottom: 14px;
    width: min(164px, calc(100% - 12px));
    padding: 16px;
  }

  .count-card strong {
    font-size: 40px;
  }

  .hero-video {
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 28px;
    grid-template-columns: 1fr;
    min-height: auto;
    row-gap: 20px;
    padding: 0 0 28px;
  }

  .hero-video-copy {
    grid-column: auto;
    max-width: none;
    padding: 72px 16px 18px;
  }

  .hero-video-copy::before {
    inset: -30px -18px -30px -18px;
    background:
      linear-gradient(180deg, rgba(16, 16, 15, 0.64), rgba(16, 16, 15, 0.22) 52%, transparent 100%);
    filter: blur(12px);
  }

  .hero-video-side {
    grid-column: auto;
    width: 100%;
    max-width: none;
    justify-self: start;
    align-self: end;
    margin-bottom: 0;
    padding: 0 16px;
  }

  .hero-video-status-card strong {
    font-size: 32px;
  }

  .hero-video-status-card b {
    font-size: 16px;
  }

  .hero-video-embed {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: 50% 50%;
    transform: translate(-50%, -50%) scale(1.16);
  }

  .hero-video-info {
    gap: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .hero-video-info i {
    width: 10px;
  }

  .passport-stamp {
    width: 138px;
    min-height: 98px;
    padding: 10px 12px 9px;
  }

  .passport-stamp span:first-child {
    font-size: 11px;
  }

  .passport-stamp span:last-child {
    font-size: 7px;
  }

  .stamp-hero {
    left: 6px;
    bottom: 8px;
  }

  .stamp-factory {
    display: none;
  }

  .trust-band {
    grid-template-columns: 1fr;
    margin-bottom: var(--section-rhythm);
    padding: 14px 20px;
  }

  .trust-band article,
  .trust-band article:nth-child(-n + 2) {
    min-height: 74px;
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }

  .trust-band article:first-child {
    border-top: 0;
  }

  .section {
    padding-bottom: var(--section-rhythm);
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 34px;
    padding: 22px 18px 18px;
  }

  .section-cta .button {
    width: 100%;
  }

  .section-heading.centered {
    text-align: left;
  }

  .access-grid,
  .metrics-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .people-marquee {
    width: calc(100% + 8px);
    margin-left: -4px;
  }

  .people-marquee::before,
  .people-marquee::after {
    width: 34px;
  }

  .people-marquee-track {
    gap: 16px;
    padding: 4px 8px 20px;
    animation-duration: 44s;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .doctor-card {
    flex-basis: 196px;
    height: 300px;
    border-radius: 20px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .doctor-card div {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 12px 13px;
  }

  .doctor-card h3 {
    font-size: 15px;
  }

  .doctor-card img,
  html.theme-dark .doctor-card img {
    filter: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .gallery-head {
    margin-bottom: 24px;
  }

  .gallery-viewport {
    border-radius: 22px;
  }

  .gallery-track {
    height: clamp(250px, 78vw, 360px);
  }

  .gallery-button {
    width: 42px;
    height: 42px;
  }

  .gallery-button-prev {
    left: 12px;
  }

  .gallery-button-next {
    right: 12px;
  }

  .gallery-counter {
    bottom: 12px;
    font-size: 13px;
  }

  .gallery-thumbnails {
    gap: 6px;
    height: 64px;
  }

  .gallery-thumb {
    flex-basis: 42px;
    width: 42px;
    height: 62px;
    border-radius: 10px;
  }

  .gallery-thumb.is-active {
    flex-basis: 94px;
    width: 94px;
  }

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

  .production {
    gap: 34px;
  }

  .production-media,
  .production-media video {
    height: 360px;
    min-height: 360px;
    border-radius: 0 28px 28px 0;
  }

  .outcomes,
  .people,
  .faq {
    padding-top: var(--section-rhythm);
  }

  .outcome-grid article {
    grid-template-columns: 68px 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  .outcome-grid span {
    font-size: 54px;
  }

  .program-scroll {
    display: block;
  }

  .program-media-panel {
    display: none;
  }

  .program-scroll-list {
    gap: 42px;
    padding: 0;
  }

  .program-intel {
    gap: 12px;
    margin-bottom: 24px;
  }

  .program-intel article {
    padding: 16px 16px 14px;
  }

  .program-scroll-item {
    min-height: 0;
    opacity: 1;
    transform: none;
  }

  .program-day-head {
    gap: 14px;
    margin-bottom: 16px;
  }

  .program-day-head h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .day-number {
    font-size: 46px;
  }

  .program-mobile-media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 16px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(17, 28, 68, 0.07);
  }

  .testimonial-marquee-card {
    flex-basis: 320px;
  }

  .request {
    gap: 32px;
    padding: 34px 20px;
    border-radius: 26px;
  }

  .request-copy {
    padding: 22px 20px 24px;
  }

  .request-pass {
    padding: 16px;
  }

  .request-status {
    grid-template-columns: 1fr 1fr;
  }

  .faq-item summary {
    align-items: flex-start;
    gap: 12px;
    padding: 15px 16px;
  }

  .faq-question {
    gap: 12px;
    font-size: 17px;
  }

  .faq-answer {
    margin-left: 0;
    gap: 14px;
    padding: 16px;
  }

  .faq-answer p {
    font-size: 15px;
    line-height: 1.58;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .site-header,
  .hero,
  .trust-band,
  .section,
  .site-footer {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-video {
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 28px;
  }

  .hero-video-copy,
  .hero-video-side {
    padding-inline: 12px;
  }

  .hero-image {
    right: -104px;
    width: 500px;
  }

  .count-card {
    right: 0;
    bottom: 10px;
  }

  .accordion-trigger,
  .faq-item summary {
    min-height: 70px;
    padding: 14px;
    border-radius: 18px;
  }

  .accordion-question,
  .faq-question {
    gap: 10px;
    font-size: 16px;
  }

  .accordion-content,
  .faq-answer {
    margin-left: 0;
    padding: 14px;
    border-radius: 18px;
  }

  .testimonials-carousel {
    margin-left: -16px;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .testimonial-marquee-track {
    gap: 14px;
  }

  .testimonial-marquee-card {
    flex-basis: 286px;
    height: 200px;
    padding: 18px;
    border-radius: 20px;
  }

  .program-badges {
    gap: 6px;
  }

  .program-badges span {
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .request-status {
    grid-template-columns: 1fr;
  }

  .consent-field {
    gap: 10px;
    font-size: 12px;
  }
}

/* Korea 2026 cultural restyle: keep layout, replace visual language */
body {
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 90, 10, 0.14), transparent 28rem),
    radial-gradient(circle at 10% 18%, rgba(255, 192, 157, 0.18), transparent 22rem),
    linear-gradient(180deg, var(--warm-white), #fbf8f4 36rem, var(--warm-white));
}

body::before {
  background-image:
    linear-gradient(rgba(36, 35, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 35, 35, 0.025) 1px, transparent 1px);
}

.ambient-line {
  background: linear-gradient(90deg, transparent, rgba(255, 90, 10, 0.3), transparent);
}

.ambient-mark {
  fill: rgba(255, 90, 10, 0.04);
  stroke: rgba(36, 35, 35, 0.3);
  filter: drop-shadow(0 24px 42px rgba(36, 35, 35, 0.1));
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid rgba(255, 90, 10, 0.34);
}

.site-header {
  background: none;
  border-bottom: 0;
}

.header-cta {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.2);
}

.hero-image::after {
  background:
    linear-gradient(90deg, rgba(247, 247, 246, 0.16), rgba(255, 90, 10, 0.12)),
    linear-gradient(180deg, rgba(255, 192, 157, 0.04), transparent 45%);
}

.hero-image img,
.feature-card img,
.program-media,
.gallery-slide img,
.doctor-card img {
  filter: saturate(0.88) sepia(0.08) hue-rotate(-10deg) brightness(1.02);
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: -4vw;
  bottom: 14px;
  z-index: 1;
  width: min(560px, 58vw);
  height: 118px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 120'%3E%3Cpath fill='none' stroke='%23242323' stroke-width='4' stroke-linecap='round' d='M18 82c44-10 88-18 132-18c47 0 88 7 122 18c28-14 63-22 104-22c41 0 76 8 104 22c28-9 58-14 102-14'/%3E%3Cpath fill='none' stroke='%23ff5a0a' stroke-width='3' stroke-linecap='round' d='M46 92c38-30 78-46 124-46c48 0 86 16 116 46c27-18 62-30 106-30c45 0 80 12 106 30c27-20 58-31 94-31c35 0 65 10 92 31'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.4;
  pointer-events: none;
}

.count-card {
  border-color: rgba(221, 220, 216, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(247, 247, 246, 0.92));
  box-shadow: 0 18px 50px rgba(36, 35, 35, 0.12);
}

.button {
  border-radius: 4px;
}

.button-primary {
  box-shadow: 0 16px 34px rgba(255, 90, 10, 0.24);
}

.button-secondary {
  border-color: rgba(255, 90, 10, 0.34);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  background: rgba(255, 240, 232, 0.9);
}

.trust-band {
  border-color: rgba(221, 220, 216, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 247, 246, 0.88));
  box-shadow: 0 20px 50px rgba(36, 35, 35, 0.05);
}

.trust-band article {
  border-left-color: rgba(221, 220, 216, 0.95);
}

.feature-card,
.doctor-card,
.testimonial-marquee-card,
.faq-item summary,
.faq-answer,
.lead-form,
.accordion-trigger,
.accordion-content {
  border-color: rgba(221, 220, 216, 0.92);
  box-shadow: 0 14px 38px rgba(36, 35, 35, 0.07);
}

.icon-bubble,
.accordion-help,
.accordion-message,
.accordion-chevron,
.faq-help,
.faq-message,
.faq-chevron {
  color: var(--blue);
  background: rgba(255, 90, 10, 0.1);
  border-color: rgba(255, 90, 10, 0.14);
}

.production-media {
  border-radius: 0 22px 22px 0;
}

.production-media::after {
  background: linear-gradient(90deg, transparent, rgba(255, 90, 10, 0.12));
}

.metrics-grid article {
  background: linear-gradient(180deg, rgba(255, 224, 205, 0.28), rgba(255, 255, 255, 0));
}

.outcomes {
  background: linear-gradient(180deg, transparent 0, rgba(247, 240, 233, 0.88) 11%, rgba(247, 240, 233, 0.88) 88%, transparent 100%);
}

.outcome-grid span {
  color: rgba(255, 90, 10, 0.18);
}

.people {
  background: linear-gradient(180deg, transparent 0, rgba(255, 252, 248, 0.8) 18%, rgba(255, 248, 241, 0.82) 76%, transparent 100%);
}

.people-marquee::before {
  background: linear-gradient(90deg, var(--warm-white), rgba(247, 247, 246, 0));
}

.people-marquee::after {
  background: linear-gradient(270deg, var(--warm-white), rgba(247, 247, 246, 0));
}

.doctor-card img {
  filter: sepia(0.18) saturate(0.88) brightness(0.98);
}

.doctor-card div {
  background: rgba(255, 253, 250, 0.9);
  box-shadow: 0 12px 30px rgba(36, 35, 35, 0.12);
}

.gallery-button {
  border-color: rgba(255, 90, 10, 0.22);
  background: rgba(255, 255, 255, 0.88);
}

.gallery-button:hover {
  background: rgba(255, 240, 232, 0.98);
}

.gallery-counter {
  background: rgba(36, 35, 35, 0.56);
}

.gallery-thumb {
  background: rgba(36, 35, 35, 0.08);
}

.gallery-thumb:focus-visible {
  outline-color: rgba(255, 90, 10, 0.6);
}

.testimonial-marquee-card {
  border-color: rgba(255, 90, 10, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 242, 0.9));
}

.request {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(24, 20, 18, 0.84) 0%, rgba(24, 20, 18, 0.72) 38%, rgba(24, 20, 18, 0.3) 62%, rgba(24, 20, 18, 0.08) 100%),
    linear-gradient(135deg, rgba(36, 35, 35, 0.74), rgba(255, 90, 10, 0.2)),
    url("assets/optimized/media-02-pexels-chhabiraj-adhikari-2157043271-34554.webp") center / cover;
}

.request::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 224, 205, 0.06), transparent 30%),
    linear-gradient(90deg, rgba(12, 10, 9, 0.34) 0%, rgba(12, 10, 9, 0.14) 34%, transparent 58%),
    radial-gradient(circle at 18% 22%, rgba(255, 192, 157, 0.12), transparent 18rem);
  pointer-events: none;
}

.request::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 16px;
  width: 148px;
  height: 264px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 300'%3E%3Cpath fill='none' stroke='%23fffdfa' stroke-width='4' stroke-linecap='round' d='M70 16v44M50 64h40l-6 18H56l-6-18ZM64 82h12v112H64Zm-20 112h52l16 76H28l16-76ZM14 278h112'/%3E%3Ccircle cx='70' cy='24' r='8' fill='%23ff9c69' fill-opacity='0.85'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
}

.request .eyebrow,
.request-copy h2,
.request-copy p,
.request-note {
  position: relative;
  z-index: 1;
}

.request-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 28px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 11, 10, 0.52), rgba(14, 11, 10, 0.34));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.request .eyebrow {
  color: rgba(255, 223, 206, 0.96);
}

.request-copy h2 {
  color: #fffaf6;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.34);
}

.request-note {
  color: #fff5ed;
}

.request-copy p {
  color: rgba(255, 248, 243, 0.96);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.request-pass {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.request-pass-label {
  color: rgba(255, 223, 206, 0.94);
}

.request-pass strong {
  color: #fff7f1;
}

.request-pass-meta span {
  color: rgba(255, 244, 236, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.request-pass p {
  color: rgba(255, 247, 241, 0.84);
  text-shadow: none;
}

.request-status strong {
  color: #fff8f3;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.request-status span,
.lead-form small {
  color: rgba(255, 248, 241, 0.9);
}

.lead-form {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 253, 250, 0.92);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(255, 90, 10, 0.12);
}

.site-footer {
  border-top-color: rgba(221, 220, 216, 0.95);
}

@media (max-width: 1180px) {
  .hero::before,
  .hero-visual::before {
    opacity: 0.32;
  }

  .count-card::before {
    top: -28px;
    left: -18px;
    width: 92px;
    height: 92px;
    font-size: 9px;
  }
}

@media (max-width: 760px) {
  .hero::before,
  .hero-visual::before,
  .request::after,
  .count-card::before {
    display: none;
  }
}

html.theme-dark {
  color-scheme: dark;
  --warm-white: #0e1517;
  --cool-white: #10191c;
  --white: #eef4ef;
  --navy: #edf3ef;
  --slate: #b9c6bf;
  --muted: #86948e;
  --blue: #ff8b52;
  --blue-2: #ffb07f;
  --orange: #ffc9a7;
  --line: rgba(213, 224, 218, 0.14);
  --soft-blue: rgba(255, 139, 82, 0.16);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

html.theme-dark body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 139, 82, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(101, 130, 149, 0.16), transparent 32rem),
    linear-gradient(180deg, #091113, #0d1719 34rem, #081012);
}

html.theme-dark body::before {
  background-image:
    linear-gradient(rgba(238, 244, 239, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 244, 239, 0.03) 1px, transparent 1px);
}

html.theme-dark .ambient-line {
  background: linear-gradient(90deg, transparent, rgba(255, 139, 82, 0.28), transparent);
}

html.theme-dark .ambient-mark {
  fill: rgba(255, 139, 82, 0.06);
  stroke: rgba(255, 139, 82, 0.24);
  filter: drop-shadow(0 24px 42px rgba(255, 139, 82, 0.12));
}

html.theme-dark .header-nav {
  color: rgba(237, 243, 239, 0.82);
}

html.theme-dark .header-nav a:hover,
html.theme-dark .site-footer a:hover {
  color: var(--white);
}

html.theme-dark .header-cta,
html.theme-dark .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(13, 22, 24, 0.44);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

html.theme-dark .button-primary {
  border-color: transparent;
  color: #0b1113;
  background: linear-gradient(135deg, #ffb07f, #ff7c46);
  box-shadow: 0 18px 44px rgba(255, 139, 82, 0.28);
}

html.theme-dark .hero-lead,
html.theme-dark .hero-text,
html.theme-dark .section-heading p,
html.theme-dark .feature-card p,
html.theme-dark .production-copy p,
html.theme-dark .outcome-grid p,
html.theme-dark .program-scroll-item li,
html.theme-dark .doctor-card p,
html.theme-dark .testimonial-item p,
html.theme-dark .faq-answer p,
html.theme-dark .site-footer p {
  color: var(--slate);
}

html.theme-dark .hero-meta,
html.theme-dark .route-stop strong,
html.theme-dark .count-card strong,
html.theme-dark .count-card b,
html.theme-dark .production-copy h2,
html.theme-dark .outcome-grid h3,
html.theme-dark .program-day-head h3,
html.theme-dark .doctor-card h3,
html.theme-dark .request-copy h2,
html.theme-dark .faq-question,
html.theme-dark .faq-item summary,
html.theme-dark .site-footer {
  color: var(--navy);
}

html.theme-dark .hero-image::after {
  background: linear-gradient(90deg, rgba(8, 13, 15, 0.04), rgba(255, 139, 82, 0.08));
}

html.theme-dark .count-card,
html.theme-dark .trust-band,
html.theme-dark .feature-card,
html.theme-dark .production,
html.theme-dark .outcome-grid article,
html.theme-dark .program-scroll-item,
html.theme-dark .doctor-card,
html.theme-dark .testimonial-marquee-card,
html.theme-dark .gallery-counter,
html.theme-dark .testimonial-item,
html.theme-dark .section-cta,
html.theme-dark .faq-item,
html.theme-dark .site-footer {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 24, 27, 0.92), rgba(10, 17, 19, 0.84));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

html.theme-dark .production {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 30px);
  border: 0;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(22, 33, 36, 0.56), rgba(10, 17, 19, 0.44)),
    radial-gradient(circle at right top, rgba(255, 151, 99, 0.1), transparent 18rem),
    rgba(9, 15, 18, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

html.theme-dark .production::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 58%);
  pointer-events: none;
  z-index: 0;
}

html.theme-dark .production > * {
  position: relative;
  z-index: 1;
}

html.theme-dark .icon-bubble,
html.theme-dark .gallery-button,
html.theme-dark .gallery-thumb,
html.theme-dark .faq-help,
html.theme-dark .faq-message {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(14, 23, 25, 0.78);
  color: var(--white);
}

html.theme-dark .trust-band article,
html.theme-dark .metrics-grid article,
html.theme-dark .gallery-counter,
html.theme-dark .gallery-thumb,
html.theme-dark .faq-item,
html.theme-dark .request-status {
  border-color: rgba(255, 255, 255, 0.08);
}

html.theme-dark .trust-band span,
html.theme-dark .count-card span,
html.theme-dark .count-card em,
html.theme-dark .route-stop span,
html.theme-dark .route-stop small,
html.theme-dark .program-day-head time,
html.theme-dark .request-status span,
html.theme-dark .lead-form small,
html.theme-dark .faq-item p,
html.theme-dark .testimonial-person span {
  color: var(--slate);
}

html.theme-dark .hero-route-card,
html.theme-dark .route-stop,
html.theme-dark .request-pass,
html.theme-dark .request-status,
html.theme-dark .lead-form,
html.theme-dark .doctor-card div {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(16, 25, 28, 0.94), rgba(10, 17, 20, 0.88)),
    radial-gradient(circle at right top, rgba(255, 139, 82, 0.1), transparent 11rem);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

html.theme-dark .hero-signal-row span,
html.theme-dark .program-badges span,
html.theme-dark .request-pass-meta span {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--slate);
  background: rgba(255, 255, 255, 0.04);
}

html.theme-dark .passport-stamp {
  border-color: rgba(255, 139, 82, 0.32);
  color: rgba(255, 176, 127, 0.82);
  background: rgba(10, 17, 19, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

html.theme-dark .passport-stamp::before,
html.theme-dark .passport-stamp span:first-child,
html.theme-dark .passport-stamp span:last-child {
  border-color: rgba(255, 176, 127, 0.22);
}

html.theme-dark .hero-version-divider,
html.theme-dark .gallery-counter,
html.theme-dark .gallery-thumb,
html.theme-dark .section-cta p {
  color: var(--slate);
}

html.theme-dark .gallery-button:hover,
html.theme-dark .gallery-thumb:hover,
html.theme-dark .gallery-thumb.is-active {
  border-color: rgba(255, 176, 127, 0.34);
  background: rgba(255, 139, 82, 0.12);
}

html.theme-dark .testimonial-item span,
html.theme-dark .request .eyebrow,
html.theme-dark .request-pass-label {
  color: var(--orange);
}

html.theme-dark .outcomes {
  background: linear-gradient(
    180deg,
    transparent 0,
    rgba(10, 17, 19, 0.16) 8%,
    rgba(10, 17, 19, 0.72) 18%,
    rgba(10, 17, 19, 0.82) 82%,
    rgba(10, 17, 19, 0.14) 100%
  );
}

html.theme-dark .people {
  background: linear-gradient(
    180deg,
    transparent 0,
    rgba(10, 17, 19, 0.18) 12%,
    rgba(10, 17, 19, 0.76) 24%,
    rgba(10, 17, 19, 0.82) 78%,
    rgba(10, 17, 19, 0.16) 100%
  );
}

html.theme-dark .people-marquee::before {
  background: linear-gradient(90deg, rgba(8, 16, 18, 0.98), rgba(8, 16, 18, 0));
}

html.theme-dark .people-marquee::after {
  background: linear-gradient(270deg, rgba(8, 16, 18, 0.98), rgba(8, 16, 18, 0));
}

html.theme-dark .outcome-grid span {
  color: rgba(255, 139, 82, 0.22);
}

html.theme-dark .doctor-card h3,
html.theme-dark .testimonial-marquee-card p,
html.theme-dark .testimonial-person strong {
  color: var(--white);
}

html.theme-dark .doctor-card p {
  color: rgba(237, 243, 239, 0.76);
}

html.theme-dark .doctor-card img {
  filter: saturate(0.86) brightness(0.8) contrast(1.02);
}

html.theme-dark .testimonial-marquee-card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(16, 25, 28, 0.94), rgba(10, 17, 20, 0.9)),
    radial-gradient(circle at right top, rgba(255, 139, 82, 0.08), transparent 10rem);
}

html.theme-dark .testimonial-marquee-card p span {
  color: var(--blue);
}

html.theme-dark .faq-item summary {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 25, 28, 0.96), rgba(10, 17, 20, 0.9));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

html.theme-dark .faq-item[open] summary {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 29, 32, 0.98), rgba(11, 18, 21, 0.92)),
    radial-gradient(circle at right top, rgba(255, 139, 82, 0.08), transparent 9rem);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

html.theme-dark .faq-answer {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(15, 24, 27, 0.94), rgba(10, 17, 20, 0.9));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

html.theme-dark .faq-question {
  color: var(--white);
}

html.theme-dark .faq-answer p {
  color: rgba(237, 243, 239, 0.76);
}

html.theme-dark .faq-help,
html.theme-dark .faq-message,
html.theme-dark .faq-chevron {
  color: var(--blue);
  background: rgba(255, 139, 82, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

html.theme-dark .lead-form input,
html.theme-dark .lead-form textarea,
html.theme-dark .lead-form select {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

html.theme-dark .lead-form input:focus,
html.theme-dark .lead-form textarea:focus,
html.theme-dark .lead-form select:focus {
  box-shadow: 0 0 0 4px rgba(255, 139, 82, 0.14);
}

html.theme-dark .lead-form .button-primary {
  color: #0b1113;
}

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

.header-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.header-brand img {
  display: block;
  width: clamp(112px, 10vw, 148px);
  height: auto;
  filter: brightness(0) invert(1);
}

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

.request-pass {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(32, 25, 22, 0.96), rgba(15, 13, 12, 0.96)),
    radial-gradient(circle at right top, rgba(255, 133, 68, 0.18), transparent 14rem);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.24);
}

.request-pass-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 12px;
  color: #fff9f4;
  background: linear-gradient(180deg, #ff944d 0%, #d3622e 100%);
}

.request-pass-strip svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.request-pass-strip span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.request-pass-body {
  padding: 26px 30px 28px;
}

.request-pass-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff944d;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-pass-title {
  display: block;
  margin-bottom: 16px;
  padding: 0;
  overflow: visible;
  color: #fff8f4;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.04;
  white-space: normal;
  text-wrap: balance;
  text-transform: uppercase;
  background: transparent;
  border-radius: 0;
}

.request-pass-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.request-pass-meta span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 244, 236, 0.92);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.05);
}

.request-pass-divider {
  height: 1px;
  margin: 0 0 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.24);
}

.request-pass p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 247, 241, 0.88);
  font-size: 17px;
  line-height: 1.5;
}

.request-status {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  margin-top: 22px;
  padding: 24px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(32, 25, 22, 0.94), rgba(15, 13, 12, 0.94)),
    radial-gradient(circle at right center, rgba(255, 133, 68, 0.12), transparent 12rem);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.request-status::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 220px;
  height: 88px;
  opacity: 0.24;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16)),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.24) 18% 19%, transparent 19% 32%, rgba(255, 255, 255, 0.24) 32% 33%, transparent 33% 44%, rgba(255, 255, 255, 0.24) 44% 45%, transparent 45% 58%, rgba(255, 255, 255, 0.24) 58% 59%, transparent 59% 100%);
  clip-path: polygon(0 100%, 0 85%, 12% 85%, 16% 18%, 20% 85%, 39% 85%, 43% 8%, 47% 85%, 66% 85%, 72% 0, 77% 85%, 92% 85%, 100% 52%, 100% 100%);
  pointer-events: none;
}

.request-status-item {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  min-width: 0;
}

.request-status strong {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  color: #ff944d;
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1;
}

.request-status-value {
  color: inherit;
  font-size: clamp(58px, 5vw, 84px);
  font-weight: 800;
  line-height: 0.86;
}

.request-status-label {
  color: rgba(255, 245, 238, 0.72);
  font-size: 16px;
  font-weight: 700;
}

.outcome-grid span {
  color: rgba(214, 106, 53, 0.62);
  font-variant-numeric: tabular-nums;
  text-shadow: none;
}

.section-light {
  position: relative;
  padding: 52px clamp(24px, 3.6vw, 44px) 72px;
  border: 1px solid rgba(255, 253, 250, 0.62);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(248, 244, 239, 0.94)),
    radial-gradient(circle at right top, rgba(255, 156, 105, 0.1), transparent 16rem);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.section-light::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36, 35, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 35, 35, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 100%);
}

.section-light > * {
  position: relative;
  z-index: 1;
}

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

.access.section-light::before {
  opacity: 0.22;
}

.section-light .section-heading h2,
.section-light .section-heading p,
.section-light .production-copy h2,
.section-light .production-copy p,
.section-light .program-day-head h3,
.section-light .program-day-head time,
.section-light .program-scroll-item li,
.section-light .section-cta p {
  color: var(--navy);
}

.access.section-light .section-heading h2,
.access.section-light .feature-card h3 {
  color: #221f1c;
}

.access.section-light .section-heading h2 span {
  color: #ff7c46;
}

.access.section-light .section-heading p,
.access.section-light .feature-card p {
  color: #5c564f;
}

.section-light .feature-card,
.section-light .program-scroll-item,
.section-light .section-cta {
  border-color: rgba(36, 35, 35, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 243, 0.96)),
    radial-gradient(circle at right top, rgba(255, 156, 105, 0.08), transparent 10rem);
  box-shadow: 0 18px 44px rgba(36, 35, 35, 0.08);
}

.section-light .feature-card p,
.section-light .program-scroll-item li,
.section-light .metrics-grid span {
  color: var(--slate);
}

.section-light .icon-bubble,
.section-light .program-badges span {
  border-color: rgba(255, 124, 70, 0.16);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(36, 35, 35, 0.08);
}

.section-light .program-media-panel {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(36, 35, 35, 0.1);
}

.section-light .program-media-portrait {
  background: #fffdfa;
}

.section-light.production {
  align-items: stretch;
}

.section-light .production-media {
  min-height: 100%;
  border: 1px solid rgba(36, 35, 35, 0.06);
  border-radius: 28px;
  box-shadow: 0 20px 56px rgba(36, 35, 35, 0.12);
}

.section-light .production-media::after {
  background: linear-gradient(90deg, transparent, rgba(255, 124, 70, 0.08));
}

.section-light .metrics-grid article {
  border-top-color: rgba(36, 35, 35, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.section-light .metrics-grid strong,
.section-light .program-day-head time,
.section-light .day-number,
.section-light .program-badges span {
  color: #d66a35;
}

html.theme-dark .outcome-grid span {
  color: rgba(214, 106, 53, 0.78);
}

html.theme-dark .outcome-grid article {
  border-color: rgba(255, 248, 242, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 243, 237, 0.96)),
    radial-gradient(circle at right top, rgba(255, 156, 105, 0.08), transparent 10rem);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

html.theme-dark .outcome-grid h3 {
  color: #1f1b18;
}

html.theme-dark .outcome-grid p {
  color: #5a544d;
}

html.theme-dark .section-light {
  border-color: rgba(255, 250, 245, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.98), rgba(246, 241, 235, 0.96)),
    radial-gradient(circle at right top, rgba(255, 156, 105, 0.12), transparent 16rem);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.16);
}

html.theme-dark .section-light .section-heading p,
html.theme-dark .section-light .feature-card p,
html.theme-dark .section-light .production-copy p,
html.theme-dark .section-light .program-scroll-item li,
html.theme-dark .section-light .section-cta p {
  color: var(--slate);
}

html.theme-dark .section-light .section-heading h2,
html.theme-dark .section-light .feature-card h3,
html.theme-dark .section-light .production-copy h2,
html.theme-dark .section-light .program-day-head h3,
html.theme-dark .section-light .section-cta p {
  color: var(--navy);
}

html.theme-dark .access.section-light .section-heading h2,
html.theme-dark .access.section-light .feature-card h3 {
  color: #221f1c;
}

html.theme-dark .access.section-light .section-heading h2 span {
  color: #ff7c46;
}

html.theme-dark .access.section-light .section-heading p,
html.theme-dark .access.section-light .feature-card p {
  color: #5c564f;
}

html.theme-dark .section-light .feature-card,
html.theme-dark .section-light .program-scroll-item,
html.theme-dark .section-light .section-cta {
  border-color: rgba(36, 35, 35, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 246, 242, 0.94)),
    radial-gradient(circle at right top, rgba(255, 156, 105, 0.08), transparent 10rem);
  box-shadow: 0 18px 44px rgba(36, 35, 35, 0.08);
}

html.theme-dark .section-light .icon-bubble,
html.theme-dark .section-light .program-badges span {
  border-color: rgba(214, 106, 53, 0.16);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
}

html.theme-dark .section-light .program-media-panel {
  background: rgba(255, 255, 255, 0.84);
}

html.theme-dark .section-light .program-day-head time,
html.theme-dark .section-light .day-number {
  color: #d66a35;
}

html.theme-dark .section-light .production-media {
  border-color: rgba(36, 35, 35, 0.06);
}

html.theme-dark .request-pass,
html.theme-dark .request-status {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(28, 22, 20, 0.96), rgba(12, 11, 10, 0.96)),
    radial-gradient(circle at right center, rgba(255, 133, 68, 0.14), transparent 12rem);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

html.theme-dark .request-pass-label {
  color: #ff944d;
}

@media (max-width: 1180px) {
  .header-brand img {
    width: 118px;
  }

  .request-copy {
    grid-column: 1 / span 8;
  }

  .lead-form {
    grid-column: 9 / -1;
  }

  .request-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .section-light {
    padding: 34px 20px 44px;
    border-radius: 28px;
  }

  .request-pass {
    grid-template-columns: 1fr;
  }

  .request-pass-strip {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .request-pass-strip span {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .request-pass-body {
    padding: 24px;
  }

  .request-pass-title {
    padding: 16px 18px;
    font-size: clamp(22px, 4.4vw, 32px);
    white-space: normal;
  }

  .request-status {
    gap: 18px;
    padding: 22px 22px 24px;
  }

  .request-status strong {
    font-size: 24px;
  }

  .request-status-value {
    font-size: clamp(48px, 10vw, 70px);
  }
}

@media (max-width: 640px) {
  .section-light {
    padding: 28px 16px 36px;
    border-radius: 24px;
  }

  .site-header {
    gap: 12px;
  }

  .header-brand img {
    width: 104px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .request-pass strong {
    font-size: 24px;
  }

  .request-pass p {
    font-size: 15px;
  }

  .request-pass-title {
    padding: 14px 16px;
    font-size: 20px;
  }

  .request-status {
    padding: 20px 20px 26px;
  }

  .request-status::after {
    right: -18px;
    width: 170px;
    height: 68px;
  }

  .request-status strong {
    gap: 6px;
    font-size: 20px;
  }

  .request-status-value {
    font-size: 44px;
  }

  .request-status-label {
    font-size: 14px;
  }
}

html.theme-dark .site-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* Final local overrides */
.request {
  grid-template-columns: minmax(0, 1.58fr) minmax(420px, 0.52fr);
  gap: 42px;
}

.request-copy {
  grid-column: 1;
  max-width: 860px;
  padding: 36px 42px 40px;
}

.request-copy h2 {
  max-width: 12ch;
  text-wrap: balance;
}

.request-note {
  max-width: 28ch;
  text-wrap: balance;
}

.request-copy > p:not(.eyebrow):not(.request-note) {
  max-width: 40ch;
  text-wrap: pretty;
}

.lead-form {
  grid-column: 2;
  width: 100%;
  max-width: 480px;
  justify-self: end;
}

.request-pass,
.request-status {
  max-width: none;
}

.icon-bubble svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

html.theme-dark .access.section-light .icon-bubble {
  border-color: rgba(214, 106, 53, 0.18);
  color: #d66a35;
  background: rgba(255, 251, 247, 0.98);
  box-shadow: 0 14px 30px rgba(36, 35, 35, 0.08);
}

html.theme-dark .program-scroll-item {
  padding: 32px 34px;
  border: 1px solid rgba(255, 248, 242, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(246, 241, 235, 0.96)),
    radial-gradient(circle at right top, rgba(255, 156, 105, 0.08), transparent 10rem);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transform: none;
}

html.theme-dark .program-scroll-item.is-active {
  border-color: rgba(214, 106, 53, 0.24);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

html.theme-dark .program-day-head h3,
html.theme-dark .program-scroll-item li {
  color: #201b18;
}

html.theme-dark .program-day-head time,
html.theme-dark .day-number,
html.theme-dark .program-badges span {
  color: #d66a35;
}

html.theme-dark .program-badges span {
  padding: 9px 14px;
  border-color: rgba(214, 106, 53, 0.16);
  background: rgba(255, 250, 245, 0.96);
}

html.theme-dark .program-scroll-item li::before {
  background: #ff7c46;
  box-shadow: 0 0 0 4px rgba(255, 124, 70, 0.12);
}

@media (max-width: 900px) {
  .request {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .request-copy,
  .lead-form {
    grid-column: auto;
  }

  .request-copy {
    max-width: none;
    padding: 28px 24px 30px;
  }

  .request-copy h2,
  .request-note,
  .request-copy > p:not(.eyebrow):not(.request-note) {
    max-width: none;
  }

  .lead-form {
    max-width: none;
    justify-self: stretch;
  }

  html.theme-dark .program-scroll-item {
    padding: 24px 22px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  html.theme-dark .program-scroll-item {
    padding: 20px 18px;
    border-radius: 22px;
  }
}
