/* =============================================
   ЛЕНДИНГ ОЛЬГИ АРАСЛАНОВОЙ — ВЕДУЩАЯ МЕРОПРИЯТИЙ
   Стиль: Тёмный editorial / glassmorphism luxury
   ============================================= */

/* --- CSS Variables / Дизайн-система --- */
:root {
  --color-bg: #1E1E24;
  --color-bg-alt: #2A2D4E;
  --color-text: #F5F0E8;
  --color-text-muted: rgba(245, 240, 232, 0.6);
  --color-text-dim: rgba(245, 240, 232, 0.5);
  --color-text-faint: rgba(245, 240, 232, 0.4);

  --color-gold: #D4A855;
  --color-orange: #F5A623;
  --color-purple: #A855F7;
  --color-cyan: #22D3EE;
  --color-pink: #FF6B6B;
  --color-green: #10B981;
  --color-lavender: #9B8AA8;

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);

  --gradient-cta: linear-gradient(to right, #F5A623, #FF6B6B);
  --gradient-cta-hover: linear-gradient(to right, #ff9d2e, #ff7a7a);
  --gradient-accent: linear-gradient(to right, #F5A623, #A855F7, #22D3EE);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1280px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
  --duration-slower: 0.8s;

  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Анимации появления --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }
.fade-in-delay-4 { transition-delay: 0.6s; }

/* =============================================
   БЛОК 1: HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-photo.jpg');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 15, 25, 0.95) 0%,
    rgba(15, 15, 25, 0.85) 25%,
    rgba(15, 15, 25, 0.5) 45%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 75%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 112px;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding-left: 96px;
  padding-right: 96px;
}

.hero__text {
  max-width: 520px;
  text-align: left;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__title-accent {
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--gradient-cta);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) ease;
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.3);
  text-decoration: none;
  width: fit-content;
}

.btn--hero:hover {
  background: var(--gradient-cta-hover);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero__stars {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-normal) ease;
  animation: hero-bounce 2s ease-in-out infinite;
}

.hero__scroll:hover {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- HERO Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .hero__content {
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 96px;
  }
  .hero__text { max-width: 480px; }
}

/* --- HERO Adaptive: Mobile --- */
@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(15, 15, 25, 0.6) 0%,
      rgba(15, 15, 25, 0.8) 50%,
      rgba(15, 15, 25, 0.95) 100%
    );
  }
  .hero__content {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    justify-content: center;
  }
  .hero__text { max-width: 100%; }
  .hero__title { font-size: 30px; margin-bottom: 20px; }
  .hero__subtitle { font-size: 15px; margin-bottom: 28px; }
  .btn--hero { width: 100%; padding: 16px 32px; font-size: 15px; }
  .hero__stats { justify-content: center; font-size: 13px; }
  .hero__scroll { bottom: 24px; }
}

/* =============================================
   БЛОК 2: СЕГМЕНТАЦИЯ
   ============================================= */
.segment {
  position: relative;
  padding: 96px 24px 128px;
  background-color: var(--color-bg);
  overflow: hidden;
}

/* Glow эффекты фона */
.segment__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.segment__glow--1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    ellipse at center,
    rgba(155, 138, 168, 0.15),
    rgba(42, 45, 78, 0.25) 40%,
    rgba(212, 168, 85, 0.10) 70%,
    transparent 100%
  );
}

.segment__glow--2 {
  top: 33%;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.10),
    rgba(139, 92, 246, 0.10) 50%,
    transparent 100%
  );
}

.segment__inner {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
}

/* Заголовок */
.segment__header {
  text-align: center;
  margin-bottom: 64px;
}

.segment__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

.segment__title-accent {
  font-weight: 600;
  font-style: italic;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Сетка карточек */
.segment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Карточка */
.segment__card {
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(2px);
  border: 1px solid var(--glass-border);
  background-color: var(--glass-bg);
  transition: all 0.5s ease;
}

.segment__card--pink {
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.125),
              0 4px 16px rgba(0, 0, 0, 0.2);
}

.segment__card--purple {
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.125),
              0 4px 16px rgba(0, 0, 0, 0.2);
}

.segment__card--cyan {
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.125),
              0 4px 16px rgba(0, 0, 0, 0.2);
}

