/* ============================================================
   ШАНС — Центр Социальной Адаптации
   Design System: Deep Navy + Бирюза + Ice Mist
   ============================================================ */

/* -------- Reset -------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: auto; scroll-padding-top: 80px; }
body { min-height: 100vh; line-height: 1.5; font-family: var(--font-body); color: var(--text); background: var(--bg); overflow-x: clip; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* -------- Tokens -------- */
:root {
  /* Цвета */
  --bg:        #0B1F33;
  --bg-2:      #102B47;
  --bg-3:      #07182A;
  --bg-deep:   #050F1C;
  --surface:   rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border:    rgba(255,255,255,0.10);
  --border-2:  rgba(255,255,255,0.18);

  --text:        #F4F8FC;
  --text-muted:  #B6C5D6;
  --text-soft:   #8AA0B8;

  --brand:       #4FD1C5;
  --brand-2:     #36A89E;
  --brand-dim:   rgba(79,209,197,0.16);
  --accent:      #E6F4F1;
  --warn:        #F2C879;

  /* Типографика */
  --font-display: "Unbounded", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Размеры */
  --container:   1320px;
  --container-narrow: 1080px;
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Эффекты */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow:    0 14px 40px -10px rgba(0,0,0,0.4);
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,0.55);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s ease;
}

/* -------- Selection -------- */
::selection { background: var(--brand); color: var(--bg); }

/* -------- Layout helpers -------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) {
  .container, .container-narrow { padding: 0 40px; }
}

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--xl { padding: 128px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--xl { padding: 80px 0; }
}

/* -------- Typography -------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; color: var(--text); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--brand);
}

.h-hero { font-size: clamp(56px, 9vw, 156px); line-height: 0.95; letter-spacing: -0.035em; font-weight: 400; }
.h-display { font-size: clamp(40px, 5.5vw, 80px); line-height: 1.02; letter-spacing: -0.03em; }
.h-section { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.025em; }
.h-card   { font-size: clamp(22px, 1.6vw, 28px); line-height: 1.15; }

.text-lead { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.55; color: var(--text-muted); font-weight: 400; }
.text-body { font-size: 16px; line-height: 1.6; color: var(--text-muted); }
.text-small { font-size: 14px; line-height: 1.5; color: var(--text-soft); }
.text-mono { font-family: var(--font-mono); font-feature-settings: "tnum"; letter-spacing: 0.02em; }

.text-accent { color: var(--brand); }
.text-white { color: var(--text); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 28px;
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--brand); color: #062326;
  box-shadow: 0 10px 30px -10px rgba(79,209,197,0.5);
}
.btn--primary:hover { background: #6FDDD3; transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(79,209,197,0.7); }
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--dark { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--border); }
.btn--dark:hover { background: rgba(255,255,255,0.10); border-color: var(--border-2); }
.btn--sm { height: 44px; padding: 0 20px; font-size: 14px; }
.btn--lg { height: 64px; padding: 0 36px; font-size: 16px; }

.btn-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 15px;
  color: var(--brand);
  transition: gap var(--transition-fast);
}
.btn-arrow:hover { gap: 14px; }
.btn-arrow svg { width: 18px; height: 18px; }

/* -------- Header (sticky) -------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all var(--transition);
}
.header::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0.85) 0%, rgba(11,31,51,0) 100%);
  pointer-events: none;
  transition: opacity var(--transition);
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(7,24,42,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header.is-scrolled::before { opacity: 0; }
.header__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.logo__icon svg { width: 26px; height: 26px; }
.logo__text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo__name {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  letter-spacing: 0.02em; color: var(--text);
}
.logo__sub {
  font-size: 11px; color: var(--text-soft); letter-spacing: 0.06em;
  text-transform: uppercase; margin-top: 4px; white-space: nowrap;
}
@media (max-width: 640px) {
  .logo__text { display: none; }
}

.nav { display: flex; gap: 6px; }
.nav__link {
  padding: 10px 14px; font-size: 14px; color: var(--text-muted);
  border-radius: 999px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav__link:hover { color: var(--text); background: var(--surface); }
@media (max-width: 1200px) {
  .nav { display: none; }
}

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.header__phone span { white-space: nowrap; }
.header__phone:hover { border-color: var(--brand); color: var(--brand); }
.header__phone svg { width: 16px; height: 16px; color: var(--brand); }
@media (max-width: 640px) {
  .header__phone span { display: none; }
  .header__phone { padding: 10px; }
}

.menu-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px; background: var(--surface); border: 1px solid var(--border);
}
.menu-toggle__line {
  display: block; width: 18px; height: 1.5px; background: var(--text);
  position: relative;
}
.menu-toggle__line::before,
.menu-toggle__line::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--text);
  transition: transform var(--transition-fast);
}
.menu-toggle__line::before { top: -6px; }
.menu-toggle__line::after { top: 6px; }
@media (max-width: 1200px) { .menu-toggle { display: inline-flex; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  height: 100svh;
  background: var(--bg-deep);
  padding: 100px 24px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.is-open { visibility: visible; }
@media (min-width: 1201px) {
  .mobile-menu { display: none; }
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-menu__link {
  padding: 18px 0; font-family: var(--font-display);
  font-size: 32px; font-weight: 400; letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__footer {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 140px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg);
}
@supports not (height: 100svh) {
  .hero { min-height: 720px; }
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(79,209,197,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(79,209,197,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(54,168,158,0.06) 0%, transparent 50%);
}
.hero__noise {
  position: absolute; inset: 0; z-index: 1; opacity: 0.4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__dove {
  position: absolute; right: -8%; top: 8%; z-index: 1;
  width: 60vw; max-width: 880px;
  opacity: 0.10;
  filter: blur(0.5px);
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-24px) rotate(-1.5deg); }
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(79,209,197,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,209,197,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero__inner { position: relative; z-index: 2; }

.hero__eyebrow { margin-bottom: 32px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 1100px;
}
.hero__title em { font-style: normal; color: var(--brand); }
.hero__title-line { display: block; overflow: hidden; }
.hero__title-word { display: inline-block; }

.hero__lead {
  max-width: 580px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 80px;
}

.hero__badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero__badges--3 { grid-template-columns: repeat(3, 1fr); }
.hero__badge {
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; text-align: center;
}
.hero__badge-value {
  font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.02em; color: var(--text); line-height: 1;
}
.hero__badge-label {
  font-size: 13px; color: var(--text-soft); letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero__badges { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero__actions { margin-bottom: 56px; }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-soft);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 40px; background: var(--border);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; right: 0; top: -40px; height: 20px;
  background: linear-gradient(180deg, transparent, var(--brand), transparent);
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -40px; }
  100% { top: 40px; }
}
@media (max-width: 768px) { .hero__scroll { display: none; } }

/* -------- Trust strip -------- */
.trust {
  position: relative;
  padding: 28px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; align-items: center;
}
.trust__item {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-muted); font-size: 14px;
}
.trust__item svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }
@media (max-width: 1080px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust__inner { grid-template-columns: 1fr; gap: 16px; }
}

