
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #2d2d2d;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----- CSS VARIABLES ----- */
:root {
  --primary: #ED760E;
  --accent: #FFA420;
  --highlight: #CC5500;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --text-light: #666;
  --bg-light: #fdf8f3;
  --bg-warm: #fff7ee;
  --border: #e8ddd0;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(237,118,14,0.10);
  --shadow-lg: 0 8px 48px rgba(237,118,14,0.16);
  --radius: 14px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ----- LAYOUT ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--bg { background: var(--bg-light); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .section-label { color: var(--accent); }
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: none;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(237,118,14,0.35);
}
.btn--primary:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204,85,0,0.40);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn--white:hover {
  background: var(--bg-warm);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--lg { padding: 18px 44px; font-size: 1.05rem; }

/* ----- HEADER ----- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.10); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.header__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.header__nav { display: flex; align-items: center; gap: 6px; }
.header__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--text);
}
.header__nav a:hover { color: var(--primary); background: var(--bg-warm); }
.header__cta { display: flex; align-items: center; gap: 10px; }
.header__phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: var(--transition);
  color: var(--text);
}
.mobile-nav a:hover { background: var(--bg-warm); color: var(--primary); }

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-banner.png') center/cover no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.30) 60%, transparent 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237,118,14,0.18);
  border: 1px solid rgba(237,118,14,0.4);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
  animation: fadeSlideUp 0.6s ease both;
}
.hero__title {
  color: #fff;
  max-width: 680px;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}
.hero__title span { color: var(--accent); }
.hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.4s ease both;
}
.hero__stat {
  text-align: left;
}
.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll-arrow {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  border-radius: 2px;
}

/* ----- BLOCK 1: STEP-BY-STEP MAP ----- */
.steps-section { padding: 90px 0 70px; background: #fff; }
.steps-section .section-header { text-align: center; margin-bottom: 60px; }
.steps-section .section-subtitle { margin: 0 auto 2rem; }

.steps-map {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-bottom: 70px;
}
.steps-map::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
  padding: 0 12px;
}
.step-card__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 24px rgba(237,118,14,0.20);
  transition: var(--transition);
  position: relative;
}
.step-card__icon:hover { transform: scale(1.08); background: var(--primary); }
.step-card__num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.step-card__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.step-card__text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.step-card__feel {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--primary);
  font-style: italic;
}

/* Mini price cards */
.mini-prices {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.mini-price-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  min-width: 180px;
  transition: var(--transition);
  cursor: pointer;
}
.mini-price-card:hover, .mini-price-card.featured {
  border-color: var(--primary);
  background: var(--bg-warm);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.mini-price-card.featured { border-color: var(--primary); }
.mini-price-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mini-price-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.mini-price-card__price span { font-size: 1rem; color: var(--text-light); }
.mini-price-card__info { font-size: 0.8rem; color: var(--text-light); }

/* Quick booking form */
.quick-form {
  max-width: 560px;
  margin: 0 auto 32px;
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.quick-form__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--dark);
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237,118,14,0.12);
}
.form-group input::placeholder { color: #b0a090; }
.form-full { grid-column: 1 / -1; }
.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ----- BLOCK 2: SLIDER ----- */
.slider-section { padding: 90px 0; background: var(--bg-light); overflow: hidden; }
.slider-wrapper {
  position: relative;
  margin: 0 -24px;
}
.slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide {
  min-width: calc(33.333% - 16px);
  margin-right: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slide:hover img { transform: scale(1.04); }
.slide__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85), transparent);
  color: #fff;
  padding: 40px 20px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.slider__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider__btn:hover { background: var(--primary); color: #fff; }
.slider__dots {
  display: flex;
  gap: 6px;
}
.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider__dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ----- BLOCK 3: ACCORDION ----- */
.accordion-section { padding: 90px 0; }
.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.accordion-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.accordion-item:hover { border-color: var(--primary); }
.accordion-item.open { border-color: var(--primary); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--dark);
  transition: var(--transition);
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-item.open .accordion-trigger { color: var(--primary); }
.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform var(--transition);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.accordion-item.open .accordion-content { max-height: 400px; }
.accordion-content__inner { padding: 0 20px 18px; }

/* ----- BLOCK 4: CIRCULAR ABOUT ----- */
.about-section { padding: 100px 0; background: var(--bg-warm); overflow: hidden; }
.about-circle-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.about-circle-img {
  position: relative;
  flex-shrink: 0;
}
.about-circle-img img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--primary);
  box-shadow: 0 12px 48px rgba(237,118,14,0.25);
}
.about-circle-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(237,118,14,0.30);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.about-circle-dots {
  position: absolute;
  inset: -36px;
  border-radius: 50%;
}
.about-dot {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.about-dot:hover { transform: scale(1.15); }
.about-dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.about-dot:nth-child(2) { top: 25%; right: 0; transform: translateX(25%); }
.about-dot:nth-child(3) { bottom: 25%; right: 0; transform: translateX(25%); }
.about-dot:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.about-dot:nth-child(5) { bottom: 25%; left: 0; transform: translateX(-25%); }
.about-dot:nth-child(6) { top: 25%; left: 0; transform: translateX(-25%); }

.about-info { max-width: 520px; }
.about-info h2 { margin-bottom: 16px; }
.about-info p { margin-bottom: 16px; color: var(--text-light); }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}
.about-feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border);
}