.segment__card:hover {
  background-color: var(--glass-bg-hover);
  transform: translateY(-4px);
}

/* Иконка */
.segment__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s ease;
}

.segment__icon--pink {
  background-color: rgba(255, 107, 107, 0.08);
  color: var(--color-pink);
}

.segment__icon--purple {
  background-color: rgba(168, 85, 247, 0.08);
  color: var(--color-purple);
}

.segment__icon--cyan {
  background-color: rgba(34, 211, 238, 0.08);
  color: var(--color-cyan);
}

/* Заголовок карточки */
.segment__card-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* Текст карточки */
.segment__card-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* --- СЕГМЕНТАЦИЯ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .segment {
    padding: 80px 24px 96px;
  }

  .segment__header {
    margin-bottom: 48px;
  }

  .segment__grid {
    gap: 20px;
  }

  .segment__card {
    padding: 28px 32px;
  }
}

/* --- СЕГМЕНТАЦИЯ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .segment {
    padding: 64px 16px 80px;
  }

  .segment__header {
    margin-bottom: 40px;
  }

  .segment__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .segment__card {
    padding: 28px 24px;
  }

  .segment__card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .segment__glow--1,
  .segment__glow--2 {
    display: none;
  }
}

/* =============================================
   БЛОК 3: БОЛИ / СТРАХИ
   ============================================= */
.fears {
  position: relative;
  padding: 96px 24px 128px;
  overflow: hidden;
}

.fears__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt), var(--color-bg));
}

.fears__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.fears__glow--1 {
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  background: rgba(249, 115, 22, 0.08);
}

.fears__glow--2 {
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(251, 146, 60, 0.06);
}

.fears__inner {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
}

/* Заголовок */
.fears__header {
  text-align: center;
  margin-bottom: 40px;
}

.fears__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

.fears__title-accent {
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(to right, #F97316, #FB923C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fears__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text-dim);
  margin-top: 24px;
}

/* Мини-заголовок "Узнаёте" */
.fears__label {
  text-align: center;
  margin-bottom: 40px;
}

.fears__label p {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--color-text);
}

.fears__label-accent {
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(to right, #F97316, #FB923C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Сетка карточек */
.fears__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Карточка */
.fears__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  background-color: var(--glass-bg);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.1);
  transition: all var(--duration-normal) ease;
}

.fears__card--accent {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.2);
}

.fears__card:hover {
  background-color: var(--glass-bg-hover);
  transform: translateY(-2px);
}

/* Иконка */
.fears__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(249, 115, 22, 0.15);
  color: #F97316;
}

.fears__card--accent .fears__icon {
  background-color: rgba(249, 115, 22, 0.2);
}

/* Текст карточки */
.fears__card-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #F5F5F5;
}

/* --- БОЛИ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .fears {
    padding: 80px 24px 96px;
  }

  .fears__header {
    margin-bottom: 32px;
  }

  .fears__label {
    margin-bottom: 32px;
  }

  .fears__card {
    padding: 24px;
  }

  .fears__card-text {
    font-size: 16px;
  }
}

/* --- БОЛИ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .fears {
    padding: 64px 16px 80px;
  }

  .fears__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fears__card {
    padding: 24px 20px;
  }

  .fears__card-text {
    font-size: 15px;
  }

  .fears__subtitle {
    font-size: 16px;
  }

  .fears__glow--1,
  .fears__glow--2 {
    display: none;
  }
}

/* =============================================
   БЛОК 4: РЕШЕНИЕ
   ============================================= */
.solution {
  position: relative;
  padding: 96px 24px 128px;
  background-color: var(--color-bg);
  overflow: hidden;
}

.solution__glow {
  position: absolute;
  top: 0;
  left: 33%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(155, 138, 168, 0.12),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.solution__inner {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
}

/* Заголовок */
.solution__header {
  text-align: center;
  margin-bottom: 64px;
}

.solution__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

.solution__title-accent {
  font-weight: 600;
  font-style: italic;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Сетка карточек */
.solution__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Карточка */
.solution__card {
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  background-color: var(--glass-bg);
  transition: all var(--duration-normal) ease;
}

.solution__card:nth-child(1) {
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.08), 0 4px 16px rgba(0,0,0,0.2);
}
.solution__card:nth-child(2) {
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.08), 0 4px 16px rgba(0,0,0,0.2);
}
.solution__card:nth-child(3) {
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.08), 0 4px 16px rgba(0,0,0,0.2);
}
.solution__card:nth-child(4) {
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.08), 0 4px 16px rgba(0,0,0,0.2);
}

