@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

/* ===================== VARIABLES ===================== */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e42;
  --navy-light: #243b55;
  --navy-lighter: #7f9ab8;
  --gold:       #c9a84c;
  --gold-light: #e2c47e;
  --gold-pale:  #f5e9cc;
  --cream:      #faf8f4;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #8a9ab0;
  --border:     #e8e0d0;
  --shadow-sm:  0 4px 15px rgba(13,27,42,0.05);
  --shadow-md:  0 10px 30px rgba(13,27,42,0.08);
  --shadow-lg:  0 20px 60px rgba(13,27,42,0.12);
}

/* ===================== RESET & GLOBAL ===================== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html {
  scroll-behavior: smooth; 
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav {
  height: 80px;
  padding: 0 60px;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.logo-center a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-light);
}

.logo-center img{
  max-height: 80px;
  filter: brightness(0) invert(1); 
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 0;
}

.main-nav li {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 7px 18px;
  transition: all 0.3s ease;
}

.main-nav li:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.35);
}

.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.main-nav li:hover a { color: var(--gold-light); }

/* Hamburger */
.menu-toggle { display: none; }

@media (max-width: 992px) {
  .main-nav { padding: 0 20px; flex-wrap: nowrap; }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: none;
    background: none;
  }
  .menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold-light);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-left {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin: 0;
    padding: 20px;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201,168,76,0.2);
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.4s ease;
  }
  .nav-left.active {
    max-height: 400px;
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    transform: scaleY(1);
  }
  .nav-left li {
    width: 100%;
    text-align: center;
    transform: translateY(-8px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .nav-left.active li { transform: translateY(0); opacity: 1; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 88vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(26,46,66,0.75) 100%
  );

  z-index:-1;
}

.hero .container{
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:var(--white);
}

.hero .container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  max-width: 680px;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-content::before {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.hero-content p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-button {
  text-decoration: none;
}

.hero-button span {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.hero-button span:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero .container { height: 65vh; }
  .hero-content h1 { font-size: 40px; }
  .hero-content p { font-size: 14px; }
  .hero-button span { padding: 14px 30px; font-size: 12px; }
}

/* ===================== SECTION LABEL ===================== */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}

/* ===================== SECTION ADVANTAGES ===================== */
.advantages-slider {
  background: var(--cream);
  padding: 100px 40px 40px 40px;
  text-align: center;
}

.advantages-slider .intro {
  max-width: 900px;
  margin: 15px auto 60px auto;
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
}

.advantages-slider h2 {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.slider-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.slider {
  overflow: hidden;
  position: relative;
  height: 420px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 520px;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}

.slide.active img {
  transform: scale(1);
  animation: fadeInUp 0.8s ease;
}

.slide.active .text {
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide .text {
  text-align: left;
  flex: 1;
}

.slide .text h3 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
}

.slide .text p {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Кнопки навигации */
.prev,
.next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: var(--cream);
  border: 2px solid var(--navy-light);
  color: var(--navy-light);
  font-size: 24px;
  width: 54px;
  height: 54px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(57, 130, 194, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.prev { left: -60px; }
.next { right: -60px; }

.prev:hover,
.next:hover {
  background: var(--navy-mid);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(57, 130, 194, 0.4);
}

/* Точки под слайдером */
.dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 15;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  background-color: var(--navy-lighter);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--navy-mid);
  transform: scale(1.2);
}

.dot:hover {
  background-color: var(--navy);
}

@media (max-width: 1200px) {
  .advantages-slider {
    padding: 80px 30px 30px 30px;
  }
  
  .prev { left: -40px; }
  .next { right: -40px; }
}

@media (max-width: 992px) {
  .advantages-slider {
    padding: 70px 20px 30px 20px;
  }
  
  .advantages-slider h2 {
    font-size: 36px;
  }
  
  .advantages-slider .intro {
    font-size: 17px;
    margin: 15px auto 50px auto;
  }
  
  .slider {
    height: auto;
    min-height: 500px;
  }
  
  .slide {
    flex-direction: column;
    gap: 30px;
    position: relative;
    display: none;
  }
  
  .slide.active {
    display: flex;
  }
  
  .slide img {
    width: 100%;
    max-width: 600px;
    height: 300px;
  }
  
  .slide .text {
    text-align: center;
    padding: 0 10px;
  }
  
  .slide .text h3 {
    font-size: 24px;
  }
  
  .slide .text p {
    font-size: 16px;
  }
  
  .prev,
  .next {
    top: 35%;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
  
  .dots {
    position: relative;
    bottom: 50px;
  }
}

@media (max-width: 768px) {
  .advantages-slider {
    padding: 60px 15px 30px 15px;
  }
  
  .advantages-slider h2 {
    font-size: 28px;
  }
  
  .advantages-slider .intro {
    font-size: 16px;
    margin: 15px auto 40px auto;
  }
  
  .slider {
    min-height: 450px;
  }
  
  .slide img {
    height: 250px;
  }
  
  .slide .text h3 {
    font-size: 22px;
  }
  
  .slide .text p {
    font-size: 15px;
  }
  
  .prev,
  .next {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    margin: 0 8px;
  }
}

/* ===================== WHY US ===================== */
.why-us {
  background: var(--navy);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.why-us .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.why-us h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.why-us p.intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 70px;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-weight: 400;
}

.why-us ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.why-us ul li {
  width: calc(50% - 8px);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.why-us ul li:hover { 
  background: rgba(201,168,76,0.06); 
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.3);
}

.why-us ul li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(80%) sepia(30%) saturate(500%) hue-rotate(10deg);
  margin-top: 4px;
}

.why-us ul li .text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.why-us ul li .text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 768px) {
  .why-us ul li { width: 100%; padding: 24px 20px; }
}

/* ===================== STEPS (Обновленные независимые карточки) ===================== */
.steps {
  background: var(--cream);
  padding: 100px 20px;
}

.steps .container { max-width: 1200px; margin: 0 auto; }

.steps h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: var(--navy);
  margin-bottom: 16px;
}

