/*
 * Перформанс «Связи» — тёмный мистический стиль.
 * Палитра: глубокая ночь + фиолетово-золотое свечение нейронных связей.
 */

:root {
  --sv-bg:        #07070d;
  --sv-bg-2:      #0c0c16;
  --sv-surface:   rgba(255, 255, 255, 0.025);
  --sv-violet:    #a08cdc;
  --sv-violet-l:  #c2b3ec;
  --sv-violet-d:  #6a5aa0;
  --sv-glow:      rgba(160, 140, 220, 0.18);
  --sv-line:      rgba(216, 201, 153, 0.10);
  --sv-line-hot:  rgba(216, 201, 153, 0.28);
}

body { background: var(--sv-bg); }
.navbar.scrolled { background: rgba(7, 7, 13, 0.92); }
.nav-brand span { color: var(--gold); }

/* ─── HERO ─── */
.sv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(160,140,220,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(216,201,153,0.05) 0%, transparent 50%),
    var(--sv-bg);
}

.sv-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.sv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,13,0.4) 0%, transparent 35%, rgba(7,7,13,0.7) 100%);
  pointer-events: none;
}

.sv-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 40px 80px;
}

.sv-hero__sigil {
  display: inline-block;
  margin-bottom: 32px;
  animation: svSigilBreath 6s ease-in-out infinite;
}

@keyframes svSigilBreath {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.06); opacity: 1; }
}

.sv-hero__kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.sv-hero__kicker .sv-dot { color: var(--sv-violet); margin: 0 8px; }

.sv-hero__title {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(3.5rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
  color: #fff;
  text-shadow:
    0 0 40px rgba(160, 140, 220, 0.4),
    0 0 80px rgba(216, 201, 153, 0.15);
}

.sv-hero__title span {
  display: inline-block;
  animation: svLetterPulse 5s ease-in-out infinite;
}

.sv-hero__title span:nth-child(2) { animation-delay: 0.4s; }
.sv-hero__title span:nth-child(3) { animation-delay: 0.8s; }
.sv-hero__title span:nth-child(4) { animation-delay: 1.2s; }
.sv-hero__title span:nth-child(5) { animation-delay: 1.6s; }

@keyframes svLetterPulse {
  0%, 100% { text-shadow: 0 0 40px rgba(160,140,220,0.4), 0 0 80px rgba(216,201,153,0.15); }
  50%      { text-shadow: 0 0 60px rgba(160,140,220,0.7), 0 0 110px rgba(216,201,153,0.3); }
}

.sv-hero__motto {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--sv-violet-l);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.sv-hero__motto em { font-style: italic; }

.sv-hero__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 40px;
}

.sv-hero__notice {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  margin-bottom: 32px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(216,201,153,0.10), rgba(160,140,220,0.10));
  border: 1px solid rgba(216, 201, 153, 0.22);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  text-align: left;
}

.sv-hero__notice-pulse {
  width: 9px;
  height: 9px;
  min-width: 9px;
  border-radius: 50%;
  background: #64c8a0;
  box-shadow: 0 0 10px rgba(100, 200, 160, 0.7);
  animation: svNoticePulse 1.8s ease-in-out infinite;
}

@keyframes svNoticePulse {
  0%, 100% { opacity: 1;   transform: scale(1);    box-shadow: 0 0 10px rgba(100,200,160,0.7); }
  50%      { opacity: 0.55; transform: scale(0.82); box-shadow: 0 0 16px rgba(100,200,160,0.9); }
}

.sv-hero__notice-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.sv-hero__notice-text strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}

.sv-hero__notice-text span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

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

.sv-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, var(--sv-violet) 70%, transparent);
  transform: translateX(-50%);
  animation: svScrollPulse 2.5s ease-in-out infinite;
}

@keyframes svScrollPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleY(0.7); }
  50%      { opacity: 1;   transform: translateX(-50%) scaleY(1);   }
}

/* ─── Общие секции ─── */
.sv-section__kicker {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sv-violet);
  margin-bottom: 18px;
}

.sv-section__kicker--center { text-align: center; }

