@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/homepage/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/homepage/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/unbounded-bold.woff") format("woff");
}

:root {
  --blue: #0b6fff;
  --blue-strong: #0062ed;
  --blue-soft: #e9f4ff;
  --cyan: #41dbe4;
  --navy: #17385f;
  --navy-deep: #102d50;
  --ink: #15304f;
  --muted: #67788c;
  --line: #d7e5f2;
  --surface: #fff;
  --ice: #eef7ff;
  --ice-2: #e6f2ff;
  --green: #24b86a;
  --orange: #ff8b4d;
  --shadow-sm: 0 12px 34px rgba(23, 56, 95, 0.09);
  --shadow-md: 0 24px 64px rgba(23, 56, 95, 0.14);
  --shadow-blue: 0 20px 38px rgba(11, 111, 255, 0.24);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --shell: 1260px;
  --sans: Manrope, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Unbounded, Manrope, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: #fff; font-family: var(--sans); font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(11, 111, 255, 0.42); outline-offset: 4px; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; inset: 12px auto auto 12px; padding: 10px 16px; transform: translateY(-150%); border-radius: 12px; color: #fff; background: var(--navy); }
.skip-link:focus { transform: none; }

.eyebrow { margin: 0 0 12px; color: var(--blue); font-size: 12px; font-weight: 800; line-height: 1.35; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow--light { color: #70e8ff; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 13px 24px; border: 1px solid var(--blue); border-radius: 999px; color: #fff; background: var(--blue); box-shadow: 0 12px 24px rgba(11,111,255,.18); font-weight: 800; line-height: 1.2; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); background: var(--blue-strong); box-shadow: var(--shadow-blue); }
.button--small { min-height: 42px; padding: 10px 18px; font-size: 14px; }
.button--large { min-height: 58px; padding: 16px 28px; }
.button--ghost { border-color: #bdd3e7; color: var(--navy); background: rgba(255,255,255,.7); box-shadow: none; backdrop-filter: blur(12px); }
.button--ghost:hover { border-color: #98b8d5; color: var(--navy); background: #fff; box-shadow: var(--shadow-sm); }
.button--white { border-color: #fff; color: var(--navy); background: #fff; box-shadow: 0 16px 34px rgba(0,0,0,.15); }
.button--white:hover { color: var(--navy); background: #f5fbff; }
.button--outline-light { border-color: rgba(255,255,255,.58); color: #fff; background: transparent; box-shadow: none; }
.button--outline-light:hover { color: var(--navy); background: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; color: var(--blue); font-weight: 800; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid transparent; background: rgba(247,251,255,.84); backdrop-filter: blur(18px); transition: border-color 180ms ease, box-shadow 180ms ease; }
.site-header.is-scrolled { border-bottom-color: rgba(185,209,231,.8); box-shadow: 0 8px 28px rgba(23,56,95,.06); }
.header__inner { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 10px; color: var(--navy); font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.brand__logo { width: 42px; height: 42px; flex: 0 0 42px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(11,111,255,.18)); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px,2.2vw,32px); color: #49647f; font-size: 14px; font-weight: 700; }
.main-nav a, .header__login { position: relative; }
.main-nav a::after, .header__login::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; transform: scaleX(0); border-radius: 4px; background: var(--blue); content: ""; transition: transform 180ms ease; }
.main-nav a:hover::after, .header__login:hover::after { transform: scaleX(1); }
.header__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 18px; }
.header__login { color: var(--navy); font-size: 14px; font-weight: 800; }
.menu-button, .mobile-nav { display: none; }
.breadcrumb { display: flex; min-height: 54px; align-items: center; gap: 9px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: #075fcf; font-weight: 750; }

/* The page is compact enough to paint eagerly; this keeps icons reliable during fast scrolling. */
.section, .stats-section, .contact-section, .final-section { content-visibility: visible; }

.hero { position: relative; overflow: hidden; padding: 42px 0 58px; background: radial-gradient(circle at 76% 18%, rgba(65,219,228,.19), transparent 22%), radial-gradient(circle at 96% 100%, rgba(11,111,255,.16), transparent 34%), linear-gradient(125deg,#e9f6ff 0%,#f9fcff 52%,#e8f3ff 100%); }
.hero::after { position: absolute; right: -15vw; bottom: -32vw; width: 56vw; height: 56vw; border-radius: 50%; background: rgba(255,255,255,.48); filter: blur(30px); content: ""; pointer-events: none; }
.hero__orb { position: absolute; z-index: 1; border-radius: 50%; pointer-events: none; }
.hero__orb--one { top: 9%; left: 4%; width: 100px; height: 100px; background: rgba(65,219,228,.13); }
.hero__orb--two { right: 42%; bottom: 12%; width: 22px; height: 22px; background: rgba(11,111,255,.48); box-shadow: 0 0 54px rgba(11,111,255,.55); }
.hero__grid { position: relative; z-index: 2; display: grid; min-height: 610px; align-items: center; grid-template-columns: minmax(0,1.06fr) minmax(390px,.74fr); gap: clamp(34px,5vw,76px); }
.hero__copy { min-width: 0; }
.hero h1 { max-width: 790px; margin: 0; color: var(--navy-deep); font-family: var(--display); font-size: clamp(38px,4.5vw,62px); font-weight: 700; line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
.hero__lead { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: clamp(17px,1.45vw,20px); line-height: 1.62; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: grid; margin: 34px 0 0; padding: 0; list-style: none; grid-template-columns: repeat(4,minmax(0,1fr)); }
.trust-row li { min-width: 0; padding: 0 18px; border-left: 1px solid rgba(151,186,215,.7); }
.trust-row li:first-child { padding-left: 0; border-left: 0; }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { color: var(--navy); font-size: 15px; line-height: 1.35; }
.trust-row span { margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.trust-row--icons li { display: flex; align-items: center; gap: 10px; }
.trust-row--icons img { width: 42px; height: 42px; flex: 0 0 42px; object-fit: contain; }
.trust-row--icons div { min-width: 0; }
.portrait-card { position: relative; aspect-ratio: 3 / 4; min-height: 555px; overflow: hidden; border: 1px solid rgba(170,204,231,.9); border-radius: 40px; background: #102335; box-shadow: 0 34px 80px rgba(23,56,95,.19); isolation: isolate; }
.portrait-card::before { position: absolute; z-index: 2; inset: 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 29px; content: ""; pointer-events: none; }
.portrait-card picture { position: absolute; inset: 0; }
.portrait-card__image { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.portrait-card__shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg,transparent 56%,rgba(7,22,36,.18) 70%,rgba(7,22,36,.7) 100%); pointer-events: none; }
.portrait-card__badge { position: absolute; z-index: 2; right: 26px; bottom: 26px; left: 26px; display: grid; padding: 18px 20px; border: 1px solid rgba(255,255,255,.78); border-radius: 22px; color: #fff; background: rgba(16,45,80,.9); box-shadow: 0 18px 42px rgba(16,45,80,.2); backdrop-filter: blur(14px); }
.portrait-card__badge span { color: #8be9ff; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.portrait-card__badge strong { margin-top: 4px; font-size: 18px; }

.section { padding: clamp(58px,6vw,82px) 0; }
.section h2, .contact-card h2, .final-section h2 { margin: 0; color: var(--navy-deep); font-family: var(--display); font-size: clamp(31px,3.45vw,46px); font-weight: 700; line-height: 1.13; letter-spacing: -.03em; text-wrap: balance; }
.section-heading { display: grid; align-items: end; margin-bottom: 40px; grid-template-columns: minmax(0,1.15fr) minmax(300px,.68fr); gap: 54px; }
.section-heading > p { margin: 0; color: var(--muted); }
.section-heading--center { display: flex; max-width: 900px; align-items: center; margin-inline: auto; text-align: center; flex-direction: column; gap: 0; }
.section-heading--center > p:last-child { max-width: 730px; margin: 20px 0 0; }
.about-grid { display: grid; align-items: start; grid-template-columns: minmax(320px,.78fr) minmax(0,1.08fr); gap: clamp(42px,6vw,84px); }
.section-heading--sticky { position: sticky; top: 118px; display: block; margin: 0; }
.prose p { margin: 0 0 20px; color: var(--muted); }
.prose p:last-child { margin-bottom: 0; }
.prose--large { font-size: clamp(17px,1.45vw,20px); line-height: 1.8; }
.prose strong { color: var(--navy); }
.prose blockquote { margin: 34px 0; padding: 24px 28px; border-left: 4px solid var(--blue); border-radius: 0 22px 22px 0; color: var(--navy); background: var(--ice); font-size: clamp(20px,2vw,27px); font-weight: 750; line-height: 1.4; }
.prose blockquote cite { display: block; margin-top: 18px; color: var(--navy); font-size: 14px; font-style: normal; line-height: 1.4; }
.prose blockquote cite span { color: var(--muted); font-size: 12px; font-weight: 600; }

.section--system { padding-top: 20px; }
.system-card { display: grid; overflow: hidden; padding: clamp(32px,5vw,66px); border-radius: 38px; color: #fff; background: radial-gradient(circle at 90% 0%,rgba(65,219,228,.2),transparent 30%),linear-gradient(145deg,#163e6d,#0e2b4d); box-shadow: 0 34px 80px rgba(16,45,80,.2); grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr); gap: clamp(40px,6vw,86px); }
.system-card h2 { color: #fff; }
.system-card__copy > p:not(.eyebrow) { max-width: 650px; margin: 20px 0 0; color: #c7d9ea; }
.system-list { display: grid; margin: 0; padding: 0; list-style: none; gap: 10px; }
.system-list li { display: grid; min-height: 88px; align-items: center; padding: 16px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.07); grid-template-columns: 50px 1fr; grid-template-rows: auto auto; column-gap: 12px; }
.system-list li > span { grid-row: 1 / 3; color: #7ae8ff; font-size: 13px; font-weight: 800; }
.system-list strong { font-size: 17px; }
.system-list small { color: #b9cce0; }

.section--experience { background: linear-gradient(180deg,#fff 0%,#f4f9ff 100%); }
.education-card { display: grid; max-width: 950px; align-items: center; margin: 54px auto 30px; padding: 28px 34px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); grid-template-columns: 120px 1fr; gap: 28px; }
.education-card h3 { margin: 5px 0 8px; color: var(--navy); font-size: clamp(22px,2.4vw,31px); line-height: 1.2; }
.education-card p { margin: 0; color: var(--muted); }
.card-label { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.icon-tile { position: relative; z-index: 1; display: grid; width: 78px; height: 78px; flex: 0 0 auto; place-items: center; border: 1px solid #d5e5f3; border-radius: 20px; background: linear-gradient(145deg,#fff,#eef7ff); box-shadow: 0 14px 24px rgba(23,56,95,.1); }
.icon-tile img { width: 64px; height: 64px; object-fit: contain; }
.icon-tile--large { width: 106px; height: 106px; border-radius: 28px; }
.icon-tile--large img { width: 90px; height: 90px; }
.timeline { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.timeline li { position: relative; min-height: 240px; padding: 26px 22px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 10px 28px rgba(23,56,95,.06); }
.timeline li::after { position: absolute; z-index: 2; top: 39px; right: -24px; width: 31px; height: 2px; background: #a9cce9; content: ""; }
.timeline li:last-child::after { display: none; }
.timeline span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 800; }
.timeline h3 { margin: 30px 0 9px; color: var(--navy); font-size: 19px; line-height: 1.25; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; }

.section--fitpush { background: #f4f9ff; }
.fitpush-grid { display: grid; align-items: center; grid-template-columns: minmax(340px,.82fr) minmax(0,1.12fr); gap: clamp(48px,8vw,110px); }
.fitpush-grid h2 { margin-bottom: 24px; }
.fitpush-grid p:not(.eyebrow) { margin: 0 0 18px; color: var(--muted); }
.fitpush-visual { position: relative; min-height: 480px; }
.fitpush-visual__orbit { position: absolute; inset: 8% 9%; border: 1px dashed rgba(11,111,255,.28); border-radius: 50%; }
.fitpush-visual__orbit::before, .fitpush-visual__orbit::after { position: absolute; border-radius: 50%; content: ""; }
.fitpush-visual__orbit::before { inset: 15%; background: radial-gradient(circle at 35% 30%,#fff,#ddecff); box-shadow: var(--shadow-md); }
.fitpush-visual__orbit::after { top: 12%; right: 9%; width: 22px; height: 22px; background: var(--cyan); box-shadow: 0 0 36px rgba(65,219,228,.7); }
.fitpush-visual__main { position: absolute; z-index: 2; top: 50%; left: 50%; width: 245px; height: 245px; transform: translate(-50%,-50%); object-fit: contain; filter: drop-shadow(0 24px 30px rgba(23,56,95,.14)); }
.fitpush-visual__small { position: absolute; z-index: 3; width: 104px; height: 104px; padding: 8px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); object-fit: contain; }
.fitpush-visual__small--one { top: 2%; right: 8%; transform: rotate(7deg); }
.fitpush-visual__small--two { bottom: 5%; left: 4%; transform: rotate(-8deg); }
.insight { margin-top: 26px; padding: 22px 24px; border: 1px solid rgba(11,111,255,.18); border-radius: 20px; color: var(--navy); background: linear-gradient(135deg,#fff,#e9f4ff); font-weight: 750; }

.help-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.help-card { position: relative; display: flex; min-height: 220px; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow-sm); flex-direction: column; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.help-card:hover { transform: translateY(-5px); border-color: #b7d3ea; box-shadow: var(--shadow-md); }
.help-card::after { position: absolute; top: -88px; right: -88px; width: 180px; height: 180px; border-radius: 50%; background: rgba(218,238,255,.48); content: ""; }
.help-card h3 { position: relative; z-index: 2; margin: auto 0 9px; color: var(--navy); font-size: 21px; line-height: 1.25; }
.help-card p { position: relative; z-index: 2; margin: 0; color: var(--muted); }
.help-card--featured { border-color: transparent; background: linear-gradient(145deg,#eaf5ff,#fff); }
.help-card .icon-tile { margin-bottom: 24px; }

.section--approach { background: #f5faff; }
.principles { display: grid; margin-top: 50px; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 14px; }
.principles article { min-height: 285px; padding: 24px 20px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 10px 28px rgba(23,56,95,.06); }
.principles span { color: var(--blue); font-size: 12px; font-weight: 800; }
.principles h3 { margin: 72px 0 10px; color: var(--navy); font-size: 18px; line-height: 1.25; }
.principles p { margin: 0; color: var(--muted); font-size: 14px; }
.stats-section { padding: 34px 0; background: linear-gradient(135deg,#0e2b4d,#174476); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stats-grid > div { padding: 28px 44px; border-left: 1px solid rgba(255,255,255,.13); text-align: center; }
.stats-grid > div:first-child { border-left: 0; }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { color: #fff; font-size: clamp(34px,4vw,52px); line-height: 1.1; letter-spacing: -.04em; }
.stats-grid span { margin-top: 8px; color: #bfd5e9; }

.section--fit { padding-bottom: 48px; }
.fit-card { display: grid; padding: clamp(32px,5vw,58px); border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(135deg,#fff,#f0f7ff); box-shadow: var(--shadow-sm); grid-template-columns: minmax(0,.82fr) minmax(400px,1fr); gap: clamp(44px,7vw,90px); }
.fit-card > div > p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; align-content: center; margin: 0; padding: 0; list-style: none; gap: 13px; }
.check-list li { position: relative; padding-left: 34px; color: #49647f; }
.check-list li::before { position: absolute; top: 2px; left: 0; display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); content: "✓"; font-size: 12px; font-weight: 800; }

.section--formats { background: #fff; }
.formats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.format-card { display: flex; min-height: 535px; padding: clamp(28px,3.4vw,42px); border: 1px solid var(--line); border-radius: 32px; background: #fff; box-shadow: var(--shadow-sm); flex-direction: column; }
.format-card--primary { border-color: rgba(11,111,255,.22); background: linear-gradient(145deg,#eaf5ff,#fff 58%); }
.format-card__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.format-card__top > span { padding: 7px 12px; border-radius: 999px; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 800; }
.format-card h3 { max-width: 540px; margin: 34px 0 16px; color: var(--navy-deep); font-family: var(--display); font-size: clamp(25px,2.45vw,34px); line-height: 1.18; letter-spacing: -.025em; }
.format-card > p { margin: 0; color: var(--muted); }
.mini-list { display: grid; margin: 28px 0 36px; padding: 0; list-style: none; gap: 12px; }
.mini-list li { position: relative; padding-left: 28px; color: #49647f; }
.mini-list li::before { position: absolute; left: 0; color: var(--blue); content: "✓"; font-weight: 800; }
.format-card .button { width: fit-content; margin-top: auto; }

.section--ecosystem { padding-top: 20px; }
.ecosystem-card { display: grid; overflow: hidden; align-items: center; padding: clamp(34px,5vw,64px); border-radius: 38px; color: #fff; background: radial-gradient(circle at 86% 12%,rgba(65,219,228,.2),transparent 24%),linear-gradient(145deg,#173f6d,#0d2949); box-shadow: 0 34px 80px rgba(16,45,80,.2); grid-template-columns: 1fr 280px; gap: 70px; }
.ecosystem-card h2 { color: #fff; }
.ecosystem-card p { max-width: 760px; color: #c5d9eb; }
.ecosystem-card blockquote { max-width: 780px; margin: 30px 0 0; padding: 0 0 0 22px; border-left: 3px solid var(--cyan); color: #fff; font-size: clamp(19px,2vw,25px); font-weight: 750; line-height: 1.45; }
.ecosystem-card > img { width: 250px; height: 250px; object-fit: contain; filter: drop-shadow(0 26px 34px rgba(0,0,0,.22)); }
.ecosystem-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.ecosystem-links a { padding: 9px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #dff5ff; background: rgba(255,255,255,.06); font-size: 13px; font-weight: 750; transition: background 180ms ease; }
.ecosystem-links a:hover { background: rgba(255,255,255,.14); }

.contact-section { padding: 40px 0 100px; }
.contact-card { position: relative; overflow: hidden; padding: clamp(48px,7vw,88px); border-radius: 40px; color: #fff; background: radial-gradient(circle at 100% 0%,rgba(65,219,228,.24),transparent 30%),linear-gradient(135deg,#0b6fff,#164c8a 68%,#102d50); box-shadow: 0 34px 90px rgba(11,111,255,.24); }
.contact-card::after { position: absolute; right: -80px; bottom: -160px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; }
.contact-card__icon { position: absolute; z-index: 2; top: 54px; right: 8%; width: 130px; height: 130px; transform: rotate(6deg); }
.contact-card__icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 25px rgba(0,0,0,.18)); }
.contact-card h2 { position: relative; z-index: 2; max-width: 820px; color: #fff; }
.contact-card > p:not(.eyebrow) { position: relative; z-index: 2; max-width: 760px; margin: 22px 0 0; color: #d9ecff; font-size: 18px; }
.contact-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.contact-card > small { position: relative; z-index: 2; display: block; margin-top: 18px; color: #b8d6f0; }

.section--faq { background: #f5faff; }
.faq-layout { display: grid; align-items: start; grid-template-columns: minmax(280px,.68fr) minmax(0,1.25fr); gap: clamp(46px,8vw,120px); }
.faq-intro { position: sticky; top: 118px; }
.faq-intro p:not(.eyebrow) { color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(23,56,95,.05); }
.faq-list summary { position: relative; min-height: 74px; padding: 24px 62px 20px 24px; cursor: pointer; color: var(--navy); font-weight: 800; line-height: 1.35; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 50%; right: 22px; width: 24px; height: 24px; transform: translateY(-50%); border-radius: 50%; background: var(--blue-soft); }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 11px; left: 6px; width: 12px; height: 2px; border-radius: 3px; background: var(--blue); content: ""; }
.faq-list summary span::after { transform: rotate(90deg); transition: transform 180ms ease; }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { margin: 0; padding: 0 24px 24px; color: var(--muted); }

.final-section { padding: clamp(76px,9vw,130px) 0; }
.final-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1fr); gap: clamp(54px,9vw,130px); }
.final-grid .prose { font-size: clamp(17px,1.45vw,20px); }
.site-footer { padding: 42px 0 24px; border-top: 1px solid var(--line); background: #fff; }
.footer__top { display: grid; align-items: center; padding-bottom: 30px; grid-template-columns: auto 1fr auto; gap: 42px; }
.footer__top > p { max-width: 440px; margin: 0; color: var(--muted); }
.footer__top nav, .footer__bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__top nav a, .footer__bottom a { color: #526b84; font-size: 13px; font-weight: 700; }
.footer__top nav a:hover, .footer__bottom a:hover { color: var(--blue); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: minmax(0,1fr) 390px; gap: 38px; }
  .hero h1 { font-size: clamp(36px,4.9vw,52px); }
  .trust-row { grid-template-columns: repeat(2,1fr); row-gap: 20px; }
  .trust-row li:nth-child(3) { padding-left: 0; border-left: 0; }
  .principles { grid-template-columns: repeat(3,1fr); }
  .principles article { min-height: 250px; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .timeline li::after { display: none; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 72px; }
  .site-header { position: relative; top: auto; }
  .shell { width: min(calc(100% - 32px),var(--shell)); }
  .main-nav, .header__login { display: none; }
  .menu-button { display: flex; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 13px; align-items: center; justify-content: center; background: #fff; flex-direction: column; gap: 5px; }
  .menu-button span { width: 19px; height: 2px; border-radius: 3px; background: var(--navy); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { position: absolute; z-index: 99; top: 100%; right: 0; left: 0; display: grid; max-height: calc(100vh - 68px); overflow-y: auto; padding: 20px 16px 28px; border-top: 1px solid var(--line); background: rgba(248,252,255,.98); box-shadow: 0 24px 50px rgba(23,56,95,.12); gap: 6px; }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav > a:not(.button) { min-height: 48px; padding: 12px 10px; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 750; }
  .breadcrumb { min-height: 48px; }
  .hero { padding-top: 30px; }
  .hero__grid, .about-grid, .system-card, .fitpush-grid, .fit-card, .ecosystem-card, .faq-layout, .final-grid { grid-template-columns: 1fr; }
  .hero__grid { min-height: auto; gap: 42px; }
  .hero__portrait { width: min(100%,540px); margin-inline: auto; }
  .portrait-card { min-height: 520px; }
  .section-heading { display: block; }
  .section-heading > p { max-width: 720px; margin-top: 16px; }
  .section-heading--sticky, .faq-intro { position: static; }
  .help-grid { grid-template-columns: repeat(2,1fr); }
  .system-card { gap: 34px; }
  .fitpush-grid { gap: 20px; }
  .fitpush-visual { order: 2; min-height: 420px; }
  .fit-card { gap: 32px; }
  .formats-grid { grid-template-columns: 1fr; }
  .format-card { min-height: auto; }
  .ecosystem-card { gap: 26px; }
  .ecosystem-card > img { justify-self: center; }
  .contact-card__icon { opacity: .3; }
  .faq-layout { gap: 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; line-height: 1.62; }
  .shell { width: min(calc(100% - 24px),var(--shell)); }
  .header__inner { min-height: 62px; gap: 10px; }
  .brand { font-size: 18px; }
  .brand__logo { width: 40px; height: 40px; flex-basis: 40px; }
  .header__actions { gap: 8px; }
  .header__actions > .button { display: none; }
  .mobile-nav { top: 100%; max-height: calc(100vh - 62px); }
  .breadcrumb { min-height: 44px; font-size: 12px; }
  .hero { padding: 28px 0 36px; }
  .hero h1 { font-size: clamp(32px,9.4vw,42px); line-height: 1.12; }
  .hero__lead { margin-top: 20px; font-size: 16px; }
  .hero__actions { display: grid; margin-top: 24px; }
  .hero__actions .button { width: 100%; }
  .trust-row { margin-top: 28px; grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .trust-row li { padding-inline: 14px 6px; }
  .trust-row--icons li { align-items: flex-start; flex-direction: column; gap: 7px; }
  .trust-row--icons img { width: 36px; height: 36px; flex-basis: 36px; }
  .trust-row strong { font-size: 14px; }
  .trust-row span { font-size: 11px; }
  .portrait-card { min-height: 455px; border-radius: 30px; }
  .portrait-card::before { inset: 13px; border-radius: 22px; }
  .portrait-card__badge { right: 18px; bottom: 18px; left: 18px; padding: 15px 17px; }
  .section { padding: 56px 0; }
  .section h2, .contact-card h2, .final-section h2 { font-size: clamp(28px,7.8vw,36px); line-height: 1.16; }
  .prose--large { font-size: 16px; line-height: 1.72; }
  .prose blockquote { margin: 26px 0; padding: 20px; font-size: 19px; }
  .system-card, .fit-card, .ecosystem-card, .contact-card { padding: 28px 22px; border-radius: 28px; }
  .system-list li { min-height: 78px; }
  .education-card { grid-template-columns: 1fr; padding: 24px 20px; }
  .timeline, .help-grid, .principles, .stats-grid { grid-template-columns: 1fr; }
  .timeline li { min-height: 190px; }
  .timeline h3 { margin-top: 24px; }
  .fitpush-visual { min-height: 330px; }
  .fitpush-visual__main { width: 180px; height: 180px; }
  .fitpush-visual__small { width: 78px; height: 78px; border-radius: 19px; }
  .help-card { min-height: 205px; }
  .principles article { min-height: 220px; }
  .principles h3 { margin-top: 42px; }
  .stats-section { padding: 16px 0; }
  .stats-grid > div { padding: 26px 12px; border-top: 1px solid rgba(255,255,255,.13); border-left: 0; }
  .stats-grid > div:first-child { border-top: 0; }
  .format-card { padding: 26px 22px; border-radius: 26px; }
  .format-card h3 { margin-top: 28px; font-size: 26px; }
  .format-card .button { width: 100%; }
  .ecosystem-card > img { width: 190px; height: 190px; }
  .ecosystem-links { gap: 7px; }
  .ecosystem-links a { width: 100%; text-align: center; }
  .contact-section { padding: 20px 0 74px; }
  .contact-card__icon { top: 22px; right: -10px; width: 96px; height: 96px; }
  .contact-card > p:not(.eyebrow) { font-size: 16px; }
  .contact-actions { display: grid; }
  .contact-actions .button { width: 100%; }
  .faq-list summary { min-height: 68px; padding: 20px 54px 18px 18px; }
  .faq-list details p { padding: 0 18px 20px; }
  .final-section { padding: 72px 0; }
  .final-grid { gap: 30px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Personal service and application funnel */
button.button { cursor: pointer; font: inherit; }
.service-price { display: flex; align-items: baseline; gap: 9px; margin: 26px 0 0; color: var(--navy-deep); }
.service-price strong { font-size: clamp(34px,4vw,50px); line-height: 1; letter-spacing: -.05em; }
.service-price span { color: var(--muted); font-weight: 750; }
.service-list { grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 20px; }
.no-payment { display: block; max-width: 520px; margin-top: 15px; color: var(--muted); line-height: 1.45; }
.course-options { display: grid; margin: 0 0 30px; grid-template-columns: 1fr 1fr; gap: 10px; }
.course-options > div { display: grid; padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: #f8fbff; gap: 4px; }
.course-options strong { color: var(--navy); font-size: 14px; }
.course-options span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.trainer-system-note { display: grid; margin: 24px 0 4px; padding: 18px; border: 1px solid rgba(11,111,255,.2); border-radius: 18px; background: rgba(255,255,255,.75); gap: 6px; }
.trainer-system-note strong { color: var(--navy); }
.trainer-system-note span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.process-section { padding-top: 32px; background: linear-gradient(180deg,#fff,#f5faff); }
.process-grid { display: grid; margin: 38px 0 0; padding: 0; list-style: none; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.process-grid--three { max-width: 980px; margin-inline: auto; grid-template-columns: repeat(3,minmax(0,1fr)); }
.process-grid--two { max-width: 720px; margin-inline: auto; grid-template-columns: repeat(2,minmax(0,1fr)); }
.process-grid li { position: relative; min-height: 220px; padding: 28px 24px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow-sm); }
.process-grid span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--blue); background: var(--blue-soft); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin: 34px 0 8px; color: var(--navy); font-size: 20px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.footer-cta { padding: 26px 0 72px; background: #f5faff; }
.footer-cta__inner { display: flex; justify-content: center; padding-top: 30px; border-top: 1px solid var(--line); }

.lead-dialog { width: min(920px,calc(100% - 24px)); max-height: min(920px,calc(100dvh - 24px)); margin: auto; padding: 0; overflow: hidden; border: 0; border-radius: 32px; color: var(--navy); background: #fff; box-shadow: 0 38px 110px rgba(6,30,56,.34); }
.lead-dialog::backdrop { background: rgba(6,25,45,.72); backdrop-filter: blur(8px); }
.lead-dialog__panel { position: relative; max-height: min(920px,calc(100dvh - 24px)); overflow-y: auto; overscroll-behavior: contain; }
.lead-dialog__close { position: sticky; z-index: 5; top: 14px; float: right; display: grid; width: 44px; height: 44px; margin: 14px 14px -58px 0; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); cursor: pointer; font-size: 30px; line-height: 1; }
.lead-dialog__intro { padding: 52px clamp(24px,6vw,72px) 34px; color: #fff; background: radial-gradient(circle at 90% 0%,rgba(65,219,228,.28),transparent 30%),linear-gradient(140deg,#143e6d,#0d2949); }
.lead-dialog__intro h2, .lead-success h2 { margin: 0; font-family: var(--display); font-size: clamp(30px,4.4vw,46px); font-weight: 700; line-height: 1.12; letter-spacing: -.03em; }
.lead-dialog__intro h2 { color: #fff; }
.lead-dialog__intro > p:not(.eyebrow) { max-width: 630px; margin: 14px 0 0; color: #c9ddef; }
.dialog-price { margin-top: 24px; color: #fff; font-size: 26px; font-weight: 800; }
.dialog-price span { color: #b9d1e7; font-size: 15px; }
.lead-form { display: grid; padding: 38px clamp(24px,6vw,72px) 50px; gap: 24px; }
.form-field { min-width: 0; margin: 0; padding: 0; border: 0; }
.form-field label, .form-field legend { display: block; margin-bottom: 8px; color: var(--navy); font-weight: 800; }
.form-field label > span, .form-field legend > span { color: #d72f45; }
.form-field input:not([type="radio"]), .form-field select, .form-field textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid #bcd0e2; border-radius: 14px; color: var(--navy); background: #fff; font: inherit; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.form-field textarea { min-height: 104px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11,111,255,.12); }
.form-field [aria-invalid="true"] { border-color: #d72f45 !important; box-shadow: 0 0 0 4px rgba(215,47,69,.09) !important; }
.choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.choice-grid--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.choice-grid label { display: flex; min-height: 52px; align-items: center; margin: 0; padding: 11px 14px; border: 1px solid #c8d9e8; border-radius: 14px; background: #f8fbff; cursor: pointer; gap: 10px; font-size: 14px; font-weight: 700; }
.choice-grid label:has(input:checked) { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); box-shadow: 0 0 0 2px rgba(11,111,255,.08); }
.choice-grid input { width: 18px; height: 18px; accent-color: var(--blue); }
.field-hint { display: block; margin-top: 7px; color: var(--muted); }
.form-error { display: block; min-height: 0; margin-top: 6px; color: #bd2135; font-weight: 700; }
.form-error:empty { display: none; }
.consent-field { display: grid; align-items: start; grid-template-columns: 20px 1fr; gap: 11px; color: #49647f; font-size: 14px; line-height: 1.5; }
.consent-field input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue); }
.consent-field a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.form-alert { padding: 13px 15px; border: 1px solid #efadba; border-radius: 14px; color: #9d172d; background: #fff2f5; }
.form-submit { width: 100%; }
.form-spinner { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: form-spin .8s linear infinite; }
.lead-form.is-loading .form-spinner { display: block; }
.lead-form.is-loading .form-submit { cursor: wait; opacity: .84; }
.form-note { margin: -8px 0 0; color: var(--muted); text-align: center; font-size: 12px; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.lead-success { padding: clamp(52px,8vw,90px) clamp(24px,8vw,100px); text-align: center; }
.lead-success p { max-width: 590px; margin: 18px auto 30px; color: var(--muted); font-size: 17px; }
.success-mark { display: grid; width: 72px; height: 72px; margin: 0 auto 25px; place-items: center; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 18px 34px rgba(32,178,110,.24); font-size: 34px; font-weight: 800; }
body.has-dialog { overflow: hidden; }
@keyframes form-spin { to { transform: rotate(360deg); } }

@media (max-width:900px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px) {
  .service-list, .choice-grid, .choice-grid--three, .process-grid, .course-options { grid-template-columns: 1fr; }
  .process-grid li { min-height: 190px; }
  .footer-cta { padding: 12px 0 56px; }
  .footer-cta .button { width: 100%; }
  .lead-dialog { width: 100%; max-height: 100dvh; border-radius: 0; }
  .lead-dialog__panel { max-height: 100dvh; }
  .lead-dialog__intro { padding: 64px 20px 28px; }
  .lead-form { padding: 28px 18px 40px; gap: 22px; }
  .lead-dialog__close { top: 8px; margin: 8px 8px -52px 0; }
}