.solution__card:hover {
  background-color: var(--glass-bg-hover);
  transform: translateY(-4px);
}

/* Иконка */
.solution__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--duration-normal) ease;
}

.solution__icon--orange {
  background-color: rgba(245, 166, 35, 0.08);
  color: var(--color-orange);
}
.solution__icon--purple {
  background-color: rgba(168, 85, 247, 0.08);
  color: var(--color-purple);
}
.solution__icon--cyan {
  background-color: rgba(34, 211, 238, 0.08);
  color: var(--color-cyan);
}
.solution__icon--pink {
  background-color: rgba(255, 107, 107, 0.08);
  color: var(--color-pink);
}

/* Заголовок карточки */
.solution__card-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* Текст карточки */
.solution__card-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* Цитата */
.solution__quote {
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(155, 138, 168, 0.1);
}

.solution__quote-text {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-lavender);
  line-height: 1.5;
}

.solution__quote-author {
  font-size: 12px;
  color: rgba(155, 138, 168, 0.5);
  margin-top: 8px;
}

/* --- РЕШЕНИЕ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .solution {
    padding: 80px 24px 96px;
  }

  .solution__header {
    margin-bottom: 48px;
  }

  .solution__card {
    padding: 28px 32px;
  }

  .solution__card-title {
    font-size: 20px;
  }
}

/* --- РЕШЕНИЕ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .solution {
    padding: 64px 16px 80px;
  }

  .solution__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution__card {
    padding: 24px 20px;
  }

  .solution__card-title {
    font-size: 18px;
  }

  .solution__card-text {
    font-size: 14px;
  }

  .solution__glow {
    display: none;
  }
}

/* =============================================
   БЛОК 5: ОБ ОЛЬГЕ
   ============================================= */
.about {
  position: relative;
  padding: 96px 24px 128px;
  overflow: hidden;
}

.about__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt), var(--color-bg));
}

.about__glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: rgba(212, 168, 85, 0.08);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.about__inner {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
}

/* Заголовок */
.about__header {
  text-align: center;
  margin-bottom: 48px;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

.about__title-accent {
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
}

/* Контент: фото + текст */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Фото */
.about__photo-wrap {
  position: relative;
}

.about__photo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(212, 168, 85, 0.2), rgba(155, 138, 168, 0.2));
  border-radius: var(--radius-xl);
  filter: blur(24px);
}

.about__photo {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

/* Текст */
.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.7);
}

.about__accent {
  font-size: 20px !important;
  font-weight: 400 !important;
  color: var(--color-gold) !important;
  padding-top: 16px;
}

/* --- ОБ ОЛЬГЕ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .about {
    padding: 80px 24px 96px;
  }

  .about__content {
    gap: 36px;
  }

  .about__text p {
    font-size: 16px;
  }

  .about__accent {
    font-size: 18px !important;
  }
}

/* --- ОБ ОЛЬГЕ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .about {
    padding: 64px 16px 80px;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .about__photo-wrap {
    display: flex;
    justify-content: center;
  }

  .about__text p {
    font-size: 15px;
  }

  .about__accent {
    font-size: 17px !important;
  }

  .about__glow {
    display: none;
  }
}

/* =============================================
   БЛОК 6: ФОРМАТ РАБОТЫ
   ============================================= */
.package {
  position: relative;
  padding: 96px 24px 128px;
  background-color: var(--color-bg);
  overflow: hidden;
}

.package__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse at center,
    rgba(155, 138, 168, 0.10),
    rgba(212, 168, 85, 0.05) 50%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.package__inner {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
}

/* Заголовок */
.package__header {
  text-align: center;
  margin-bottom: 64px;
}

.package__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

.package__title-accent {
  font-weight: 600;
  font-style: italic;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Карточка-контейнер */
.package__card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(245,166,35,0.2), rgba(168,85,247,0.2), rgba(34,211,238,0.2)) 1;
  box-shadow: 0 0 60px rgba(245, 166, 35, 0.08);
}