.sv-section__title {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

.sv-section__title--center { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }

/* ─── Красная нить ─── */
.sv-thread {
  position: relative;
  padding: 160px 0;
  min-height: 640px;
  overflow: hidden;
  background: #04040a;
  border-top: 1px solid var(--sv-line);
  border-bottom: 1px solid var(--sv-line);
  display: flex;
  align-items: center;
}

.sv-thread__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sv-thread__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: brightness(0.85) saturate(1.15) contrast(1.05);
}

.sv-thread__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 10, 0.45) 0%, rgba(4, 4, 10, 0.20) 30%, rgba(4, 4, 10, 0.65) 100%);
}

.sv-thread__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 25%, rgba(4, 4, 10, 0.55) 80%);
}

.sv-thread__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.sv-thread__text {
  max-width: 720px;
  text-align: center;
  padding: 48px 40px;
  background: rgba(4, 4, 10, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(216, 201, 153, 0.10);
}

.sv-thread__title {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  color: #ffffff;
  margin: 18px 0 28px;
  letter-spacing: -0.01em;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.8),
    0 0 48px rgba(196, 30, 46, 0.25);
}

.sv-thread__title em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #ffd0d0;
  display: inline-block;
}

.sv-thread__lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 22px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.sv-thread__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #f0c8d8;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 200, 200, 0.3);
  margin-top: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.sv-thread__title {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  color: #fff;
  margin: 18px 0 28px;
  letter-spacing: -0.01em;
}

.sv-thread__title em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #f0b8b8;
  display: inline-block;
}

.sv-thread__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.sv-thread__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--sv-violet-l);
  padding-left: 20px;
  border-left: 1px solid rgba(196, 30, 46, 0.4);
}

/* ─── Полноширинный баннер с фото красной нити (фоновый) ─── */
.sv-banner {
  position: relative;
  min-height: 620px;
  background: #000;
  border-top: 1px solid var(--sv-line);
  border-bottom: 1px solid var(--sv-line);
  overflow: hidden;
}

.sv-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sv-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  filter: brightness(0.95) saturate(1.1) contrast(1.05);
}

.sv-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(4, 4, 10, 0.55) 95%),
    linear-gradient(180deg, rgba(4, 4, 10, 0.35) 0%, transparent 25%, transparent 75%, rgba(4, 4, 10, 0.45) 100%);
  pointer-events: none;
}

/* ─── Манифест: три столпа ─── */
.sv-manifest {
  padding: 120px 0 80px;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(160,140,220,0.08) 0%, transparent 60%),
    var(--sv-bg-2);
  border-top: 1px solid var(--sv-line);
}

.sv-manifest__lead {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.sv-manifest__close {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sv-violet-l);
  text-align: center;
  max-width: 680px;
  margin: 56px auto 0;
  line-height: 1.6;
}

.sv-manifest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}

.sv-pillar {
  position: relative;
  z-index: 1;
  padding: 0 0 32px;
  background: var(--sv-bg-2);
  border: 1px solid var(--sv-line);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.5s ease;
  overflow: hidden;
}

.sv-pillar:hover {
  border-color: rgba(160, 140, 220, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px var(--sv-glow);
}

.sv-pillar__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050508;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--sv-line);
}

.sv-pillar__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.05) contrast(1.05);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.sv-pillar:hover .sv-pillar__video {
  filter: brightness(1) saturate(1.15) contrast(1.1);
  transform: scale(1.04);
}

.sv-pillar__media-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(7,7,13,0) 0%, rgba(7,7,13,0.55) 100%),
    linear-gradient(180deg, rgba(160,140,220,0.05) 0%, transparent 30%, rgba(7,7,13,0.4) 100%);
  mix-blend-mode: multiply;
  transition: opacity 0.5s ease;
}

.sv-pillar:hover .sv-pillar__media-grain { opacity: 0.7; }

.sv-pillar__title { padding: 0 28px; }
.sv-pillar__text  { padding: 0 28px; }

