/* ===== CSS VARIABLES ===== */
:root {
  --primary: #7851A9;
  --primary-dark: #5a3d80;
  --primary-light: #9b72c9;
  --accent: #4169E1;
  --accent-light: #6b8ff0;
  --highlight: #FBA0E3;
  --highlight-light: #fdc5ee;
  --dark: #1a1a2e;
  --dark-soft: #2d2d4e;
  --text: #2c2c3e;
  --text-light: #6b6b8a;
  --text-muted: #9999b3;
  --bg: #fafafa;
  --bg-alt: #f3f0f9;
  --bg-card: #ffffff;
  --border: #e8e0f5;
  --border-light: #f0ebfc;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(120, 81, 169, 0.10);
  --shadow-md: 0 8px 40px rgba(120, 81, 169, 0.15);
  --shadow-lg: 0 16px 64px rgba(120, 81, 169, 0.20);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Montserrat', 'Inter', system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  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); }
h4 { font-size: 1.1rem; }

p { line-height: 1.7; }

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

.section {
  padding: 96px 0;
  position: relative;
}

.section-sm {
  padding: 64px 0;
}

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

.section-title h2 {
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(120, 81, 169, 0.12);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  transition: var(--transition);
  letter-spacing: -0.5px;
}

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

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

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

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

.nav a:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

.header.scrolled .nav a {
  color: var(--text);
}

.header.scrolled .nav a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.header-cta {
  background: white;
  color: var(--primary) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(255,255,255,0.3);
  transition: var(--transition) !important;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.4) !important;
}

.header.scrolled .header-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white !important;
}

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

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

