:root {
  --content-ink: #102633;
  --content-muted: #6e7f8a;
  --content-line: #d9e5ea;
  --content-surface: #ffffff;
  --content-soft: #f3f8fa;
  --content-navy: #063f59;
  --content-navy-dark: #032d42;
  --content-cyan: #75d9ef;
  --content-accent: #f5a33b;
}

.content-page-body {
  color: var(--content-ink);
  background: #f6fafc;
}

.content-page {
  min-height: 70vh;
  padding-top: var(--header-height);
  overflow: hidden;
}

.content-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 8vw, 132px) 0 clamp(72px, 7vw, 112px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(117, 217, 239, 0.18), transparent 30%),
    radial-gradient(circle at 7% 88%, rgba(245, 163, 59, 0.10), transparent 24%),
    linear-gradient(135deg, #031e2d 0%, #06415a 55%, #07536e 100%);
}

.content-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.018) 0 18%, transparent 18% 100%),
    linear-gradient(165deg, transparent 0 77%, rgba(117,217,239,.035) 77% 100%);
}

.content-hero__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.content-hero__orb--one {
  width: 570px;
  height: 570px;
  top: -300px;
  left: -260px;
  border: 1px solid rgba(117,217,239,.10);
  box-shadow: 0 0 0 85px rgba(117,217,239,.025), 0 0 0 170px rgba(117,217,239,.017);
}

.content-hero__orb--two {
  width: 470px;
  height: 470px;
  right: -230px;
  bottom: -250px;
  border: 1px solid rgba(245,163,59,.12);
  box-shadow: 0 0 0 75px rgba(245,163,59,.025);
}

.content-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .82fr);
  align-items: center;
  gap: clamp(52px, 7vw, 110px);
}

.content-hero__copy {
  max-width: 840px;
}

.content-hero__eyebrow,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b7295;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.content-hero__eyebrow {
  color: var(--content-cyan);
}

.content-hero__eyebrow::before,
.page-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--content-accent);
}

.content-hero__copy h1 {
  max-width: 920px;
  margin: 20px 0 22px;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 6rem);
  font-weight: 900;
  line-height: .99;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.content-hero__copy > p {
  max-width: 740px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.35vw, 1.36rem);
  font-weight: 650;
  line-height: 1.62;
}

.content-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.content-btn {
  min-height: 56px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.content-btn:hover,
.content-btn:focus-visible {
  transform: translateY(-2px);
}

.content-btn--light {
  color: var(--content-navy-dark);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 20, 31, .20);
}

.content-btn--light:hover,
.content-btn--light:focus-visible {
  color: var(--content-navy-dark);
  background: #f4fcff;
}

.content-btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.06);
}

.content-btn--ghost:hover,
.content-btn--ghost:focus-visible {
  color: #fff;
  border-color: #fff;
  background: rgba(255,255,255,.12);
}

.page-section {
  position: relative;
  padding: clamp(74px, 8vw, 122px) 0;
}

.page-heading {
  max-width: 800px;
}

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

.page-heading--center .page-kicker {
  justify-content: center;
}

