/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(5, 8, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled {
  background: rgba(5, 8, 15, 0.92);
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.logo__text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}
.logo__text strong { font-weight: 700; color: #fff; }

/* Header logo: "Skolkovo" dim, "Hub" green */
.header .logo__text { color: rgb(255, 255, 255); }
.header .logo__text strong { color: var(--accent); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav .btn {
  margin-left: 14px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.nav__link:visited { color: var(--muted); -webkit-text-fill-color: var(--muted); }
.nav__link:hover { color: var(--white); -webkit-text-fill-color: var(--white); background: rgba(255,255,255,.04); }
.nav__link:active { color: var(--white); -webkit-text-fill-color: var(--white); }
.nav__link:focus { outline: none; }
.nav__link:focus-visible {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px rgba(198, 241, 53, 0.2);
}
.nav__link--current,
.nav__link[aria-current="page"] {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}
.nav__link--current:visited,
.nav__link[aria-current="page"]:visited {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

/* Burger */
.burger {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu: dim page content behind overlay nav */
.nav-backdrop {
  display: none;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background-color: var(--footer-bg);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 30%, rgba(198,241,53,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: .7;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-synthesis: none;
}
.hero__title--accent {
  color: var(--accent);
}

/* Safari tends to over-compress glyph metrics for heavy Cyrillic display text. */
@supports (-webkit-touch-callout: none) {
  .hero__title {
    line-height: 1.24;
    letter-spacing: -.02em;
    -webkit-font-smoothing: antialiased;
  }
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hard lock for CTA colors across browsers/extensions that recolor links. */
.hero__actions a.btn--primary,
.hero__actions a.btn--primary:link,
.hero__actions a.btn--primary:visited,
.hero__actions a.btn--primary:hover,
.hero__actions a.btn--primary:active {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  border-color: var(--accent) !important;
}

.hero__actions a.btn--ghost,
.hero__actions a.btn--ghost:link,
.hero__actions a.btn--ghost:visited,
.hero__actions a.btn--ghost:hover,
.hero__actions a.btn--ghost:active {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  border-color: var(--border) !important;
}

/* Stat cards */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.stat-card__value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: 'Unbounded', sans-serif;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card__label {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.stat-card__label small { font-size: 0.8rem; opacity: .75; }

/* ── BENEFITS (aligned with Why Us: lime, Unbounded, Manrope, row viz) ─ */
#benefits.benefits {
  position: relative;
  background-color: var(--footer-bg);
  --why-num: #333333;
  --why-text: #888888;
  --why-lime: #c8ff2c;
  --why-lime-soft: rgba(200, 255, 44, 0.12);
  --why-border: rgba(255, 255, 255, 0.1);
  --why-border-hover: rgba(200, 255, 44, 0.4);
}

#benefits.benefits::before {
  content: '';
  position: absolute;
  top: -14%;
  left: -14%;
  width: min(55vw, 640px);
  height: min(55vw, 640px);
  background: radial-gradient(circle, rgba(200, 255, 44, 0.07) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

#benefits.benefits::after {
  content: '';
  position: absolute;
  bottom: -22%;
  right: -12%;
  width: min(65vw, 760px);
  height: min(65vw, 760px);
  background: radial-gradient(circle, rgba(200, 255, 44, 0.045) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

#benefits .container {
  position: relative;
  z-index: 1;
}

.benefits__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(40px, 6vw, 72px);
  align-items: end;
  text-align: left;
}

.benefits__head-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  width: 100%;
  min-width: 0;
}

.benefits__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  word-break: normal;
  color: var(--text-strong);
}

.benefits__title-dim {
  color: rgba(255, 255, 255, 0.22);
  margin-right: 0.12em;
  white-space: nowrap;
}

.benefits__title-accent {
  color: var(--why-lime);
}

.benefits__lede {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
  color: var(--why-text);
  font-weight: 400;
  max-width: 480px;
  margin-bottom: clamp(18px, 2.4vw, 26px);
  text-align: right;
}
.benefits__lede a {
  color: var(--why-lime);
  text-decoration: underline;
  text-decoration-color: rgba(200, 255, 44, 0.42);
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.benefits__lede a:hover,
.benefits__lede a:focus-visible {
  color: #f1ffd0;
  text-decoration-color: var(--why-lime);
}

.benefits__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  width: 100%;
}

.benefits__pill {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--why-border);
  background: rgba(255, 255, 255, 0.02);
}

.benefits__pill--accent {
  color: var(--why-lime);
  border-color: rgba(200, 255, 44, 0.45);
  background: var(--why-lime-soft);
}

.benefits__list {
  display: flex;
  flex-direction: column;
}

.benefits__row {
  display: grid;
  grid-template-columns: minmax(36px, 0.45fr) minmax(72px, 0.85fr) minmax(0, 1.35fr) minmax(0, 1.25fr) auto;
  gap: clamp(12px, 2vw, 28px);
  align-items: center;
  padding: clamp(22px, 3vw, 36px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.35s ease;
}

.benefits__row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits__row:hover {
  background: linear-gradient(90deg, rgba(200, 255, 44, 0.04) 0%, transparent 55%);
}

.benefits__row-idx {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 500;
  color: var(--why-text);
}

.benefits__row-metric {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.benefits__row-metric--lime {
  color: var(--why-lime);
}

.benefits__row-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0 0 clamp(8px, 1vw, 12px);
}

.benefits__row-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.6;
  color: var(--why-text);
  margin: 0;
  max-width: 420px;
}

.benefits__viz {
  min-width: 0;
}

.benefits__viz--compare {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefits__compare {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.benefits__compare-line {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.benefits__compare-label {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(8px, 0.75vw, 10px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--why-text);
  line-height: 1.35;
}

.benefits__bar-track {
  flex: 1;
  min-width: 0;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.benefits__bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s ease;
}
.benefits__bar-fill--w100 { width: 100%; }
.benefits__bar-fill--w50 { width: 50%; }

.benefits__bar-fill--muted {
  background: rgba(255, 255, 255, 0.28);
}

.benefits__bar-fill--lime {
  background: var(--why-lime);
  box-shadow: 0 0 18px rgba(200, 255, 44, 0.35);
}

.benefits__bar-fill--zero {
  width: 6px !important;
  min-width: 6px;
  opacity: 1;
}

.benefits__compare-val {
  flex-shrink: 0;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(12px, 1vw, 13px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
  min-width: 2.75em;
}

.benefits__compare-val--lime {
  color: var(--why-lime);
}

.benefits__viz--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.benefits__tag {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--why-border);
  color: var(--why-text);
  background: rgba(255, 255, 255, 0.02);
}

.benefits__tag--on {
  color: var(--why-lime);
  border-color: rgba(200, 255, 44, 0.45);
  background: var(--why-lime-soft);
}

.benefits__viz--stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 32px);
}

.benefits__mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefits__mini-val {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(17px, 1.85vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1;
}

.benefits__mini-lbl {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  color: var(--why-text);
}

.benefits__row-arrow {
  width: clamp(38px, 3.4vw, 44px);
  height: clamp(38px, 3.4vw, 44px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  transition: transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.benefits__row:hover .benefits__row-arrow {
  border-color: var(--why-border-hover);
  color: var(--why-lime);
  transform: translate(3px, -3px);
}

#benefits .benefits__cta {
  margin-top: clamp(28px, 4vw, 48px);
}

@media (max-width: 1024px) {
  .benefits__head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .benefits__head-aside {
    align-items: flex-start;
    text-align: left;
  }

  .benefits__lede {
    text-align: left;
  }

  .benefits__pills {
    justify-content: flex-start;
  }

  .benefits__row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      'bidx bmetric barrow'
      'bcopy bcopy bcopy'
      'bviz bviz bviz';
    gap: 14px 18px;
    align-items: start;
  }

  .benefits__row-idx { grid-area: bidx; }
  .benefits__row-metric { grid-area: bmetric; justify-self: start; }
  .benefits__row-copy { grid-area: bcopy; }
  .benefits__viz { grid-area: bviz; }
  .benefits__row-arrow { grid-area: barrow; justify-self: end; align-self: start; }
}

@media (max-width: 720px) {
  .benefits__row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'bidx barrow'
      'bmetric bmetric'
      'bcopy bcopy'
      'bviz bviz';
    gap: 12px 16px;
  }

  .benefits__row-metric {
    font-size: clamp(2rem, 12vw, 2.75rem);
  }

  .benefits__title br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits__row,
  .benefits__row-arrow,
  .benefits__bar-fill {
    transition: none !important;
  }
}

/* ── WHY US (bento) — section + cards share footer base; lime accents + card gradients kept */
#why-us {
  position: relative;
  background-color: var(--footer-bg);
  --why-card: var(--footer-bg);
  --why-card-hover: rgba(255, 255, 255, 0.06);
  --why-num: #333333;
  --why-text: #888888;
  --why-lime: #c8ff2c;
  --why-lime-soft: rgba(200, 255, 44, 0.12);
  --why-border: rgba(255, 255, 255, 0.1);
  --why-border-hover: rgba(200, 255, 44, 0.4);
}

#why-us::before {
  content: '';
  position: absolute;
  top: -18%;
  right: -12%;
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  background: radial-gradient(circle, rgba(200, 255, 44, 0.09) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

#why-us::after {
  content: '';
  position: absolute;
  bottom: -28%;
  left: -18%;
  width: min(70vw, 820px);
  height: min(70vw, 820px);
  background: radial-gradient(circle, rgba(200, 255, 44, 0.055) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

#why-us .container {
  position: relative;
  z-index: 1;
}

.why-us__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(48px, 7vw, 96px);
  align-items: end;
  text-align: left;
}

.why-us__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  word-break: break-word;
  color: var(--text-strong);
}

.why-us__title-brand {
  display: inline-block;
  white-space: nowrap;
}

.why-us__title-accent {
  color: var(--why-lime);
}

.why-us__lede {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
  color: var(--why-text);
  font-weight: 400;
  max-width: 480px;
  padding-bottom: clamp(0px, 1vw, 12px);
}

.why-us__lede strong {
  color: var(--text);
  font-weight: 600;
}

.why-us__bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(clamp(200px, 24vw, 240px), auto);
  gap: clamp(12px, 1.4vw, 20px);
  margin-bottom: clamp(20px, 2.4vw, 32px);
}

.why-us__card {
  position: relative;
  background: var(--why-card);
  border: 1px solid var(--why-border);
  border-radius: clamp(18px, 1.8vw, 24px);
  padding: clamp(24px, 3vw, 40px);
  overflow: hidden;
  cursor: default;
  transition:
    border-color 0.5s ease,
    transform 0.5s ease,
    background 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-us__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--why-lime-soft) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.why-us__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--why-lime) 50%,
    transparent 100%
  );
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.why-us__card:hover {
  border-color: var(--why-border-hover);
  transform: translateY(-4px);
  background: var(--why-card-hover);
}

.why-us__card--featured:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11) 0%,
    var(--footer-bg) 48%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.why-us__card:hover::before {
  opacity: 1;
}

