/* ================================================
   STEPONA — Кардио-аэробика | Главный стиль
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* === ПЕРЕМЕННЫЕ === */
:root {
  --primary: #3BB08F;
  --primary-dark: #2a9070;
  --primary-light: #5dd4ae;
  --accent: #D0F0C0;
  --highlight: #1CD3A2;
  --dark: #0f2624;
  --dark-2: #1a3d38;
  --text: #1e3a36;
  --text-muted: #5a8070;
  --light: #f5faf8;
  --white: #ffffff;
  --border: #c8e8dc;
  --card-bg: #fafdfc;
  --shadow-sm: 0 2px 8px rgba(59,176,143,0.10);
  --shadow-md: 0 6px 24px rgba(59,176,143,0.15);
  --shadow-lg: 0 16px 48px rgba(59,176,143,0.20);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === СБРОС И БАЗОВЫЕ СТИЛИ === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* === ТИПОГРАФИЯ === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { line-height: 1.7; }

/* === КОНТЕЙНЕР === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === КНОПКИ === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,176,143,0.35);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,176,143,0.45);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn--white:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn--large {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* === ТЕГИ СЕКЦИЙ === */
.section-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* === ХЕДЕР === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59,176,143,0.12);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--dark);
  transition: color var(--transition);
}

.logo:hover {
  color: var(--primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.logo-text span {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.nav a:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* === ГЕРОЙ === */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,38,36,0.85) 0%, rgba(15,38,36,0.4) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--white);
  padding-top: 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,176,143,0.25);
  border: 1px solid rgba(59,176,143,0.4);
  color: var(--highlight);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  color: var(--highlight);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--highlight);
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  animation: bounce 2s infinite;
}

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

/* === БЛОК 1: КАК ЗАПИСАТЬСЯ (карта шагов) === */
.steps-section {
  padding: 100px 0 60px;
  background: var(--light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-bottom: 80px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
  z-index: 0;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(59,176,143,0.4);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(59,176,143,0.55);
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.step-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Мини-карточки цен */
.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.mini-price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.mini-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.mini-price-card:hover::before {
  transform: scaleX(1);
}

.mini-price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mini-price-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: var(--white);
}

.mini-price-card.featured::before {
  background: rgba(255,255,255,0.3);
  transform: scaleX(1);
}

.mini-price-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mini-price-card.featured .mini-price-label {
  color: rgba(255,255,255,0.75);
}

.mini-price-value {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.mini-price-card.featured .mini-price-value {
  color: var(--white);
}

.mini-price-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.mini-price-card.featured .mini-price-unit {
  color: rgba(255,255,255,0.7);
}

.mini-price-detail {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.mini-price-card.featured .mini-price-detail {
  color: rgba(255,255,255,0.9);
}

/* Компактная форма записи */
.booking-form-compact {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto 40px;
}

.booking-form-compact h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.booking-form-compact p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59,176,143,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0c8c0;
}

.form-submit-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.more-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* === БЛОК 2: СЛАЙДЕР === */
.slider-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15,38,36,0.92));
  padding: 60px 48px 40px;
  color: var(--white);
}

.slide-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.slide-caption p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.2rem;
  color: var(--primary);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

/* === БЛОК 3: АККОРДЕОН === */
.accordion-section {
  padding: 100px 0;
  background: var(--light);
}

.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.accordion-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.accordion-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.accordion-image:hover img {
  transform: scale(1.04);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.accordion-item:hover {
  border-color: var(--primary-light);
}

.accordion-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.accordion-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.accordion-item.open .accordion-icon {
  background: var(--primary);
}

.accordion-title {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--dark);
}

.accordion-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition);
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.open .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-content ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-content ul li {
  padding-left: 20px;
  position: relative;
}

.accordion-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

/* === БЛОК 4: О НАС (круговой) === */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-circle-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.about-center-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.orbit-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(59,176,143,0.35);
  color: var(--white);
  transition: transform var(--transition);
  animation: float 3s ease-in-out infinite;
}

.orbit-item:nth-child(2) .orbit-bubble { animation-delay: 0.5s; }
.orbit-item:nth-child(3) .orbit-bubble { animation-delay: 1s; }
.orbit-item:nth-child(4) .orbit-bubble { animation-delay: 1.5s; }
.orbit-item:nth-child(5) .orbit-bubble { animation-delay: 2s; }

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

.orbit-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* Позиции пузырьков */
.orbit-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(2) { top: 20%; right: 5%; }
.orbit-item:nth-child(3) { bottom: 20%; right: 5%; }
.orbit-item:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(5) { top: 20%; left: 5%; }

.about-text h2 {
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.about-feature:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.feature-text h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* === БЛОК 5: РАСПИСАНИЕ (таблица) === */
.schedule-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.schedule-section .section-title {
  color: var(--white);
}

.schedule-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.schedule-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.schedule-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}

.schedule-tab.active,
.schedule-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.schedule-table th {
  background: rgba(59,176,143,0.2);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: 600;
}

