/* =============================================
   PRO МОБИЛЬНЫЙ КОНТЕНТ 4.0
   Только мобильная версия (до 480px)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Cinzel+Decorative:wght@400;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --gold:       #C9A84C;
  --gold-light: #F0D080;
  --gold-dark:  #7A5A10;
  --white:      #FFFFFF;
  --white-dim:  rgba(255,255,255,0.88);
  --gray-box:   rgba(50,50,50,0.82);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: var(--white);
  overflow-x: hidden;
  max-width: 480px;
  margin: 0 auto;
}

/* =============================================
   НАВИГАЦИЯ
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 1000;
  background: #000;
  padding: 10px 20px;
  padding-top: max(10px, env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
nav::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 300px;
  background: #000;
}
nav .logo {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
}
nav ul { display:flex; gap:14px; list-style:none; }
nav ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .3s;
}
nav ul a:hover { color: var(--gold); }

/* =============================================
   СЕКЦИИ
   Высота = пропорции слайда 1080×1461
   Нет пустого места — контент заполняет слайд
   ============================================= */
.section {
  position: relative;
  /* портретная пропорция слайда */
  min-height: calc(100vw * 1.352);
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  z-index: 1;
}

/* Контент сверху вниз, как в слайде */
.section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 62px 26px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.section-content.centered {
  align-items: center;
  text-align: center;
}

/* =============================================
   ЗАГОЛОВКИ
   ============================================= */

/* Главный золотой заголовок */
.title-gold {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold-light);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow:
    0 0 40px rgba(201,168,76,0.4),
    0 2px 8px rgba(0,0,0,0.9);
}

.title-gold .pro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  font-size: 1.15em;
}

/* Белый заголовок (тариф) */
.title-white {
  font-family: 'Cinzel Decorative', serif;
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

/* Подзаголовок секции */
.subtitle {
  font-family: 'Montserrat', sans-serif;
  color: var(--white-dim);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.65;
}

/* Текст-вступление (слайд 1) */
.intro-text {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.95);
}

/* Слайд 1 — подпись внизу */
.hero-bottom {
  margin-top: auto;
  padding-bottom: 12px;
}

/* =============================================
   БЕЙДЖИ ТАРИФОВ
   ============================================= */
.tariff-badges {
  display: flex;
  gap: 5px;
  margin: 2px 0 18px;
  flex-wrap: wrap;
}
.badge {
  border: 1px solid rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.45);
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  padding: 4px 9px;
  text-transform: uppercase;
  font-weight: 600;
}
.badge.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  border-color: var(--gold);
}

/* =============================================
   СПИСОК СО СТРЕЛКАМИ → (слайд 2)
   ============================================= */
.arrow-list { list-style:none; width:100%; margin-top:6px; }
.arrow-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  line-height: 1.55;
}
.arrow-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: -1px;
}

/* =============================================
   СПИСОК С ЧИСЛАМИ 1,2,3 (слайд 3)
   ============================================= */
.numbered-list { list-style:none; width:100%; margin-top:6px; }
.numbered-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  line-height: 1.6;
}
.numbered-list li .num {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  width: 46px;
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}

/* =============================================
   ПЛАШКИ С ТЕКСТОМ (слайд 4)
   ============================================= */
.text-boxes { display:flex; flex-direction:column; gap:9px; width:100%; margin-top:10px; }
.text-box {
  border: 1px solid rgba(201,168,76,0.35);
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  line-height: 1.65;
}

/* =============================================
   ПРОСТОЙ СПИСОК с ■ (слайды 5,8,10...)
   ============================================= */
.simple-list { list-style:none; width:100%; margin-top:8px; }
.simple-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1.3;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.simple-list li::before {
  content: '■';
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 7px;
}

/* =============================================
   СПИСОК ■ + ЗАГОЛОВОК + ТЕКСТ (слайды 7,9...)
   ============================================= */
.bullet-list { list-style:none; width:100%; margin-top:8px; }
.bullet-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.bullet-list li::before {
  content: '■';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 5px;
}
.bullet-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 4px;
  line-height: 1.25;
}
.bullet-body {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.4px;
  line-height: 1.7;
}

/* =============================================
   БЛОК РЕЗУЛЬТАТА
   ============================================= */
.result-box {
  background: var(--gray-box);
  border-radius: 3px;
  padding: 16px 18px;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: var(--white-dim);
  line-height: 1.75;
  text-align: center;
  width: 100%;
}

/* =============================================
   ГАРАНТИЯ (слайд 6)
   ============================================= */
.guarantee-box {
  border: 1px solid rgba(201,168,76,0.5);
  padding: 20px 22px;
  margin-top: 18px;
  text-align: center;
  width: 100%;
}
.guarantee-box p {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.8;
}
.guarantee-box .gold-italic {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-top: 12px;
  line-height: 1.4;
}

/* =============================================
   ТАРИФЫ — новый стиль
   ============================================= */

/* Название тарифа в рамке */
.tariff-name {
  display: block;
  border: 1px solid rgba(201,168,76,0.55);
  background: rgba(15,10,3,0.7);
  padding: 10px 36px;
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--white);
  text-align: center;
  margin: 10px 0 0;
  width: 100%;
}

/* Основная карточка тарифа */
.tariff-card {
  border: 1px solid rgba(201,168,76,0.5);
  background: rgba(10,7,2,0.88);
  padding: 20px 20px 16px;
  margin-top: 0;
  width: 100%;
}
.tariff-card ul { list-style: none; margin-bottom: 4px; }
.tariff-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  letter-spacing: 0.3px;
}
.tariff-card ul li::before {
  content: '+';
  font-weight: 900;
  font-size: 15px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
}

/* Пункт НЕ входит в тариф */
.tariff-card ul li.excluded {
  color: rgba(201,168,76,0.3);
  font-weight: 400;
  text-decoration: none;
  opacity: 1;
}
.tariff-card ul li.excluded::before {
  content: '';
  width: 9px;
  flex-shrink: 0;
}

/* Блок цены внутри карточки */
.price-box {
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 14px 0 0;
  margin-top: 12px;
  text-align: center;
}
.price-sale {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
.price-full {
  font-family: 'Cinzel', serif;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Пункт тариф — не входит в пакет (старый класс, оставим совместимость) */
.tariff-card ul li.excluded { }

/* =============================================
   КНОПКА CTA
   ============================================= */
.cta-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 36px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: opacity .3s;
}
.cta-btn:hover { opacity:.82; }

/* Вторая кнопка — контурная */
.cta-btn-outline {
  display: inline-block;
  margin-top: 10px;
  padding: 13px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all .3s;
  background: transparent;
}
.cta-btn-outline:hover { background: rgba(201,168,76,0.1); }

/* Блок кнопок тарифа */
.tariff-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 4px;
}

/* Текст рассрочки */
.installment-text {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 14px;
  line-height: 1.7;
  width: 100%;
}
.installment-text span {
  color: var(--gold);
}

/* Пункт тарифа — не входит в пакет */
.tariff-card ul li.excluded {
  opacity: 0.28;
  text-decoration: line-through;
  font-weight: 400;
}

/* ФУТЕР */
footer {
  background:#000;
  border-top:1px solid #1e1e1e;
  padding:28px 26px;
  text-align:center;
}
