/* ==========================================================
   Промпт-инженер на удалёнке — большой практикум
   Стиль: тёплый белый · глубокий тёмно-синий · зелёный «в сети»
   Шрифты: Manrope (заголовки, акциденция) · Inter (текст)
   ========================================================== */

:root {
  /* поверхность */
  --bg: #fbfaf6;
  --bg-soft: #f3f2ea;
  --bg-tint: #eceef2;
  --bg-card: #ffffff;

  /* текст */
  --navy: #16243d;
  --text: #16243d;
  --text-muted: #4e5a70;
  --text-dim: #8a93a5;

  /* акцент — зелёный «в сети» */
  --green: #23a55e;
  --green-deep: #17854a;
  --green-soft: #ddf1e5;
  --green-dot: #2fbf6e;

  /* линии */
  --line: #e3e1d6;
  --line-navy: #d5dae3;

  /* радиусы и тени */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-card: 0 1px 0 rgba(22,36,61,0.05), 0 18px 40px -24px rgba(22,36,61,0.18);
  --shadow-lift: 0 26px 55px -26px rgba(22,36,61,0.25);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(35,165,94,0.05), transparent 45%),
    radial-gradient(circle at 95% 20%, rgba(22,36,61,0.04), transparent 40%);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

h1, h2, h3, .btn {
  font-family: "Manrope", system-ui, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ==========================================================
   ТИПОГРАФИКА
   ========================================================== */
.kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  text-transform: lowercase;
  border: 1px solid var(--green-soft);
  background: rgba(35,165,94,0.06);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.section-title {
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--text);
}
.section-title--big { font-size: clamp(34px, 5.6vw, 72px); }
.section-title--center { text-align: center; }

/* ==========================================================
   TOPBAR
   ========================================================== */
.topbar {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(251,250,246,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 13px;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: opacity .15s ease;
}
.topbar__brand:hover { opacity: 0.7; }
.topbar__logo-img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}
.topbar__logo { font-size: 14px; }
.topbar__sep { color: var(--text-dim); font-weight: 400; }
.topbar__page { color: var(--text-muted); font-weight: 400; font-size: 12.5px; letter-spacing: 0.02em; }
.topbar__status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 500;
}

.status-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-dot);
  box-shadow: 0 0 0 4px rgba(47,191,110,0.16);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.status-dot--sm { width: 7px; height: 7px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47,191,110,0.16); }
  50%      { box-shadow: 0 0 0 7px rgba(47,191,110,0.06); }
}

/* ==========================================================
   КНОПКИ
   ========================================================== */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-border: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1;
  letter-spacing: -0.005em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-border);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -8px rgba(22,36,61,0.4); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--green);
  --btn-fg: #fff;
  --btn-border: var(--green);
}
.btn--primary:hover { --btn-bg: var(--green-deep); --btn-border: var(--green-deep); box-shadow: 0 10px 26px -10px rgba(35,165,94,0.55); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-border: var(--navy);
}
.btn--outline:hover { --btn-bg: var(--navy); --btn-fg: #fff; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-border: var(--line);
}
.btn--ghost:hover { --btn-bg: var(--bg-soft); --btn-border: var(--navy); box-shadow: none; }

.btn--lg { padding: 21px 38px; font-size: 18px; }
.btn--block { width: 100%; white-space: normal; line-height: 1.2; }