/* Сетка пунктов */
.package__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  row-gap: 24px;
}

/* Пункт */
.package__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Галочка */
.package__check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-green);
}

.package__item p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text);
}

/* --- ФОРМАТ РАБОТЫ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .package {
    padding: 80px 24px 96px;
  }

  .package__header {
    margin-bottom: 48px;
  }

  .package__card {
    padding: 32px 36px;
  }

  .package__grid {
    column-gap: 32px;
    row-gap: 20px;
  }

  .package__item p {
    font-size: 16px;
  }
}

/* --- ФОРМАТ РАБОТЫ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .package {
    padding: 64px 16px 80px;
  }

  .package__card {
    padding: 28px 24px;
    border-image: none;
    border: 1px solid var(--glass-border);
  }

  .package__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .package__item p {
    font-size: 15px;
  }

  .package__glow {
    display: none;
  }
}

/* =============================================
   БЛОК 7: РЕЗУЛЬТАТ
   ============================================= */
.result {
  position: relative;
  padding: 96px 24px 128px;
  overflow: hidden;
}

.result__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt), var(--color-bg));
}

.result__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: rgba(155, 138, 168, 0.10);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.result__inner {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
}

/* Заголовок */
.result__header {
  text-align: center;
  margin-bottom: 64px;
}

.result__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

.result__title-accent {
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
}

/* Таймлайн */
.result__timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}

/* Шаг */
.result__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: all var(--duration-normal) ease;
}

.result__step:nth-child(1) {
  box-shadow: 0 8px 32px rgba(147, 112, 219, 0.06);
}
.result__step:nth-child(2) {
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.06);
}
.result__step:nth-child(3) {
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.06);
}

.result__step:hover {
  background-color: var(--glass-bg-hover);
  transform: translateY(-2px);
}

/* Иконка шага */
.result__step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background-color: rgba(212, 168, 85, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

/* Контент шага */
.result__step-content {
  flex: 1;
}

.result__step-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.result__step-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* KPI блок */
.result__kpi {
  text-align: center;
  padding: 40px;
  border-radius: var(--radius-xl);
  background-color: rgba(212, 168, 85, 0.05);
  border: 1px solid rgba(212, 168, 85, 0.2);
}

.result__kpi-icon {
  color: var(--color-gold);
  margin: 0 auto 16px;
  display: block;
}

.result__kpi-text {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text);
}

.result__kpi-accent {
  font-weight: 600;
  color: var(--color-gold);
}

.result__kpi-dim {
  color: var(--color-text-muted);
}

/* --- РЕЗУЛЬТАТ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .result {
    padding: 80px 24px 96px;
  }

  .result__header {
    margin-bottom: 48px;
  }

  .result__timeline {
    gap: 24px;
    margin-bottom: 48px;
  }

  .result__step {
    padding: 28px;
  }

  .result__step-title {
    font-size: 20px;
  }

  .result__step-text {
    font-size: 16px;
  }

  .result__kpi {
    padding: 32px;
  }
}

/* --- РЕЗУЛЬТАТ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .result {
    padding: 64px 16px 80px;
  }

  .result__timeline {
    gap: 16px;
    margin-bottom: 40px;
  }

  .result__step {
    padding: 24px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .result__step-icon {
    width: 48px;
    height: 48px;
  }

  .result__step-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .result__step-text {
    font-size: 15px;
  }

  .result__kpi {
    padding: 24px 20px;
  }

  .result__glow {
    display: none;
  }
}

/* =============================================
   БЛОК 8: ОТЗЫВЫ
   ============================================= */
.reviews {
  position: relative;
  padding: 96px 24px 128px;
  background-color: var(--color-bg);
  overflow: hidden;
}

.reviews__glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 168, 85, 0.08),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.reviews__inner {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
}

/* Заголовок */
.reviews__header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

.reviews__title-accent {
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
}

/* Сетка отзывов */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Карточка отзыва */
.reviews__card {
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.08);
  transition: all 0.5s ease;
}

.reviews__card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background-color: var(--glass-bg-hover);
  transform: translateY(-4px);
}

