/* ===== PILATES LAB — MAIN STYLESHEET ===== */

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

:root {
  --teal: #30D5C8;
  --blue: #6495ED;
  --green: #00FF7F;
  --dark: #0e1117;
  --dark-2: #161b22;
  --dark-3: #1e242d;
  --dark-4: #252c38;
  --light: #f5f8ff;
  --light-2: #eef2ff;
  --gray: #8892a4;
  --gray-2: #606878;
  --white: #ffffff;
  --text-main: #1a1f2e;
  --border: rgba(48, 213, 200, 0.18);
  --border-dark: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(48, 213, 200, 0.10);
  --shadow-lg: 0 8px 48px rgba(48, 213, 200, 0.18);
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-teal { color: var(--teal); }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-gray { color: var(--gray); }
.serif { font-family: var(--font-serif); }
.hidden { display: none !important; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.72s ease, transform 0.72s 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; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #1ab8ac);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(48, 213, 200, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(48, 213, 200, 0.5); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: rgba(48, 213, 200, 0.1); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--teal);
}
.section-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 560px;
}

/* ===== HEADER / NAV ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(14, 17, 23, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  padding: 14px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: 700;
}
.logo span { color: var(--teal); }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  color: white;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 17, 23, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: var(--gray);
  background: transparent;
  line-height: 1;
}

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e1117 0%, #131928 50%, #0a1420 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-pilates.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(0.7);
}
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: rgba(48, 213, 200, 0.08); top: -200px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(100, 149, 237, 0.07); bottom: -100px; left: -100px; animation-delay: 3s; }
.orb-3 { width: 300px; height: 300px; background: rgba(0, 255, 127, 0.05); top: 40%; left: 30%; animation-delay: 6s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(48, 213, 200, 0.1);
  border: 1px solid rgba(48, 213, 200, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-title strong { font-weight: 600; display: block; }
.hero-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 480px;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(48, 213, 200, 0.1);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-img-wrap:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: rgba(14,17,23,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(48, 213, 200, 0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.badge-inner { display: flex; align-items: center; gap: 12px; }
.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.badge-text { font-size: 13px; }
.badge-text strong { display: block; font-weight: 600; color: var(--white); }
.badge-text span { color: var(--gray); font-size: 12px; }

/* ===== STEP MAP SECTION ===== */
#steps {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
#steps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.steps-header { text-align: center; margin-bottom: 72px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 80px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--green));
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.step-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
  box-shadow: 0 0 0 6px rgba(48, 213, 200, 0.06);
}
.step-card:hover .step-num {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(48, 213, 200, 0.1);
}
.step-emoji { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.step-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--gray); line-height: 1.55; }
/* Mini price cards */
.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.mini-price-card {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mini-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.mini-price-card:hover::before { transform: scaleX(1); }
.mini-price-card:hover {
  border-color: rgba(48, 213, 200, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.mini-price-card.featured {
  border-color: rgba(48, 213, 200, 0.35);
  background: linear-gradient(135deg, rgba(48, 213, 200, 0.06), rgba(100, 149, 237, 0.04));
}
.mini-price-card.featured::before { transform: scaleX(1); }
.mini-price-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(48, 213, 200, 0.15);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mini-price-name { font-size: 14px; color: var(--gray); margin-bottom: 8px; }
.mini-price-amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.mini-price-amount sup { font-size: 1rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.mini-price-details { font-size: 13px; color: var(--gray); }
/* Booking form in steps */
.booking-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
}
.booking-form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.booking-form-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
}
.form-input::placeholder { color: var(--gray-2); }
.form-input:focus {
  border-color: var(--teal);
  background: rgba(48, 213, 200, 0.05);
  box-shadow: 0 0 0 3px rgba(48, 213, 200, 0.12);
}
.steps-more-btn { text-align: center; }

/* ===== SLIDER / CAROUSEL ===== */
#slider {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}
.slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.slider-nav { display: flex; gap: 12px; }
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: rgba(48, 213, 200, 0.15);
  border-color: var(--teal);
  color: var(--teal);
  transform: scale(1.05);
}
.slider-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.slider-inner {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.slide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.slide-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.slide-card:hover .slide-img img { transform: scale(1.06); }
.slide-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.slide-body { padding: 24px; }
.slide-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(48, 213, 200, 0.12);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.slide-title { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.slide-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active {
  background: var(--teal);
  width: 28px;
  border-radius: 4px;
}

/* ===== ACCORDION SECTION ===== */
#faq {
  padding: 100px 0;
  background: var(--dark-2);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 120px; }
.faq-sidebar-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow-lg);
}
.faq-sidebar-img img { width: 100%; height: 100%; object-fit: cover; }
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  gap: 16px;
}
.accordion-trigger:hover { color: var(--teal); }
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray);
  flex-shrink: 0;
  transition: var(--transition);
}
.accordion-item.open .accordion-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--dark);
  transform: rotate(45deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-content.open {
  max-height: 600px;
}
.accordion-content-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}
.accordion-content-inner ul { list-style: none; margin-top: 12px; }
.accordion-content-inner ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
}
.accordion-content-inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 12px;
}