.why-us__card:hover::after {
  opacity: 1;
}

.why-us__card:hover .why-us__card-num {
  color: var(--why-lime);
  transform: translateX(4px);
}

.why-us__card:hover .why-us__card-arrow {
  transform: translate(4px, -4px);
  color: var(--why-lime);
}

.why-us__card--featured {
  grid-column: span 3;
  grid-row: span 2;
  padding: clamp(22px, 3vw, 45px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07) 0%,
    var(--footer-bg) 48%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.why-us__card--featured .why-us__card-num {
  font-size: clamp(58px, 7.6vw, 112px);
}

.why-us__card--featured .why-us__card-title {
  font-size: clamp(18px, 2.4vw, 34px);
  max-width: 448px;
}

.why-us__card--featured .why-us__card-text {
  font-size: clamp(11px, 1vw, 13px);
  max-width: 416px;
}

.why-us__card--featured .why-us__stat-row {
  margin-top: clamp(19px, 2.4vw, 32px);
  padding-top: clamp(16px, 2.4vw, 26px);
  gap: clamp(16px, 2.8vw, 38px);
}

.why-us__card--featured .why-us__stat-value {
  font-size: clamp(19px, 2.16vw, 29px);
}

.why-us__card--sm {
  grid-column: span 3;
}

/* Bottom CTA row: full width of the 6-col bento */
.why-us__card--wide.why-us__card--span2 {
  grid-column: span 6;
}

.why-us__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.why-us__card-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(52px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: var(--why-num);
  letter-spacing: -0.03em;
  transition: color 0.4s ease, transform 0.4s ease;
}

.why-us__card-arrow {
  width: clamp(38px, 3.4vw, 44px);
  height: clamp(38px, 3.4vw, 44px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: transform 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  flex-shrink: 0;
}

.why-us__card:hover .why-us__card-arrow {
  border-color: var(--why-border-hover);
}

.why-us__card-body {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.why-us__card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: clamp(10px, 1.2vw, 16px);
  color: var(--text-strong);
}

.why-us__card-text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.6;
  color: var(--why-text);
  font-weight: 400;
}

.why-us__stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3.5vw, 48px);
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(20px, 2.4vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-us__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.why-us__stat-value {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 600;
  color: var(--why-lime);
  letter-spacing: -0.02em;
  line-height: 1;
}

.why-us__stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(12px, 1vw, 13px);
  color: var(--why-text);
  letter-spacing: 0.02em;
}

