/* ===========================
   PILARI — Студия пилатеса
   Custom CSS — No Frameworks
=========================== */

:root {
  --primary: #C71585;
  --primary-light: #e0359a;
  --primary-dark: #a01070;
  --accent: #F7F21A;
  --highlight: #00FFFF;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #2c2c3e;
  --text-light: #6b6b8a;
  --white: #ffffff;
  --light-bg: #fdf5fa;
  --light-bg2: #f8f0f5;
  --border: #e8d0df;
  --shadow: 0 4px 20px rgba(199,21,133,0.10);
  --shadow-lg: 0 10px 40px rgba(199,21,133,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font-main: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
  --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: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1,h2,h3,h4,h5 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

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

.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }

.section-pink {
  background: linear-gradient(135deg, var(--light-bg) 0%, #f0e0ec 100%);
}

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

.section-title h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-title p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(199,21,133,0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,21,133,0.45);
}

.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 16px rgba(255,255,255,0.3);
}

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

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(247,242,26,0.35);
}

.btn-accent:hover {
  background: #e0da00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,242,26,0.45);
}

/* Tag badge */
.tag {
  display: inline-block;
  background: rgba(199,21,133,0.1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-main);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===========================
   HEADER & NAVIGATION
=========================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(199,21,133,0.12);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary);
  text-decoration: none;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-menu a:hover {
  background: rgba(199,21,133,0.08);
  color: var(--primary);
}

.nav-cta {
  margin-left: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

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

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
=========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(199,21,133,0.5) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 780px;
  padding: 120px 40px 80px;
}

.hero-content .tag {
  background: rgba(247,242,26,0.2);
  color: var(--accent);
  border: 1px solid rgba(247,242,26,0.4);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  animation: bounce 2s infinite;
}

.hero-scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}

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

/* ===========================
   BLOCK 1: STEP MAP + PRICES + FORM
=========================== */

.step-map {
  background: linear-gradient(160deg, var(--light-bg) 0%, #fff 100%);
}

.steps-title {
  text-align: center;
  margin-bottom: 60px;
}

.steps-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 0;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.step-icon:hover svg { color: white; }

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  transition: var(--transition);
}

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

.step-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Mini price cards */
.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.mini-price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: 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(--primary-light));
}

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

.mini-price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #fdf5fa 0%, #fff 100%);
}

.mini-price-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

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

.mini-price-unit {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

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

/* Booking form */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto 40px;
}

.booking-form-wrap h3 {
  text-align: center;
  margin-bottom: 28px;
  color: var(--dark);
}

.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 label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.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(199,21,133,0.1);
}

.form-group input::placeholder { color: #bbb; }

.form-submit {
  text-align: center;
  margin-top: 24px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

.learn-more-wrap {
  text-align: center;
  margin-top: 16px;
}

/* ===========================
   BLOCK 2: SLIDER
=========================== */

.slider-section {
  overflow: hidden;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  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;
}

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,26,46,0.85));
  padding: 60px 40px 32px;
  color: var(--white);
}

.slide-caption h3 { color: var(--white); margin-bottom: 8px; }
.slide-caption p { opacity: 0.85; font-size: 0.96rem; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
  z-index: 10;
}

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

.slider-btn-prev { left: 20px; }
.slider-btn-next { right: 20px; }

.slider-btn svg { width: 22px; height: 22px; color: var(--primary); transition: var(--transition); }
.slider-btn:hover svg { color: white; }

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

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

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ===========================
   BLOCK 3: ACCORDION
=========================== */

.accordion-section { background: var(--light-bg); }

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

.accordion-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.accordion-item:first-child {
  border-top: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

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

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  transition: var(--transition);
}

.accordion-item.open .accordion-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.accordion-item.open .accordion-icon svg { color: white; }

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

.accordion-body-inner {
  padding: 0 4px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-body-inner ul {
  list-style: none;
  margin-top: 12px;
}

.accordion-body-inner ul li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.accordion-body-inner ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.7rem;
  top: 6px;
}

/* ===========================
   BLOCK 4: CIRCULAR ABOUT
=========================== */

.about-section { background: var(--dark); }