/* -------- Section header -------- */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 64px;
}
.section-head__col-left { max-width: 720px; }
.section-head__eyebrow { margin-bottom: 24px; }
.section-head__title { font-family: var(--font-display); }
.section-head__lead { margin-top: 24px; max-width: 520px; }
@media (max-width: 768px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* -------- Cards: addictions -------- */
.addictions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1080px) { .addictions { grid-template-columns: 1fr; } }

.addiction {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all var(--transition);
}
.addiction:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.addiction::before {
  content: ""; position: absolute; inset: -1px; z-index: 0;
  background: radial-gradient(circle at 50% 0%, rgba(79,209,197,0.12), transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.addiction:hover::before { opacity: 1; }
.addiction__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--brand-dim); color: var(--brand);
  border-radius: 14px;
  position: relative; z-index: 1;
}
.addiction__icon svg { width: 28px; height: 28px; }
.addiction__title {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  line-height: 1.1; margin-top: 32px; position: relative; z-index: 1;
}
.addiction__desc {
  font-size: 15px; line-height: 1.55; color: var(--text-muted);
  margin-top: 16px; position: relative; z-index: 1;
}
.addiction__list {
  margin-top: 24px; display: flex; flex-direction: column; gap: 8px;
  position: relative; z-index: 1;
}
.addiction__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-soft);
}
.addiction__list li::before {
  content: ""; width: 4px; height: 4px; background: var(--brand); border-radius: 50%;
  flex-shrink: 0;
}
.addiction__link {
  margin-top: 28px; position: relative; z-index: 1;
}

