/* ===== ИскроСказки · Premium landing · landing.css =====
   Design system, palette, typography (Onest + Instrument Serif),
   sections, motion. Adheres to brand kit of platform/website_root.
   ======================================================= */

:root {
  /* Palette */
  --black:        #0a0a0a;
  --dark:         #141414;
  --dark-2:       #1c1c1e;
  --gray-900:     #2c2c2e;
  --gray-700:     #48484a;
  --gray-500:     #8e8e93;
  --gray-300:     #c7c7cc;
  --gray-200:     #e5e5ea;
  --gray-100:     #f2f2f7;
  --cream:        #fafaf8;
  --white:        #ffffff;
  --accent:       #b67a4a;
  --accent-soft:  rgba(182, 122, 74, 0.10);
  --accent-line:  rgba(182, 122, 74, 0.22);
  --accent-hover: #9b6439;
  --gold:         #c9a46a;
  --green:        #5f8c6f;

  /* Type */
  --serif:        'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans:         'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max-w:        1400px;
  --max-narrow:   980px;
  --side-pad:     clamp(24px, 6vw, 120px);
  --section-pad:  clamp(80px, 12vw, 160px);
  --section-pad-sm: clamp(64px, 9vw, 120px);

  /* Easing */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 999px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}
.container-narrow {
  width: 100%;
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(0.6deg); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ===== Labels & headings ===== */
.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.label-muted { color: rgba(255, 255, 255, 0.32); }
.label-dark  { color: var(--accent-hover); }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.h-section {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-pill);
  letter-spacing: 0.005em;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
  white-space: nowrap;
  min-height: 52px;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover { background: #f4efe8; box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 14px 36px rgba(155, 100, 57, 0.45); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.4); }

.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(20, 20, 20, 0.18);
}
.btn-ghost-dark:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

.btn-arrow svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.005em;
}
.nav-brand .nav-brand-accent { color: var(--accent); }
.nav-brand-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.nav-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.nav-crumbs a { transition: color 0.3s var(--ease); }
.nav-crumbs a:hover { color: var(--white); }
.nav-crumbs .sep { color: rgba(255, 255, 255, 0.18); }
.nav-crumbs .current { color: rgba(255, 255, 255, 0.78); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--accent-hover); transform: scale(1.03); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.92) contrast(1.04);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.78) 30%, rgba(10,10,10,0.32) 58%, rgba(10,10,10,0.05) 78%, rgba(10,10,10,0) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0) 18%, rgba(10,10,10,0) 78%, rgba(10,10,10,0.55) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 180px;
  padding-bottom: 120px;
}
.hero-copy { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeIn 1s var(--ease) both;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 400;
  color: var(--white);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  animation: fadeUp 1.2s var(--ease) both;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--accent);
}
.hero h1 .light { opacity: 0.78; display: block; }
.hero h1 .h-dash {
  color: var(--accent);
  font-style: italic;
  opacity: 0.85;
  display: inline;
  white-space: nowrap;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeUp 1.2s var(--ease) 0.15s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 1.2s var(--ease) 0.3s both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  animation: fadeUp 1.2s var(--ease) 0.45s both;
}
.hero-trust .seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .seal::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: fadeIn 1.4s var(--ease) 0.9s both;
}
.hero-scroll span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.42), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