.schedule-table td {
  padding: 16px 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover td {
  background: rgba(59,176,143,0.08);
  color: var(--white);
}

.schedule-level {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.level-start {
  background: rgba(208,240,192,0.2);
  color: var(--accent);
}

.level-mid {
  background: rgba(59,176,143,0.25);
  color: var(--primary-light);
}

.level-adv {
  background: rgba(28,211,162,0.2);
  color: var(--highlight);
}

/* === БЛОК 6: ЦЕНЫ (детальные карточки) === */
.prices-section {
  padding: 100px 0;
  background: var(--light);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid var(--border);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.price-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.price-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card:hover::after {
  transform: scaleX(1);
}

.price-card.popular {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.price-card.popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-card.popular::after {
  transform: scaleX(1);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 12px 12px;
}

.price-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-card.popular .price-name {
  color: rgba(255,255,255,0.6);
}

.price-amount {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card.popular .price-amount {
  color: var(--highlight);
}

.price-per {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-card.popular .price-per {
  color: rgba(255,255,255,0.55);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.price-card.popular .price-feature {
  color: rgba(255,255,255,0.82);
}

.price-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  color: var(--primary-dark);
}

.price-card.popular .price-feature-icon {
  background: rgba(59,176,143,0.3);
  color: var(--highlight);
}

/* === БЛОК 7: КАЛЬКУЛЯТОР === */
.calculator-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.calculator-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.calculator-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.calculator-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.75;
}

.calc-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.calc-benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--highlight);
  flex-shrink: 0;
}

.calculator-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 44px;
}

.calc-section {
  margin-bottom: 28px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.calc-value-badge {
  background: rgba(28,211,162,0.2);
  color: var(--highlight);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--primary-light));
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(28,211,162,0.5);
  transition: transform var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.plan-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-btn {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.plan-btn.active,
.plan-btn:hover {
  background: var(--highlight);
  border-color: var(--highlight);
  color: var(--dark);
  font-weight: 600;
}

.calc-result {
  background: rgba(28,211,162,0.15);
  border: 1px solid rgba(28,211,162,0.35);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 28px;
  text-align: center;
}

.calc-result-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc-result-value {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--highlight);
  line-height: 1;
}

.calc-result-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* === БЛОК 8: ПРОДАЮЩИЙ ТЕКСТ === */
.promo-section {
  padding: 100px 0;
  background: var(--white);
}

.promo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.promo-text h2 {
  color: var(--dark);
  margin-bottom: 24px;
  font-size: 2.2rem;
}

.promo-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.02rem;
}

.promo-highlight-block {
  background: var(--accent);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}

.promo-highlight-block p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  font-style: italic;
  margin: 0;
}

.promo-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.promo-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.promo-list-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--white);
  margin-top: 2px;
}

.promo-list-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.promo-list-text strong {
  color: var(--dark);
  font-weight: 600;
}

.promo-stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo-stat {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}

.promo-stat:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.promo-stat-value {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.promo-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === БЛОК 9: ИНФОГРАФИКА === */
.infographic-section {
  padding: 100px 0;
  background: var(--light);
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.info-value {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.info-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.info-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.infographic-bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.info-small-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  color: var(--white);
  transition: all var(--transition);
}

.info-small-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-small-card:nth-child(2) {
  background: linear-gradient(135deg, var(--highlight), var(--primary));
}

.info-small-card:nth-child(3) {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
}

.info-small-card:nth-child(4) {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-2));
}

.info-small-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.info-small-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* === БЛОК 10: ФОТОГАЛЕРЕЯ === */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.gallery-hr {
  border: none;
  border-top: 2px solid var(--border);
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15,38,36,0.88));
  padding: 40px 16px 16px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* === ОТЗЫВЫ === */
.reviews-section {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.reviews-section .section-title {
  color: var(--white);
}

.reviews-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

.review-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.review-stars {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}

.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 2px;
}

.review-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* === ФУТЕР === */
.footer {
  background: #071816;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--highlight);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  align-items: flex-start;
}

.footer-contact-item span:first-child {
  flex-shrink: 0;
}

.footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--highlight);
}

/* === КУКИ-БАННЕР === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.cookie-banner h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.cookie-banner p a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all var(--transition);
}

.cookie-btn--accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--primary-dark);
}

.cookie-btn--necessary {
  background: var(--light);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.cookie-btn--necessary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cookie-btn--settings {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 12px;
}

.cookie-btn--settings:hover {
  color: var(--primary);
}

/* === АНИМАЦИИ ПОЯВЛЕНИЯ === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* задержки */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* === СТРАНИЦЫ: БЛАГОДАРНОСТЬ / ПОЛИТИКИ === */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
}

.page-content {
  padding: 80px 0;
}

.policy-content h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-content ul {
  margin: 14px 0 20px 20px;
  list-style: disc;
}

.policy-content ul li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* === СТРАНИЦА БЛАГОДАРНОСТИ === */
.thanks-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.thanks-card {
  max-width: 560px;
  padding: 60px 48px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-card h1 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.thanks-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.thanks-card .btn {
  margin-top: 12px;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 1100px) {
  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.popular {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .accordion-layout,
  .about-layout,
  .calculator-layout,
  .promo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accordion-image {
    position: static;
  }

  .about-circle-wrapper {
    padding: 40px;
  }

  .about-center-img {
    width: 200px;
    height: 200px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .infographic-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-cta .btn {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .steps-grid::before {
    display: none;
  }

  .mini-prices {
    grid-template-columns: 1fr;
  }

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

  .booking-form-compact {
    padding: 28px 20px;
  }

  .slide-image {
    height: 320px;
  }

  .slide-caption {
    padding: 30px 24px 24px;
  }

  .prices-grid {
    grid-template-columns: 1fr;
  }

  .infographic-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .promo-stats-block {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