/* Иконка кавычек */
.reviews__quote-icon {
  color: rgba(212, 168, 85, 0.3);
  margin-bottom: 24px;
  display: block;
}

/* Текст отзыва */
.reviews__text {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 24px;
}

/* Автор */
.reviews__author {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-lavender);
}

/* --- ОТЗЫВЫ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .reviews {
    padding: 80px 24px 96px;
  }

  .reviews__header {
    margin-bottom: 48px;
  }

  .reviews__card {
    padding: 28px 32px;
  }

  .reviews__text {
    font-size: 15px;
  }
}

/* --- ОТЗЫВЫ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .reviews {
    padding: 64px 16px 80px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews__card {
    padding: 24px 20px;
  }

  .reviews__quote-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
  }

  .reviews__text {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .reviews__glow {
    display: none;
  }
}

/* =============================================
   БЛОК 9: ЦЕНЫ
   ============================================= */
.pricing {
  position: relative;
  padding: 96px 24px 128px;
  overflow: hidden;
}

.pricing__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt), var(--color-bg));
}

.pricing__glow {
  position: absolute;
  top: 0;
  right: 33%;
  width: 600px;
  height: 600px;
  background: rgba(155, 138, 168, 0.08);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.pricing__inner {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
}

/* Заголовок */
.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

.pricing__title-accent {
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
}

/* Сетка ценовых карточек */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* Ценовая карточка */
.pricing__card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.08);
  transition: all 0.5s ease;
}

.pricing__card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background-color: var(--glass-bg-hover);
  transform: translateY(-4px);
}

.pricing__card-name {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

.pricing__card-price {
  font-size: 30px;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.pricing__card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-dim);
}

/* Пояснительные блоки */
.pricing__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing__block {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.pricing__block--what {
  background-color: rgba(42, 45, 78, 0.3);
  border: 1px solid rgba(155, 138, 168, 0.1);
}

.pricing__block--note {
  background-color: rgba(212, 168, 85, 0.05);
  border: 1px solid rgba(212, 168, 85, 0.2);
}

.pricing__block-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
}

.pricing__block-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 16px;
}

.pricing__block-text:last-child {
  margin-bottom: 0;
}

/* Чеклист */
.pricing__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing__check-svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.pricing__check-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* --- ЦЕНЫ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .pricing {
    padding: 80px 24px 96px;
  }

  .pricing__header {
    margin-bottom: 48px;
  }

  .pricing__grid {
    gap: 20px;
    margin-bottom: 48px;
  }

  .pricing__card {
    padding: 28px;
  }

  .pricing__card-name {
    font-size: 20px;
  }

  .pricing__card-price {
    font-size: 26px;
  }

  .pricing__block {
    padding: 32px;
  }
}

/* --- ЦЕНЫ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .pricing {
    padding: 64px 16px 80px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .pricing__card {
    padding: 24px 20px;
  }

  .pricing__card-name {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .pricing__card-price {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .pricing__details {
    gap: 24px;
  }

  .pricing__block {
    padding: 24px 20px;
  }

  .pricing__block-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .pricing__block-text {
    font-size: 14px;
  }

  .pricing__check-item p {
    font-size: 14px;
  }

  .pricing__glow {
    display: none;
  }
}

/* =============================================
   БЛОК 10: FAQ
   ============================================= */
.faq {
  position: relative;
  padding: 96px 24px 128px;
  background-color: var(--color-bg);
  overflow: hidden;
}

.faq__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(155, 138, 168, 0.08),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.faq__inner {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
}

/* Заголовок */
.faq__header {
  text-align: center;
  margin-bottom: 64px;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
}

.faq__title-accent {
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
}

/* Контейнер-карточка */
.faq__card {
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Элемент FAQ */
.faq__item {
  border-bottom: 1px solid rgba(155, 138, 168, 0.1);
}

.faq__item--last {
  border-bottom: none;
}

/* Вопрос (кнопка) */
.faq__question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-text);
  transition: color var(--duration-normal) ease;
}

.faq__question:hover {
  color: var(--color-gold);
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--color-lavender);
  transition: transform var(--duration-normal) ease;
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

/* Ответ */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding: 0 0 24px 0;
}

.faq__answer p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Футер FAQ */
.faq__footer {
  text-align: center;
  margin-top: 40px;
}

