/* =========================================================================
   IKIGAI PROMOTION — Универсальная визитная карточка · Premium dark AI-tech
   ========================================================================= */

:root {
  --bg: #0B0E14;
  --bg-soft: #10141D;
  --bg-card: rgba(255, 255, 255, 0.028);
  --bg-card-hover: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --text: #F2F4F8;
  --text-dim: rgba(242, 244, 248, 0.62);
  --text-faint: rgba(242, 244, 248, 0.38);
  --lime: #B8FF5A;
  --lime-dim: rgba(184, 255, 90, 0.14);
  --lime-glow: rgba(184, 255, 90, 0.35);
  --silver: #C8CDD6;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: clamp(24px, 6vw, 96px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: #0B0E14; }

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), #7ee0a0);
  z-index: 1000;
  transition: width 0.15s linear;
}

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  z-index: 900;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
}
.topbar.is-scrolled {
  background: rgba(11, 14, 20, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--line-soft);
}

.topbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 15px;
}
.topbar__logo .logo-mark {
  width: 34px; height: 34px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0;
}
.topbar__logo img { height: 36px; display: block; }
.topbar__logo .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--text-faint);
  margin-top: 2px;
}

.topbar__menu {
  display: flex;
  gap: 34px;
}
.topbar__menu a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.topbar__menu a:hover { color: var(--text); }

.lang-switch {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.lang-switch:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* ---------- Dots nav ---------- */
.dots {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 800;
}
.dots a {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: all 0.35s var(--ease);
  display: block;
}
.dots a:hover { background: rgba(255, 255, 255, 0.45); }
.dots a.active {
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-glow);
  transform: scale(1.35);
}

/* ---------- Slides ---------- */
.slide {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad-x);
  position: relative;
  max-width: 100%;
}
.slide__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.slide-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.slide-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--lime);
  opacity: 0.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.h-giant { font-size: clamp(40px, 6.6vw, 92px); }
.h-big   { font-size: clamp(32px, 4.6vw, 64px); }
.h-mid   { font-size: clamp(26px, 3.4vw, 46px); }

.lead {
  font-size: clamp(16px, 1.5vw, 21px);
  color: var(--text-dim);
  max-width: 720px;
  line-height: 1.75;
}

.accent { color: var(--lime); }
.dim { color: var(--text-dim); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
.reveal[data-delay="5"] { transition-delay: 0.60s; }

/* ---------- HERO ---------- */
.slide--hero {
  text-align: center;
  align-items: center;
  overflow: hidden;
}
.slide--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 45% at 50% -12%, rgba(184, 255, 90, 0.09), transparent 70%),
    radial-gradient(ellipse 40% 34% at 82% 108%, rgba(120, 160, 255, 0.05), transparent 70%);
  pointer-events: none;
}
.slide--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 75%);
  pointer-events: none;
}
.slide--hero .slide__inner { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero__eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime-glow);
}

.hero__title { margin-bottom: 36px; }
.hero__title span {
  display: block;
}
.hero__title .line-accent { color: var(--lime); }

.hero__subtitle {
  margin: 0 auto 44px;
}

/* HERO trust badges (заменяют route/event из событийной версии) */
.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero__badge {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--silver);
  background: var(--bg-card);
  transition: all 0.35s var(--ease);
}
.hero__badge:hover { border-color: rgba(184,255,90,0.4); color: var(--lime); }

.hero__cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  35%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--lime);
  color: #0B0E14;
}
.btn--primary:hover {
  box-shadow: 0 0 34px var(--lime-glow);
  transform: translateY(-2px);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

/* ---------- ERA (world changes) ---------- */
.era__lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 48px 0 72px;
}
.era__lines p {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.3vw, 30px);
  font-weight: 400;
  color: var(--text-faint);
  transition: color 0.6s;
}
.era__lines p:last-child { color: var(--text); }
.era__statement {
  border-left: 2px solid var(--lime);
  padding: 6px 0 6px 32px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 500;
  color: var(--lime);
  line-height: 1.3;
  max-width: 760px;
}

