/* === FLEX SPACE YOGA — GLOBAL STYLES === */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #EF3038;
  --accent: #FF1493;
  --highlight: #F34723;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --mid: #0f3460;
  --light: #f8f5f2;
  --white: #ffffff;
  --text: #2c2c3e;
  --text-light: #6b6b80;
  --border: #e8e0d8;
  --shadow: 0 4px 24px rgba(239,48,56,0.10);
  --shadow-lg: 0 12px 48px rgba(239,48,56,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --font: 'Raleway', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-slide-left { animation: slideLeft 0.7s ease forwards; }
.animate-slide-right { animation: slideRight 0.7s ease forwards; }
.animate-float { animation: floatUp 4s ease-in-out infinite; }

/* Intersection Observer fade-in */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.nav-menu a:hover {
  background: rgba(239,48,56,0.08);
  color: var(--primary);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(239,48,56,0.35) !important;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === SECTION BASE === */
.section {
  padding: 96px 24px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,48,56,0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 20px rgba(239,48,56,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(239,48,56,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(239,48,56,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: white;
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(135deg, #ff6b6b, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  display: block;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: floatUp 2s ease-in-out infinite;
}
.hero-scroll-arrow {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === BLOCK 1: STEP MAP + MINI PRICES + FORM === */
.step-map-section {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
  padding: 96px 24px;
}
.step-map-section .section-title {
  color: white;
}
.step-map-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin: 48px 0;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(239,48,56,0.4);
  transition: transform 0.3s;
}
.step-card:hover .step-num {
  transform: scale(1.12);
}
.step-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}
.step-card h3 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}
.mini-price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 32px;
}
.mini-price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.mini-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.mini-price-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(239,48,56,0.2);
}
.mini-price-card.featured {
  background: linear-gradient(135deg, rgba(239,48,56,0.2), rgba(255,20,147,0.15));
  border-color: rgba(239,48,56,0.4);
}
.mini-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.mini-price-card h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 8px;
}
.mini-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin: 8px 0;
  font-family: var(--font-heading);
}
.mini-price-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}
.booking-form-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 12px;
}
.booking-form-block h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.booking-form-block p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: white;
  font-family: var(--font);
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder, .form-group select::placeholder {
  color: rgba(255,255,255,0.35);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
}
.form-group select {
  cursor: pointer;
}
.form-group select option {
  background: var(--dark);
  color: white;
}
.more-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