.about-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-orbit {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.about-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(199,21,133,0.5);
  box-shadow: 0 0 40px rgba(199,21,133,0.25);
  z-index: 2;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(199,21,133,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spinRing 20s linear infinite;
}

.orbit-ring-1 {
  width: 300px;
  height: 300px;
}

.orbit-ring-2 {
  width: 400px;
  height: 400px;
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes spinRing {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.orbit-item {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid rgba(199,21,133,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  transition: var(--transition);
  cursor: default;
}

.orbit-item:hover {
  border-color: var(--primary);
  transform: scale(1.1);
  z-index: 3;
}

.orbit-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.orbit-item span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.2;
}

.orbit-item:nth-child(1) { top: -40px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(2) { top: 25%; right: -40px; }
.orbit-item:nth-child(3) { bottom: 25%; right: -40px; }
.orbit-item:nth-child(4) { bottom: -40px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(5) { top: 25%; left: -40px; }
.orbit-item:nth-child(6) { bottom: 25%; left: -40px; }

.about-text { flex: 1; }

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

.about-text p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.stat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,21,133,0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-main);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ===========================
   BLOCK 5: SCHEDULE TABLE
=========================== */

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

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
}

.schedule-table thead tr {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.schedule-table th {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.schedule-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0e0ec;
  vertical-align: middle;
}

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

.schedule-table tbody tr:hover { background: var(--light-bg); }

.level-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-main);
}

.level-beginner {
  background: rgba(0,255,255,0.12);
  color: #00a0a0;
}

.level-intermediate {
  background: rgba(199,21,133,0.1);
  color: var(--primary);
}

.level-all {
  background: rgba(247,242,26,0.2);
  color: #8a7600;
}

.day-badge {
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-main);
}

.time-cell {
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--primary);
}

/* ===========================
   BLOCK 6: PRICE CARDS
=========================== */

.prices-section { background: var(--light-bg); }

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

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

.price-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

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

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

.price-card.featured h3,
.price-card.featured .price-amount,
.price-card.featured .price-desc { color: white; }

.price-card.featured .price-feature { color: rgba(255,255,255,0.85); }

.price-card.featured::after { background: rgba(255,255,255,0.3); }

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-main);
}

.price-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(199,21,133,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.price-card.featured .price-icon { background: rgba(255,255,255,0.2); }

.price-icon svg { width: 26px; height: 26px; color: var(--primary); }
.price-card.featured .price-icon svg { color: white; }

.price-card h3 { margin-bottom: 6px; font-size: 1.15rem; }
.price-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 20px; }

.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-main);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

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

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

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.price-feature:last-child { border-bottom: none; }

.price-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(199,21,133,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-card.featured .price-feature-icon { background: rgba(255,255,255,0.2); }

.check-svg { width: 10px; height: 10px; color: var(--primary); }
.price-card.featured .check-svg { color: white; }

/* ===========================
   BLOCK 7: CALCULATOR
=========================== */

.calculator-section { background: var(--dark); }

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

.calculator-text h2 { color: var(--white); margin-bottom: 20px; }
.calculator-text p { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 1.02rem; }

.calc-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(199,21,133,0.3);
  border-radius: var(--radius);
  padding: 40px;
}

.calc-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-main);
  margin-bottom: 12px;
  display: block;
}

.calc-slider {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary) var(--val, 50%), rgba(255,255,255,0.2) var(--val, 50%));
  outline: none;
  cursor: pointer;
  margin-bottom: 8px;
}

.calc-slider::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(199,21,133,0.4);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  cursor: pointer;
}

.calc-value-display {
  text-align: right;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.calc-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.calc-type-btn {
  padding: 10px 14px;
  border: 2px solid rgba(199,21,133,0.3);
  border-radius: var(--radius-sm);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-main);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.calc-type-btn:hover {
  border-color: var(--primary);
  color: white;
}

.calc-type-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.calc-result {
  background: rgba(199,21,133,0.15);
  border: 1px solid rgba(199,21,133,0.4);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: center;
}

.calc-result-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.calc-result-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-main);
}

.calc-result-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ===========================
   BLOCK 8: SELLING TEXT
=========================== */

.selling-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a1e 100%);
  position: relative;
  overflow: hidden;
}

.selling-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,21,133,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.selling-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.selling-inner h2 { color: var(--white); margin-bottom: 28px; }

.selling-inner .lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}

.selling-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.selling-highlights {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.selling-highlight {
  background: rgba(199,21,133,0.15);
  border: 1px solid rgba(199,21,133,0.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 220px;
  text-align: center;
}

.selling-highlight .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.selling-highlight p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.selling-quote {
  position: relative;
  padding: 32px 40px;
  background: rgba(247,242,26,0.07);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 36px 0;
  text-align: left;
}

.selling-quote p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  margin: 0;
}

/* ===========================
   BLOCK 9: INFOGRAPHIC
=========================== */

.infographic-section { background: var(--light-bg); }

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

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

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

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

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

.infographic-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(199,21,133,0.1), rgba(0,255,255,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(199,21,133,0.15);
  transition: var(--transition);
}

.infographic-card:hover .infographic-icon-wrap {
  background: linear-gradient(135deg, rgba(199,21,133,0.2), rgba(0,255,255,0.15));
  border-color: var(--primary);
}

.infographic-icon-wrap svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.infographic-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-main);
  line-height: 1;
  margin-bottom: 6px;
}

.infographic-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.infographic-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   BLOCK 10: PHOTO GALLERY
=========================== */