.sv-pillar__title {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.sv-pillar__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ─── Эссенция: три случая ─── */
.sv-essence { padding: 100px 0; }

.sv-essence__list {
  list-style: none;
  padding: 0;
  margin: 56px 0 48px;
  display: grid;
  gap: 20px;
}

.sv-essence__list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  background: var(--sv-surface);
  border: 1px solid var(--sv-line);
  border-radius: var(--radius);
  transition: border-color 0.4s ease;
}

.sv-essence__list li:hover { border-color: rgba(160, 140, 220, 0.3); }

.sv-essence__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 2.4rem;
  color: var(--sv-violet);
  text-align: center;
  line-height: 1;
}

.sv-essence__list p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.sv-essence__verdict {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gold);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-style: italic;
}

/* ─── Процесс: 4 направления ─── */
.sv-process {
  padding: 100px 0;
  background: var(--sv-bg-2);
  border-top: 1px solid var(--sv-line);
  border-bottom: 1px solid var(--sv-line);
}

.sv-process__head { text-align: center; margin-bottom: 56px; }
.sv-process__head--bare { margin-bottom: 0; }
.sv-process__head .sv-section__title { text-align: center; }

.sv-process__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 540px;
  margin: 20px auto 0;
}

.sv-process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sv-process__card {
  position: relative;
  padding: 36px 32px 36px 88px;
  background: var(--sv-surface);
  border: 1px solid var(--sv-line);
  border-radius: var(--radius);
  transition: all 0.4s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.sv-process__card:hover {
  border-color: rgba(160, 140, 220, 0.3);
  background: rgba(160, 140, 220, 0.04);
  transform: translateX(4px);
}

.sv-process__index {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Forum', Georgia, serif;
  font-size: 1.8rem;
  color: var(--sv-violet);
  letter-spacing: 0.05em;
}

.sv-process__card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── Ткань реальности ─── */
.sv-fabric {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(160,140,220,0.08) 0%, transparent 60%),
    var(--sv-bg);
}

.sv-fabric__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 40px;
  font-style: italic;
  position: relative;
}

.sv-fabric__quote::before,
.sv-fabric__quote::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 32px;
  opacity: 0.5;
}

.sv-fabric__quote::after { margin: 32px auto 0; }

.sv-fabric__quote em { color: var(--sv-violet-l); font-style: italic; }

.sv-fabric__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Подготовка ─── */
.sv-prep {
  padding: 120px 0;
  background: var(--sv-bg-2);
  border-top: 1px solid var(--sv-line);
}

.sv-prep__head { text-align: center; margin-bottom: 56px; }
.sv-prep__head .sv-section__kicker { text-align: center; }
.sv-prep__head .sv-section__title { text-align: center; max-width: 720px; margin: 0 auto 20px; }

.sv-prep__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.sv-prep__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sv-prep__card {
  position: relative;
  padding: 28px 28px 28px 60px;
  background: var(--sv-surface);
  border: 1px solid var(--sv-line);
  border-radius: var(--radius);
  transition: all 0.4s ease;
}

.sv-prep__card:hover {
  border-color: rgba(216, 201, 153, 0.2);
  background: rgba(216, 201, 153, 0.03);
}

.sv-prep__num {
  position: absolute;
  left: 28px;
  top: 28px;
  font-family: 'Forum', Georgia, serif;
  font-size: 1.2rem;
  color: var(--sv-violet);
  width: 20px;
  text-align: center;
}

.sv-prep__card h4 {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.sv-prep__card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.sv-prep__card--final {
  border-color: rgba(160, 140, 220, 0.25);
  background: linear-gradient(135deg, rgba(160,140,220,0.05), rgba(216,201,153,0.02));
}

.sv-prep__card--final .sv-prep__num {
  color: var(--gold);
  font-style: italic;
}

/* ─── Космос: поэтический манифест перед сценой ─── */
.sv-cosmos {
  padding: 80px 0 20px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(160, 140, 220, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(216, 201, 153, 0.04) 0%, transparent 50%),
    var(--sv-bg);
  border-top: 1px solid var(--sv-line);
  position: relative;
}

.sv-cosmos__divider {
  width: 140px;
  height: 14px;
  margin: 0 auto 56px;
  opacity: 0.85;
}

.sv-cosmos__divider svg { width: 100%; height: 100%; display: block; }

.sv-cosmos__lead {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.01em;
  max-width: 760px;
  margin: 0 auto 32px;
  text-shadow: 0 0 60px rgba(216, 201, 153, 0.12);
}

.sv-cosmos__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: var(--sv-violet-l);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── Атмосфера: фоновое фото со сцены ─── */
.sv-stage {
  position: relative;
  padding: 0;
  background: #000;
  border-top: 1px solid var(--sv-line);
  border-bottom: 1px solid var(--sv-line);
  overflow: hidden;
  min-height: 320px;
  aspect-ratio: 680 / 256;
  display: flex;
  align-items: center;
}

.sv-stage__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sv-stage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  filter: brightness(0.78) saturate(1.08) contrast(1.05);
}