/* ----- BLOCK 5: SCHEDULE TABLE ----- */
.table-section { padding: 90px 0; }
.table-wrapper { overflow-x: auto; margin-top: 32px; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 640px;
}
.schedule-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.schedule-table th:first-child { border-radius: var(--radius) 0 0 0; }
.schedule-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.schedule-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.schedule-table tbody tr:hover { background: var(--bg-warm); }
.schedule-table tbody tr:last-child td { border-bottom: none; }
.level-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.level-badge--beginner { background: #e8f5e9; color: #2e7d32; }
.level-badge--intermediate { background: #fff3e0; color: var(--highlight); }
.level-badge--all { background: #e8eaf6; color: #3949ab; }
.table-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

/* ----- BLOCK 6: PRICE CARDS ----- */
.prices-section { padding: 90px 0; background: var(--bg-light); }
.prices-section .section-header { text-align: center; margin-bottom: 48px; }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border);
  transition: var(--transition);
}
.price-card:hover, .price-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.price-card:hover::before, .price-card.popular::before {
  background: linear-gradient(to right, var(--primary), var(--accent));
}
.price-card.popular { transform: translateY(-10px); }
.price-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.08em;
}
.price-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.price-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.price-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1;
}
.price-card__price span { font-size: 1.1rem; color: var(--text-light); }
.price-card__duration {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  text-align: left;
}
.price-card__features li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}
.price-card__features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ----- BLOCK 7: CALCULATOR ----- */
.calc-section { padding: 90px 0; }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.calc-box {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.calc-box h3 { margin-bottom: 24px; }
.calc-group {
  margin-bottom: 24px;
}
.calc-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.calc-group label span {
  color: var(--primary);
  font-size: 1.05rem;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(237,118,14,0.4);
  border: 3px solid #fff;
}
.calc-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ED760E'%3E%3Cpath d='M7 7l3 3 3-3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}
.calc-result {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 24px;
}
.calc-result__label { font-size: 0.82rem; opacity: 0.85; margin-bottom: 6px; }
.calc-result__price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.calc-result__per { font-size: 0.82rem; opacity: 0.85; }
.calc-info { color: var(--text-light); }
.calc-info h3 { margin-bottom: 16px; }
.calc-info p { margin-bottom: 14px; font-size: 0.92rem; line-height: 1.7; }
.calc-info ul { margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.calc-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.calc-info ul li::before {
  content: '◆';
  color: var(--primary);
  font-size: 0.55rem;
}

/* ----- BLOCK 8: SELLING TEXT ----- */
.text-section { padding: 90px 0; background: var(--dark); color: #fff; }
.text-section .section-header { text-align: center; margin-bottom: 60px; }
.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.text-column h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.text-column p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.text-quote {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}
.text-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 14px;
}
.text-quote cite {
  font-size: 0.82rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ----- BLOCK 9: INFOGRAPHIC ----- */
.infographic-section { padding: 90px 0; background: var(--bg-light); }
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.infographic-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.infographic-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.infographic-card:hover::after { transform: scaleX(1); }
.infographic-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.infographic-card__icon { font-size: 2.8rem; margin-bottom: 16px; }
.infographic-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.infographic-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.infographic-card__text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ----- BLOCK 10: PHOTO GALLERY ----- */
.gallery-section { padding: 90px 0; }
.gallery-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), var(--accent), var(--primary), transparent);
  margin: 48px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ----- BLOCK 11: INTERACTIVE CARDS + POPUP ----- */