.page-heading--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.page-heading h2 {
  margin: 18px 0 18px;
  color: var(--content-ink);
  font-size: clamp(2.35rem, 4.1vw, 4.7rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.page-heading p {
  margin: 0;
  color: var(--content-muted);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 650;
  line-height: 1.65;
}

.page-kicker--light {
  color: var(--content-cyan);
}

.page-count {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(6,75,103,.12);
  border-radius: 999px;
  color: var(--content-navy);
  background: #fff;
  box-shadow: 0 10px 25px rgba(29, 61, 78, .06);
  font-size: .78rem;
  font-weight: 900;
}

/* Theory */
.content-hero--theory {
  background:
    radial-gradient(circle at 80% 20%, rgba(117,217,239,.22), transparent 29%),
    linear-gradient(135deg, #031c2b, #06425a 58%, #075b78);
}

.theory-dashboard {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 80px rgba(0,16,26,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.theory-dashboard__ring {
  width: 210px;
  height: 210px;
  margin-inline: auto;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(4,47,66,.98) 0 57%, transparent 58%),
    conic-gradient(var(--content-accent) 0 22%, var(--content-cyan) 22% 72%, rgba(255,255,255,.14) 72% 100%);
  box-shadow: 0 18px 40px rgba(0,20,31,.24);
}

.theory-dashboard__ring strong {
  color: #fff;
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
}

.theory-dashboard__ring span {
  margin-top: 5px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.theory-dashboard__list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.theory-dashboard__list > div {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(2,27,40,.24);
}

.theory-dashboard__list > div > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--content-navy-dark);
  background: var(--content-cyan);
  font-size: .72rem;
  font-weight: 900;
}

.theory-dashboard__list p {
  display: grid;
  margin: 0;
}

.theory-dashboard__list strong {
  color: #fff;
  font-size: .92rem;
  font-weight: 900;
}

.theory-dashboard__list small {
  color: rgba(255,255,255,.60);
  font-size: .76rem;
  font-weight: 700;
}

.theory-intro {
  background: #fff;
}

.theory-intro__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(500px,.9fr);
  align-items: end;
  gap: clamp(42px,6vw,90px);
}

.theory-intro__stats {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
}

.theory-intro__stats > div {
  min-height: 134px;
  padding: 20px;
  display: grid;
  align-content: center;
  border: 1px solid var(--content-line);
  border-radius: 20px;
  background: linear-gradient(145deg,#fff,#f4f9fb);
  box-shadow: 0 15px 38px rgba(26,60,78,.06);
}

.theory-intro__stats strong {
  color: var(--content-navy);
  font-size: 2rem;
  font-weight: 900;
}

.theory-intro__stats span {
  margin-top: 6px;
  color: var(--content-muted);
  font-size: .82rem;
  font-weight: 800;
}

.theory-catalog {
  background:
    radial-gradient(circle at 90% 8%, rgba(117,217,239,.10), transparent 24%),
    linear-gradient(180deg,#f5f9fb,#edf4f7);
}

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

.theory-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(111,145,160,.20);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(29,61,78,.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.theory-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6,75,103,.28);
  box-shadow: 0 25px 55px rgba(29,61,78,.13);
}

.theory-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px 0;
}

.theory-card__number {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--content-navy-dark);
  font-size: .68rem;
  font-weight: 900;
}

.theory-card__lessons {
  color: #84939c;
  font-size: .68rem;
  font-weight: 850;
}

.theory-card__visual {
  height: 185px;
  margin: 8px 14px 0;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(117,217,239,.16), transparent 48%),
    #f2f7f9;
}

.theory-card__visual img {
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 190px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 14px 18px rgba(9, 52, 69, .10));
}

.theory-card__visual svg {
  width: 72%;
  height: 72%;
  overflow: visible;
  filter: drop-shadow(0 8px 12px rgba(13,46,62,.08));
}