.btn__arrow { display: inline-block; transition: transform .18s ease; font-weight: 500; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn__down { color: var(--green-deep); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 44px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 45%; left: -10%;
  width: 55%; height: 190%;
  background: radial-gradient(circle, rgba(35,165,94,0.07), transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { min-width: 0; }

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__date--center { justify-content: center; display: flex; }
.hero__date-pill {
  font-family: "Manrope", sans-serif;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 24px -10px rgba(22,36,61,0.4);
}
.hero__date-tag {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.hero__title {
  font-weight: 800;
  font-size: clamp(38px, 4.9vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
}
.hero__line { display: block; }
.hero__line--accent {
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.22em;
}
.hero__online-dot {
  width: 0.28em; height: 0.28em;
  border-radius: 50%;
  background: var(--green-dot);
  box-shadow: 0 0 0 0.1em rgba(47,191,110,0.2);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__line--small {
  font-size: 0.36em;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 560px;
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 560px;
  border-left: 3px solid var(--green);
  padding-left: 18px;
}
.hero__sub strong { color: var(--text); font-weight: 700; }

.hero__bullets-label {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.bullet-num {
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 8px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* дублирующая CTA сразу под оффером — только на мобилке */
.hero__cta-top { display: none; }

/* HERO — реальные скрины hh.ru в браузерных рамках */
.hero__visual { position: relative; min-width: 0; }
.shot {
  background: var(--bg-card);
  border: 1px solid var(--line-navy);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 8px rgba(251,250,246,0.6),
    0 30px 70px -30px rgba(22,36,61,0.4);
}
.shot img { display: block; width: 100%; }
.shot__bar {
  background: var(--bg-tint);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line-navy);
}
.shot__dot { width: 10px; height: 10px; border-radius: 50%; background: #c6cdd9; flex-shrink: 0; }
.shot__url {
  margin-left: 10px;
  font-family: "Manrope", sans-serif;
  background: #fff;
  border: 1px solid var(--line-navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot--vac {
  width: 94%;
  transform: rotate(-1.2deg);
  position: relative;
  z-index: 1;
}
.shot--rez {
  width: 94%;
  margin: -34px 0 0 auto;
  transform: rotate(1deg);
  position: relative;
  z-index: 2;
}

/* ==========================================================
   БЕГУЩАЯ СТРОКА
   ========================================================== */
.ticker {
  background: var(--navy);
  color: var(--bg);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: tick 28s linear infinite;
}
.ticker__item {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-right: 36px;
}
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 3)); }
}

.footnote {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.footnote p {
  margin: 0;
  padding: 12px 0;
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ==========================================================
   РЫНОК / HH
   ========================================================== */
.market {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.market__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  align-items: center;
}
.market__text p {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 620px;
}
.market__text strong { font-weight: 700; color: var(--green-deep); }
.market__text p:last-of-type { margin-bottom: 28px; }

.map-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.map-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.map-card__chip {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: 0.03em;
}
.map-card__note { font-size: 12.5px; color: var(--text-muted); }
.map-card__mapwrap {
  position: relative;
  margin: 6px 0 2px;
  /* лёгкая растяжка по вертикали: исходник 1400×499 */
  aspect-ratio: 1400 / 585;
}
.map-card__map {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}
.map-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-links line {
  stroke: #a9dcc0;
  stroke-width: 3;
  stroke-dasharray: 10 12;
}
.map-dot {
  fill: var(--green-dot);
  animation: mapPulse 2.2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.map-dot--hub { fill: var(--green-deep); }
.map-dots circle:nth-child(2) { animation-delay: .3s; }
.map-dots circle:nth-child(3) { animation-delay: .6s; }
.map-dots circle:nth-child(4) { animation-delay: .9s; }
.map-dots circle:nth-child(5) { animation-delay: 1.2s; }
.map-dots circle:nth-child(6) { animation-delay: 1.5s; }
.map-dots circle:nth-child(7) { animation-delay: 1.8s; }
.map-dots circle:nth-child(8) { animation-delay: .45s; }
.map-dots circle:nth-child(9) { animation-delay: .75s; }
.map-dots circle:nth-child(10) { animation-delay: 1.05s; }
@keyframes mapPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.map-card__team {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.avatar {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 2px solid #fff;
  overflow: visible;
  flex-shrink: 0;
}
.map-card__team .avatar { margin-right: -8px; }
.avatar svg {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  fill: #9aa5b6;
}
.avatar__dot {
  position: absolute;
  right: -1px; bottom: -1px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--green-dot);
  border: 2px solid #fff;
}
.map-card__online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-deep);
}

/* ==========================================================
   ПОДАРКИ
   ========================================================== */
.gifts {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.gifts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.gift-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-card);
}
.gift-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.gift-card__gift {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 30px;
  height: 30px;
  color: var(--green);
  transition: transform .25s ease;
}
.gift-card:hover .gift-card__gift { transform: rotate(-8deg); }
.gift-card__icon {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: 0.08em;
}
.gift-card__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.gift-card--accent {
  background: var(--navy);
  border-color: var(--navy);
}
.gift-card--accent .gift-card__gift { color: var(--green-dot); }
.gift-card--accent .gift-card__icon { color: var(--green-dot); }
.gift-card--accent .gift-card__title { color: #fff; }
.gifts__cta { text-align: center; margin-top: 44px; }

/* ==========================================================
   ПРОГРАММА
   ========================================================== */
.program {
  padding: 64px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.program__lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 0 46px;
}
.program__sublead {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.program__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.program__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.program__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.program__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.avatar--lg { width: 52px; height: 52px; }
.avatar--lg .avatar__dot { width: 13px; height: 13px; }
.avatar--dark { border-color: #22304c; background: #22304c; }
.avatar--dark svg { fill: #5f6f8e; }
.avatar--dark .avatar__dot { border-color: #22304c; }
.program__num {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: 0.08em;
  border: 1px solid var(--green-soft);
  border-radius: 999px;
  padding: 5px 12px;
}
.program__head {
  font-weight: 800;
  font-size: 21px;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}
.program__item p {
  margin: 0;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.program__item--dark {
  background: var(--navy);
  border-color: var(--navy);
}
.program__item--dark .program__head { color: #fff; }
.program__item--dark p { color: rgba(255,255,255,0.75); }
.program__item--dark .program__num {
  color: var(--green-dot);
  border-color: rgba(47,191,110,0.35);
}
.program__badge {
  position: absolute;
  top: -13px; right: 24px;
  font-family: "Manrope", sans-serif;
  background: var(--green);
  color: #fff;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px -8px rgba(35,165,94,0.6);
}

/* мини-макет сайта в карточке ИИ-дизайнера */
.minisite {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-soft);
}
.minisite__bar {
  display: flex;
  gap: 5px;
  padding: 9px 12px;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--line-navy);
}
.minisite__bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c6cdd9;
}
.minisite__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.minisite__line {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: #dde0e6;
}
.minisite__line--title {
  width: 46%;
  height: 12px;
  background: var(--navy);
  opacity: 0.85;
}
.minisite__btn {
  display: block;
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  margin-top: 4px;
}

/* окно ChatGPT Voice в тёмной карточке */
.voice {
  margin-top: 8px;
  background: #22304c;
  border: 1px solid #2d3d5e;
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.voice__orb {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #7fd8a8, var(--green) 65%, var(--green-deep));
  box-shadow: 0 0 18px rgba(47,191,110,0.45);
  flex-shrink: 0;
}
.voice__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
  flex: 1;
}
.voice__wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--green-dot);
  height: 30%;
  animation: wave 1.1s ease-in-out infinite;
}
.voice__wave span:nth-child(2)  { animation-delay: .1s; }
.voice__wave span:nth-child(3)  { animation-delay: .2s; }
.voice__wave span:nth-child(4)  { animation-delay: .3s; }
.voice__wave span:nth-child(5)  { animation-delay: .4s; }
.voice__wave span:nth-child(6)  { animation-delay: .5s; }
.voice__wave span:nth-child(7)  { animation-delay: .6s; }
.voice__wave span:nth-child(8)  { animation-delay: .7s; }
.voice__wave span:nth-child(9)  { animation-delay: .8s; }
.voice__wave span:nth-child(10) { animation-delay: .9s; }
.voice__wave span:nth-child(11) { animation-delay: 1s; }
.voice__wave span:nth-child(12) { animation-delay: 1.1s; }
@keyframes wave {
  0%, 100% { height: 25%; }
  50% { height: 95%; }
}
.voice__label {
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

/* А ещё разберём */
.extra {
  margin-top: 54px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.extra__title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.extra__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.extra__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.5;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.extra__list strong {
  font-weight: 700;
  color: var(--green-deep);
}
.extra__num {
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 12.5px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.program__cta { margin-top: 50px; text-align: center; }

/* ==========================================================
   СПИКЕР
   ========================================================== */
.speaker {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.speaker__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.speaker__photo-wrap { position: relative; }
.speaker__photo-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-tint);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -30px rgba(22,36,61,0.35);
}
.speaker__photo {
  width: 100%; height: 100%;
  object-fit: cover;
}
.speaker__caption {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(22,36,61,0.88);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  backdrop-filter: blur(6px);
}
.speaker__caption-name { color: var(--green-dot); font-weight: 700; }

.speaker__name {
  font-weight: 800;
  font-size: clamp(46px, 5.6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}
.speaker__name-accent { color: var(--green); }
.speaker__lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 24px;
  max-width: 540px;
}
.speaker__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.speaker__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
}
.speaker__list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 1px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}
.speaker__meta {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.speaker__meta-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  font-size: 13.5px;
}
.speaker__meta-label {
  color: var(--text-dim);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  padding-top: 2px;
  font-weight: 600;
}
.speaker__meta-val { color: var(--text); line-height: 1.5; }

/* ==========================================================
   ДЛЯ КОГО
   ========================================================== */
.audience { padding: 64px 0; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.audience .kicker { display: table; margin-left: auto; margin-right: auto; }
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.audience__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .22s ease, border-color .22s ease;
}
.audience__card:hover { transform: translateY(-3px); border-color: var(--green); }
.audience__icon {
  font-family: "Manrope", sans-serif;
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  background: var(--green-soft);
  border-radius: 8px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.audience__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.audience__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

.gifts--repeat { background: var(--bg); }

/* ==========================================================
   КТО МЫ
   ========================================================== */
.about {
  padding: 64px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 48px 0 36px;
}
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.about__num-unit {
  font-size: 16px;
  font-weight: 700;
  margin-left: 5px;
  letter-spacing: 0;
  color: var(--text-muted);
}
.about__card--accent {
  background: var(--green);
  border-color: var(--green);
}
.about__card--accent .about__num { color: #fff; }
.about__card--accent .about__num-unit { color: rgba(255,255,255,0.75); }
.about__card--accent .about__desc { color: rgba(255,255,255,0.9); }
.about__desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.about__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

/* ==========================================================
   ТАРИФЫ
   ========================================================== */
.tariff { padding: 64px 0; border-bottom: 1px solid var(--line); text-align: center; }
.tariff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
  text-align: left;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.tariff__card {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform .25s ease;
}
.tariff__card:hover { transform: translateY(-4px); }
.tariff__head { display: flex; flex-direction: column; gap: 6px; }
.tariff__name {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  text-transform: lowercase;
}
.tariff__price {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 76px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.tariff__price-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0;
}
.tariff__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tariff__features li {
  font-size: 14.5px;
  line-height: 1.45;
  position: relative;
  padding-left: 32px;
}
.tariff__plus {
  padding-left: 0 !important;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--green-dot);
  text-align: center;
}
.check {
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 700;
}
.tariff__card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.tariff__card--featured .tariff__name { color: var(--green-dot); }
.tariff__card--featured .tariff__price { color: #fff; }
.tariff__card--featured .tariff__price-unit { color: rgba(255,255,255,0.65); }
.tariff__card--featured .check { background: rgba(47,191,110,0.18); color: var(--green-dot); }
.tariff__badge {
  position: absolute;
  top: -14px; left: 32px;
  font-family: "Manrope", sans-serif;
  background: var(--green);
  color: #fff;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px -8px rgba(35,165,94,0.6);
}

/* ==========================================================
   ФИНАЛ
   ========================================================== */
.final {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  left: 50%; top: 55%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(35,165,94,0.07), transparent 60%);
  pointer-events: none;
}
.final__inner { position: relative; z-index: 1; }
.hero__title--final {
  align-items: center;
  font-size: clamp(38px, 5vw, 68px);
  margin-bottom: 22px;
}
.hero__title--final .hero__line--small { max-width: 640px; }
.final__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 34px;
}

/* ==========================================================
   ГЛОССАРИЙ
   ========================================================== */
.glossary { padding: 42px 0 54px; }
.glossary__box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.glossary__box[open] { border-color: var(--green-soft); }
.glossary__summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s ease;
}
.glossary__summary::-webkit-details-marker { display: none; }
.glossary__summary::marker { content: ""; }
.glossary__summary:hover { background: var(--bg-soft); }
.glossary__kicker {
  flex-shrink: 0;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  text-transform: lowercase;
  border: 1px solid var(--green-soft);
  background: rgba(35,165,94,0.06);
  padding: 6px 12px;
  border-radius: 999px;
}
.glossary__label {
  flex: 1;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.glossary__hint {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}
.glossary__toggle {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  position: relative;
  transition: transform .3s ease, background .2s ease, border-color .2s ease;
}
.glossary__toggle::before,
.glossary__toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: background .2s ease;
}
.glossary__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.glossary__summary:hover .glossary__toggle { background: var(--green); border-color: var(--green); }
.glossary__summary:hover .glossary__toggle::before,
.glossary__summary:hover .glossary__toggle::after { background: #fff; }
.glossary__box[open] .glossary__toggle { transform: rotate(135deg); }

.glossary__list {
  column-count: 2;
  column-gap: 48px;
  margin: 0;
  padding: 10px 30px 30px;
  border-top: 1px solid var(--line);
}
.glossary__box[open] .glossary__list { animation: glossFade .3s ease both; }
@keyframes glossFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
.glossary__item {
  break-inside: avoid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
/* терминов 7, колонки закрывают 4-й и 7-й — при смене числа поправить */
.glossary__item:nth-child(4),
.glossary__item:last-child { border-bottom: none; }
.glossary__term {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-bottom: 7px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.glossary__term::before {
  content: "★";
  color: var(--green);
  font-size: 11px;
  flex-shrink: 0;
}
.glossary__def {
  margin: 0 0 0 21px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--navy);
  color: var(--bg);
  padding: 70px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer__col a { color: rgba(255,255,255,0.7); transition: color .15s ease; }
.footer__col a:hover { color: var(--green-dot); }
.footer__logo { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 22px; letter-spacing: 0.06em; color: #fff; }
.footer__address { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.footer__contacts { display: flex; flex-direction: column; gap: 6px; font-weight: 500; }
.footer__contacts a { color: #fff; }
.footer__socials { display: flex; gap: 16px; margin-top: 6px; font-size: 13px; }
.footer__nav-title {
  text-transform: lowercase;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ==========================================================
   АДАПТИВ
   ========================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .market__inner { grid-template-columns: 1fr; gap: 44px; }
  .program__items { grid-template-columns: 1fr; }
  .extra__list { grid-template-columns: 1fr; }
  .speaker__inner { grid-template-columns: 1fr; gap: 50px; }
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .topbar__inner { padding: 13px 18px 15px; }
  .topbar__page, .topbar__sep { display: none; }
  .topbar__logo { font-size: 13px; }
  .topbar__logo-img { width: 24px; height: 24px; }
  .topbar__status { font-size: 11px; }

  .hero { padding: 30px 0 44px; }
  .hero__title { font-size: clamp(34px, 10.5vw, 54px); }
  .hero__line--small { font-size: 0.44em; }
  .hero__sub { font-size: 15.5px; padding-left: 14px; }
  .hero__date-pill { font-size: 13.5px; padding: 8px 14px; }
  .hero__date-tag { font-size: 11px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  /* на мобилке CTA переезжает выше буллетов, а не дублируется */
  .hero__cta-top {
    display: inline-flex;
    width: 100%;
    margin-bottom: 26px;
  }
  .hero__cta-main { display: none; }
  .shot--vac { width: 100%; transform: rotate(-0.6deg); }
  .shot--rez { width: 100%; margin-top: -18px; transform: rotate(0.6deg); }
  .shot__url { font-size: 11px; }

  .footnote p { font-size: 11.5px; }

  .section-title { font-size: clamp(26px, 8vw, 40px); }
  .section-title--big { font-size: clamp(30px, 9.5vw, 52px); }

  .market { padding: 42px 0; }
  .market__text p { font-size: 16.5px; }
  .map-card { padding: 16px; }
  .map-card__online { margin-left: 14px; font-size: 11.5px; }

  .gifts { padding: 42px 0; }
  .gifts__grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .gift-card { padding: 26px 22px; }
  .gift-card__title { font-size: 17px; }

  .program { padding: 42px 0; }
  .program__items { gap: 16px; }
  .program__item { padding: 24px 20px; }
  .program__head { font-size: 19px; }
  .program__sublead { font-size: 18px; }
  .voice { padding: 12px 14px; gap: 12px; }
  .voice__label { display: none; }
  .extra { padding: 24px 20px; margin-top: 40px; }
  .extra__title { font-size: 19px; }
  .extra__list li { font-size: 14.5px; padding: 12px 14px; }

  .speaker { padding: 42px 0; }
  .speaker__name { font-size: clamp(38px, 11vw, 56px); }
  .speaker__lead { font-size: 16px; }
  .speaker__meta-row { grid-template-columns: 1fr; gap: 4px; }

  .audience { padding: 42px 0; }
  .audience__grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }

  .about { padding: 42px 0; }
  .about__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about__card { padding: 22px 14px; min-width: 0; }
  .about__num { font-size: 31px; }
  .about__num-unit { font-size: 12px; margin-left: 3px; }
  .about__desc { font-size: 13.5px; }

  .tariff { padding: 42px 0; }
  .tariff__grid { grid-template-columns: 1fr; gap: 22px; margin-top: 36px; }
  .tariff__card { padding: 30px 24px; }
  .tariff__price { font-size: 60px; }

  .final { padding: 42px 0; }
  .hero__title--final { font-size: clamp(32px, 9.5vw, 48px); }
  .final__sub { font-size: 16px; }

  .glossary { padding: 32px 0 40px; }
  .glossary__summary { padding: 20px; gap: 10px 14px; flex-wrap: wrap; }
  .glossary__kicker { order: 1; }
  .glossary__toggle { order: 2; margin-left: auto; }
  .glossary__label { order: 3; flex-basis: 100%; font-size: 18px; }
  .glossary__hint { order: 4; flex-basis: 100%; }
  .glossary__list { column-count: 1; padding: 4px 20px 22px; }
  .glossary__item { padding: 16px 0; }
  .glossary__item:nth-child(4) { border-bottom: 1px solid var(--line); }

  .footer { padding: 50px 0 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer__bottom { flex-direction: column; gap: 6px; font-size: 11.5px; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* фикс-плашка внизу экрана: на ПК текст + кнопка, на мобилке только кнопка */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  background: rgba(251,250,246,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -22px rgba(22,36,61,0.4);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
}
.mcta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.mcta__text { min-width: 0; }
.mcta__name {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.015em;
}
.mcta__sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--text-dim);
  margin-top: 3px;
}
.mcta .btn { flex-shrink: 0; }
body { padding-bottom: 96px; }

@media (max-width: 700px) {
  .mcta { padding: 10px 0 calc(10px + env(safe-area-inset-bottom)); }
  .mcta__text { display: none; }
  .mcta .btn { width: 100%; padding: 18px 22px; font-size: 17px; }
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
}