.why-us__cta-bar {
  margin-top: clamp(20px, 2.4vw, 32px);
  background: var(--why-lime);
  color: var(--ink);
  border-radius: clamp(18px, 1.8vw, 24px);
  padding: clamp(28px, 3vw, 40px) clamp(28px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.why-us__cta-bar:hover {
  transform: translateY(-4px);
}

.why-us__cta-bar::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 50%;
}

.why-us__cta-bar::after {
  content: '';
  position: absolute;
  top: -25%;
  right: 2%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(18, 18, 18, 0.18);
  border-radius: 50%;
}

.why-us__cta-text {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.why-us__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--footer-bg);
  color: var(--white);
  padding: clamp(14px, 1.3vw, 18px) clamp(22px, 2.4vw, 32px);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  min-height: 48px;
}

.why-us__cta-btn:hover {
  background: var(--surface-3);
  transform: scale(1.02);
}

.why-us__cta-btn:active {
  background: var(--surface-2);
  transform: scale(0.98);
}

.why-us__cta-btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.why-us__cta-btn svg {
  transition: transform 0.3s ease;
}

.why-us__cta-btn:hover svg {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .why-us__card,
  .why-us__cta-bar,
  .why-us__cta-btn,
  .why-us__card-arrow,
  .why-us__card-num {
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .why-us__head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .why-us__lede {
    padding-bottom: 0;
    max-width: 560px;
  }
  .why-us__bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }
  .why-us__card--featured {
    grid-column: span 4;
    grid-row: span 1;
  }
  .why-us__card--sm {
    grid-column: span 2;
  }
  .why-us__card--span2 {
    grid-column: span 4 !important;
  }
}