/* ===== CIRCULAR ABOUT SECTION ===== */
#about {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-orbital {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.orbital-center {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(48, 213, 200, 0.3);
  box-shadow: 0 0 0 12px rgba(48, 213, 200, 0.05), var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.orbital-center img { width: 100%; height: 100%; object-fit: cover; }
.orbital-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(48, 213, 200, 0.12);
  animation: orbitSpin 20s linear infinite;
}
.orbital-ring-2 {
  inset: 30px;
  border-style: dashed;
  animation-duration: 30s;
  animation-direction: reverse;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.orbit-item {
  position: absolute;
  width: 100px;
  text-align: center;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 12px 8px;
  font-size: 12px;
  color: var(--gray);
  transition: var(--transition);
}
.orbit-item:hover {
  border-color: rgba(48, 213, 200, 0.3);
  color: var(--white);
  transform: scale(1.05);
}
.orbit-item .orbit-icon { font-size: 1.4rem; margin-bottom: 6px; display: block; }
.orbit-item strong { display: block; font-size: 11px; font-weight: 600; color: var(--teal); margin-top: 2px; }
.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-2 { right: -10px; top: 25%; }
.orbit-3 { right: 0; bottom: 20%; }
.orbit-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-5 { left: -10px; bottom: 25%; }
.orbit-6 { left: -10px; top: 20%; }
.about-content { }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-feature:hover { border-color: rgba(48, 213, 200, 0.2); transform: translateX(6px); }
.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(48, 213, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.about-feature-text { }
.about-feature-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.about-feature-desc { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ===== TABLE SECTION ===== */
#schedule {
  padding: 100px 0;
  background: var(--dark-2);
}
.schedule-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-3);
}
thead { background: linear-gradient(135deg, rgba(48, 213, 200, 0.12), rgba(100, 149, 237, 0.08)); }
th {
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}
td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--gray);
  border-top: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
}
tr:hover td { background: rgba(48, 213, 200, 0.04); color: var(--white); }
.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.level-beg { background: rgba(0, 255, 127, 0.1); color: var(--green); }
.level-int { background: rgba(48, 213, 200, 0.12); color: var(--teal); }
.level-adv { background: rgba(100, 149, 237, 0.12); color: var(--blue); }
.schedule-side { }
.schedule-note {
  background: rgba(48, 213, 200, 0.06);
  border: 1px solid rgba(48, 213, 200, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.schedule-note strong { color: var(--teal); display: block; margin-bottom: 8px; font-size: 16px; }
.schedule-info-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.schedule-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}
.schedule-info-list li::before { content: '✦'; color: var(--teal); font-size: 10px; margin-top: 3px; flex-shrink: 0; }

/* ===== PRICE CARDS SECTION ===== */
#pricing {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
}
#pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.price-card:nth-child(1)::before { background: linear-gradient(90deg, #00FF7F, #30D5C8); }
.price-card:nth-child(2)::before { background: linear-gradient(90deg, #30D5C8, #6495ED); }
.price-card:nth-child(3)::before { background: linear-gradient(90deg, #6495ED, #30D5C8); }
.price-card:nth-child(4)::before { background: linear-gradient(90deg, #30D5C8, #00FF7F); }
.price-card.popular {
  border-color: rgba(48, 213, 200, 0.4);
  background: linear-gradient(160deg, rgba(48, 213, 200, 0.07), rgba(100, 149, 237, 0.04));
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.price-icon { font-size: 2rem; margin-bottom: 16px; }
.price-name { font-size: 14px; font-weight: 600; color: var(--gray); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.price-amount sup { font-size: 1.2rem; margin-top: 8px; }
.price-period { font-size: 13px; color: var(--gray); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}
.price-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(48, 213, 200, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.price-btn { width: 100%; text-align: center; }

/* ===== CALCULATOR SECTION ===== */
#calculator {
  padding: 100px 0;
  background: var(--dark-2);
}
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.calc-card {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.calc-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.calc-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 32px; }
.calc-row { margin-bottom: 28px; }
.calc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.calc-label span { color: var(--teal); font-size: 16px; }
.calc-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  background-image: linear-gradient(var(--teal), var(--teal));
  background-repeat: no-repeat;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(48, 213, 200, 0.2);
  cursor: pointer;
}
.calc-type-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
}
.calc-type-select option { background: var(--dark-3); }
.calc-type-select:focus { border-color: var(--teal); }
.calc-result {
  background: linear-gradient(135deg, rgba(48, 213, 200, 0.1), rgba(100, 149, 237, 0.06));
  border: 1px solid rgba(48, 213, 200, 0.25);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 28px;
}
.calc-result-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.calc-result-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.calc-result-note { font-size: 13px; color: var(--gray); }
.calc-desc .section-desc { margin-bottom: 32px; }
.calc-benefits { display: flex; flex-direction: column; gap: 16px; }
.calc-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
}
.calc-benefit:hover { border-color: rgba(48, 213, 200, 0.2); color: var(--white); }
.calc-benefit-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ===== TEXT BLOCK SECTION ===== */
#philosophy {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(48, 213, 200, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.philosophy-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 40px;
}
.philosophy-quote em { color: var(--teal); font-style: normal; }
.philosophy-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}
.philosophy-divider::before, .philosophy-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.philosophy-divider span { font-size: 1.2rem; }
.philosophy-text {
  font-size: 16px;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 24px;
}
.philosophy-text strong { color: var(--white); font-weight: 600; }
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.pillar {
  padding: 28px 24px;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.pillar:hover {
  border-color: rgba(48, 213, 200, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pillar-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.pillar-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.pillar-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== INFOGRAPHIC SECTION ===== */
#infographic {
  padding: 100px 0;
  background: var(--dark-2);
}
.infographic-header { text-align: center; margin-bottom: 60px; }
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.infographic-item {
  text-align: center;
  position: relative;
}
.infographic-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: var(--dark-3);
  border: 3px solid rgba(48, 213, 200, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.infographic-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) var(--pct), transparent 0%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
.infographic-item.visible .infographic-circle::before { opacity: 0.15; }
.infographic-circle:hover {
  transform: scale(1.05);
  border-color: rgba(48, 213, 200, 0.5);
  box-shadow: 0 0 40px rgba(48, 213, 200, 0.2);
}
.infographic-icon { font-size: 2.4rem; margin-bottom: 8px; display: block; }
.infographic-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.infographic-label { font-size: 11px; color: var(--gray); margin-top: 2px; }
.infographic-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.infographic-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.infographic-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding: 40px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
}
.infographic-stat-item { text-align: center; }
.infographic-stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
}
.infographic-stat-label { font-size: 13px; color: var(--gray); line-height: 1.4; }

/* ===== GALLERY SECTION ===== */
#gallery {
  padding: 100px 0;
  background: var(--dark);
}
.gallery-header { margin-bottom: 48px; }
.gallery-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--blue), transparent);
  margin: 40px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-2);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-dark);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 3rem;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.4;
  transform: translateY(6px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 100px 0;
  background: var(--dark-2);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(48, 213, 200, 0.08);
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(48, 213, 200, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-stars { color: #ffd700; font-size: 14px; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  font-family: var(--font-serif);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-info { font-size: 12px; color: var(--gray); }

/* ===== FOOTER ===== */
#footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 16px 0 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: var(--gray);
}
.social-link:hover {
  background: rgba(48, 213, 200, 0.15);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--gray);
}
.footer-contact-icon { color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-text { font-size: 13px; color: var(--gray-2); line-height: 1.6; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--gray-2); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: var(--dark-3);
  border: 1px solid rgba(48, 213, 200, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  backdrop-filter: blur(16px);
}
#cookie-banner.hidden-banner {
  transform: translateX(-50%) translateY(200px);
  opacity: 0;
  pointer-events: none;
}
.cookie-inner { display: flex; flex-direction: column; gap: 16px; }
.cookie-title { font-size: 16px; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 8px; }
.cookie-text { font-size: 13px; color: var(--gray); line-height: 1.65; }
.cookie-text a { color: var(--teal); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-settings {
  margin-top: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px;
  display: none;
}
.cookie-settings.open { display: block; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cookie-toggle-row:last-child { border-bottom: none; }
.cookie-toggle-label { font-size: 13px; color: var(--gray); }
.cookie-toggle-label strong { display: block; font-size: 14px; color: var(--white); }
.toggle-switch {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toggle-switch.on { background: var(--teal); }
.toggle-switch::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: left 0.2s;
}
.toggle-switch.on::before { left: 23px; }

/* ===== MODAL ===== */
#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9000;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 500px;
  width: 90%;
  transform: scale(0.92) translateY(24px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.modal-title { font-family: var(--font-serif); font-size: 1.8rem; color: var(--white); }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,0,0,0.1); color: #ff6b6b; }

/* ===== LIGHTBOX ===== */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--dark);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(48, 213, 200, 0.4);
  transition: var(--transition);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(48, 213, 200, 0.6); }

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 24px;
}
.thanks-card {
  max-width: 540px;
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thanks-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--green));
}
.thanks-icon { font-size: 4rem; margin-bottom: 24px; animation: bounceIn 0.6s ease; }
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.thanks-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.thanks-text { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 40px; }
.thanks-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; text-align: left; }
.thanks-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(48, 213, 200, 0.06);
  border: 1px solid rgba(48, 213, 200, 0.15);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray);
}
.thanks-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 140px 0 80px; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.legal-content .legal-date { font-size: 14px; color: var(--gray); margin-bottom: 48px; }
.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin: 36px 0 12px;
}
.legal-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-content a { color: var(--teal); text-decoration: underline; }

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

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-img-wrap { width: 100%; max-width: 400px; height: 400px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .about-orbital { width: 400px; height: 400px; }
  .schedule-layout { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .infographic-grid { grid-template-columns: 1fr 1fr; }
  .infographic-row { grid-template-columns: 1fr 1fr; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  nav, .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .mini-prices { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .infographic-grid { grid-template-columns: 1fr; }
  .infographic-row { grid-template-columns: 1fr 1fr; }
  .hero-img-wrap { height: 320px; }
  .about-orbital { width: 300px; height: 300px; }
  .orbital-center { width: 160px; height: 160px; }
  .orbit-item { display: none; }
  .booking-form-wrap { padding: 24px; }
}

/* ===== SVG ICONS ===== */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.15em;
}

/* Image generation placeholder colors */
.img-placeholder-1 { background: linear-gradient(135deg, #1a2a3a, #0d1f2d); }
.img-placeholder-2 { background: linear-gradient(135deg, #1a3020, #0d2518); }
.img-placeholder-3 { background: linear-gradient(135deg, #1e1a30, #110d20); }
.img-placeholder-4 { background: linear-gradient(135deg, #2a1a1a, #1d0d0d); }
.img-placeholder-5 { background: linear-gradient(135deg, #1a2030, #0d1520); }