.formats-section { padding: 90px 0; background: var(--bg-warm); }
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.format-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237,118,14,0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.format-card:hover::before { opacity: 1; }
.format-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.format-card__icon { font-size: 3rem; margin-bottom: 14px; }
.format-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.format-card__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ----- MODAL ----- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.7);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  animation: slideUp 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-light);
}
.modal__close:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.modal__icon { font-size: 2.8rem; margin-bottom: 12px; text-align: center; }
.modal h3 { text-align: center; margin-bottom: 8px; font-size: 1.35rem; }
.modal__desc { text-align: center; color: var(--text-light); font-size: 0.9rem; line-height: 1.65; margin-bottom: 24px; }
.modal .form-group { margin-bottom: 12px; }
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 500;
}
.radio-option:hover { border-color: var(--primary); background: var(--bg-warm); }
.radio-option input[type="radio"] { accent-color: var(--primary); }
.radio-option input[type="radio"]:checked + span { color: var(--primary); font-weight: 600; }

/* ----- CONTACTS ----- */
.contacts-section { padding: 90px 0; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contacts-info h2 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--bg-warm);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--border);
}
.contact-detail strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--primary); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.contact-detail span { font-size: 0.95rem; color: var(--text); }
.map-container {
  width: 100%;
  height: 260px;
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}
.map-icon { font-size: 2.5rem; }
.contacts-form {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contacts-form h3 { margin-bottom: 24px; }

/* ----- FOOTER ----- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.footer__about { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer__legal { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 16px; }
.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer ul li a:hover { color: var(--accent); }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer__contact li span:first-child { color: var(--accent); flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__links {
  display: flex;
  gap: 18px;
}
.footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }

/* ----- COOKIE BANNER ----- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 8000;
  width: min(700px, calc(100vw - 32px));
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.16);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner__text { flex: 1; min-width: 200px; font-size: 0.85rem; color: var(--text-light); }
.cookie-banner__text a { color: var(--primary); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner__icon { font-size: 1.8rem; flex-shrink: 0; }

/* ----- THANK YOU PAGE ----- */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  padding: 40px 24px;
}
.thanks-card {
  max-width: 540px;
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.thanks-icon { font-size: 5rem; margin-bottom: 24px; }
.thanks-card h1 { font-size: 2rem; margin-bottom: 14px; }
.thanks-card p { color: var(--text-light); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.7; }
.thanks-card .btn { margin-top: 8px; }

/* ----- LEGAL PAGES ----- */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { margin-bottom: 10px; }
.legal-page .legal-date { color: var(--text-light); font-size: 0.85rem; margin-bottom: 40px; }
.legal-content h2 { margin: 36px 0 12px; font-size: 1.2rem; }
.legal-content p { margin-bottom: 14px; font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }
.legal-content ul { margin: 12px 0 18px 20px; }
.legal-content ul li { margin-bottom: 6px; font-size: 0.9rem; color: var(--text-light); }

/* ----- ANIMATIONS ----- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .header__phone { display: none; }
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .steps-map { flex-direction: column; align-items: center; gap: 24px; }
  .steps-map::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .accordion-grid { grid-template-columns: 1fr; }
  .accordion-image { display: none; }
  .about-circle-layout { flex-direction: column; }
  .about-circle-img img { width: 260px; height: 260px; }
  .text-columns { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 240px; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .prices-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .slide { min-width: calc(100% - 0px); margin-right: 24px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 1.85rem; }
  .prices-grid { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .mini-prices { flex-direction: column; align-items: center; }
  .modal { padding: 24px 18px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; }
}

/* ----- SCROLL REVEAL DELAYS ----- */
.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; }