@media (max-width: 720px) {
  .why-us__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .why-us__card--featured {
    grid-column: span 2;
    padding: 26px;
  }
  .why-us__card--sm {
    grid-column: span 1;
  }
  .why-us__card--span2 {
    grid-column: span 2 !important;
  }
  .why-us__stat-row {
    gap: 20px 28px;
  }
  .why-us__cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .why-us__cta-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .why-us__bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-us__card,
  .why-us__card--featured,
  .why-us__card--sm,
  .why-us__card--wide,
  .why-us__card--span2 {
    grid-column: span 1 !important;
    grid-row: span 1;
    min-height: 200px;
  }
  .why-us__card--featured {
    padding: 18px;
  }
  .why-us__card {
    padding: 24px;
  }
  .why-us__card-top {
    margin-bottom: 16px;
  }
  .why-us__title br {
    display: none;
  }
  .why-us__stat-row {
    gap: 18px 24px;
  }
}

@media (max-width: 380px) {
  .why-us__title-brand {
    white-space: normal;
  }
  .why-us__card--featured {
    padding: 18px;
  }
  .why-us__card {
    padding: 22px;
  }
  .why-us__card--featured .why-us__card-num {
    font-size: 51px;
  }
  .why-us__stat-row {
    flex-direction: column;
    gap: 16px;
  }
  .why-us__stat-value {
    font-size: 26px;
  }
  .why-us__cta-bar {
    padding: 24px;
  }
}

/* ── PROCESS section ──────────────────────────────────────────
   Layout-only styles for the «4 шага к статусу резидента» block.
   All visuals reuse existing primitives:
     .eyebrow / .btn--primary / .section-title / .section-sub
     .why-us__card / .why-us__card-num / .why-us__card-title /
     .why-us__card-text / .why-us__stat-row / .why-us__stat /
     .why-us__stat-value / .why-us__stat-label / .why-us__cta-bar
   The why-us token system is re-declared here so those classes
   work outside #why-us.
   ─────────────────────────────────────────────────────────── */
.section--process {
  position: relative;
  background-color: var(--footer-bg);
  padding: clamp(72px, 9vw, 128px) 0;
  overflow: hidden;
  /* Make .why-us__* primitives renderable in this section */
  --why-card: var(--footer-bg);
  --why-card-hover: rgba(255, 255, 255, 0.06);
  --why-num: #333333;
  --why-text: #888888;
  --why-lime: var(--accent);
  --why-lime-soft: rgba(198, 241, 53, 0.12);
  --why-border: rgba(255, 255, 255, 0.10);
  --why-border-hover: rgba(198, 241, 53, 0.40);
}

.section--process::before,
.section--process::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section--process::before {
  top: -120px;
  right: -180px;
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  background: radial-gradient(circle, rgba(198, 241, 53, 0.10) 0%, transparent 60%);
}
.section--process::after {
  bottom: -260px;
  left: -200px;
  width: min(70vw, 820px);
  height: min(70vw, 820px);
  background: radial-gradient(circle, rgba(198, 241, 53, 0.06) 0%, transparent 65%);
}
.section--process > .container {
  position: relative;
  z-index: 1;
}

/* ── Top header band (title/lede + stats/CTA) ───────── */
.proc-header {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.proc-header__lead {
  display: flex;
  flex-direction: column;
}
.proc-header__lead .eyebrow {
  align-self: flex-start;
  margin-bottom: clamp(20px, 2vw, 28px);
}

.proc-header__title {
  text-align: left;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin: 0 0 clamp(20px, 2vw, 28px);
}
.proc-header__accent {
  color: var(--accent);
  display: inline;
}

.proc-header__lede {
  text-align: left;
  max-width: 60ch;
  margin: 0;
}

.proc-header__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 28px);
}

/* Stats — same divided 3-col strip, lives in the right column of the band */
.proc-header__stats {
  margin: 0;
  padding-top: clamp(18px, 2.2vw, 24px);
  border-top: 1px solid var(--why-border);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.proc-header__stats .why-us__stat {
  padding: 0 14px;
  border-left: 1px solid var(--why-border);
  gap: 8px;
  min-width: 0;
}
.proc-header__stats .why-us__stat:first-child {
  padding-left: 0;
  border-left: 0;
}
.proc-header__stats .why-us__stat-value {
  font-size: clamp(22px, 2.2vw, 30px);
}
.proc-header__stats .why-us__stat-label {
  font-size: 12px;
  line-height: 1.4;
}

.proc-header__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.proc-header__btn {
  gap: 12px;
}
.proc-header__meta {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: 0;
}

/* ── 2 × 2 cards grid ───────────────────────────────── */
.proc-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  margin: 0;
  padding: 0;
}