/* -------- Timeline (Программа) -------- */
.program { position: relative; }
.program__container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.program__visual { position: sticky; top: 120px; }
.program__visual-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.program__visual-icon {
  width: 96px; height: 96px; border-radius: 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  display: grid; place-items: center;
  color: var(--bg-deep);
}
.program__visual-icon svg { width: 48px; height: 48px; }
.program__visual h3 { font-size: 28px; font-weight: 400; }
.program__visual p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.program__visual-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.program__visual-stat { display: flex; flex-direction: column; gap: 4px; }
.program__visual-stat-value { font-family: var(--font-display); font-size: 28px; color: var(--brand); }
.program__visual-stat-label { font-size: 12px; color: var(--text-soft); }

.program__visual-list {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.program__visual-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-muted); line-height: 1.45;
}
.program__visual-list-item svg {
  width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: 2px;
}

/* -------- Testimonial -------- */
.testimonial {
  position: relative;
  padding: 64px 56px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}
.testimonial::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(79,209,197,0.10), transparent 70%);
  pointer-events: none;
}
.testimonial__mark {
  font-family: var(--font-display); font-size: 120px; line-height: 0.6;
  color: var(--brand); opacity: 0.3;
  display: block; margin-bottom: 16px;
}
.testimonial__quote {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4; letter-spacing: -0.015em;
  color: var(--text);
  font-weight: 400;
  max-width: 820px; margin: 0 auto 40px;
}
.testimonial__author {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 14px;
  text-align: left;
}
.testimonial__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dim), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--brand);
  font-family: var(--font-display); font-size: 18px;
}
.testimonial__name { font-family: var(--font-display); font-size: 16px; color: var(--text); }
.testimonial__meta { font-size: 12px; color: var(--text-soft); margin-top: 2px; }

@media (max-width: 768px) {
  .testimonial { padding: 48px 24px; }
}

.timeline { display: flex; flex-direction: column; gap: 24px; }
.timeline__step {
  position: relative;
  padding: 32px 32px 32px 84px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.timeline__step:hover { border-color: var(--brand); background: var(--surface-2); }
.timeline__step::before {
  content: ""; position: absolute; left: 32px; top: 38px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-dim); border: 1px solid var(--brand);
}
.timeline__step::after {
  content: ""; position: absolute; left: 47px; top: 70px; bottom: -24px;
  width: 1px; background: linear-gradient(180deg, var(--brand), transparent);
}
.timeline__step:last-child::after { display: none; }
.timeline__num {
  position: absolute; left: 32px; top: 38px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 14px; color: var(--brand);
  z-index: 1;
}
.timeline__duration {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--brand-dim); color: var(--brand);
  font-size: 12px; letter-spacing: 0.04em;
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.timeline__title {
  font-family: var(--font-display); font-size: 24px; font-weight: 400;
  line-height: 1.2;
}
.timeline__desc {
  margin-top: 16px; font-size: 15px; line-height: 1.6; color: var(--text-muted);
}
.timeline__features {
  margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px;
}
.timeline__feature {
  padding: 6px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}

@media (max-width: 1080px) {
  .program__container { grid-template-columns: 1fr; gap: 40px; }
  .program__visual { position: static; }
}

/* -------- Stories -------- */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1080px) { .stories { grid-template-columns: 1fr; } }

.story {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 24px;
  min-height: 480px;
  overflow: hidden;
  transition: all var(--transition);
}
.story:hover { border-color: var(--brand); transform: translateY(-4px); }
.story__quote-mark {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--font-display); font-size: 96px; line-height: 1;
  color: var(--brand); opacity: 0.16;
}
.story__person {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.story__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dim), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--brand);
  font-family: var(--font-display); font-size: 22px;
}
.story__person-info { display: flex; flex-direction: column; gap: 2px; }
.story__person-name { font-family: var(--font-display); font-size: 17px; color: var(--text); }
.story__person-meta { font-size: 12px; color: var(--text-soft); }

.story__quote {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  line-height: 1.3; color: var(--text); flex: 1;
  letter-spacing: -0.01em;
}
.story__journey {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.story__journey-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-muted);
}
.story__journey-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
  flex-shrink: 0;
}

/* -------- Team -------- */
.team { padding-top: 64px; }
.team__scroll {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 32px;
  margin: 0 -24px; padding-left: 24px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.team__scroll::-webkit-scrollbar { height: 6px; }
.team__scroll::-webkit-scrollbar-track { background: transparent; }
.team__scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
@media (min-width: 768px) {
  .team__scroll { margin: 0 -40px; padding-left: 40px; }
}

.member {
  position: relative;
  width: 320px; min-width: 320px; flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--border);
  transition: all var(--transition);
}
.member:hover { transform: translateY(-4px); border-color: var(--brand); }
.member__photo {
  position: relative;
  width: 100%; aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-3);
}
.member__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.member:hover .member__photo img { transform: scale(1.06); }
.member__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,24,42,0.65) 100%);
}
.member__body { padding: 24px; }
.member__name { font-family: var(--font-display); font-size: 19px; font-weight: 400; line-height: 1.2; }
.member__role { margin-top: 8px; font-size: 14px; color: var(--text-muted); line-height: 1.4; }
.member__meta {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--brand); letter-spacing: 0.04em;
  font-family: var(--font-mono);
}
.member__meta svg { width: 14px; height: 14px; }