.sv-stage__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 4, 10, 0.55) 0%, rgba(4, 4, 10, 0.25) 35%, rgba(4, 4, 10, 0.65) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(4, 4, 10, 0.45) 100%);
}

.sv-stage__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sv-stage__content .sv-section__title {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  max-width: 760px;
}

.sv-stage__lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 20px auto 0;
  line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* ─── Цена ─── */
.sv-price { padding: 120px 0; }

.sv-price__card {
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 48px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(160,140,220,0.10) 0%, transparent 60%),
    var(--sv-bg-2);
  border: 1px solid rgba(216, 201, 153, 0.18);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(160, 140, 220, 0.06);
}

.sv-price__amount {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  color: #fff;
  margin: 12px 0 4px;
  letter-spacing: 0.02em;
}

.sv-price__rub {
  font-size: 0.55em;
  color: var(--gold);
  margin-left: 8px;
  vertical-align: 0.15em;
}

.sv-price__currency {
  font-size: 0.9rem;
  color: var(--gold-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.sv-price__list {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.sv-price__list li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}

.sv-price__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sv-violet);
  box-shadow: 0 0 12px var(--sv-violet);
}

.sv-price__note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 18px;
  font-style: italic;
}

/* ─── CTA ─── */
.sv-cta {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(160,140,220,0.16) 0%, transparent 55%),
    var(--sv-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--sv-line);
}

.sv-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(160,140,220,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.sv-cta__intro {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
}

.sv-cta__title {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.sv-cta__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--sv-violet-l);
  margin-bottom: 48px;
  position: relative;
}

/* ─── Кнопка ─── */
.sv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dim) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(160, 140, 220, 0.15);
}

.sv-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(160, 140, 220, 0.4), 0 0 24px rgba(216, 201, 153, 0.3);
  color: #0a0a0a;
}

.sv-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(216, 201, 153, 0.3);
  box-shadow: none;
}

.sv-btn--ghost:hover {
  background: rgba(216, 201, 153, 0.06);
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(216, 201, 153, 0.15);
}

.sv-btn--lg { padding: 22px 64px; font-size: 0.95rem; }

/* ─── Адаптив ─── */
@media (max-width: 900px) {
  .sv-thread            { padding: 100px 0; min-height: 540px; }
  .sv-thread__text      { padding: 32px 24px; }
  .sv-banner            { min-height: 480px; }
  .sv-manifest__grid    { grid-template-columns: 1fr; }
  .sv-process__grid     { grid-template-columns: 1fr; }
  .sv-prep__grid        { grid-template-columns: 1fr; }
  .sv-stage__grid       { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sv-hero__content    { padding: 120px 24px 60px; }
  .sv-hero__title      { letter-spacing: 0.12em; }
  .sv-essence__list li { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 20px; }
  .sv-essence__num     { font-size: 1.8rem; }
  .sv-process__card    { padding: 28px 24px 28px 72px; }
  .sv-process__index   { left: 24px; font-size: 1.5rem; }
  .sv-prep__card       { padding: 24px 22px 24px 52px; }
  .sv-prep__num        { left: 22px; top: 24px; }
  .sv-price__card      { padding: 40px 28px; }
  .sv-btn              { width: 100%; padding: 18px 32px; }
  .sv-btn--lg          { padding: 20px 32px; }
}