.header.scrolled .burger span {
  background: var(--dark);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 8px 24px rgba(120, 81, 169, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(120, 81, 169, 0.45);
}

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

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-highlight {
  background: linear-gradient(135deg, var(--highlight), #f860c0);
  color: white;
  box-shadow: 0 8px 24px rgba(251, 160, 227, 0.4);
}

.btn-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(251, 160, 227, 0.5);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 50%, #3d2060 100%);
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(120,81,169,0.6) 50%, rgba(65,105,225,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: var(--highlight-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before {
  content: '✦';
  color: var(--highlight);
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--highlight), #ff9ff3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

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

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-scroll::after {
  content: '↓';
  font-size: 1.2rem;
}

.hero-floating {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInRight 1s ease 0.5s forwards;
  opacity: 0;
}

.hero-float-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 200px;
}

.hero-float-card .label {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hero-float-card .value {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-float-card .icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* ===== STEP MAP (BLOCK 1) ===== */
.steps-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #f5f0ff 100%);
}

.steps-map {
  position: relative;
  padding: 0 0 60px;
}

.steps-line {
  position: absolute;
  top: 40px;
  left: calc(10% + 40px);
  right: calc(10% + 40px);
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
  z-index: 0;
  border-radius: 2px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  border-radius: var(--radius);
  padding: 32px 20px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.step-card:hover::before {
  opacity: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(120, 81, 169, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

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

.step-card h4 {
  margin-bottom: 8px;
  color: var(--dark);
}

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

.step-result {
  margin-top: 12px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(120,81,169,0.08), rgba(251,160,227,0.1));
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--border);
}

/* ===== MINI PRICE CARDS ===== */
.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

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

.mini-price-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.mini-price-card.popular::before {
  content: 'Популярно';
  position: absolute;
  top: 23px;
  right: -36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mini-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mini-price-card .price-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

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

.mini-price-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0;
}

.mini-price-card .meta {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ===== BOOKING FORM ===== */
.booking-form-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  max-width: 720px;
  margin: 0 auto;
}

.booking-form-block h3 {
  text-align: center;
  margin-bottom: 8px;
}

.booking-form-block .subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(120, 81, 169, 0.08);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

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

.form-submit .btn {
  width: 100%;
  max-width: 320px;
  padding: 16px 40px;
  font-size: 1rem;
}

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

.more-btn-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ===== CAROUSEL / SLIDER ===== */
.carousel-section {
  background: var(--dark);
  padding: 96px 0;
  overflow: hidden;
}

.carousel-section .section-title h2 {
  background: linear-gradient(135deg, white, var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-section .section-title p {
  color: rgba(255,255,255,0.6);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

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

.carousel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.carousel-caption h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.carousel-caption p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

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

.carousel-btn {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

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

/* ===== ACCORDION ===== */
.accordion-section {
  background: white;
}

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

.accordion-visual {
  position: sticky;
  top: 100px;
}

.accordion-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.accordion-visual-badge {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.accord-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--border);
}

.accord-badge .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.accord-badge .text p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.accord-badge .text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

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

.accordion-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
}

.accordion-header:hover {
  background: var(--bg-alt);
}

.accordion-header .q-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.accordion-header h4 {
  flex: 1;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.accordion-arrow {
  width: 32px;
  height: 32px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-arrow {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}

.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 24px 24px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

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

.accordion-body-inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.accordion-body-inner ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== ABOUT / CIRCULAR ===== */
.about-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #ede5ff 100%);
}

.about-circle-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.about-center-photo {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.about-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-orbit {
  position: absolute;
  width: 560px;
  height: 560px;
  border: 2px dashed var(--border);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.about-orbit-item {
  position: absolute;
  width: 120px;
  background: white;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  animation: spin-reverse 30s linear infinite;
  border: 1px solid var(--border-light);
}

.about-orbit-item:nth-child(1) { top: -16px; left: 50%; transform: translateX(-50%); }
.about-orbit-item:nth-child(2) { top: 50%; right: -16px; transform: translateY(-50%); }
.about-orbit-item:nth-child(3) { bottom: -16px; left: 50%; transform: translateX(-50%); }
.about-orbit-item:nth-child(4) { top: 50%; left: -16px; transform: translateY(-50%); }

.about-orbit-item .oi-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.about-orbit-item .oi-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-orbit-item .oi-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}

.about-text {
  max-width: 560px;
}

.about-text h2 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.98rem;
  line-height: 1.8;
}

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

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

.about-feature .af-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature .af-text h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--dark);
}

.about-feature .af-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== SCHEDULE TABLE ===== */
.schedule-section {
  background: white;
}

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  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(--primary), var(--accent));
}

.schedule-table thead th {
  color: white;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.schedule-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.schedule-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.schedule-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

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

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

.schedule-table td {
  padding: 16px 20px;
  color: var(--text);
  font-size: 0.92rem;
}

.schedule-table .day {
  font-weight: 700;
  color: var(--primary);
}

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.level-begin {
  background: rgba(120, 81, 169, 0.1);
  color: var(--primary);
}

.level-mid {
  background: rgba(65, 105, 225, 0.1);
  color: var(--accent);
}

.level-all {
  background: rgba(251, 160, 227, 0.15);
  color: #c060a0;
}

/* ===== PRICE CARDS (FULL) ===== */
.price-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #ede5ff 50%, var(--bg-alt) 100%);
}

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

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

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

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

.price-card:hover::after {
  opacity: 1;
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured::after {
  opacity: 1;
}

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

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

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--highlight), #f860c0);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0;
  line-height: 1;
}

.price-card.featured .price-amount {
  background: linear-gradient(135deg, var(--highlight), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.price-features {
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.price-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card.featured .price-features li::before {
  color: var(--highlight);
}

.price-features li.x {
  opacity: 0.4;
}

.price-features li.x::before {
  content: '✕';
  color: var(--text-muted);
}

/* ===== CALCULATOR ===== */
.calc-section {
  background: var(--dark);
  color: white;
}

.calc-section .section-title h2 {
  background: linear-gradient(135deg, white, var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-section .section-title p {
  color: rgba(255,255,255,0.6);
}

.calc-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 52px 60px;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

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

.calc-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
}

.calc-slider {
  position: relative;
  padding: 10px 0;
}

.calc-slider input[type=range] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

.calc-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--primary));
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(120,81,169,0.4);
}

.calc-slider-value {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.calc-slider-value span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.calc-slider-current {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.calc-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.calc-radio:hover {
  background: rgba(255,255,255,0.10);
}

.calc-radio.selected {
  background: rgba(120,81,169,0.3);
  border-color: var(--primary);
}

.calc-radio input {
  accent-color: var(--primary);
}

.calc-radio label {
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

.calc-result {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 8px;
}

.calc-result .result-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-result .result-price {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.calc-result .result-per {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

/* ===== PROMO TEXT BLOCK ===== */
.promo-section {
  background: linear-gradient(135deg, var(--primary), var(--dark) 50%, var(--accent));
  color: white;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(251,160,227,0.15) 0%, transparent 60%);
  animation: pulse-bg 6s ease-in-out infinite;
}

.promo-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.promo-quote {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
  color: white;
}

.promo-quote span {
  background: linear-gradient(90deg, var(--highlight), #ffc8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.promo-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.promo-word {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  transition: var(--transition);
}

.promo-word:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* ===== INFOGRAPHIC ===== */
.infographic-section {
  background: white;
}

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

.info-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: white;
}

.info-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(120, 81, 169, 0.25);
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--dark);
}

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

.info-counter {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.infographic-timeline {
  position: relative;
  padding: 0 20px;
}

.infographic-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--highlight));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--border);
}

.timeline-content.right {
  text-align: right;
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(120, 81, 169, 0.35);
  z-index: 1;
  flex-shrink: 0;
  border: 3px solid white;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--bg-alt);
}

.gallery-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--highlight), var(--accent), transparent);
  margin-bottom: 56px;
  border-radius: 2px;
}

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

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(26,26,46,0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption p {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

.gallery-caption span {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: linear-gradient(135deg, var(--bg-alt), #ede5ff);
}

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

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars span {
  color: #f59e0b;
  font-size: 0.95rem;
}

.review-text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

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

.review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
}

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

/* ===== CONTACTS / CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark), #2d1060);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(120,81,169,0.3), transparent 60%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(65,105,225,0.2), transparent 60%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-item .ci-icon {
  font-size: 1.5rem;
  background: rgba(255,255,255,0.1);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item .ci-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item .ci-value {
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f0f1a;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

.footer-col h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

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

.footer-col ul li a:hover {
  color: var(--highlight);
}

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

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

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

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

.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

.footer-info {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text h5 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.cookie-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--highlight);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-minimal {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-minimal:hover {
  background: rgba(255,255,255,0.15);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-decoration: underline;
}

/* ===== ANIMATE-ON-SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== BADGE / TAGS ===== */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(120,81,169,0.12), rgba(65,105,225,0.12));
  color: var(--primary);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav a {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--highlight);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ===== SUBPAGE HERO ===== */
.sub-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-soft));
  padding: 140px 0 80px;
  text-align: center;
}