.team__nav {
  display: flex; gap: 12px; margin-top: 24px;
}
.team__nav-btn {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--transition-fast);
}
.team__nav-btn:hover { border-color: var(--brand); color: var(--brand); }
.team__nav-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.team__nav-btn svg { width: 18px; height: 18px; }

/* -------- Gallery (Центр) -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-3);
  cursor: zoom-in;
  transition: all var(--transition);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,24,42,0.5) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item--xl   { grid-column: span 6; grid-row: span 2; }
.gallery__item--lg   { grid-column: span 4; grid-row: span 2; }
.gallery__item--md   { grid-column: span 4; grid-row: span 1; }
.gallery__item--sm   { grid-column: span 3; grid-row: span 1; }
.gallery__item--w8   { grid-column: span 8; grid-row: span 1; }
.gallery__item--w6   { grid-column: span 6; grid-row: span 1; }

@media (max-width: 1080px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .gallery__item--xl, .gallery__item--lg { grid-column: span 6; grid-row: span 2; }
  .gallery__item--md, .gallery__item--w8 { grid-column: span 6; }
  .gallery__item--w6 { grid-column: span 3; }
  .gallery__item--sm { grid-column: span 3; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery__item--xl { grid-column: span 2 !important; grid-row: span 2 !important; }
}

/* -------- Family support -------- */
.family {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
}
.family__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1080px) { .family__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .family__grid { grid-template-columns: 1fr; } }

.family__card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 280px;
  transition: all var(--transition);
}
.family__card:hover { border-color: var(--brand); background: var(--surface-2); transform: translateY(-4px); }
.family__card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-dim); color: var(--brand);
}
.family__card-icon svg { width: 26px; height: 26px; }
.family__card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; line-height: 1.2; }
.family__card p { font-size: 14px; line-height: 1.55; color: var(--text-muted); }

/* -------- License + Certificates -------- */
.credentials__top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: stretch;
  margin-bottom: 56px;
}
.credentials__license {
  padding: 48px;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--brand);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  min-width: 0;
}
@media (max-width: 640px) {
  .credentials__license { padding: 32px 24px; }
  .credentials__license h3 { font-size: 24px; word-break: break-word; }
}
.credentials__license::before {
  content: ""; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, var(--brand-dim), transparent 70%);
}
.credentials__license-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--brand-dim); color: var(--brand);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.credentials__license-badge svg { width: 14px; height: 14px; }
.credentials__license h3 {
  font-family: var(--font-display); font-size: 32px; font-weight: 400; line-height: 1.15;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.credentials__license-data {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  position: relative; z-index: 1;
  min-width: 0;
}
.credentials__license-value { word-break: break-all; }
.credentials__license-row { display: flex; flex-direction: column; gap: 4px; }
.credentials__license-label { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-soft); }
.credentials__license-value { font-family: var(--font-mono); font-size: 16px; color: var(--text); }
.credentials__license-org {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted);
  position: relative; z-index: 1;
}
@media (max-width: 1080px) { .credentials__top { grid-template-columns: 1fr; } }

.credentials__contact {
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}
@media (max-width: 640px) {
  .credentials__contact { padding: 32px 24px; }
}
.credentials__contact-eyebrow {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}
.credentials__contact-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 400; line-height: 1.15;
  margin-bottom: 12px;
}
.credentials__contact p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.credentials__contact-phone {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); color: var(--brand);
  margin-bottom: 24px;
}
.credentials__contact .btn { align-self: flex-start; }