.steps .intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 70px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 400;
}

.steps-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  background: var(--white);
  padding: 50px 36px;
  width: 260px;
  text-align: center;
  border-radius: 8px; /* Мягкие углы */
  border: 1px solid rgba(232, 224, 208, 0.5); /* Легкая граница */
  box-shadow: var(--shadow-sm); /* Воздушная тень */
  position: relative;
  transition: all 0.3s ease;
}

.step:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.step-number {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 auto 20px;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
}

.step p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 400;
}

@media (max-width: 900px) {
  .step { width: 100%; }
}

/* ===================== PROMOS SECTION (Скрыты стикеры, премиальный вид) ===================== */
.promos-section {
  background: var(--navy);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.promos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.promos-section .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.promos-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.promo-card--hero { grid-column: 1 / 3; }
.promo-card--wide { grid-column: 1 / -1; }

.promo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; /* Добавлено скругление */
  padding: 40px 36px;
  position: relative;
  transition: all 0.3s ease;
}

.promo-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promo-card--gold {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25);
}

.promo-card--wide {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Скрываем эмодзи-стикеры для строгого вида */
.promo-card__icon {
  display: none !important;
}

.promo-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.promo-card__badge--gold {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
}

.promo-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.promo-card__price {
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.promo-card__price strong { font-weight: 700; }

.promo-card p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

.promo-card p strong {
  color: var(--white);
  font-weight: 500;
}

.promo-card--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

@media (max-width: 900px) {
  .promos-grid { grid-template-columns: 1fr 1fr; }
  .promo-card--hero { grid-column: 1 / -1; }
  .promo-card--wide { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 600px) {
  .promos-section { padding: 60px 15px; }
  .promos-title { font-size: 32px; }
  .promos-grid { grid-template-columns: 1fr; }
  .promo-card { padding: 32px 24px; }
}

/* ===================== PRICES ===================== */
.prices-section {
  padding: 100px 60px;
  background: var(--cream);
}

.prices-section .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 50px;
  color: var(--navy);
  text-align: center;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.tab {
  padding: 12px 32px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.3s ease;
}

.tab:hover { 
  color: var(--navy); 
  border-color: var(--gold);
}

.tab.active { 
  color: var(--white); 
  background: var(--navy);
  border-color: var(--navy); 
}

.tab-content { display: none; max-width: 900px; margin: 0 auto; }
.tab-content.active { display: block; }

.tab-content > ul {
  margin-bottom: 24px;
  padding-left: 20px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Обновленный аккордеон прайса (объемный, раздельный) */
.price-item {
  border-radius: 8px;
  background: var(--white);
  margin-bottom: 16px;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.price-item:hover {
  box-shadow: var(--shadow-md);
}

.price-header {
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  letter-spacing: 0.02em;
  transition: background 0.3s ease;
  border-bottom: 1px solid transparent;
}

.price-header:hover { background: var(--cream); }
.price-header.active { 
  background: var(--cream); 
  border-bottom: 1px solid var(--border);
}

.price-header::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.price-header.active::after { 
  content: "−"; 
  transform: rotate(180deg);
}

.price-body {
  max-height: 0 !important;
  overflow: hidden;
  padding: 0 28px !important;
  background: var(--white);
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.price-body.active {
  max-height: 800px !important;
  padding: 24px 28px !important;
  opacity: 1;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(232,224,208,0.5);
  color: var(--text-dark);
}

.price-table td:last-child { 
  text-align: right; 
  font-weight: 600; 
  color: var(--navy); 
}

/* Интерактивные строки таблицы */
.price-table tbody tr {
  transition: background 0.2s ease;
}
.price-table tbody tr:hover td {
  background-color: var(--gold-pale);
}

.price-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
  .prices-section { padding: 60px 15px; }
  .prices-section .title { font-size: 32px; }
  .tab { padding: 10px 18px; font-size: 12px; }
  .price-table td { font-size: 13px; padding: 12px 8px; }
  .price-header { padding: 18px 20px; font-size: 15px; }
  .price-body.active { padding: 16px 20px !important; }
}

/* ===================== DISCOUNTS ===================== */
.discounts-block {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 40px;
  background: var(--navy);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.discounts-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
  margin-top: 24px;
}
.discounts-block h3:first-child { margin-top: 0; }

.discounts-block ul { list-style: none; padding: 0; }
.discounts-block li {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.discounts-block li::before { 
  content: '—'; 
  position: absolute; 
  left: 0; 
  color: var(--gold); 
}
.discounts-block strong { color: var(--gold-light); font-weight: 600; }

/* ===================== FAST CLEAN ===================== */
.fast-clean {
  background: var(--white);
  padding: 100px 20px;
}

.fast-clean .container {
  max-width: 1000px;
  margin: 0 auto;
}

.fast-clean h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: var(--navy);
  margin-bottom: 16px;
}

.fast-clean .intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 400;
}

.fast-clean ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px; /* Добавлен отступ между блоками */
}

.fast-clean li {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px; /* Скругление */
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.fast-clean li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.fast-clean img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.9) saturate(0.9);
}

.fast-clean .text { padding: 40px 50px; }

.fast-clean h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--navy);
}

