@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --primary: #F64A46;
  --primary-dark: #d63b37;
  --accent: #A2A2D0;
  --highlight: #EDFF21;
  --dark: #1a1a2e;
  --dark-2: #2d2d44;
  --light: #faf9f7;
  --light-2: #f3f1ee;
  --text: #2c2c3e;
  --text-muted: #6b6b85;
  --white: #ffffff;
  --border: #e8e5df;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 500;
}

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

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

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

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(246, 74, 70, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(246, 74, 70, 0.4);
}

.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-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover {
  background: var(--highlight);
  transform: translateY(-2px);
}

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

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

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 24px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}

.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-studio.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.5) 60%, transparent 100%);
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--highlight);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title span {
  color: var(--highlight);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  left: 0;
  z-index: 1;
}

.hero-stats-inner {
  display: flex;
  gap: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.8s 1.2s forwards;
}

.hero-stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--highlight);
  font-weight: 600;
}

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

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ─── BLOCK 1: STEP MAP + MINI PRICES + FORM ─────── */
#start {
  padding: 100px 0;
  background: var(--white);
}

.steps-header {
  text-align: center;
  margin-bottom: 64px;
}

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

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

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 8px 24px rgba(246, 74, 70, 0.25);
  flex-shrink: 0;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 600;
}

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

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

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

.mini-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background var(--transition);
}

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

.mini-price-card:hover::before,
.mini-price-card.featured::before {
  background: var(--primary);
}

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

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

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

.mini-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.mini-price-curr {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.mini-price-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.start-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--light-2);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.start-form h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 8px;
  text-align: center;
}

.start-form p {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

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

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

/* ─── BLOCK 2: SLIDER ─────────────────────────────── */
#gallery-slider {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}

.slider-header {
  margin-bottom: 48px;
}

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

.slider-header .section-tag {
  background: rgba(237, 255, 33, 0.15);
  color: var(--highlight);
}

.slider-header .section-sub {
  color: rgba(255,255,255,0.6);
}

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

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

.slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
}

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px 32px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}

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

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

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

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

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

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

.slider-arrows {
  display: flex;
  gap: 12px;
}

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

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

/* ─── BLOCK 3: ACCORDION ──────────────────────────── */
#faq {
  padding: 100px 0;
  background: var(--light);
}

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

.faq-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.faq-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--highlight);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.accordion-item {
  border-bottom: 1.5px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-btn {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.accordion-btn:hover {
  background: var(--light);
}

.accordion-btn.active {
  background: var(--light);
}

.accordion-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 500;
  padding-right: 16px;
  line-height: 1.3;
}

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

.accordion-btn.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

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

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

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

/* ─── BLOCK 4: CIRCULAR ABOUT ─────────────────────── */
#about {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.about-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 64px;
}

.about-circle-wrap {
  position: relative;
  width: 520px;
  height: 520px;
  flex-shrink: 0;
}

.about-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.about-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border: 1.5px dashed var(--border);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

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

.orbit-node {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  transform-origin: center;
  animation: counter-rotate 30s linear infinite;
  cursor: default;
}

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

.orbit-node:nth-child(1) { top: -50px; left: 50%; margin-left: -50px; }
.orbit-node:nth-child(2) { top: 50%; margin-top: -50px; right: -50px; }
.orbit-node:nth-child(3) { bottom: -50px; left: 50%; margin-left: -50px; }
.orbit-node:nth-child(4) { top: 50%; margin-top: -50px; left: -50px; }

.orbit-icon {
  font-size: 1.5rem;
}

.orbit-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.about-text {
  max-width: 660px;
  text-align: center;
}

.about-text .section-title {
  margin-bottom: 20px;
}

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

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.pillar {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  border: 1.5px solid var(--border);
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

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

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

/* ─── BLOCK 5: SCHEDULE TABLE ─────────────────────── */
#schedule {
  padding: 100px 0;
  background: var(--light-2);
}

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

.schedule-info h2 {
  margin-bottom: 20px;
}

.schedule-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
}

.schedule-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sch-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.sch-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(246, 74, 70, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

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

.schedule-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

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

.schedule-table thead {
  background: var(--dark);
  color: var(--white);
}

.schedule-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

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

.schedule-table tbody tr:nth-child(even) {
  background: var(--light);
}

.schedule-table tbody tr:hover {
  background: rgba(246, 74, 70, 0.04);
}

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(162, 162, 208, 0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── BLOCK 6: PRICES ─────────────────────────────── */
#prices {
  padding: 100px 0;
  background: var(--dark);
}

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

#prices .section-tag {
  color: var(--highlight);
  background: rgba(237,255,33,0.12);
}

#prices .section-sub {
  color: rgba(255,255,255,0.6);
}

.prices-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.price-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}

.price-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
}

.price-card.highlighted {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.04);
}

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

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.price-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.price-card.highlighted .price-card-name {
  color: rgba(255,255,255,0.8);
}

.price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.price-num sup {
  font-size: 1.4rem;
  vertical-align: super;
}

.price-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.price-card.highlighted .price-period {
  color: rgba(255,255,255,0.7);
}

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

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.price-card.highlighted .price-features li {
  color: rgba(255,255,255,0.9);
}

.price-features li::before {
  content: '✓';
  color: var(--highlight);
  font-weight: 700;
  flex-shrink: 0;
}