/* Certs marquee */
.certs__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  margin-bottom: 32px;
}
.certs__head h3 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 400; }
.certs__head span { font-size: 14px; color: var(--text-soft); }
.certs__strip {
  display: flex; gap: 12px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.cert {
  flex: 0 0 220px; aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #FFF;
  scroll-snap-align: start;
  cursor: zoom-in;
  transition: all var(--transition);
}
.cert:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cert img { width: 100%; height: 100%; object-fit: contain; padding: 8px; background: #FFF; }

/* -------- FAQ -------- */
.faq { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__btn {
  width: 100%; text-align: left;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-size: clamp(18px, 1.6vw, 24px); font-weight: 400;
  line-height: 1.25; color: var(--text);
  letter-spacing: -0.015em;
  transition: color var(--transition-fast);
}
.faq__btn:hover { color: var(--brand); }
.faq__plus {
  width: 36px; height: 36px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.faq__plus::before,
.faq__plus::after {
  content: ""; position: absolute;
  background: var(--text);
  transition: transform var(--transition);
}
.faq__plus::before { width: 12px; height: 1px; }
.faq__plus::after  { width: 1px; height: 12px; }

.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__answer-inner {
  padding: 0 0 28px 0; max-width: 760px;
  font-size: 16px; line-height: 1.65; color: var(--text-muted);
}
.faq__item.is-open .faq__btn { color: var(--brand); }
.faq__item.is-open .faq__plus { background: var(--brand); border-color: var(--brand); }
.faq__item.is-open .faq__plus::after { transform: rotate(90deg); }
.faq__item.is-open .faq__plus::before,
.faq__item.is-open .faq__plus::after { background: var(--bg); }

/* -------- CTA final -------- */
.cta-final {
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,209,197,0.12), transparent 60%);
  pointer-events: none;
}
.cta-final__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
}
.cta-final h2 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.03em;
}
.cta-final h2 em { font-style: normal; color: var(--brand); }
.cta-final__lead { margin-top: 24px; max-width: 460px; }
.cta-final__phone {
  margin-top: 40px;
  display: inline-flex; flex-direction: column; gap: 6px;
}
.cta-final__phone-label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); }
.cta-final__phone-number {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 56px); color: var(--text);
  line-height: 1; white-space: nowrap;
}
.cta-final__meta {
  margin-top: 24px; display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-soft);
}
.cta-final__meta-item { display: flex; align-items: center; gap: 8px; }
.cta-final__meta-item svg { width: 14px; height: 14px; color: var(--brand); }

.form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.form__title {
  font-family: var(--font-display); font-size: 22px; font-weight: 400; line-height: 1.2;
  margin-bottom: 8px;
}
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 12px; letter-spacing: 0.04em; color: var(--text-soft); text-transform: uppercase;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 6px;
}
.form__required { color: var(--brand); }
.form__optional { color: var(--text-soft); text-transform: none; letter-spacing: 0; opacity: 0.7; font-weight: 400; }
.form__input {
  height: 52px; padding: 0 18px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text); font-size: 15px;
  transition: border-color var(--transition-fast);
}
.form__input:focus { outline: none; border-color: var(--brand); }
.form__input::placeholder { color: var(--text-soft); }
.form__btn { margin-top: 8px; }
.form__legal {
  font-size: 12px; color: var(--text-soft); line-height: 1.5;
  margin-top: 4px;
}
.form__legal a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 1080px) { .cta-final__inner { grid-template-columns: 1fr; gap: 48px; } }

/* -------- Footer -------- */
.footer {
  background: var(--bg-deep);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer__brand .logo { margin-bottom: 24px; }
.footer__brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 380px; }

.footer__col-title {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 20px;
}
.footer__col-list { display: flex; flex-direction: column; gap: 12px; }
.footer__col-list a { font-size: 14px; color: var(--text-muted); transition: color var(--transition-fast); }
.footer__col-list a:hover { color: var(--brand); }
.footer__phone {
  font-family: var(--font-display); font-size: 18px; color: var(--text);
  display: block; margin-bottom: 16px;
  white-space: nowrap; letter-spacing: -0.01em;
}

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 32px;
  font-size: 12px; color: var(--text-soft); line-height: 1.5;
}
.footer__bottom a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.footer__legal { max-width: 720px; }
.footer__disclaimer {
  margin-top: 20px;
  font-size: 11px; color: var(--text-soft); line-height: 1.5;
  text-align: left;
}

@media (max-width: 1080px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }

/* -------- Lightbox -------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,15,28,0.94);
  backdrop-filter: blur(20px);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90vw; max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text);
}
.lightbox__close:hover { background: var(--brand); color: var(--bg); border-color: var(--brand); }
.lightbox__close svg { width: 20px; height: 20px; }

/* -------- Reveal -------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* Word-by-word headline reveal */
.split-line { display: block; overflow: hidden; }
.split-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-word.is-visible {
  transform: translateY(0); opacity: 1;
}