/* ===== MANIFEST ===== */
.manifest {
  background: var(--cream);
  color: var(--dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.manifest-text {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.manifest-text p {
  font-family: var(--serif);
  font-size: clamp(28px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.manifest-text em {
  font-style: italic;
  color: var(--accent);
}
.manifest-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 56px auto 0;
  max-width: 220px;
  animation: fadeIn 1.4s var(--ease) 0.4s both;
}
.manifest-ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  transform-origin: center;
  animation: lineGrow 1.4s var(--ease) 0.4s both;
}
.manifest-ornament-mark {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  transform: translateY(-1px);
}
.manifest-text p.manifest-meta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 36px;
}

/* ===== CONTRAST ===== */
.contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.contrast-half {
  padding: clamp(72px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.contrast-left {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
}
.contrast-left::after {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.contrast-right {
  background: var(--cream);
  color: var(--dark);
}
.contrast-half .label { margin-bottom: 28px; }
.contrast-half h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.contrast-left h2 { color: rgba(255, 255, 255, 0.34); }
.contrast-right h2 { color: var(--dark); font-weight: 500; }
.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contrast-list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.55;
}
.contrast-left .contrast-list li {
  color: rgba(255, 255, 255, 0.36);
}
.contrast-left .contrast-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.16);
}
.contrast-right .contrast-list li {
  color: var(--gray-700);
  font-weight: 500;
}
.contrast-right .contrast-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== STORY (4-уровневая scroll-история) ===== */
.story {
  background: var(--black);
  position: relative;
}
.story-intro {
  padding: var(--section-pad) 0 80px;
  text-align: center;
}
.story-intro .label { margin-bottom: 24px; display: inline-block; }
.story-intro h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 84vh;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.story-block:nth-child(even) .story-visual { order: -1; }
.story-text {
  padding: clamp(48px, 6vw, 100px);
}
.story-num {
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 120px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: baseline;
}
.story-num span {
  color: rgba(255, 255, 255, 0.07);
}
.story-num em {
  color: rgba(182, 122, 74, 0.32);
  font-style: italic;
  font-weight: 400;
  margin-left: -0.05em;
  letter-spacing: -0.02em;
}
.story-text h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.story-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
}
.story-visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  background: var(--dark-2);
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-visual.is-figurines {
  background: radial-gradient(circle at 50% 60%, #1f1814 0%, #0a0a0a 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8% 6%;
}
.story-visual.is-figurines img {
  height: 80%;
  width: auto;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
.story-visual.is-method {
  background: linear-gradient(135deg, #1c1c1e, #0a0a0a);
  padding: 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.story-visual.is-method .method-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.story-visual.is-method .method-card-num {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent);
  width: 32px;
  flex-shrink: 0;
  text-align: center;
}
.story-visual.is-method .method-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.story-visual.is-procurement {
  background: var(--dark-2);
  padding: 6%;
  display: grid;
  align-content: center;
  gap: 12px;
}
.story-visual.is-procurement .proc-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}
.story-visual.is-procurement .proc-line:last-child { border-bottom: none; }
.story-visual.is-procurement .proc-key { color: rgba(255, 255, 255, 0.5); }
.story-visual.is-procurement .proc-val {
  font-family: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ===== KIT (состав комплекта) ===== */
.kit {
  background: var(--cream);
  color: var(--dark);
  padding: var(--section-pad) 0;
}
.kit-header {
  text-align: center;
  margin-bottom: clamp(56px, 8vw, 100px);
}
.kit-header .label { margin-bottom: 22px; display: inline-block; }
.kit-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 880px;
  margin: 0 auto 20px;
}
.kit-header p {
  font-size: 17px;
  color: var(--gray-700);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}
.kit-group { margin-bottom: 80px; }
.kit-group:last-child { margin-bottom: 0; }
.kit-group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.kit-group-title h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.015em;
}
.kit-group-title .count {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}
.kit-grid {
  display: grid;
  gap: 24px;
}
.kit-grid-figurines {
  grid-template-columns: repeat(6, 1fr);
}
.kit-grid-decorations {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.kit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border-radius: var(--r-md);
  padding: 24px 16px 20px;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease);
  position: relative;
}
.kit-item:hover {
  transform: translateY(-6px);
  background: rgba(182, 122, 74, 0.04);
}
.kit-img {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}
.kit-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(70, 40, 20, 0.18));
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.kit-item:hover .kit-img img {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 24px 36px rgba(70, 40, 20, 0.28));
}
.kit-img::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 22%;
  right: 22%;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(70, 40, 20, 0.18) 0%, transparent 70%);
  filter: blur(4px);
  opacity: 0.7;
  transition: opacity 0.5s var(--ease);
}
.kit-item:hover .kit-img::after { opacity: 0.4; }
.kit-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.kit-meaning {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 200px;
}
.kit-grid-decorations .kit-item { padding: 28px 18px 24px; }
.kit-grid-decorations .kit-img { aspect-ratio: 4/3; }
.kit-grid-decorations .kit-name { font-size: 22px; }
.kit-grid-decorations .kit-meaning { font-size: 14px; max-width: 240px; }