.faq__footer-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.faq__footer-link {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-gold);
  transition: color var(--duration-normal) ease;
  text-decoration: none;
}

.faq__footer-link:hover {
  color: #c09845;
}

/* --- FAQ Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .faq {
    padding: 80px 24px 96px;
  }

  .faq__header {
    margin-bottom: 48px;
  }

  .faq__card {
    padding: 28px 32px;
  }

  .faq__question {
    font-size: 16px;
    padding: 20px 0;
  }

  .faq__answer p {
    font-size: 15px;
  }
}

/* --- FAQ Adaptive: Mobile --- */
@media (max-width: 768px) {
  .faq {
    padding: 64px 16px 80px;
  }

  .faq__card {
    padding: 20px;
  }

  .faq__question {
    font-size: 15px;
    padding: 18px 0;
  }

  .faq__answer p {
    font-size: 14px;
  }

  .faq__footer {
    margin-top: 32px;
  }

  .faq__glow {
    display: none;
  }
}

/* =============================================
   БЛОК 11: ФИНАЛЬНЫЙ CTA
   ============================================= */
.cta {
  position: relative;
  padding: 96px 24px 128px;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt), var(--color-bg));
}

.cta__glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(212, 168, 85, 0.08);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
}

/* Заголовок */
.cta__header {
  text-align: center;
  margin-bottom: 48px;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 24px;
}

.cta__title-accent {
  font-weight: 600;
  font-style: italic;
  color: var(--color-gold);
}

.cta__subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Форма */
.cta__form-wrap {
  /* контейнер */
}

.cta__form {
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  background-color: rgba(42, 45, 78, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(155, 138, 168, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta__label {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
}

.cta__input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text);
  background-color: rgba(30, 30, 36, 0.5);
  border: 1px solid rgba(155, 138, 168, 0.2);
  border-radius: 12px;
  outline: none;
  transition: border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease;
  -webkit-appearance: none;
  appearance: none;
}

.cta__input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.cta__input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 85, 0.2);
}

.cta__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B8AA8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.cta__select option {
  background-color: var(--color-bg);
  color: var(--color-text);
}

.cta__textarea {
  resize: none;
  min-height: 120px;
}

/* Кнопка отправки */
.cta__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-cta);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) ease;
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.3);
}

.cta__submit:hover {
  background: var(--gradient-cta-hover);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}

/* Примечание */
.cta__note {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-faint);
  padding-top: 8px;
}

/* --- CTA Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .cta {
    padding: 80px 24px 96px;
  }

  .cta__header {
    margin-bottom: 40px;
  }

  .cta__subtitle {
    font-size: 16px;
  }

  .cta__form {
    padding: 28px 32px;
  }
}

/* --- CTA Adaptive: Mobile --- */
@media (max-width: 768px) {
  .cta {
    padding: 64px 16px 80px;
  }

  .cta__form {
    padding: 24px 20px;
  }

  .cta__form-row {
    grid-template-columns: 1fr;
  }

  .cta__subtitle {
    font-size: 15px;
  }

  .cta__glow {
    display: none;
  }
}

/* =============================================
   БЛОК 12: FOOTER
   ============================================= */
.footer {
  padding: 64px 24px;
  background-color: var(--color-bg);
  border-top: 1px solid rgba(155, 138, 168, 0.1);
}

.footer__inner {
  max-width: 1152px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

/* Имя */
.footer__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.footer__role {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-dim);
}

/* Заголовок колонки */
.footer__col-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* Ссылки */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-normal) ease;
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__link--static {
  cursor: default;
}

.footer__link--static:hover {
  color: var(--color-text-muted);
}

/* Нижняя строка */
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(155, 138, 168, 0.1);
  text-align: center;
}

.footer__bottom p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.3);
}

/* --- FOOTER Adaptive: Tablet --- */
@media (max-width: 1024px) {
  .footer {
    padding: 48px 24px;
  }

  .footer__grid {
    gap: 36px;
    margin-bottom: 36px;
  }
}

/* --- FOOTER Adaptive: Mobile --- */
@media (max-width: 768px) {
  .footer {
    padding: 40px 16px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__name {
    font-size: 20px;
  }
}