.proc-step {
  position: relative;
  display: block;
}

/* Re-uses .why-us__card; gives the numeral room and stretches to row height */
.proc-step__card {
  position: relative;
  height: 100%;
  min-height: 0;
  gap: 14px;
  justify-content: flex-start;
}

/* Step numeral — re-uses .why-us__card-num typography (Unbounded 500,
   var(--why-num), -0.03em). Here we only handle position + hover. */
.proc-step__num {
  position: absolute;
  top: clamp(14px, 1.6vw, 22px);
  right: clamp(20px, 2.4vw, 32px);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.proc-step:hover .proc-step__num,
.proc-step:focus-within .proc-step__num {
  color: var(--accent);
  transform: translateX(4px);
}

/* Make sure the eyebrow doesn't slide under the numeral */
.proc-step__card .why-us__card-top {
  padding-right: clamp(72px, 8vw, 110px);
  position: relative;
  z-index: 2;
}

/* In-card meta strip: re-uses .why-us__stat markup but renders as a
   compact 3-column footer with small uppercase labels (matching the
   .eyebrow / dt-style typography already used elsewhere on the page). */
.proc-step__meta {
  margin-top: clamp(20px, 2.2vw, 26px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid var(--why-border);
}
.proc-step__meta .why-us__stat {
  padding: 0 14px;
  border-left: 1px solid var(--why-border);
  gap: 6px;
  min-width: 0;
}
.proc-step__meta .why-us__stat:first-child {
  padding-left: 0;
  border-left: 0;
}
.proc-step__meta .why-us__stat-label {
  order: -1;
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.proc-step__meta .why-us__stat-value {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.3;
}

/* Mobile: stack meta to 2-up; third item drops to its own row */
@media (max-width: 480px) {
  .proc-step__meta { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .proc-step__meta .why-us__stat:nth-child(3) {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
    padding-top: 14px;
    border-top: 1px solid var(--why-border);
  }
}

/* Highlighted middle step — softer lime tint */
.proc-step--hl .why-us__card {
  background:
    linear-gradient(155deg, rgba(198, 241, 53, 0.08) 0%, rgba(198, 241, 53, 0.02) 30%, var(--footer-bg) 65%);
  border-color: rgba(198, 241, 53, 0.22);
}
.proc-step--hl .proc-step__num { color: rgba(198, 241, 53, 0.45); }

/* Bottom CTA — re-uses .why-us__cta-bar; just controls top margin */
.proc-cta {
  margin-top: clamp(48px, 6vw, 80px);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .proc-header {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
    align-items: start;
  }
  .proc-header__title { max-width: 22ch; }
  .proc-header__lede  { max-width: 60ch; }
}

@media (max-width: 820px) {
  .proc-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section--process { padding: 64px 0; }

  .proc-header__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── CTA / CONTACT ────────────────────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
  background-color: var(--footer-bg);
}
.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  max-width: 90vw;
  max-height: 90vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(198,241,53,.18) 0%, rgba(198,241,53,.06) 35%, rgba(198,241,53,0) 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.cta__container {
  position: relative;
  z-index: 1;
}
.cta__content {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 24px;
}
.cta__title-accent {
  color: var(--accent);
  display: inline-block;
}

.cta__sub {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
}

/* Inline form */
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}
.cta-form__field {
  display: flex;
}
.cta-form__field input {
  width: 100%;
  padding: 18px 22px;
  background: var(--footer-bg);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.cta-form__field input::placeholder {
  color: rgba(255,255,255,.45);
}
.cta-form__field input:focus {
  border-color: var(--accent);
  background: rgba(5, 8, 15, 0.98);
  box-shadow: 0 0 0 3px rgba(198,241,53,.18);
}
.cta-form__field input:-webkit-autofill,
.cta-form__field input:-webkit-autofill:hover,
.cta-form__field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px var(--footer-bg) inset;
  caret-color: #fff;
}
.cta-form__field input.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.15);
}

/* Full-width row under inputs + button (inside .cta-form grid) */
.cta-form__server-error {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  text-align: center;
}
.cta-form__server-error:not([hidden]) {
  display: block;
}

.cta-form__btn {
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 12px;
}

.cta__note {
  margin: 16px auto 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  max-width: 560px;
}

.cta__note-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.cta__note-link:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: var(--accent);
}

