/* ═══════════════════════════════════════════
   Лёд и Пламя — Premium SPA
   Визуальная концепция: «Тихая роскошь»
   ═══════════════════════════════════════════ */

:root {
  /* Палитра — из брендбука «Лёд и Пламя» */
  --bg:         #FFFBF7;
  --bg-section: #F5EDE0;
  --fire:       #DA3D26;
  --fire-coral: #E9512B;
  --fire-light-coral: #EF7D53;
  --fire-light: #FACEC1;
  --fire-dark:  #7C2413;
  --ice:        #5D98BC;
  --ice-bright: #81C3E0;
  --ice-light:  #D8EEFA;
  --ice-dark:   #275972;
  --gold:       #DA3D26;
  --gold-light: #FACEC1;
  --text:       #7C2413;
  --text-soft:  #8B6B5A;
  --text-muted: #B8A090;
  --border:     #ECD9C6;
  --white:      #FFFFFF;

  /* Типографика */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;

  /* Размеры */
  --container: 1320px;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Анимация — спокойная, уверенная */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s var(--ease-out);
  --transition-medium: 0.5s var(--ease);
}

/* ═══════ RESET ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 19px;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ═══════ КНОПКИ ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition-medium);
  white-space: nowrap;
}
.btn--fire {
  background: var(--fire);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(201, 64, 48, 0.25);
}
.btn--fire:hover {
  background: var(--fire-light-coral);
  box-shadow: 0 8px 32px rgba(218, 61, 38, 0.35);
  transform: translateY(-2px);
}
.btn--ice {
  background: var(--ice-light);
  color: var(--ice-dark);
  border: 1px solid #B8D4EC;
}
.btn--ice:hover {
  background: var(--ice);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--fire);
  color: var(--fire);
}
.btn--lg { padding: 14px 48px; font-size: 24px; }
.btn--full { width: 100%; }
.btn--center { display: flex; margin: 48px auto 0; }

/* ═══════ HEADER ═══════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
}
.header--scrolled {
  background: rgba(255, 251, 247, 0.94);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 40px rgba(44, 24, 16, 0.06);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  transition: color 0.5s;
}
.header--scrolled .header__logo { color: var(--text); text-shadow: none; }

.header__logo-img {
  width: 64px; height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  transition: width 0.5s var(--ease), height 0.5s var(--ease);
}
.header--scrolled .header__logo-img {
  width: 52px; height: 52px;
}

.header__nav {
  display: flex;
  gap: 36px;
}
.header__link {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
  transition: color 0.4s;
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--fire);
  transition: width 0.5s var(--ease-out);
}
.header__link:hover::after { width: 100%; }
.header--scrolled .header__link { color: var(--text-soft); text-shadow: none; }
.header--scrolled .header__link:hover { color: var(--fire); }

.header__actions { display: flex; align-items: center; gap: 20px; }
.header__phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}
.header--scrolled .header__phone { color: var(--text); text-shadow: none; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}
.header__burger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s;
}
.header--scrolled .header__burger span { background: var(--text); }

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.1s linear;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.50) 0%,
    rgba(44, 24, 16, 0.28) 40%,
    rgba(44, 24, 16, 0.55) 100%
  );
}
.hero__content {
  position: relative;
  text-align: center;
  color: var(--white);
  z-index: 2;
  max-width: 900px;
  will-change: transform;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(24px);
  border-radius: 50px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  animation: fadeInDown 1s var(--ease-out) 0.2s both;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--fire { background: var(--fire); }
.dot--ice  { background: var(--ice-bright); }

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
  text-shadow: 0 3px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s var(--ease-out) 0.4s both;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--fire-light-coral);
  text-shadow: 0 2px 30px rgba(239, 125, 83, 0.4);
}
.hero__subtitle {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.7;
  margin-bottom: 44px;
  animation: fadeInUp 1s var(--ease-out) 0.6s both;
}
.hero__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 0.8s both;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.5;
  animation: bounce 2.5s infinite;
  z-index: 2;
  transition: opacity 0.4s;
}
.hero__scroll:hover { opacity: 0.8; }

/* ═══════ WHY US ═══════ */
.why-us {
  padding: clamp(80px, 8vw, 120px) 0;
  background: var(--bg-section);
}
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: start;
}
.why-us__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fire-dark);
  margin-bottom: 20px;
}
.why-us__subtitle {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 380px;
}
.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-us__item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left 0.5s var(--ease-out);
}
.why-us__item:first-child {
  border-top: 1px solid var(--border);
}
.why-us__item:hover {
  padding-left: 12px;
}
.why-us__num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--fire);
  display: block;
  margin-bottom: 12px;
}
.why-us__item-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--fire-dark);
  margin-bottom: 10px;
  transition: color 0.4s;
}
.why-us__item:hover .why-us__item-title {
  color: var(--fire);
}
.why-us__item-text {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 520px;
}