/* ---------- Pillars / chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--silver);
  transition: all 0.35s var(--ease);
  background: var(--bg-card);
}
.chip:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-dim);
  transform: translateY(-2px);
}

/* ---------- Numbers ---------- */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
}
.number__value {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.number__caption {
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: 8px;
  max-width: 210px;
  line-height: 1.5;
}

/* ---------- Philosophy ---------- */
.slide--philosophy {
  text-align: center;
  align-items: center;
  background:
    radial-gradient(ellipse 55% 42% at 50% 55%, rgba(184, 255, 90, 0.05), transparent 70%);
}
.philosophy__title span { display: block; }
.philosophy__title .line-2 { color: var(--lime); }
.slide--philosophy .lead { margin: 40px auto 0; }

/* ---------- Path (journey) ---------- */
.path {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 64px 0 40px;
  flex-wrap: wrap;
}
.path__step {
  flex: 1 1 0;
  min-width: 150px;
  position: relative;
  padding: 26px 18px 26px 24px;
  border-left: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.path__step:hover { background: var(--bg-card-hover); }
.path__num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  display: block;
  margin-bottom: 14px;
}
.path__name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.4s;
}
.path__step:hover .path__name { color: var(--text); }
.path__step:last-child {
  border-left-color: var(--lime);
  background: var(--lime-dim);
}
.path__step:last-child .path__name { color: var(--lime); }
.path__step:last-child .path__num { color: var(--lime); opacity: 0.7; }
.path__caption {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.7vw, 22px);
  color: var(--text-dim);
  font-weight: 400;
}
.path__caption strong { color: var(--lime); font-weight: 500; }

/* ---------- Two-line titles ---------- */
.title-2l span { display: block; }
.title-2l .line-2 { color: var(--text-faint); }
.title-2l .line-2.accented { color: var(--lime); }

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  gap: 14px;
  margin-top: 56px;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 26px 24px;
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(184, 255, 90, 0.35);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.card__index {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  display: block;
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}
.card__text {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.65;
}

.card--simple {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.card--simple .card__title { font-size: 16px; font-weight: 400; color: var(--silver); }
.card--simple::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.55;
  flex-shrink: 0;
  transition: all 0.35s;
}
.card--simple:hover::before { opacity: 1; box-shadow: 0 0 10px var(--lime-glow); }

.grid-statement {
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 500;
}
.grid-statement .accent { color: var(--lime); }

/* ---------- Link chips (кейсы / spotlight) ---------- */
.linkrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.linkchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--silver);
  text-decoration: none;
  background: var(--bg-card);
  transition: all 0.35s var(--ease);
}
.linkchip__ico { color: var(--lime); font-size: 12px; }
.linkchip:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: var(--lime-dim);
  transform: translateY(-2px);
}

/* ---------- Cases (corporate vibe coding) ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.case {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 30px 30px 28px;
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.case:hover {
  border-color: rgba(184, 255, 90, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.case__type {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(184, 255, 90, 0.3);
  background: var(--lime-dim);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.case__org {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.case__text {
  font-size: 14.5px;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.7;
}
.case__quote {
  margin-top: 18px;
  border-left: 2px solid var(--lime);
  padding: 4px 0 4px 20px;
  font-size: 14.5px;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
}
.case__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 12.5px;
  color: var(--lime);
  letter-spacing: 0.02em;
}

/* ---------- Leaders / spotlight ---------- */
.slide--leaders::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 42% at 82% 40%, rgba(184, 255, 90, 0.05), transparent 70%);
  pointer-events: none;
}
.slide--leaders .slide__inner { position: relative; z-index: 1; }
.spotlight {
  margin-top: 46px;
  border: 1px solid rgba(184, 255, 90, 0.28);
  background: linear-gradient(135deg, var(--lime-dim), transparent 62%);
  border-radius: 22px;
  padding: clamp(28px, 3vw, 40px);
  max-width: 860px;
}
.spotlight__badge {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.spotlight__org {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--text);
}
.spotlight__text {
  font-size: 15.5px;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.75;
  max-width: 640px;
}
.intensive-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 14px 26px;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  background: var(--bg-card);
}
.intensive-cta:hover { border-color: var(--lime); transform: translateY(-2px); }
.intensive-cta__label {
  font-size: 14px;
  color: var(--text-dim);
}
.intensive-cta__link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--lime);
  letter-spacing: 0.02em;
}