/* Success message */
.form-success {
  display: none;
  margin: 20px auto 0;
  max-width: 560px;
  background: rgba(198,241,53,.08);
  border: 1px solid rgba(198,241,53,.22);
  border-radius: 12px;
  padding: 14px 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-success:not([hidden]) {
  display: flex;
}
.form-success svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── FOOTER (redesign) ─────────────────────────────────────── */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--footer-bg);
  padding: clamp(72px, 9vw, 128px) 0 calc(40px + env(safe-area-inset-bottom, 0px));
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.footer__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 12% 10%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 60% at 12% 10%, #000 10%, transparent 75%);
  opacity: 0.55;
}
.footer__bg::after {
  content: '';
  position: absolute;
  width: 820px;
  height: 820px;
  right: -18%;
  top: -35%;
  background: radial-gradient(circle at center, rgba(198, 241, 53, 0.16) 0%, transparent 60%);
  filter: blur(32px);
  pointer-events: none;
}
.footer__container {
  position: relative;
  display: grid;
  gap: clamp(48px, 6vw, 88px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
/* Wordmark: same scale as .benefits__title (not the oversized standalone mock) */
.footer__wordmark {
  font-family: 'Unbounded', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 5.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: clamp(20px, 2.5vw, 28px) 0 0;
  color: rgba(255, 255, 255, 0.94);
  overflow-wrap: break-word;
}
.footer__wordmark span {
  display: inline-block;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__tagline {
  max-width: 440px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
}
.footer__contacts {
  display: grid;
  gap: 14px;
  align-self: end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  padding: 22px 22px 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005));
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  overflow: hidden;
}
.footer__contact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 2px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.footer__contact:hover {
  border-color: rgba(198, 241, 53, 0.35);
  background: linear-gradient(180deg, rgba(198, 241, 53, 0.06), rgba(198, 241, 53, 0.015));
  transform: translateY(-2px);
}
.footer__contact:hover::before {
  transform: scaleY(1);
}
.footer__contact-label {
  grid-column: 1;
  grid-row: 1;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.footer__contact-value {
  grid-column: 1;
  grid-row: 2;
  font-family: 'Unbounded', 'Manrope', sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
}
.footer__contact-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  transition: transform var(--transition), color var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.footer__contact:hover .footer__contact-arrow {
  border-color: rgba(198, 241, 53, 0.5);
  background: rgba(198, 241, 53, 0.08);
  color: var(--accent);
  transform: translate(3px, -3px) rotate(-2deg);
}
.footer__rule {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.footer__rule-accent {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: clamp(80px, 12vw, 160px);
  background: var(--accent);
  box-shadow: 0 0 22px rgba(198, 241, 53, 0.55);
}
.footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.footer__copy {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.footer__dotsep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}
.footer__disclaimer {
  max-width: 540px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}
.footer__top-btn {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.footer__top-btn svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.footer__top-btn:hover {
  border-color: rgba(198, 241, 53, 0.45);
  background: rgba(198, 241, 53, 0.08);
  color: #fff;
}
.footer__top-btn:hover svg {
  transform: translateY(-3px);
  color: var(--accent);
}
@media (max-width: 960px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__contacts {
    align-self: start;
  }
}
@media (max-width: 720px) {
  .footer__bottom {
    grid-template-columns: 1fr;
  }
  .footer__top-btn {
    justify-self: start;
  }
}
@media (max-width: 480px) {
  .footer__contact {
    padding: 20px;
  }
  .footer__contact-arrow {
    width: 36px;
    height: 36px;
  }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cta-form { grid-template-columns: 1fr 1fr; }
  .cta-form__btn { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Header / Nav — slide + fade (display:flex always so transitions run) */
  .nav {
    display: flex;
    position: fixed;
    top: calc(68px + env(safe-area-inset-top, 0px));
    left: 0; right: 0;
    background: rgba(5, 8, 15, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1),
      transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0s linear 0.32s;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1),
      transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0s;
  }
  .nav__link { padding: 12px 16px; }
  .burger { display: flex; }
  .burger::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0s linear 0.32s;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1),
      visibility 0s;
  }

  @media (prefers-reduced-motion: reduce) {
    .nav,
    .nav.open,
    .nav-backdrop,
    .nav-backdrop.is-open {
      transition-duration: 0.01ms;
    }
    .nav:not(.open) {
      transform: translateY(0);
    }
  }

  /* Hero */
  .hero { padding: 72px 0 56px; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-card { padding: 20px 12px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    white-space: normal;
    overflow-wrap: break-word;
  }

  /* Large primary CTAs: compact on phones (nowrap + huge padding caused overflow / clipped text) */
  .btn--primary.btn--lg {
    padding: 16px 20px;
    font-size: 1rem;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .why-us__cta-btn {
    white-space: normal;
    overflow-wrap: break-word;
    min-width: 0;
    padding: 14px 18px;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .cta-form__btn {
    white-space: normal;
    overflow-wrap: break-word;
    min-width: 0;
  }

  /* CTA Form */
  .cta-form { grid-template-columns: 1fr; gap: 10px; }
  .cta-form__btn { grid-column: auto; width: 100%; padding: 18px 24px; }
  .cta__title { font-size: clamp(2rem, 9vw, 3rem); }
  .cta__sub { font-size: 0.95rem; margin-bottom: 32px; }
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
    margin: 0 auto;
  }

  .hero__stats .stat-card:last-child {
    grid-column: 1 / 2;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.section--faq {
  --faq-bg: var(--footer-bg);
  --faq-accent: var(--accent);
  --faq-muted: #888888;
  background-color: var(--footer-bg);
}

.faq-block {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
  /* Isolate stacking so sticky column cannot intercept sibling clicks in Chrome. */
  isolation: isolate;
}

.faq-block__intro {
  position: sticky;
  top: calc(80px + env(safe-area-inset-top, 0px));
  z-index: 0;
  pointer-events: none;
}

.faq-block__intro > * {
  pointer-events: auto;
}

.faq-block__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}

.faq-block__lede {
  color: var(--faq-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 38ch;
}

.faq-block__cta {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  padding: 18px 28px;
  font-size: 1rem;
  border-radius: 14px;
  letter-spacing: .02em;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

.section--faq .faq-list {
  /* Above sticky .faq-block__intro: Chrome can stack the first grid column
     above the second for hit-testing; this keeps the accordion clickable. */
  position: relative;
  isolation: isolate;
  z-index: 2;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section--faq .faq-item {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
  transition: none;
}

.section--faq .faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section--faq .faq-item:hover,
.section--faq .faq-item.open {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  background: transparent;
}

.section--faq .faq-question {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.section--faq .faq-question:hover {
  background: none;
  color: #fff;
}

.section--faq .faq-question:focus-visible {
  outline: 2px solid var(--faq-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.section--faq .faq-item.open .faq-question {
  color: #fff;
  padding-bottom: 12px;
}

.section--faq .faq-question__text {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.section--faq .faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  /* Decorative + ; clicks belong on .faq-question (reliable in all engines). */
  pointer-events: none;
  color: #5c5c66;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}

.section--faq .faq-icon::before,
.section--faq .faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.3s ease;
}

/* horizontal bar of "+" */
.section--faq .faq-icon::before {
  width: 14px;
  height: 2px;
}

/* vertical bar of "+" */
.section--faq .faq-icon::after {
  width: 2px;
  height: 14px;
}

.section--faq .faq-item.open .faq-icon {
  color: var(--faq-accent);
}

.section--faq .faq-item.open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.section--faq .faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.section--faq .faq-question:active .faq-icon {
  transform: scale(0.88);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--faq .faq-answer p {
  padding: 0 40px 22px 0;
  color: var(--faq-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

@media (max-width: 960px) {
  .faq-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-block__intro {
    position: static;
  }

  .faq-block__lede {
    max-width: none;
  }

  .faq-block__cta {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .section--faq .faq-question {
    padding: 18px 0;
    gap: 14px;
  }

  .section--faq .faq-answer p {
    padding: 0 8px 18px 0;
    font-size: 0.9rem;
  }

  .section--faq .faq-icon {
    width: 24px;
    height: 24px;
  }

  .section--faq .faq-icon::before {
    width: 12px;
  }

  .section--faq .faq-icon::after {
    height: 12px;
  }
}

/* ── Hero animated blobs ────────────────────────────────── */
.hero__bg {
  position: absolute !important;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: none !important;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  will-change: transform;
}

.hero__blob--1 {
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(198,241,53,.35) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  animation: blobFloat1 18s ease-in-out infinite;
}

.hero__blob--2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(198,241,53,.22) 0%, transparent 70%);
  bottom: -20%;
  left: -5%;
  animation: blobFloat2 22s ease-in-out infinite;
}

.hero__blob--3 {
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(198,241,53,.18) 0%, transparent 70%);
  top: 30%;
  left: 25%;
  animation: blobFloat3 15s ease-in-out infinite;
}

.hero__blob--4 {
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(198,241,53,.14) 0%, transparent 65%);
  top: 10%;
  left: 55%;
  animation: blobFloat4 25s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-6%, 8%) scale(1.06); }
  50%  { transform: translate(-12%, 3%) scale(.95); }
  75%  { transform: translate(-5%, -7%) scale(1.04); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes blobFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(8%, -10%) scale(1.08); }
  55%  { transform: translate(14%, -4%) scale(.94); }
  80%  { transform: translate(4%, 8%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes blobFloat3 {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(7%, 6%) scale(1.1); }
  45%  { transform: translate(-5%, 10%) scale(.92); }
  70%  { transform: translate(-9%, 2%) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes blobFloat4 {
  0%   { transform: translate(0, 0) scale(1); }
  35%  { transform: translate(-10%, 8%) scale(1.07); }
  65%  { transform: translate(6%, 12%) scale(.96); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ── ABOUT US section ─────────────────────────────────────────
   Layout-only styles for the «О нас» block. Reuses why-us tokens
   so the section blends visually with the rest of the landing.
   ─────────────────────────────────────────────────────────── */
.section--about {
  position: relative;
  background-color: var(--footer-bg);
  padding: clamp(72px, 9vw, 128px) 0;
  overflow: hidden;
  --why-card: rgba(255, 255, 255, 0.025);
  --why-card-hover: rgba(255, 255, 255, 0.05);
  --why-num: #333333;
  --why-text: #888888;
  --why-lime: var(--accent);
  --why-lime-soft: rgba(198, 241, 53, 0.12);
  --why-border: rgba(255, 255, 255, 0.08);
  --why-border-hover: rgba(198, 241, 53, 0.35);
}

.section--about::before,
.section--about::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.section--about::before {
  top: -120px;
  left: -180px;
  width: min(55vw, 680px);
  height: min(55vw, 680px);
  background: radial-gradient(circle, rgba(198, 241, 53, 0.08) 0%, transparent 62%);
}
.section--about::after {
  bottom: -200px;
  right: -160px;
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  background: radial-gradient(circle, rgba(198, 241, 53, 0.05) 0%, transparent 65%);
}
.section--about > .container {
  position: relative;
  z-index: 1;
}

/* ── Head: title left, lede + pills right ─────────────────── */
.about__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(40px, 5vw, 72px);
  align-items: end;
  text-align: left;
}

.about__head-main { min-width: 0; }

.about__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.75rem, 4.6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-strong);
  margin: clamp(18px, 2vw, 28px) 0 0;
}
.about__title-accent {
  color: var(--accent);
  display: inline;
}

.about__head-aside {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 24px);
  padding-bottom: clamp(0px, 1vw, 12px);
  min-width: 0;
}

.about__lede {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  margin: 0;
  max-width: 52ch;
}
.about__lede strong {
  color: var(--white);
  font-weight: 600;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--why-border);
  background: rgba(255, 255, 255, 0.03);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* ── Main layout: 2-col grid, no plate ─────────────────────── */
.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
}

/* ── Portrait column ───────────────────────────────────────── */
.about__portrait {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.about__portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(198, 241, 53, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, #1a1a27 0%, #0b0d14 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.about__photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__portrait-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  z-index: 2;
}
.about__portrait-corner--tl { top: 12px; left: 12px;  border-top-width: 2px; border-left-width: 2px;  border-top-left-radius: 4px; }
.about__portrait-corner--tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 4px; }
.about__portrait-corner--bl { bottom: 12px; left: 12px;  border-bottom-width: 2px; border-left-width: 2px;  border-bottom-left-radius: 4px; }
.about__portrait-corner--br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 4px; }

.about__portrait-badge {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(5, 8, 15, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(198, 241, 53, 0.35);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
  z-index: 3;
  white-space: nowrap;
  max-width: calc(100% - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.about__portrait-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(198, 241, 53, 0.18);
  flex-shrink: 0;
}

.about__portrait-meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.about__portrait-meta-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__portrait-meta dt {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}
.about__portrait-meta dd {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

/* ── Bio column ───────────────────────────────────────────── */
.about__bio {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.4vw, 32px);
  min-width: 0;
}

.about__bio-head { display: flex; flex-direction: column; gap: 10px; }

.about__bio-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
/* Credentials list */
.about__creds {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about__cred {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--why-border);
  border-radius: 14px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.about__cred:hover {
  border-color: var(--why-border-hover);
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(2px);
}
.about__cred-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(198, 241, 53, 0.14);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__cred > div { display: flex; flex-direction: column; min-width: 0; }

/* Pull-quote */
.about__quote {
  position: relative;
  margin: 0;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.2vw, 28px);
  padding-left: clamp(52px, 5vw, 68px);
  background: rgba(198, 241, 53, 0.04);
  border: 1px solid rgba(198, 241, 53, 0.18);
  border-radius: var(--radius);
}
.about__quote-mark {
  position: absolute;
  top: clamp(16px, 1.8vw, 20px);
  left: clamp(16px, 1.8vw, 22px);
  color: var(--accent);
  opacity: 0.85;
}
.about__quote-text {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(14px, 1.15vw, 15.5px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.about__quote-text strong {
  color: var(--white);
  font-weight: 600;
}
.about__quote-author {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.about__quote-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* Actions row */
.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  margin-top: auto;
}
/* Mirrors .proc-header__btn — only adds icon gap, the visual style
   (lime fill, Unbounded, 12px radius, shadow, hover glow) comes from
   .btn .btn--primary which the same as the «Начать с диагностики» CTA. */
.about__cta {
  gap: 12px;
}

.about__actions-note {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .about__head-aside { padding-bottom: 0; }

  .about__layout {
    grid-template-columns: 1fr;
  }
  .about__portrait-frame {
    aspect-ratio: 5 / 4;
    max-width: 520px;
    width: 100%;
  }
  .about__photo img {
    object-position: center 20%;
  }
}

@media (max-width: 640px) {
  .about__title br { display: none; }
  .about__portrait-frame { aspect-ratio: 4 / 5; }
  .about__cred { padding: 12px 14px; }
  .about__quote {
    padding: 16px 18px;
    padding-left: 18px;
  }
  .about__quote-mark {
    position: static;
    display: block;
    margin-bottom: 8px;
  }
  .about__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .about__cta { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .about__cred {
    transition: none !important;
  }
}

/* ── Selection polish ─────────────────────────────────────── */
::selection {
  background: rgba(198,241,53,.28);
  color: var(--white);
}