/* === BLOCK 2: SLIDER === */
.slider-section {
  background: var(--light);
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.slides-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slide {
  min-width: 100%;
  position: relative;
  height: 560px;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.slide-caption {
  color: white;
}
.slide-caption h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.slide-caption p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 500px;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 10;
}
.slider-nav:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* === BLOCK 3: ACCORDION === */
.accordion-section {
  background: white;
}
.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.accordion-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.accordion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.accordion-img:hover img {
  transform: scale(1.04);
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.accordion-item.open {
  border-color: var(--primary);
}
.accordion-trigger {
  width: 100%;
  padding: 20px 24px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
}
.accordion-trigger:hover {
  background: rgba(239,48,56,0.04);
  color: var(--primary);
}
.accordion-item.open .accordion-trigger {
  background: rgba(239,48,56,0.06);
  color: var(--primary);
}
.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239,48,56,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform 0.3s;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.accordion-item.open .accordion-body {
  max-height: 400px;
}
.accordion-body-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* === BLOCK 4: ABOUT CIRCLE === */
.about-section {
  background: linear-gradient(160deg, #f0ece8 0%, #f8f5f2 100%);
}
.about-circle-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.about-circle-center {
  position: relative;
  flex-shrink: 0;
}
.about-circle-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: 0 16px 56px rgba(239,48,56,0.22);
}
.about-circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(239,48,56,0.25);
  pointer-events: none;
}
.orbit-item {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.3s;
}
.orbit-item:hover {
  transform: scale(1.1) !important;
}
.orbit-item .icon {
  font-size: 1.4rem;
}
.orbit-item:nth-child(1) { top: -40px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(2) { top: 20%; right: -40px; transform: translateY(-50%); }
.orbit-item:nth-child(3) { bottom: 20%; right: -40px; transform: translateY(50%); }
.orbit-item:nth-child(4) { bottom: -40px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(5) { top: 20%; left: -40px; transform: translateY(-50%); }
.about-text-wrap {
  max-width: 480px;
}
.about-text-wrap .section-title {
  margin-bottom: 20px;
}
.about-text-wrap p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-highlight .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-highlight .text { font-size: 0.82rem; color: var(--text-light); }
.about-highlight .title { font-weight: 600; color: var(--text); font-size: 0.88rem; }

/* === BLOCK 5: SCHEDULE TABLE === */
.table-section {
  background: white;
}
.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.schedule-table thead {
  background: linear-gradient(135deg, var(--dark), var(--mid));
  color: white;
}
.schedule-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.schedule-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.schedule-table tbody tr:hover {
  background: rgba(239,48,56,0.04);
}
.schedule-table tbody tr:last-child {
  border-bottom: none;
}
.schedule-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text);
}
.level-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.level-beginner { background: rgba(72,199,90,0.12); color: #27a83a; }
.level-middle { background: rgba(239,48,56,0.1); color: var(--primary); }
.level-all { background: rgba(98,50,180,0.1); color: #6232b4; }

/* === BLOCK 6: PRICE CARDS === */
.price-section {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
}
.price-section .section-title {
  color: white;
}
.price-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.price-card:hover::before { transform: scaleX(1); }
.price-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(239,48,56,0.2);
}
.price-card.featured-price {
  background: linear-gradient(160deg, rgba(239,48,56,0.25) 0%, rgba(255,20,147,0.15) 100%);
  border-color: rgba(239,48,56,0.45);
  transform: scale(1.04);
}
.price-card.featured-price:hover {
  transform: scale(1.04) translateY(-6px);
}
.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.price-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.price-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin: 8px 0;
}
.price-amount span {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  font-family: var(--font);
}
.price-features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
}
.price-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239,48,56,0.25);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.price-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* === BLOCK 7: CALCULATOR === */
.calc-section {
  background: var(--light);
}
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.calc-box {
  background: white;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}
.calc-box h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 32px;
}
.calc-group {
  margin-bottom: 28px;
}
.calc-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary) var(--val), var(--border) var(--val));
  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(239,48,56,0.4);
}
.calc-val {
  display: inline-block;
  background: rgba(239,48,56,0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-left: 10px;
}
.calc-type-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-type-btn {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: white;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.calc-type-btn.active {
  border-color: var(--primary);
  background: rgba(239,48,56,0.08);
  color: var(--primary);
}
.calc-result {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  margin-top: 32px;
}
.calc-result .label { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 8px; display: block; }
.calc-result .amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  display: block;
}
.calc-info {
  text-align: center;
  padding: 32px;
}
.calc-info h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.calc-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.calc-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.calc-benefit .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(239,48,56,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.calc-benefit .text {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

/* === BLOCK 8: SELL TEXT === */
.sell-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  text-align: center;
}
.sell-text-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.sell-section .section-title {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 28px;
}
.sell-section .section-title span {
  background: linear-gradient(135deg, #ff6b6b, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sell-paras p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.sell-paras p:last-child { margin-bottom: 0; }
.sell-highlights {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.sell-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.sell-hl .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* === BLOCK 9: INFOGRAPHIC === */
.infographic-section {
  background: white;
}
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.infographic-card {
  background: linear-gradient(160deg, #f8f5f2 0%, #f0ece8 100%);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.infographic-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.infographic-card:hover::after { transform: scaleX(1); }
.infographic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.infographic-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.infographic-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.infographic-card h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.infographic-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* === BLOCK 10: GALLERY === */
.gallery-section {
  background: var(--light);
}
.gallery-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 48px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85), transparent);
  color: white;
  padding: 20px 16px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* === BLOCK 11: YOGA STYLES (INTERACTIVE CARDS + POPUP) === */
.styles-section {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
}
.styles-section .section-title {
  color: white;
}
.styles-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}
.style-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.style-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.style-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239,48,56,0.0), rgba(255,20,147,0.0));
  transition: all 0.3s;
}
.style-card:hover::before {
  background: linear-gradient(135deg, rgba(239,48,56,0.12), rgba(255,20,147,0.08));
}
.style-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,48,56,0.4);
  box-shadow: 0 16px 48px rgba(239,48,56,0.2);
}
.style-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  transition: transform 0.3s;
}
.style-card:hover .style-icon {
  transform: scale(1.12);
}
.style-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.style-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.style-card .btn {
  width: 100%;
  justify-content: center;
  background: rgba(239,48,56,0.15);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(239,48,56,0.3);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
}
.style-card .btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: white;
  transform: none;
}