/* Staggered animation */
.why-us__item[data-animate]:nth-child(2) { transition-delay: 0.12s; }
.why-us__item[data-animate]:nth-child(3) { transition-delay: 0.24s; }

/* ═══════ SECTIONS COMMON ═══════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 14px;
}
.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-header__subtitle {
  font-size: 20px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ═══════ SERVICES ═══════ */
.services {
  padding: clamp(80px, 8vw, 120px) 0;
}

/* Фильтр */
.services__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.filter-btn:hover {
  border-color: var(--fire);
  color: var(--fire);
}
.filter-btn--active {
  background: var(--fire);
  color: var(--white);
  border-color: var(--fire);
}

/* Сетка услуг */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* Карточка услуги — Premium */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.6s var(--ease-out);
  cursor: pointer;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 24, 16, 0.1);
  border-color: transparent;
}

/* Изображение с zoom-эффектом */
.service-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--bg-section);
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-card__img {
  transform: scale(1.05);
}

.service-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--fire-light) 0%, var(--ice-light) 100%);
}
.service-card__body {
  padding: 24px 28px 28px;
}
.service-card__category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card__category--fire  { color: var(--fire-coral); }
.service-card__category--ice   { color: var(--ice); }
.service-card__category--gold  { color: var(--fire-dark); }

.service-card__name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__desc {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.service-card__price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--fire);
}
.service-card__link {
  font-size: 16px;
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.4s;
}
.service-card:hover .service-card__link { color: var(--fire); }

