:root {
  --warm-white: #f8f9fc;
  --cool-white: #f3f6fb;
  --white: #ffffff;
  --navy: #111c44;
  --slate: #58627a;
  --muted: #8b94a8;
  --blue: #4057e8;
  --blue-2: #6377f3;
  --orange: #ff6b00;
  --line: #e8ebf2;
  --soft-blue: #eef2ff;
  --shadow: 0 22px 60px rgba(17, 28, 68, 0.07);
  --container: min(1360px, calc(100vw - 48px));
  --grid-gap: 24px;
  --grid-columns: repeat(12, minmax(0, 1fr));
}

* {
  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: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

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

.header-nav {
  display: flex;
  gap: 30px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 600;
}

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

.header-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(64, 87, 232, 0.35);
  border-radius: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
}

.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-visual {
  position: relative;
  grid-column: 7 / -1;
  min-height: 640px;
}

.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;
}

.trust-band {
  display: grid;
  grid-template-columns: var(--grid-columns);
  gap: 0;
  width: var(--container);
  margin: 0 auto 116px;
  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:nth-child(1),
.trust-band article:nth-child(2) {
  grid-column: span 2;
}

.trust-band article:nth-child(3),
.trust-band article:nth-child(4) {
  grid-column: span 3;
}

.trust-band article:nth-child(5) {
  grid-column: span 2;
}

.trust-band article {
  display: flex;
  align-items: center;
  gap: 16px;
  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 {
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

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

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

.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 0 0;
  border-top: 1px solid var(--line);
}

.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);
  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: 112px;
  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: 34px 0;
  border-top: 1px solid var(--line);
}

.outcome-grid span {
  grid-row: 1 / span 2;
  color: #dce3ff;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.92;
}

.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-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-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-mobile-media {
  display: none;
}

.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: 112px;
  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: 18px;
  line-height: 1.18;
}

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

@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 7;
}

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

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

.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;
}

.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: 130px;
}

.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 0 56px;
  border-top: 1px solid var(--line);
  color: var(--slate);
}

.site-footer p {
  margin: 0;
}

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

.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: 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-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;
  }

  .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;
  }

  .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 {
    --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 {
    padding: 14px 0;
  }

  .brand img {
    width: 116px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(38px, 10.6vw, 48px);
    max-width: 358px;
  }

  .hero-lead,
  .hero-text,
  .hero-actions,
  .hero-meta {
    max-width: 358px;
  }

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

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

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

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

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

  .hero-image {
    right: -96px;
    width: 560px;
    height: 430px;
    border-radius: 48% 0 0 48%;
  }

  .count-card {
    right: 8px;
    top: 198px;
    width: 170px;
    padding: 18px;
  }

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

  .trust-band {
    grid-template-columns: 1fr;
    margin-bottom: 78px;
    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: 88px;
  }

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

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

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

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

  .people {
    padding-top: 76px;
  }

  .people-marquee {
    width: 100vw;
    margin-left: -16px;
  }

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

  .people-marquee-track {
    gap: 16px;
    padding: 4px 16px 20px;
    animation-duration: 44s;
  }

  .doctor-card {
    flex-basis: 214px;
    height: 320px;
    border-radius: 20px;
  }

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

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

  .gallery-track {
    height: clamp(280px, 82vw, 420px);
  }

  .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 {
    height: 70px;
  }

  .gallery-thumb {
    flex-basis: 32px;
    width: 32px;
    height: 68px;
  }

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

  .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: 52px;
  }

  .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-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-status {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 430px) {
  .hero-image {
    right: -146px;
  }

  .count-card {
    right: 0;
  }

  .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;
  }

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