/* ---------- Corporate courses (banks) ---------- */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.corp {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 28px 24px;
  background: var(--bg-card);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.corp::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0.5;
  transition: opacity 0.4s;
}
.corp:hover {
  border-color: rgba(184, 255, 90, 0.32);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.corp:hover::before { opacity: 1; }
.corp__scope {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.corp__org {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.corp__text {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.6;
}
.corp__online {
  margin-top: 32px;
  font-size: 15px;
  color: var(--text-dim);
  border-left: 2px solid rgba(184, 255, 90, 0.4);
  padding-left: 22px;
  max-width: 640px;
  line-height: 1.7;
}

/* ---------- Live demo ---------- */
.slide--live {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.live__wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.live__demo {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0D1118;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.live__demo-head {
  display: flex;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
}
.live__demo-head i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.live__demo-body {
  padding: 24px 22px 30px;
  font-family: "SF Mono", "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  line-height: 2.1;
  color: var(--text-dim);
}
.live__demo-body .ln { display: block; white-space: pre-wrap; }
.live__demo-body .c-lime { color: var(--lime); }
.live__demo-body .c-faint { color: var(--text-faint); }
.live__demo-body .cursor {
  display: inline-block;
  width: 8px; height: 15px;
  background: var(--lime);
  vertical-align: middle;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Expert (live slide) ---------- */
.expert {
  margin-top: 40px;
  border-left: 2px solid var(--lime);
  padding: 4px 0 4px 24px;
}
.expert__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.expert__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 600;
  margin-top: 10px;
}
.expert__role {
  font-size: 14.5px;
  color: var(--text-dim);
  margin-top: 4px;
}
.expert__cred {
  font-size: 13px;
  color: var(--lime);
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.expert__points {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.expert__points li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
}
.expert__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime-glow);
}

/* ---------- Trust ---------- */
.awards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 52px 0 0;
  max-width: 980px;
}
.award {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(184, 255, 90, 0.3);
  background: linear-gradient(135deg, var(--lime-dim), transparent 60%);
  border-radius: 20px;
  padding: 28px 32px;
  text-decoration: none;
  transition: all 0.4s var(--ease);
}
.award:hover {
  border-color: rgba(184, 255, 90, 0.6);
  transform: translateY(-3px);
}
.trust__status {
  margin-top: 24px;
  max-width: 780px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  border-left: 2px solid rgba(184, 255, 90, 0.4);
  padding-left: 22px;
}
.award__icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--lime);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.award__icon svg { width: 26px; height: 26px; stroke: var(--lime); fill: none; stroke-width: 1.5; }
.award__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--text);
}
.award__caption { font-size: 14px; color: var(--text-dim); margin-top: 6px; line-height: 1.5; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.badge {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 13.5px;
  color: var(--silver);
  background: var(--bg-card);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
}
.badge:hover { border-color: rgba(184,255,90,0.4); color: var(--text); }

/* ---------- Partners ---------- */
.slide--partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 20% 30%, rgba(184, 255, 90, 0.05), transparent 70%);
  pointer-events: none;
}
.slide--partners .slide__inner { position: relative; z-index: 1; }
.partners__grid-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 72px;
  margin-bottom: 24px;
}

/* ---------- Final ---------- */
.slide--final {
  text-align: center;
  align-items: center;
  overflow: hidden;
}
.slide--final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 50% at 50% 115%, rgba(184, 255, 90, 0.1), transparent 72%);
  pointer-events: none;
}
.slide--final .slide__inner { position: relative; z-index: 1; }

.final__subtitle {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--text-dim);
  margin-top: 28px;
  letter-spacing: 0.04em;
}

.final__contact-card {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 60px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-card);
  padding: clamp(28px, 3vw, 40px) clamp(30px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
}
.final__contact { text-align: left; }
.final__contact-label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.final__contact-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}
.final__contact-role {
  font-size: 13px;
  color: var(--text-dim);
  margin: 4px 0 12px;
  max-width: 320px;
}
.final__contact a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  margin-top: 6px;
  transition: color 0.3s;
}
.final__contact a:hover { color: var(--lime); }
.final__contact a span { color: var(--text-faint); font-size: 12.5px; margin-right: 8px; letter-spacing: 0.08em; }

.qr {
  width: 148px;
  height: 148px;
  border: 1px dashed rgba(184, 255, 90, 0.4);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(184, 255, 90, 0.03);
  flex-shrink: 0;
}
.qr img { width: 100%; height: 100%; object-fit: contain; border-radius: 18px; }
.qr__placeholder {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.8;
  padding: 12px;
}
.qr-caption {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
  letter-spacing: 0.08em;
}

.final__cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}

.final__footer {
  margin-top: 90px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .corp-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .live__wrap { grid-template-columns: 1fr; }
  .dots { display: none; }
}

@media (max-width: 720px) {
  .topbar__menu { display: none; }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .corp-grid { grid-template-columns: 1fr; }
  .slide { padding: 100px 22px; }
  .path { flex-direction: column; }
  .path__step {
    border-left: none;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 18px 6px;
    min-width: 0;
  }
  .path__num { margin-bottom: 0; }
  .awards { grid-template-columns: 1fr; }
  .award { flex-direction: column; align-items: flex-start; gap: 18px; padding: 26px; }
  .final__contact-card { flex-direction: column; gap: 32px; }
  .final__contact { text-align: center; }
  .final__contact-role { max-width: none; }
  .hero__badges { gap: 8px; }
  .btn { padding: 15px 28px; font-size: 14px; width: 100%; justify-content: center; }
  .hero__cta, .final__cta { flex-direction: column; align-items: stretch; }
  .scroll-hint { display: none; }
}

@media (max-width: 440px) {
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint::after, .cursor { animation: none; }
}