/* ===== AUDIENCE (для кого) ===== */
.audience {
  background: var(--black);
  padding: var(--section-pad) 0;
  color: var(--white);
}
.audience-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(56px, 7vw, 100px);
}
.audience-header .label { margin-bottom: 24px; display: inline-block; }
.audience-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.audience-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.5s var(--ease), background 0.5s var(--ease), transform 0.5s var(--ease);
}
.audience-card:hover {
  border-color: var(--accent-line);
  background: rgba(182, 122, 74, 0.04);
  transform: translateY(-4px);
}
.audience-card-role {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.audience-card-pain {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-style: italic;
}
.audience-card-pain::before {
  content: 'Боль ' '\2014' ' ';
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  display: block;
  margin-bottom: 6px;
}
.audience-card-answer {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.audience-card-answer::before {
  content: 'Ответ ' '\2014' ' ';
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  display: block;
  margin-bottom: 6px;
}

/* ===== EDITIONS (3 комплектации) ===== */
.editions {
  background: var(--cream);
  color: var(--dark);
  padding: var(--section-pad) 0;
}
.editions-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.editions-header .label { margin-bottom: 22px; display: inline-block; }
.editions-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.editions-header p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.65;
}
.editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.edition {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.edition:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(40, 25, 12, 0.18);
  border-color: var(--accent-line);
}
.edition.is-feature {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.edition.is-feature:hover {
  box-shadow: 0 30px 70px -16px rgba(182, 122, 74, 0.38),
              0 0 0 1px rgba(182, 122, 74, 0.45) inset;
  border-color: var(--accent);
}
.edition.is-feature::before {
  content: 'Рекомендуем';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 5px 16px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.edition-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.015em;
}
.edition.is-feature .edition-name { color: var(--white); }
.edition-tagline {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-top: -8px;
}
.edition.is-feature .edition-tagline { color: rgba(255, 255, 255, 0.5); }
.edition-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.edition.is-feature .edition-price {
  border-color: rgba(255, 255, 255, 0.08);
}
.edition-price-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.edition.is-feature .edition-price-num { color: var(--accent); }
.edition-price-currency {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gray-500);
}
.edition.is-feature .edition-price-currency { color: rgba(255, 255, 255, 0.5); }
.edition-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.edition-features li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.55;
}
.edition.is-feature .edition-features li { color: rgba(255, 255, 255, 0.78); }
.edition-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.edition-norm {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  font-size: 12.5px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  line-height: 1.55;
}
.edition.is-feature .edition-norm {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}
.edition-norm strong {
  color: var(--dark);
  font-weight: 600;
}
.edition.is-feature .edition-norm strong { color: var(--white); }
.edition-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s var(--ease);
}
.edition-cta:hover { background: var(--accent); }
.edition.is-feature .edition-cta {
  background: var(--accent);
}
.edition.is-feature .edition-cta:hover { background: var(--accent-hover); }