/* ═══════ PROMOTIONS ═══════ */
.promotions {
  padding: clamp(80px, 8vw, 120px) 0;
  background: var(--bg-section);
}
.promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}
.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-out);
}
.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--fire-light-coral));
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(201, 64, 48, 0.1);
}
.promo-card__badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--fire-light);
  color: var(--fire);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.promo-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
}
.promo-card__text {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.promo-card__action { margin-top: auto; }

/* ═══════ SUBSCRIPTIONS ═══════ */
.subscriptions {
  padding: clamp(80px, 8vw, 120px) 0;
}
.subscriptions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}
.sub-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all 0.6s var(--ease-out);
}
.sub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 24, 16, 0.08);
}
.sub-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.sub-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.sub-card__price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.sub-card__desc {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.sub-card__conditions {
  font-size: 14px;
  color: var(--text-muted);
  padding: 12px 16px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

/* ═══════ ABOUT ═══════ */
.about {
  padding: clamp(80px, 8vw, 120px) 0;
  background: var(--bg-section);
}
.about__inner {
  max-width: 780px;
  margin: 0 auto;
}
.about__text p {
  font-size: 19px;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about__stats {
  display: flex;
  gap: 56px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about__stat { text-align: center; }
.about__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--fire);
  margin-bottom: 6px;
}
.about__stat-label {
  font-size: 15px;
  color: var(--text-muted);
}

/* ═══════ CTA BANNER ═══════ */
.cta-banner {
  padding: clamp(72px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--text) 0%, #4A2A1A 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,64,48,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,110,170,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
}
.cta-banner__text {
  font-size: 19px;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Форма */
.cta-form {
  display: flex;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form__input, .cta-form__select {
  flex: 1;
  min-width: 220px;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 17px;
  backdrop-filter: blur(12px);
  outline: none;
  transition: border-color 0.4s;
}
.cta-form__input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form__input:focus, .cta-form__select:focus {
  border-color: var(--fire-coral);
  box-shadow: 0 0 0 3px rgba(233, 81, 43, 0.08);
}
.cta-form__select option { color: var(--text); background: var(--white); }
.cta-form__privacy {
  font-size: 13px;
  opacity: 0.45;
  margin-top: 20px;
  width: 100%;
}
.cta-form__privacy a { text-decoration: underline; }

/* ═══════ CONTACTS ═══════ */
.contacts {
  padding: clamp(80px, 8vw, 120px) 0;
}
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contacts__item {
  margin-bottom: 24px;
}
.contacts__item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contacts__item p {
  font-size: 18px;
}
.contacts__item a {
  color: var(--fire);
  transition: opacity 0.4s;
}
.contacts__item a:hover { opacity: 0.7; }
.contacts__socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.contacts__social {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all 0.5s var(--ease-out);
}
.contacts__social:hover {
  background: var(--fire);
  color: var(--white);
  transform: translateY(-2px);
}
.contacts__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  background: var(--bg-section);
}
.contacts__map iframe {
  width: 100%; height: 100%;
}

/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 36px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
}
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 16px;
  transition: color 0.4s;
}
.footer__links a:hover { color: var(--white); }
.footer__legal {
  font-size: 13px;
  opacity: 0.45;
}
.footer__legal p + p { margin-top: 4px; }

/* ═══════ MODAL ═══════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
}
.modal--open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.55);
  backdrop-filter: blur(12px);
}
.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.5s var(--ease-out);
}
.modal--open .modal__content {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--text);
  z-index: 2;
  transition: background 0.3s;
}
.modal__close:hover { background: var(--white); }
.modal__img {
  height: 320px;
  background: linear-gradient(135deg, var(--fire-light) 0%, var(--ice-light) 100%);
  background-size: cover;
  background-position: center;
}
.modal__body { padding: 32px; }
.modal__category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 10px;
  display: block;
}
.modal__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 14px;
}
.modal__price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--fire);
  margin-bottom: 24px;
}
.modal__description {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 28px;
  white-space: pre-line;
}

/* ═══════ FLOATING CTA ═══════ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--fire);
  color: var(--white);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(201, 64, 48, 0.35);
  transition: all 0.5s var(--ease-out);
}
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 64, 48, 0.45);
}

/* ═══════ ANIMATIONS ═══════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.8s var(--ease-out);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card[data-animate]:nth-child(2) { transition-delay: 0.06s; }
.service-card[data-animate]:nth-child(3) { transition-delay: 0.12s; }
.service-card[data-animate]:nth-child(4) { transition-delay: 0.18s; }
.service-card[data-animate]:nth-child(5) { transition-delay: 0.24s; }
.service-card[data-animate]:nth-child(6) { transition-delay: 0.30s; }

/* Directions staggered */
.direction-panel[data-animate] {
  transition-duration: 0.9s;
}
.direction-panel[data-animate]:nth-child(2) { transition-delay: 0.15s; }
.direction-panel[data-animate]:nth-child(3) { transition-delay: 0.3s; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .contacts__inner { grid-template-columns: 1fr; }
  .contacts__map { height: 320px; }

  .why-us__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 18px; }

  .header__nav { display: none; }
  .header__phone { display: none; }
  .header__burger { display: flex; }

  /* Mobile menu */
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 99;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .header__nav.open .header__link {
    font-size: 22px;
    color: var(--text);
    text-shadow: none;
  }

  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(40px, 10vw, 60px); }
  .hero__subtitle { font-size: 19px; }
  .hero__buttons { flex-direction: column; align-items: center; }

  .direction-panel__image {
    min-height: 280px;
    max-height: 40vh;
  }
  .direction-panel__content {
    padding: 40px 24px 48px;
  }
  .direction-panel__num {
    font-size: 56px;
    margin-bottom: 12px;
  }

  .services__grid { grid-template-columns: 1fr; }
  .promotions__grid { grid-template-columns: 1fr; }
  .subscriptions__grid { grid-template-columns: 1fr; }

  .about__stats { gap: 28px; }
  .about__stat-num { font-size: 32px; }

  .cta-form { flex-direction: column; }
  .cta-form__input, .cta-form__select { min-width: auto; }

  .floating-cta span { display: none; }
  .floating-cta { padding: 18px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .services__filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn { flex-shrink: 0; }

  .direction-panel__image {
    min-height: 240px;
  }
}