/* -------- Floating CTA mobile -------- */
.floating-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 90;
  background: var(--brand); color: var(--bg-deep);
  padding: 14px 18px;
  border-radius: 999px;
  display: none; align-items: center; justify-content: center; gap: 10px;
  font-weight: 500; font-size: 15px;
  box-shadow: 0 14px 40px -10px rgba(79,209,197,0.5);
}
.floating-cta svg { width: 18px; height: 18px; }
@media (max-width: 768px) { .floating-cta { display: flex; } }

/* -------- About page -------- */
.page-hero {
  position: relative;
  padding: 200px 0 80px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(79,209,197,0.08) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
.breadcrumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-soft);
  margin-bottom: 40px;
}
.breadcrumbs a { color: var(--text-muted); transition: color var(--transition-fast); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs span { color: var(--text-soft); }

.video-hero {
  position: relative;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
}
.video-hero img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.7;
  transition: transform 0.6s ease;
}
.video-hero:hover img { transform: scale(1.04); }
.video-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,42,0.2) 0%, rgba(7,24,42,0.6) 100%);
  z-index: 1;
}
.video-hero__play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--brand);
  display: grid; place-items: center;
  color: var(--bg-deep);
  z-index: 2;
  transition: transform var(--transition);
  box-shadow: 0 30px 80px -20px rgba(79,209,197,0.6);
}
.video-hero__play::before {
  content: ""; position: absolute; inset: -14px;
  border-radius: 50%; border: 1px solid var(--brand);
  opacity: 0.5;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}
.video-hero:hover .video-hero__play { transform: translate(-50%, -50%) scale(1.08); }
.video-hero__play svg { width: 48px; height: 48px; }
.video-hero__caption {
  position: absolute; left: 32px; bottom: 32px; z-index: 2;
  color: var(--text);
}
.video-hero__caption-eyebrow {
  font-size: 12px; letter-spacing: 0.18em; color: var(--brand); text-transform: uppercase;
}
.video-hero__caption-title {
  font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400; margin-top: 8px; max-width: 600px;
}
@media (max-width: 640px) {
  .video-hero__play { width: 80px; height: 80px; }
  .video-hero__play svg { width: 32px; height: 32px; }
  .video-hero__caption { left: 20px; bottom: 20px; }
}

.about-content {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: flex-start;
}
.about-content__sticky { position: sticky; top: 120px; }
.about-content h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.about-content h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 400;
  letter-spacing: -0.01em; margin-bottom: 16px; margin-top: 40px;
}
.about-content p {
  font-size: 17px; line-height: 1.65; color: var(--text-muted);
  margin-bottom: 20px;
}
.about-content blockquote {
  margin: 40px 0;
  padding: 32px 36px;
  border-left: 3px solid var(--brand);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display); font-size: 22px; line-height: 1.35;
  color: var(--text); font-weight: 400;
  letter-spacing: -0.01em;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 40px;
}
.about-stat {
  padding: 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-stat__value {
  font-family: var(--font-display); font-size: 36px;
  color: var(--brand); letter-spacing: -0.02em; line-height: 1;
}
.about-stat__label {
  margin-top: 8px; font-size: 13px; color: var(--text-soft); letter-spacing: 0.04em;
}

.about-pillars {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
}
.about-pillar {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px; color: var(--text-muted);
}
.about-pillar svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }

@media (max-width: 1080px) {
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .about-content__sticky { position: static; }
}

.method-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin: 32px 0;
}
.method-list__item {
  padding: 20px 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: flex-start; gap: 14px;
}
.method-list__item-num {
  font-family: var(--font-mono); font-size: 13px; color: var(--brand);
  flex-shrink: 0; padding-top: 2px;
}
.method-list__item-content { display: flex; flex-direction: column; gap: 4px; }
.method-list__item-title { font-family: var(--font-display); font-size: 16px; color: var(--text); font-weight: 400; }
.method-list__item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 540px) { .method-list { grid-template-columns: 1fr; } }

/* -------- Video modal -------- */
.video-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,15,28,0.94);
  backdrop-filter: blur(20px);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.video-modal.is-open { display: flex; }
.video-modal__wrap {
  width: 100%; max-width: 1080px; aspect-ratio: 16 / 9;
  position: relative; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-modal__wrap iframe { width: 100%; height: 100%; border: 0; }
.video-modal__close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text);
}
.video-modal__close:hover { background: var(--brand); color: var(--bg); border-color: var(--brand); }
.video-modal__close svg { width: 20px; height: 20px; }

/* -------- Reduce motion -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