.price-btn {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.price-btn:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.price-card.highlighted .price-btn {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.price-card.highlighted .price-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ─── BLOCK 7: CALCULATOR ────────────────────────── */
#calculator {
  padding: 100px 0;
  background: var(--light);
}

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

.calc-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.calc-box h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.calc-box > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

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

.calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.calc-value {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}

.range-input {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(246,74,70,0.4);
  transition: transform var(--transition);
}

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

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

.type-btn {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

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

.type-btn.selected {
  border-color: var(--primary);
  background: rgba(246, 74, 70, 0.08);
  color: var(--primary);
  font-weight: 600;
}

.calc-result {
  margin-top: 28px;
  padding: 24px;
  background: var(--dark);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-result-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.calc-result-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--highlight);
  font-weight: 600;
}

.calc-text {
  padding: 0 16px;
}

.calc-text .section-title {
  margin-bottom: 20px;
}

.calc-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.calc-text .btn {
  margin-top: 16px;
}

/* ─── BLOCK 8: SELLING TEXT ──────────────────────── */
#manifesto {
  padding: 100px 0;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.manifesto-deco {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: rgba(0,0,0,0.1);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.manifesto-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.manifesto-content .section-tag {
  color: var(--highlight);
  background: rgba(237,255,33,0.15);
  border: 1px solid rgba(237,255,33,0.3);
}

.manifesto-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.15;
}

.manifesto-content h2 em {
  font-style: italic;
  color: var(--highlight);
}

.manifesto-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.manifesto-quote {
  background: rgba(255,255,255,0.1);
  border-left: 3px solid var(--highlight);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.manifesto-quote p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

.manifesto-big-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

/* ─── BLOCK 9: INFOGRAPHIC ────────────────────────── */
#benefits {
  padding: 100px 0;
  background: var(--white);
}

.benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

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

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

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

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

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

.benefit-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(246,74,70,0.1), rgba(162,162,208,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  border: 2px solid var(--border);
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.benefit-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--border);
  font-weight: 600;
  line-height: 1;
}

/* ─── BLOCK 10: PHOTO GALLERY ────────────────────── */
#photo-gallery {
  padding: 100px 0;
  background: var(--light-2);
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── BLOCK 11: INTERACTIVE CARDS + POPUP ────────── */
#yoga-focuses {
  padding: 100px 0;
  background: var(--dark);
}

#yoga-focuses .section-title {
  color: var(--white);
}

#yoga-focuses .section-tag {
  color: var(--highlight);
  background: rgba(237,255,33,0.12);
}

#yoga-focuses .section-sub {
  color: rgba(255,255,255,0.6);
}

.focuses-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.focus-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246,74,70,0.08), rgba(162,162,208,0.08));
  opacity: 0;
  transition: opacity var(--transition);
}

.focus-card:hover {
  border-color: rgba(246,74,70,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

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

.focus-emoji {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.focus-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

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

.focus-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(246,74,70,0.1);
  border: 1.5px solid rgba(246,74,70,0.25);
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

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

/* ─── MODAL ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

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

.modal-header {
  padding: 32px 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-title-emoji {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.modal-header h3 {
  font-size: 1.8rem;
  color: var(--dark);
  flex: 1;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
  margin-left: 16px;
  margin-top: 4px;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-body {
  padding: 24px 32px 32px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

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

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
  color: var(--text);
}

.radio-label:has(input:checked) {
  border-color: var(--primary);
  background: rgba(246,74,70,0.06);
  color: var(--primary);
  font-weight: 600;
}

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

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

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

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

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

.cookie-text h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
  font-family: 'Cormorant Garamond', serif;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

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

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

.cookie-btn-min {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-min:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

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

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

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

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

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

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 500;
}

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

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

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

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-col address a {
  color: var(--accent);
  transition: color var(--transition);
}

.footer-col address a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-links {
  display: flex;
  gap: 24px;
}

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

.footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ─── ANIMATION UTILITIES ─────────────────────────── */
.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);
}

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

/* ─── THANKS PAGE ─────────────────────────────────── */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 40px 24px;
}

.thanks-card {
  background: var(--white);
  border-radius: 24px;
  padding: 64px 56px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  animation: fadeUp 0.8s ease;
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

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

.thanks-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ─── LEGAL PAGES ─────────────────────────────────── */
.legal-hero {
  background: var(--dark);
  padding: 120px 0 64px;
}

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

.legal-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.legal-body {
  padding: 64px 0 80px;
  background: var(--white);
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border);
}

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

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

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

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

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

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

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

@media (max-width: 768px) {
  .nav-menu,
  .header-cta .btn {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .hero-stats-inner {
    margin: 0;
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 0 0 50%;
  }

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

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

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

  .faq-layout,
  .schedule-layout,
  .calc-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-visual {
    order: -1;
  }

  .about-circle-wrap {
    width: 300px;
    height: 300px;
  }

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

  .about-orbit {
    width: 260px;
    height: 260px;
  }

  .orbit-node {
    width: 70px;
    height: 70px;
  }

  .orbit-node:nth-child(1) { top: -35px; margin-left: -35px; }
  .orbit-node:nth-child(2) { margin-top: -35px; right: -35px; }
  .orbit-node:nth-child(3) { bottom: -35px; margin-left: -35px; }
  .orbit-node:nth-child(4) { margin-top: -35px; left: -35px; }

  .about-pillars {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .manifesto-quotes {
    grid-template-columns: 1fr;
  }

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

  .start-form {
    padding: 24px;
  }

  .calc-box {
    padding: 28px;
  }

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

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

  .cookie-inner {
    flex-direction: column;
    gap: 16px;
  }
}

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

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

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

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

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