.fast-clean p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

.extra-info {
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 36px 40px;
  background: var(--navy);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  color: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-md);
}

.extra-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.extra-info p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .fast-clean { padding: 60px 20px; }
  .fast-clean h2 { font-size: 32px; }
  .fast-clean li { flex-direction: column; }
  .fast-clean img { width: 100%; height: 220px; }
  .fast-clean .text { padding: 30px 24px; text-align: center; }
  .extra-info { margin: 30px auto 0; padding: 24px; }
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy-mid);
  color: var(--white);
  padding: 80px 20px 50px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col { flex: 1; min-width: 240px; }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}

.footer-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.contact-list { list-style: none; padding: 0; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.contact-list i { color: var(--gold); width: 18px; font-size: 16px; text-align: center; }
.contact-list a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; }
.contact-list a:hover { color: var(--gold-light); }

.footer-subtext { 
  color: rgba(255,255,255,0.55); 
  font-size: 14px; 
  margin-bottom: 20px; 
  font-weight: 400; 
}

/* Улучшенная, конверсионная кнопка WhatsApp */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: none;
}

.whatsapp-btn i { color: var(--white); font-size: 20px; }

.whatsapp-btn:hover { 
  background: #1ebc59; 
  color: var(--white); 
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .footer-container { flex-direction: column; gap: 40px; }
  .footer-col { text-align: center; }
  .contact-list li { justify-content: center; }
}

/* Контейнер для кнопок в подвале */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Расстояние между кнопками */
  margin-top: 15px;
}

/* Стили для кнопки Instagram */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Фирменный градиент Instagram */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px; /* Округлость углов (настройте под whatsapp-btn, если там другая) */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(204, 35, 102, 0.4);
}

.instagram-btn i {
  font-size: 1.2rem;
}