/* ===== PROCUREMENT ===== */
.procurement {
  background: var(--dark);
  color: var(--white);
  padding: var(--section-pad) 0;
}
.proc-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}
.proc-text .label { margin-bottom: 24px; display: inline-block; }
.proc-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.proc-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 540px;
}
.proc-text strong { color: var(--white); font-weight: 600; }
.proc-text-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(182, 122, 74, 0.08);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.proc-codes {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px 36px;
}
.proc-codes-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.proc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: baseline;
}
.proc-row:last-child { border-bottom: none; }
.proc-row-key {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}
.proc-row-val {
  font-family: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  text-align: right;
}
.proc-row-val.is-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  max-width: 220px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
  color: var(--dark);
  padding: var(--section-pad) 0;
}
.faq-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.faq-header .label { margin-bottom: 22px; display: inline-block; }
.faq-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--gray-200);
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 14px;
  margin: 0 -14px;
  border-radius: var(--r-md);
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: -0.015em;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-q:hover { color: var(--accent-hover); background: rgba(182, 122, 74, 0.05); }
.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.faq-q-icon::before, .faq-q-icon::after {
  content: '';
  position: absolute;
  background: var(--dark);
  transition: transform 0.4s var(--ease);
}
.faq-q-icon::before { width: 12px; height: 1.5px; }
.faq-q-icon::after { width: 1.5px; height: 12px; }
.faq-item[open] .faq-q-icon { background: var(--accent); border-color: var(--accent); }
.faq-item[open] .faq-q-icon::before,
.faq-item[open] .faq-q-icon::after { background: var(--white); }
.faq-item[open] .faq-q-icon::after { transform: rotate(90deg); }
.faq-q { cursor: pointer; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-a {
  overflow: hidden;
}
.faq-item[open] .faq-a {
  padding-bottom: 28px;
  animation: faqOpen 0.4s var(--ease) both;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-a-inner {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.75;
  max-width: 760px;
}
.faq-a-inner p { margin-bottom: 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--dark); font-weight: 600; }

/* ===== CTA / FORM ===== */
.cta {
  background: var(--dark);
  color: var(--white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(182, 122, 74, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(182, 122, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  position: relative;
  z-index: 2;
}
.cta-text .label { margin-bottom: 24px; display: inline-block; }
.cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.cta-text h2 em {
  font-style: italic;
  color: var(--accent);
}
.cta-text > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.cta-contacts {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}
.cta-contact {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-contact .label-line {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  width: 80px;
  flex-shrink: 0;
}
.cta-contact a { color: var(--white); transition: color 0.3s var(--ease); }
.cta-contact a:hover { color: var(--accent); }
.cta-promise {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
}
.cta-promise-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.cta-promise-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}
.cta-promise-text strong { color: var(--white); font-weight: 600; }

/* Form */
.form-dealer-hint {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0 0 18px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}
.form-dealer-hint a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.form-dealer-hint a:hover {
  color: var(--white);
}

.form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
}
.form-step {
  margin-bottom: 32px;
}
.form-step:last-of-type { margin-bottom: 24px; }
.form-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.form-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-step-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.form-step-title-sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  margin-left: auto;
  text-transform: none;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-row:last-child { margin-bottom: 0; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid-2 .form-row { margin-bottom: 0; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.form-label .req { color: var(--accent); margin-left: 3px; }
.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255, 255, 255, 0.28); }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}
.form-input[readonly] {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
}
.form-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.55;
}
.form-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  min-height: 16px;
  letter-spacing: 0.01em;
}
.form-hint.is-success { color: var(--green); }
.form-hint.is-error { color: #e88c7e; }
.form-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.form-radio:hover { border-color: rgba(255, 255, 255, 0.22); }
.form-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
}
.form-radio input[type="radio"]:checked {
  border-color: var(--accent);
}
.form-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.form-radio:has(input:checked) {
  border-color: var(--accent);
  background: rgba(182, 122, 74, 0.08);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  margin-bottom: 24px;
}
.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: transparent;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.form-checkbox input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}
.form-checkbox-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}
.form-checkbox-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-captcha {
  display: flex;
  justify-content: center;
  margin: 4px 0 18px;
  min-height: 90px;
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.form-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.form-submit[disabled] { opacity: 0.6; cursor: wait; transform: none; }
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(95, 140, 111, 0.14);
  border: 1px solid rgba(95, 140, 111, 0.35);
  color: #cae6d3;
}
.form-status.is-error {
  display: block;
  background: rgba(232, 87, 58, 0.12);
  border: 1px solid rgba(232, 87, 58, 0.35);
  color: #ffcfc4;
}
.form-status.is-info {
  display: block;
  background: rgba(182, 122, 74, 0.10);
  border: 1px solid rgba(182, 122, 74, 0.30);
  color: rgba(255, 255, 255, 0.85);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.45);
  padding: 56px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
}
.footer-brand-accent { color: var(--accent); }
.footer-brand-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.55;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .editions-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .edition.is-feature { order: -1; }
  .kit-grid-figurines { grid-template-columns: repeat(3, 1fr); }
  .kit-grid-decorations { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .contrast { grid-template-columns: 1fr; }
  .contrast-left::after { display: none; }
  .story-block { grid-template-columns: 1fr; min-height: auto; }
  .story-block:nth-child(even) .story-visual { order: 0; }
  .story-visual { min-height: 360px; }
  .proc-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-crumbs { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .kit-grid-figurines { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .kit-grid-decorations { grid-template-columns: 1fr; gap: 24px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-radio-group { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding-top: 140px; padding-bottom: 100px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .contrast-half { padding: 64px 32px; }
  .story-text { padding: 56px 32px; }

  /* Hero: на mobile иллюстрация уезжает вниз, контент закрывается плотным градиентом сверху */
  .hero-media img {
    object-position: 80% 100%;
    transform: scale(1.02);
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.86) 38%, rgba(10,10,10,0.45) 70%, rgba(10,10,10,0.15) 100%);
  }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .hero-trust { gap: 14px; font-size: 11px; }
}