.sign-red { fill: #e32924; }
.sign-white { fill: #fff; }
.sign-white-fill { fill: #fff; }
.sign-black { fill: #0d1820; }
.sign-blue { fill: #1548d4; }
.sign-red-stroke { fill: none; stroke: #e32924; stroke-width: 12; stroke-linecap: round; }
.sign-red-stroke.thick { stroke-width: 14; }
.road-gray { fill: #8d9397; }
.signal-body { fill: #d2d7da; stroke: #8d979d; stroke-width: 3; }
.signal-red { fill: #ed2b2b; }
.signal-yellow { fill: #f5cf2e; }
.signal-green { fill: #33c75b; }
.speed-text { fill: #0b1820; font-size: 50px; font-weight: 900; font-family: Arial,sans-serif; }
.distance-text { fill: #0b1820; font-size: 17px; font-weight: 900; font-family: Arial,sans-serif; }
.map-bg { fill: #edf1f2; stroke: #aeb9be; stroke-width: 3; }
.road-line { fill: none; stroke: #4e5961; stroke-width: 18; }
.route-line { fill: none; stroke: #22a05b; stroke-width: 9; stroke-linecap: round; stroke-linejoin: round; }
.route-dot { fill: #e72d28; }
.seat-head { fill: #111820; }
.seat-body { fill: none; stroke: #111820; stroke-width: 11; stroke-linecap: round; stroke-linejoin: round; }
.belt { fill: none; stroke: #111820; stroke-width: 7; stroke-linecap: round; }

.theory-card__body {
  padding: 20px 19px 21px;
}

.theory-card__body h3 {
  margin: 0 0 8px;
  color: var(--content-ink);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.theory-card__body p {
  min-height: 62px;
  margin: 0 0 16px;
  color: var(--content-muted);
  font-size: .85rem;
  font-weight: 650;
  line-height: 1.5;
}

.theory-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--content-navy);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}

.theory-card__body a span {
  color: var(--content-accent);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.theory-card:hover .theory-card__body a span {
  transform: translate(2px,-2px);
}

.learning-path {
  color: #fff;
  background:
    radial-gradient(circle at 15% 30%, rgba(117,217,239,.17), transparent 27%),
    linear-gradient(135deg,#032d42,#07516b);
}

.learning-path__layout {
  display: grid;
  grid-template-columns: minmax(350px,.78fr) minmax(0,1.22fr);
  align-items: center;
  gap: clamp(50px,7vw,110px);
}

.learning-path__visual {
  max-width: 580px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 28px 70px rgba(0,20,31,.23);
}

.learning-path__visual img {
  width: 100%;
  border-radius: 22px;
}

.learning-path__copy h2 {
  margin: 18px 0 30px;
  color: #fff;
  font-size: clamp(2.45rem,4.2vw,4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.learning-steps {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.learning-steps article,
.about-timeline article {
  display: grid;
  grid-template-columns: 45px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.learning-steps article > span,
.about-timeline article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--content-navy-dark);
  background: var(--content-cyan);
  font-weight: 900;
}

.learning-steps h3,
.about-timeline h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.learning-steps p,
.about-timeline p {
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: .88rem;
  font-weight: 650;
}

/* Contact */
.content-hero--contact {
  background:
    radial-gradient(circle at 77% 23%, rgba(117,217,239,.20), transparent 28%),
    linear-gradient(135deg,#032537,#06445c 60%,#08617d);
}

.contact-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.contact-hero__badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.055);
  font-size: .74rem;
  font-weight: 850;
}

.contact-hero__card {
  padding: clamp(28px,3vw,42px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 28px 70px rgba(0,20,31,.22), inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-hero__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--content-navy-dark);
  background: var(--content-cyan);
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-hero__card h2 {
  margin: 19px 0 8px;
  color: #fff;
  font-size: clamp(1.7rem,2.4vw,2.4rem);
  font-weight: 900;
}

.contact-hero__card > p {
  margin: 0;
  color: rgba(255,255,255,.67);
  font-weight: 650;
  line-height: 1.55;
}

.contact-hero__channels {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-hero__channels a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  color: #fff;
  background: rgba(2,31,45,.25);
  text-decoration: none;
}

.contact-hero__channels strong {
  font-size: .92rem;
  font-weight: 900;
}

.contact-hero__channels small {
  color: var(--content-cyan);
  font-size: .72rem;
  font-weight: 850;
}

.contact-options {
  background: #f6fafc;
}

.contact-option-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
  margin-top: 42px;
}

.contact-option {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--content-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(28,61,78,.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(28,61,78,.11);
}

.contact-option__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--content-navy);
  background: #eaf7fb;
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-option h3 {
  margin: 18px 0 7px;
  color: var(--content-ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-option p {
  min-height: 62px;
  margin: 0 0 17px;
  color: var(--content-muted);
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.5;
}

.contact-option a,
.contact-option > span:last-child {
  color: var(--content-navy);
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-form-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(117,217,239,.10), transparent 22%),
    #edf4f7;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(340px,.65fr);
  align-items: start;
  gap: clamp(28px,4vw,56px);
}

.contact-form-card {
  padding: clamp(26px,4vw,48px);
  border: 1px solid rgba(112,145,160,.20);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(28,61,78,.09);
}

.contact-form-card h2 {
  margin: 17px 0 10px;
  color: var(--content-ink);
  font-size: clamp(2.15rem,3.5vw,3.6rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.05em;
}

.contact-form-card > p {
  margin: 0 0 28px;
  color: var(--content-muted);
  font-weight: 650;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field--full,
.contact-consent,
.contact-submit,
.contact-status {
  grid-column: 1/-1;
}

.contact-field label {
  color: #344a55;
  font-size: .82rem;
  font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d1e0e6;
  border-radius: 15px;
  color: var(--content-ink);
  background: #f8fbfc;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input,
.contact-field select {
  min-height: 56px;
  padding: 0 16px;
}

.contact-field textarea {
  padding: 15px 16px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #0b7295;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11,114,149,.12);
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--content-muted);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 18px;
  accent-color: var(--content-navy);
}

.contact-submit {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px 0 23px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg,#075a77,#063f59);
  box-shadow: 0 15px 32px rgba(6,75,103,.20);
  font: inherit;
  font-weight: 900;
}

.contact-submit span:last-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
}

.contact-status {
  min-height: 1.3em;
  margin: 0;
  color: #17854b;
  font-size: .84rem;
  font-weight: 850;
  text-align: center;
}

.contact-aside {
  overflow: hidden;
  border: 1px solid rgba(112,145,160,.20);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(28,61,78,.08);
}

.contact-aside__visual {
  height: 230px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg,#e9f4f8,#dff0f5);
}

.contact-aside__visual img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.contact-aside__copy,
.contact-aside__hours {
  padding: 25px;
}

.contact-aside__copy > span {
  color: #0b7295;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-aside__copy h3 {
  margin: 9px 0 8px;
  color: var(--content-ink);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.contact-aside__copy p {
  margin: 0 0 17px;
  color: var(--content-muted);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.55;
}

.contact-aside__copy a {
  color: var(--content-navy);
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-aside__hours {
  border-top: 1px solid var(--content-line);
  background: #f7fafb;
}

.contact-aside__hours > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--content-ink);
  font-weight: 900;
}

.contact-aside__hours p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 8px 0;
  color: var(--content-muted);
  font-size: .82rem;
  font-weight: 700;
}

.contact-aside__hours b {
  color: var(--content-ink);
  font-weight: 900;
}

/* About */
.content-hero--about {
  background:
    radial-gradient(circle at 80% 20%, rgba(117,217,239,.18), transparent 28%),
    linear-gradient(135deg,#032131,#06445c 57%,#075975);
}

.about-hero__visual {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.about-hero__frame {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 28px 75px rgba(0,18,28,.24);
}

.about-hero__frame img {
  width: 100%;
  border-radius: 25px;
}

.about-hero__badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: 145px;
  min-height: 112px;
  display: grid;
  place-content: center;
  padding: 16px;
  border: 5px solid #06435b;
  border-radius: 22px;
  color: var(--content-navy-dark);
  background: var(--content-accent);
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,18,28,.23);
}

.about-hero__badge strong {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.about-hero__badge small {
  margin-top: 5px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-stats {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  overflow: hidden;
  border: 1px solid rgba(112,145,160,.20);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(28,61,78,.12);
}

.about-stats__grid > div {
  min-height: 115px;
  display: grid;
  place-content: center;
  padding: 20px;
  border-right: 1px solid var(--content-line);
  text-align: center;
}

.about-stats__grid > div:last-child {
  border-right: 0;
}

.about-stats__grid strong {
  color: var(--content-navy);
  font-size: 2rem;
  font-weight: 900;
}

.about-stats__grid span {
  margin-top: 4px;
  color: var(--content-muted);
  font-size: .78rem;
  font-weight: 850;
}

.about-mission {
  background: #f6fafc;
}

.about-mission__layout {
  display: grid;
  grid-template-columns: minmax(340px,.8fr) minmax(0,1.2fr);
  align-items: start;
  gap: clamp(44px,6vw,90px);
}

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

.about-value,
.about-feature {
  padding: 25px;
  border: 1px solid var(--content-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(28,61,78,.06);
}

.about-value > span {
  color: var(--content-accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.about-value h3,
.about-feature h3 {
  margin: 13px 0 7px;
  color: var(--content-ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.about-value p,
.about-feature p {
  margin: 0;
  color: var(--content-muted);
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.52;
}

.about-story {
  color: #fff;
  background:
    radial-gradient(circle at 15% 25%, rgba(117,217,239,.18), transparent 25%),
    linear-gradient(135deg,#032d42,#07516b);
}

.about-story__layout {
  display: grid;
  grid-template-columns: minmax(350px,.82fr) minmax(0,1.18fr);
  align-items: center;
  gap: clamp(48px,7vw,105px);
}

.about-story__visual {
  max-width: 600px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: rgba(255,255,255,.055);
}

.about-story__visual img {
  width: 100%;
  border-radius: 22px;
}

.about-story__copy h2 {
  margin: 18px 0 26px;
  color: #fff;
  font-size: clamp(2.4rem,4.2vw,4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.about-timeline {
  display: grid;
  gap: 5px;
}

.about-why {
  background: #f3f8fa;
}

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

.about-feature > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--content-navy-dark);
  background: var(--content-cyan);
  font-weight: 900;
}

.about-cta {
  padding: clamp(58px,6vw,88px) 0;
  color: #fff;
  background: linear-gradient(135deg,#063f59,#032d42);
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.about-cta__inner > div:first-child > span {
  color: var(--content-cyan);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.about-cta h2 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(2rem,3vw,3.6rem);
  font-weight: 900;
  letter-spacing: -.045em;
}

.about-cta__inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1199.98px) {
  .content-hero__layout {
    grid-template-columns: minmax(0,1fr) minmax(360px,.72fr);
    gap: 45px;
  }

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

  .contact-option-grid,
  .about-feature-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 991.98px) {
  .content-hero__layout,
  .theory-intro__grid,
  .learning-path__layout,
  .contact-form-layout,
  .about-mission__layout,
  .about-story__layout {
    grid-template-columns: 1fr;
  }

  .content-hero__copy,
  .page-heading {
    max-width: 760px;
  }

  .theory-dashboard,
  .contact-hero__card,
  .about-hero__visual {
    width: min(100%,680px);
  }

  .theory-intro__stats {
    max-width: 760px;
  }

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

  .contact-aside {
    max-width: 700px;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .about-stats__grid > div:nth-child(2) {
    border-right: 0;
  }

  .about-stats__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--content-line);
  }
}

@media (max-width: 767.98px) {
  .content-page {
    padding-top: var(--header-height);
  }

  .content-hero {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .content-hero__copy h1 {
    font-size: clamp(2.45rem,11vw,4rem);
  }

  .content-hero__copy > p {
    font-size: 1rem;
  }

  .content-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .content-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }

  .page-section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .page-heading--split {
    display: block;
  }

  .page-count {
    display: inline-flex;
    margin-top: 18px;
  }

  .theory-intro__stats {
    grid-template-columns: 1fr;
  }

  .theory-intro__stats > div {
    min-height: 100px;
  }

  .theory-grid,
  .contact-option-grid,
  .about-values,
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .theory-card__visual {
    height: 210px;
  }

  .learning-path__copy h2,
  .about-story__copy h2 {
    font-size: clamp(2.3rem,10vw,3.6rem);
  }

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

  .contact-field--full,
  .contact-consent,
  .contact-submit,
  .contact-status {
    grid-column: auto;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    font-size: 16px;
  }

  .about-hero__badge {
    right: 8px;
    bottom: 18px;
  }

  .about-stats {
    margin-top: -22px;
  }

  .about-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-cta__inner > div:last-child {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 479.98px) {
  .content-hero__actions,
  .about-cta__inner > div:last-child {
    grid-template-columns: 1fr;
  }

  .theory-dashboard,
  .contact-hero__card,
  .contact-form-card {
    padding: 22px 17px;
    border-radius: 23px;
  }

  .theory-dashboard__ring {
    width: 175px;
    height: 175px;
  }

  .theory-card__visual {
    height: 185px;
  }

  .contact-option {
    min-height: 0;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__grid > div,
  .about-stats__grid > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--content-line);
  }

  .about-stats__grid > div:last-child {
    border-bottom: 0;
  }

  .about-hero__badge {
    width: 125px;
    min-height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theory-card,
  .contact-option,
  .content-btn {
    transition: none;
  }
}