/* === MODAL POPUP === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s;
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--primary);
  color: white;
}
.modal-icon { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.modal-box h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.modal-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-form .form-group input,
.modal-form .form-group select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: white;
  font-family: var(--font);
  font-size: 0.92rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.modal-form .form-group input:focus,
.modal-form .form-group select:focus {
  border-color: var(--primary);
}
.modal-form .form-group label {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}
.modal-form .form-group select option { background: var(--dark); }
.modal-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.modal-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
}
.modal-radio-label:has(input:checked) {
  border-color: var(--primary);
  background: rgba(239,48,56,0.12);
  color: white;
}
.modal-radio-label input {
  accent-color: var(--primary);
}

/* === CONTACTS === */
.contacts-section {
  background: white;
}
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contacts-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 24px;
}
.contacts-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contacts-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(239,48,56,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contacts-item .label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contacts-item .value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.map-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(160deg, #e8e4f0, #f0ece8);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  border: 2px dashed var(--border);
  padding: 20px;
}
.contacts-form-wrap h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.contacts-form-wrap p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts-form .form-group input {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.contacts-form .form-group input:focus {
  border-color: var(--primary);
  background: white;
}
.contacts-form .form-group label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer-col h4 {
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-legal span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  z-index: 3000;
  box-shadow: 0 16px 56px rgba(0,0,0,0.3);
  display: none;
  animation: fadeUp 0.4s ease;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.84rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
}
.cookie-necessary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  text-decoration: underline;
  font-size: 0.82rem;
}

/* === LEGAL PAGES === */
.legal-page {
  padding-top: 110px;
  min-height: 100vh;
}
.legal-page .legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-page h1 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.legal-date {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.2rem;
  color: var(--dark);
  margin: 32px 0 12px;
}
.legal-page p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-page ul {
  padding-left: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 2;
}

/* === THANKS PAGE === */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a1a2e, #16213e);
  padding: 24px;
  text-align: center;
}
.thanks-box {
  max-width: 500px;
}
.thanks-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 28px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(239,48,56,0.4);
}
.thanks-box h1 {
  color: white;
  font-size: 2rem;
  margin-bottom: 16px;
}
.thanks-box p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured-price { transform: scale(1); }
  .price-card.featured-price:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-img { height: 300px; }
  .about-circle-layout { flex-direction: column; gap: 60px; }
  .about-orbit { width: 300px; height: 300px; }
  .about-circle-photo { width: 200px; height: 200px; }
  .orbit-item { width: 64px; height: 64px; font-size: 0.65rem; }
  .orbit-item .icon { font-size: 1.1rem; }
  .calc-layout { grid-template-columns: 1fr; }
  .contacts-layout { grid-template-columns: 1fr; }
  .style-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-container::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch; padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .burger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .mini-price-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 250px; }
  .style-cards-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-container { grid-template-columns: 1fr 1fr; }
  .booking-form-block { padding: 24px; }
  .calc-box { padding: 28px 24px; }
  .modal-box { padding: 28px 20px; }
  .modal-radio-group { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-btns { flex-direction: column; }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 300px; }
  .steps-container { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