.gallery-section { background: var(--white); }

.gallery-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0 0 56px;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(26,26,46,0.88));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-caption {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-main);
}

/* ===========================
   BLOCK 11: INTERACTIVE CARDS + POPUP
=========================== */

.formats-section { background: var(--light-bg2); }

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

.format-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

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

.format-card-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0e0ec 0%, #e0d0ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-card-img-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(199,21,133,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-card-img-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.format-card-body {
  padding: 24px;
}

.format-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.format-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ===========================
   MODAL / POPUP
=========================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 28px 32px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.modal-header h3 { color: white; margin-bottom: 6px; font-size: 1.3rem; }
.modal-header p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
}

.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-close svg { width: 16px; height: 16px; }

.modal-body { padding: 32px; }

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.radio-option {
  position: relative;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  width: 0;
}

.radio-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-family: var(--font-main);
  font-weight: 500;
  transition: var(--transition);
}

.radio-option input:checked + label {
  border-color: var(--primary);
  background: rgba(199,21,133,0.07);
  color: var(--primary);
}

.radio-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: var(--transition);
  background: transparent;
}

.radio-option input:checked + label .radio-dot {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 2px white;
}

/* ===========================
   CONTACTS
=========================== */

.contacts-section { background: var(--white); }

.contacts-header {
  text-align: center;
  padding: 70px 0 40px;
}

.contacts-header h2 { margin-bottom: 12px; }

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f0e0ec 0%, #e5d0e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(199,21,133,0.05) 40px,
    rgba(199,21,133,0.05) 80px
  );
}

.map-inner {
  text-align: center;
  z-index: 1;
  position: relative;
}

.map-inner svg {
  width: 60px;
  height: 60px;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 16px;
}

.map-inner p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0 80px;
}

.contact-info h3 { margin-bottom: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(199,21,133,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; color: var(--primary); }

.contact-text {
  font-size: 0.95rem;
}

.contact-text strong {
  display: block;
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.96rem;
  margin-bottom: 18px;
}

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

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

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.footer-contacts svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

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

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

/* ===========================
   COOKIE BANNER
=========================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 2px solid rgba(199,21,133,0.4);
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  min-width: 280px;
}

.cookie-text a { color: var(--primary); }

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

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

.cookie-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

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

/* ===========================
   SCROLL ANIMATIONS
=========================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* ===========================
   INNER PAGES
=========================== */

.inner-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a1e 100%);
  padding: 130px 0 70px;
  text-align: center;
}

.inner-hero h1 { color: var(--white); margin-bottom: 14px; }
.inner-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

.inner-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 24px;
}

.inner-content h2 { margin: 36px 0 14px; font-size: 1.4rem; }
.inner-content h3 { margin: 28px 0 10px; font-size: 1.15rem; }
.inner-content p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.inner-content ul { margin: 16px 0 20px 24px; }
.inner-content ul li { margin-bottom: 8px; line-height: 1.7; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-main);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.back-link svg { width: 18px; height: 18px; }
.back-link:hover { color: var(--primary-dark); gap: 12px; }

/* ===========================
   THANKS PAGE
=========================== */

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

.thanks-icon svg { width: 52px; height: 52px; color: white; }

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

.thanks-page h1 { margin-bottom: 16px; color: var(--dark); }
.thanks-page p { max-width: 460px; color: var(--text-light); margin-bottom: 12px; line-height: 1.7; }
.thanks-page .btn { margin-top: 24px; }

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { gap: 50px; }
  .about-orbit { width: 340px; height: 340px; }
  .about-center-img { width: 180px; height: 180px; }
  .orbit-ring-1 { width: 240px; height: 240px; }
  .orbit-ring-2 { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .header-inner { padding: 16px 24px; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 998;
    gap: 4px;
  }

  .nav-menu.open { right: 0; }
  .nav-menu a { width: 100%; font-size: 1.05rem; padding: 12px 16px; }
  .nav-cta { margin: 12px 0 0; }
  .burger { display: flex; z-index: 999; }

  .hero-content { padding: 110px 24px 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: fit-content; }

  .steps-timeline {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .steps-timeline::before { display: none; }
  .step-item { max-width: 300px; }

  .mini-prices { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }

  .accordion-grid { grid-template-columns: 1fr; }
  .accordion-image { display: none; }

  .about-inner { flex-direction: column; gap: 40px; }
  .about-orbit { width: 300px; height: 300px; }
  .about-center-img { width: 160px; height: 160px; }
  .orbit-ring-1 { width: 220px; height: 220px; }
  .orbit-ring-2 { width: 290px; height: 290px; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .prices-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }

  .calculator-inner { grid-template-columns: 1fr; gap: 40px; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

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

  .contact-details { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-inner { padding: 20px 24px; }

  .radio-group { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .slide img { height: 340px; }
}