/* ═══════ ANIMATIONS & PREMIUM EFFECTS ═══════ */

/* Scroll reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered cards */
.service-card[data-animate]:nth-child(2) { transition-delay: 0.08s; }
.service-card[data-animate]:nth-child(3) { transition-delay: 0.16s; }
.service-card[data-animate]:nth-child(4) { transition-delay: 0.2s; }
.service-card[data-animate]:nth-child(5) { transition-delay: 0.24s; }
.service-card[data-animate]:nth-child(6) { transition-delay: 0.28s; }

.why-us__item[data-animate]:nth-child(2) { transition-delay: 0.15s; }
.why-us__item[data-animate]:nth-child(3) { transition-delay: 0.3s; }

/* Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* Service card hover — zoom photo */
.service-card { overflow: hidden; }
.service-card__img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card__img {
  transform: scale(1.05);
}

/* Hero parallax support */
.hero__video {
  transform: scale(1.08);
}
.hero__content {
  will-change: transform;
}

/* CTA form focus */
.cta-form__input:focus,
.cta-form__select:focus {
  border-color: #E9512B;
  box-shadow: 0 0 0 3px rgba(233, 81, 43, 0.1);
}

/* Promo card hover */
.promo-card:hover {
  box-shadow: 0 16px 48px rgba(124, 36, 19, 0.1);
}

/* Why-us item hover */
.why-us__item:hover .why-us__item-title {
  color: #DA3D26;
}

/* ═══════ ICE & FLAME BRAND IDENTITY ═══════ */