.sub-hero h1 {
  color: white;
  margin-bottom: 12px;
}

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

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content .updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ===== THANKS PAGE ===== */
.thanks-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-alt), #ede5ff);
  padding: 80px 24px;
}

.thanks-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 64px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 28px;
  animation: pulse 2s ease-in-out infinite;
}

.thanks-card h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes pulse-bg {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

/* Orbit item corrections */
.about-orbit-item:nth-child(1) {
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  animation: spin-reverse 30s linear infinite;
}
.about-orbit-item:nth-child(2) {
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  animation: spin-reverse 30s linear infinite;
}
.about-orbit-item:nth-child(3) {
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  animation: spin-reverse 30s linear infinite;
}
.about-orbit-item:nth-child(4) {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  animation: spin-reverse 30s linear infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-line {
    display: none;
  }
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

  .accordion-visual {
    position: static;
  }

  .about-circle-container {
    flex-direction: column;
    min-height: auto;
    gap: 40px;
  }

  .about-orbit {
    display: none;
  }

  .about-center-photo {
    width: 220px;
    height: 220px;
  }

  .about-orbit-items-manual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }

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

  .calc-container {
    padding: 36px 28px;
  }

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

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

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

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

  .hero-floating {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }
}

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

  .nav { display: none; }
  .burger { display: flex; }

  .header-cta { display: none; }

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

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

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

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

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

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

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

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

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

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

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

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

  .infographic-timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-dot {
    display: none;
  }

  .contact-info {
    gap: 24px;
  }

  .thanks-card {
    padding: 40px 24px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