/* Градиентная разделительная линия между секциями — от огня к льду */
.brand-divider {
  height: 3px;
  background: linear-gradient(90deg, 
    #DA3D26 0%, #E9512B 20%, #EF7D53 35%, 
    #FACEC1 50%, 
    #D8EEFA 65%, #81C3E0 80%, #275972 100%
  );
  background-size: 200% 100%;
  animation: brandFlow 8s ease-in-out infinite alternate;
}
@keyframes brandFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Цветовое кодирование карточек по типу */
.service-card[data-color="ice"] { border-bottom: 2px solid #D8EEFA; }
.service-card[data-color="ice"]:hover { box-shadow: 0 12px 48px rgba(93, 152, 188, 0.12); }
.service-card[data-color="fire"] { border-bottom: 2px solid #FACEC1; }
.service-card[data-color="fire"]:hover { box-shadow: 0 12px 48px rgba(218, 61, 38, 0.1); }

/* Бейдж Хит */
.service-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.service-card__badge--hit {
  background: rgba(218, 61, 38, 0.9);
  color: white;
}
.service-card__badge--new {
  background: rgba(93, 152, 188, 0.9);
  color: white;
}

/* Поиск по услугам */
.services__search {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.services__search-input {
  width: 100%;
  max-width: 480px;
  padding: 16px 24px;
  border: 1.5px solid #ECD9C6;
  border-radius: 50px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  background: white;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.services__search-input:focus {
  border-color: #DA3D26;
  box-shadow: 0 0 0 3px rgba(218, 61, 38, 0.08);
}
.services__search-input::placeholder {
  color: #B8A090;
}

/* Улучшенное модальное окно */
.modal__body { padding: 36px; }
.modal__description {
  white-space: normal;
}
.modal__description p,
.modal__description-block {
  margin-bottom: 16px;
  line-height: 1.8;
}
.modal__disclaimer {
  font-size: 13px;
  color: #B8A090;
  padding: 12px 16px;
  background: #F5EDE0;
  border-radius: 10px;
  margin-top: 16px;
  line-height: 1.5;
}
.modal__suitable {
  margin-top: 12px;
}
.modal__suitable-title {
  font-weight: 600;
  color: #7C2413;
  margin-bottom: 8px;
  font-size: 15px;
}
.modal__suitable li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
  font-size: 15px;
  color: #8B6B5A;
}
.modal__suitable li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #DA3D26;
}

/* Блок Рекомендуем */
.recommended {
  padding: 0 0 clamp(60px, 6vw, 80px);
}
.recommended__title {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  color: #7C2413;
  margin-bottom: 40px;
}
.recommended__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* Карточка По запросу — пояснение */
.service-card__price--request {
  font-size: 18px;
  color: #8B6B5A;
  font-style: italic;
}

/* Плавный скролл-индикатор fire→ice */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  z-index: 999;
  background: linear-gradient(90deg, #DA3D26, #E9512B, #81C3E0, #275972);
  transition: width 0.1s linear;
  width: 0%;
}

/* Секция О нас — тёплый/холодный акценты */
.about__stat-num {
  background: linear-gradient(135deg, #DA3D26, #81C3E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .services__search-input { font-size: 16px; padding: 14px 20px; }
  .recommended__grid { grid-template-columns: 1fr; }
}

/* ═══════ DECORATIVE BRAND ELEMENTS ═══════ */

/* Текстура морозного стекла для секции "Наши услуги" */
.services::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle at 70% 30%, rgba(129,195,224,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.services { position: relative; overflow: hidden; }

/* Тёплое свечение для секции "3 причины" */
.why-us::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(218,61,38,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.why-us { position: relative; overflow: hidden; }

/* Ледяное свечение справа */
.why-us::after {
  content: '';
  position: absolute;
  top: -50px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(129,195,224,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Декоративная снежинка / кристалл льда — SVG фон */
.ice-crystal {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
}

/* Иконки для "3 причин" */
.why-us__item::before {
  content: '';
  display: block;
  width: 48px; height: 48px;
  margin-bottom: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
  transition: opacity 0.4s, transform 0.4s;
}
.why-us__item:hover::before {
  opacity: 1;
  transform: translateY(-2px);
}
/* 01 — Профессионализм: руки мастера */
.why-us__item:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23DA3D26' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 4v8M24 36v8M4 24h8M36 24h8'/%3E%3Ccircle cx='24' cy='24' r='12'/%3E%3Ccircle cx='24' cy='24' r='4' fill='%23DA3D26' fill-opacity='0.15'/%3E%3Cpath d='M17 17l3 3M28 28l3 3M31 17l-3 3M20 28l-3 3' opacity='0.5'/%3E%3C/svg%3E");
}
/* 02 — Атмосфера: кристалл + волна */
.why-us__item:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%235D98BC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 32c4-4 8 0 12-4s8 0 12-4 8 0 12-4' opacity='0.4'/%3E%3Cpath d='M4 36c4-4 8 0 12-4s8 0 12-4 8 0 12-4' opacity='0.25'/%3E%3Cpath d='M24 6l6 10H18l6-10z' fill='%235D98BC' fill-opacity='0.1'/%3E%3Cpath d='M24 6l6 10H18l6-10z'/%3E%3Cpath d='M24 16v10' opacity='0.5'/%3E%3Ccircle cx='24' cy='24' r='3' fill='%235D98BC' fill-opacity='0.2'/%3E%3C/svg%3E");
}
/* 03 — Индивидуальность: отпечаток / сердце */
.why-us__item:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23DA3D26' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 42s-14-8-14-18c0-6 4-10 8-10 3 0 5 2 6 4 1-2 3-4 6-4 4 0 8 4 8 10 0 10-14 18-14 18z' fill='%23DA3D26' fill-opacity='0.08'/%3E%3Cpath d='M24 42s-14-8-14-18c0-6 4-10 8-10 3 0 5 2 6 4 1-2 3-4 6-4 4 0 8 4 8 10 0 10-14 18-14 18z'/%3E%3C/svg%3E");
}

/* Декоративные элементы между секциями */
.section-decor {
  text-align: center;
  padding: 32px 0;
  position: relative;
}
.section-decor svg {
  opacity: 0.15;
}

/* Тонкая текстура "замёрзшего стекла" поверх hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Фоновый паттерн для секции промо — лёгкий огненный узор */
.promotions::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse at 20% 50%, rgba(218,61,38,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.promotions { position: relative; }

/* Абонементы — ледяной акцент */
.subscriptions::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 350px; height: 350px;
  background: radial-gradient(circle at 80% 80%, rgba(93,152,188,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.subscriptions { position: relative; overflow: hidden; }

/* Фирменный разделитель с символом */
.brand-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 0;
}
.brand-symbol__line {
  height: 1px;
  width: 80px;
  transition: width 0.6s ease;
}
.brand-symbol__line--fire { background: linear-gradient(90deg, transparent, #DA3D26); }
.brand-symbol__line--ice { background: linear-gradient(90deg, #5D98BC, transparent); }
.brand-symbol__icon {
  width: 40px; height: 40px;
  opacity: 0.2;
}

/* Фильтр-кнопки — иконки категорий */
.filter-btn[data-category="Массаж"]::before { content: '♦ '; color: #DA3D26; }
.filter-btn[data-category="Соляная пещера"]::before { content: '❆ '; color: #5D98BC; }
.filter-btn[data-category="Уход за лицом"]::before { content: '✦ '; color: #DA3D26; }
.filter-btn[data-category="СПА-программы"]::before { content: '◈ '; color: #D4A84B; }
.filter-btn[data-category="Аппаратный уход"]::before { content: '⚙ '; color: #7C2413; }
.filter-btn[data-category="Обёртывания"]::before { content: '❋ '; color: #EF7D53; }
.filter-btn[data-category="Кедровая бочка"]::before { content: '♨ '; color: #DA3D26; }

/* Контакты — декоративный фон */
.contacts::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(218,61,38,0.04) 0%, transparent 50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.contacts { position: relative; }

/* Футер — градиентная верхняя граница */
.footer {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #DA3D26, #EF7D53, #FACEC1, #D8EEFA, #81C3E0, #275972) 1;
}

/* ═══════ ATMOSPHERIC BACKGROUNDS ═══════ */

/* Hero — тонкая текстура тёплого тумана */
.hero__overlay {
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(218,61,38,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(93,152,188,0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(44,24,16,0.45) 0%, rgba(44,24,16,0.30) 40%, rgba(44,24,16,0.50) 100%) !important;
}

/* Секция "3 причины" — мягкая дымка */
.why-us {
  background: 
    radial-gradient(ellipse at 10% 90%, rgba(218,61,38,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 10%, rgba(93,152,188,0.04) 0%, transparent 40%),
    var(--bg-section) !important;
}

/* Каталог — ледяной градиент справа */
.services {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(216,238,250,0.25) 0%, transparent 40%),
    radial-gradient(ellipse at 0% 100%, rgba(250,206,193,0.15) 0%, transparent 40%),
    var(--bg) !important;
}

/* CTA баннер — глубокий fire/ice */
.cta-banner {
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(218,61,38,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(37,89,114,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #2C1810 0%, #3A1A10 50%, #1A2A35 100%) !important;
}

/* ═══════ UNIFIED CTA BUTTONS ═══════ */

/* Основная кнопка — с тёплым свечением */
.btn--fire {
  background: linear-gradient(135deg, #DA3D26 0%, #E9512B 100%) !important;
  box-shadow: 0 4px 24px rgba(218,61,38,0.3) !important;
  position: relative;
  overflow: hidden;
}
.btn--fire::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn--fire:hover::after {
  width: 300px; height: 300px;
}
.btn--fire:hover {
  box-shadow: 0 8px 36px rgba(218,61,38,0.45) !important;
  transform: translateY(-2px);
}

/* Стеклянная кнопка — с мягким мерцанием */
.btn--glass:hover {
  background: rgba(255,255,255,0.25) !important;
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

/* Кнопка "Записаться" в хедере — пульс-рамка */
#headerCta {
  position: relative;
}
#headerCta::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50px;
  background: linear-gradient(135deg, #DA3D26, #E9512B, #EF7D53, #DA3D26);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  animation: headerCtaPulse 3s ease-in-out infinite;
}
@keyframes headerCtaPulse {
  0%, 100% { opacity: 0; background-position: 0% 50%; }
  50% { opacity: 0.5; background-position: 100% 50%; }
}

/* Кнопка "Показать ещё" */
.btn--outline:hover {
  background: var(--fire) !important;
  color: white !important;
  border-color: var(--fire) !important;
}

/* ═══════ UNIFIED FILTER ICONS ═══════ */

/* Убираем символьные иконки, делаем единый стиль точками */
.filter-btn::before { content: none !important; }
.filter-btn--active {
  background: linear-gradient(135deg, #DA3D26, #E9512B) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(218,61,38,0.25);
}
.filter-btn:not(.filter-btn--active):hover {
  background: #FACEC1 !important;
  border-color: #EF7D53 !important;
  color: #7C2413 !important;
}

/* Соляная пещера — ледяной акцент при активном */
.filter-btn[data-category="Соляная пещера"].filter-btn--active {
  background: linear-gradient(135deg, #5D98BC, #275972) !important;
  box-shadow: 0 4px 16px rgba(93,152,188,0.25);
}
.filter-btn[data-category="Соляная пещера"]:not(.filter-btn--active):hover {
  background: #D8EEFA !important;
  border-color: #81C3E0 !important;
}

/* ═══════ CARD REFINEMENTS ═══════ */

/* Карточки — более выраженный hover */
.service-card {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s cubic-bezier(0.16,1,0.3,1) !important;
}
.service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 60px rgba(124,36,19,0.1) !important;
}

/* Цена — чёткая, с акцентной подложкой */
.service-card__price {
  position: relative;
  display: inline-block;
}

/* ═══════ WHY-US ICONS — UNIFIED SVG ═══════ */

/* Убираем старые ::before, добавляем через after с единым стилем */
.why-us__item::before { display: none !important; }
.why-us__num {
  position: relative;
  padding-left: 36px;
}
.why-us__num::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 2px;
  background: var(--fire);
  border-radius: 2px;
}

/* ═══════ MOBILE OPTIMIZATIONS ═══════ */
@media (max-width: 768px) {
  .btn--fire::after { display: none; }
  #headerCta::before { display: none; }
  
  .hero__title { font-size: 36px !important; }
  .hero__subtitle { font-size: 18px !important; }
  .btn--lg { padding: 14px 32px !important; font-size: 20px !important; }
  
  .why-us__inner { gap: 32px !important; }
  .why-us__title { font-size: 32px !important; }
  
  .service-card__name { font-size: 20px !important; }
  .service-card__price { font-size: 22px !important; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px !important; }
  .btn--lg { padding: 12px 28px !important; font-size: 18px !important; }
  .hero__buttons { gap: 12px !important; }
}
