/* ===================================================
   StepUps — Vanilla CSS
   Color Scheme: #3EB489 (primary), #98FF98 (accent), #6B8E23 (highlight)
   =================================================== */

:root {
  --green: #3EB489;
  --green-light: #98FF98;
  --green-dark: #6B8E23;
  --green-deep: #2A8A68;
  --white: #ffffff;
  --off-white: #F7FDF9;
  --text-dark: #1A2E20;
  --text-mid: #3D5A47;
  --text-light: #6B8E78;
  --bg-section: #F0FAF5;
  --border: #D4EDE0;
  --shadow: 0 4px 24px rgba(62,180,137,0.12);
  --shadow-lg: 0 16px 48px rgba(62,180,137,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, button, textarea { font-family: inherit; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(62,180,137,0.35);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62,180,137,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--green);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--bg-section);
  color: var(--green);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--text-dark);
  color: var(--white);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--green);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-content p { font-size: 0.9rem; opacity: 0.9; }
.cookie-content a { color: var(--green-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept, .btn-cookie-necessary, .btn-cookie-settings {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-cookie-accept { background: var(--green); color: var(--white); }
.btn-cookie-necessary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-cookie-settings { background: transparent; color: var(--green-light); border: 1px solid var(--green-light); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  transition: color 0.3s;
  text-decoration: none;
}
.site-header.scrolled .logo { color: var(--text-dark); }
.logo-icon { font-size: 1.4rem; }
.logo-accent { color: var(--green); }
.site-header.scrolled .logo-accent { color: var(--green); }
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.main-nav a:hover::after { transform: scaleX(1); }
.site-header.scrolled .main-nav a { color: var(--text-dark); }
.main-nav a:hover { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); transform: scale(1.04); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .burger span { background: var(--text-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F2318 0%, #1A4030 40%, #2A6048 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(62,180,137,0.15) 0%, transparent 60%);
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--green);
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation-delay: 3s; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 20%; animation-delay: 6s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.02); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-content { padding-right: 20px; }
.hero-badge {
  display: inline-block;
  background: rgba(62,180,137,0.2);
  border: 1px solid rgba(62,180,137,0.4);
  color: var(--green-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-title-accent {
  background: linear-gradient(90deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-light);
  font-family: var(--font-heading);
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-image { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(62,180,137,0.3), transparent 70%);
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 28px;
}
.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  color: var(--text-dark);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s forwards; }
.animate-slide-right { opacity: 0; transform: translateX(40px); animation: slideRight 0.8s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ===== HOW TO SECTION ===== */
.howto-section {
  padding: 100px 0;
  background: var(--off-white);
}

/* STEPS MAP */
.steps-map {
  display: flex;
  gap: 0;
  margin-bottom: 64px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 12px;
}
.steps-map::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  z-index: 0;
}
.step-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.step-connector { display: none; }
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(62,180,137,0.4);
  flex-shrink: 0;
}
.step-num {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  font-family: var(--font-heading);
}
.step-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0;
  animation: pulse 2s ease infinite;
}
.step-item[data-step="1"] .step-pulse { animation-delay: 0s; }
.step-item[data-step="2"] .step-pulse { animation-delay: 0.4s; }
.step-item[data-step="3"] .step-pulse { animation-delay: 0.8s; }
.step-item[data-step="4"] .step-pulse { animation-delay: 1.2s; }
.step-item[data-step="5"] .step-pulse { animation-delay: 1.6s; }
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-icon { font-size: 1.8rem; margin-bottom: 10px; }
.step-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.step-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* MINI PRICES */
.mini-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.mini-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mini-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.mini-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mini-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.mini-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.mini-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.mini-card-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.mini-card-desc { font-size: 0.82rem; color: var(--text-light); }

/* BOOKING FORM */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.booking-left h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.booking-left p { color: var(--text-light); margin-bottom: 24px; }
.booking-benefits { display: flex; flex-direction: column; gap: 10px; }
.booking-benefits li {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
}
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(62,180,137,0.1);
}
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; }
.form-note a { color: var(--green); text-decoration: underline; }

.scroll-to-prices { text-align: center; }

/* ===== SLIDER SECTION ===== */
.slider-section {
  padding: 100px 0;
  background: var(--text-dark);
  overflow: hidden;
}
.slider-section .section-tag { background: rgba(62,180,137,0.15); border-color: rgba(62,180,137,0.3); }
.slider-section .section-title { color: var(--white); }
.slider-section .section-subtitle { color: rgba(255,255,255,0.6); }
.slider-wrap { position: relative; }
.slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 540px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-img-wrap { position: relative; width: 100%; height: 100%; }
.slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(10,30,20,0.9) 0%, transparent 100%);
  color: var(--white);
}
.slide-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.slide-overlay h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.slide-overlay p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 500px; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.1);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ===== ACCORDION ===== */
.accordion-section {
  padding: 100px 0;
  background: var(--off-white);
}
.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.accordion-left .section-title { text-align: left; }
.accordion-left .section-subtitle { text-align: left; margin: 0 0 32px; }
.accordion-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}
.accordion-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.badge-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  font-family: var(--font-heading);
  line-height: 1;
}
.badge-text { font-size: 0.78rem; color: var(--text-light); }
.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  gap: 16px;
  transition: color 0.2s;
}
.accordion-header:hover { color: var(--green); }
.accordion-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0;
}
.accordion-body.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.accordion-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-circular {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.about-center { position: relative; display: flex; flex-direction: column; align-items: center; }
.about-photo-wrap {
  width: 320px;
  height: 320px;
  position: relative;
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.about-photo-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--green);
  z-index: 1;
  animation: ringPulse 3s ease infinite;
}
.ring-1 { width: 340px; height: 340px; opacity: 0.4; animation-delay: 0s; }
.ring-2 { width: 380px; height: 380px; opacity: 0.25; animation-delay: 1s; }
.ring-3 { width: 420px; height: 420px; opacity: 0.12; animation-delay: 2s; }
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: inherit; }
  50% { transform: translate(-50%, -50%) scale(1.04); }
}
.about-center-label {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
}
.about-orbit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-bubble {
  background: var(--bg-section);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-bubble:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.bubble-icon { font-size: 2rem; flex-shrink: 0; }
.bubble-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}
.bubble-text span { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ===== SCHEDULE TABLE ===== */
.schedule-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 700px;
}
.schedule-table thead th {
  background: linear-gradient(135deg, var(--text-dark), #2a4030);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.schedule-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-dark);
  vertical-align: middle;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.highlight-row { background: rgba(62,180,137,0.04); }
.schedule-table tbody tr:hover { background: rgba(62,180,137,0.07); }
.class-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}
.class-tag.morning { background: rgba(255,165,0,0.15); color: #e67e00; }
.class-tag.cardio { background: rgba(62,180,137,0.15); color: var(--green-dark); }
.class-tag.power { background: rgba(220,50,50,0.12); color: #c0392b; }
.class-tag.dance { background: rgba(150,80,200,0.12); color: #8e44ad; }
.level {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.level.beginner { background: rgba(98,196,98,0.15); color: #2e7d32; }
.level.middle { background: rgba(255,152,0,0.15); color: #e65100; }
.level.advanced { background: rgba(244,67,54,0.12); color: #c62828; }
.level.all { background: rgba(33,150,243,0.12); color: #1565c0; }
.schedule-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.schedule-note a { color: var(--green); font-weight: 700; }

/* ===== SELLING TEXT BLOCK ===== */
.text-block-section {
  padding: 100px 0;
  background: var(--white);
}
.text-block-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.text-block-left .section-title { text-align: left; }
.text-columns { margin-bottom: 32px; }
.text-lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 20px;
}
.text-columns p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.text-quote {
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  background: var(--bg-section);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.text-quote blockquote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.02rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.text-quote cite { font-size: 0.85rem; color: var(--text-light); }
.advantage-list { display: flex; flex-direction: column; gap: 20px; }
.advantage-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.advantage-item:hover {
  border-color: var(--green);
  transform: translateX(6px);
}
.adv-icon { font-size: 1.8rem; flex-shrink: 0; }
.adv-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.adv-body p { font-size: 0.88rem; color: var(--text-light); }

/* ===== PRICES ===== */
.prices-section {
  padding: 100px 0;
  background: var(--text-dark);
}
.prices-section .section-tag { background: rgba(62,180,137,0.15); border-color: rgba(62,180,137,0.3); }
.prices-section .section-title { color: var(--white); }
.prices-section .section-subtitle { color: rgba(255,255,255,0.6); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 20px 60px rgba(62,180,137,0.2);
}
.price-card.featured {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-color: var(--green);
  transform: scale(1.03);
}
.price-card.premium {
  background: linear-gradient(135deg, #2A4A35, #1A3025);
  border-color: rgba(255,165,0,0.4);
}
.price-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green-light);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.price-card.premium .price-card-badge {
  background: #FFD700;
}
.price-card-header { text-align: center; margin-bottom: 28px; }
.price-card-icon { font-size: 2.4rem; margin-bottom: 12px; }
.price-card-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.price-card.featured .price-amount { color: var(--white); }
.price-period { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  padding: 4px 0;
}
.price-features li.faded { color: rgba(255,255,255,0.35); }
.btn-price-primary {
  display: block;
  text-align: center;
  background: var(--white);
  color: var(--green-dark);
  padding: 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-price-primary:hover {
  background: var(--green-light);
  transform: scale(1.02);
}
.btn-price-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--white);
  padding: 13px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  text-decoration: none;
}
.btn-price-outline:hover {
  border-color: var(--green);
  color: var(--green-light);
}

/* CALCULATOR */
.calculator-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px;
}
.calc-header { text-align: center; margin-bottom: 40px; }
.calc-header .section-tag { background: rgba(62,180,137,0.15); border-color: rgba(62,180,137,0.3); }
.calc-header h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.calc-header p { color: rgba(255,255,255,0.6); }
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.calc-controls { display: flex; flex-direction: column; gap: 32px; }
.calc-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.slider-control { display: flex; flex-direction: column; gap: 12px; }
.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(62,180,137,0.3);
}
.slider-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-light);
}
.calc-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.calc-tab {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.calc-tab.active, .calc-tab:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.calc-result {
  text-align: center;
  background: rgba(62,180,137,0.1);
  border: 2px solid rgba(62,180,137,0.3);
  border-radius: 20px;
  padding: 40px;
}
.result-label { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.result-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-light);
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.result-per { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.result-note { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; font-style: italic; }

/* ===== INFOGRAPHIC ===== */
.infographic-section {
  padding: 100px 0;
  background: var(--off-white);
}
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.9);
}
.info-card.visible {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.info-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--clr, var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-svg { width: 100%; height: 100%; }
.info-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}
.info-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.info-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.info-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.info-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 3px;
  width: 0;
  transition: width 1.2s ease;
}
.info-card.visible .info-bar-fill { width: var(--target-w, 70%); }

/* ===== GALLERY ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}
.gallery-line {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  margin: 0 0 48px;
  width: 100%;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.06); }
.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(10,40,20,0.7);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-caption {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.gallery-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
}

/* ===== CONTACTS ===== */
.contacts-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.contacts-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.contacts-info .section-title { text-align: left; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
}
.contact-item a:hover { color: var(--green); }
.cta-card {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 24px;
  padding: 48px 40px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 20px 60px rgba(62,180,137,0.35);
}
.cta-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.cta-card p { opacity: 0.9; margin-bottom: 28px; line-height: 1.6; }
.cta-card .btn-primary { background: var(--white); color: var(--green-dark); box-shadow: none; }
.cta-card .btn-primary:hover { background: var(--green-light); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.7; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-nav-col { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-col strong {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}
.footer-nav-col a, .footer-nav-col span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-nav-col a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
}
.footer-legal { color: rgba(255,255,255,0.35); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}
.legal-hero {
  background: linear-gradient(135deg, var(--text-dark), #2A4030);
  padding: 80px 0 60px;
  margin-bottom: 60px;
}
.legal-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.legal-date { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 36px 0 16px;
  font-family: var(--font-heading);
}
.legal-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content ul li { color: var(--text-light); margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.legal-content a { color: var(--green); }

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--text-dark), #2A6048);
}
.thanks-card {
  background: var(--white);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.thanks-icon { font-size: 4rem; margin-bottom: 24px; }
.thanks-card h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.thanks-card p { color: var(--text-light); margin-bottom: 12px; }
.thanks-card .btn-primary { margin-top: 32px; }

/* ===== SCROLL ANIMATION TRIGGERS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-stats { gap: 20px; }
  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-left { order: -1; }
  .about-circular { grid-template-columns: 1fr; }
  .about-orbit { grid-template-columns: 1fr; }
  .text-block-inner { grid-template-columns: 1fr; }
  .contacts-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .booking-wrap { grid-template-columns: 1fr; padding: 32px 24px; }
  .mini-prices { grid-template-columns: 1fr; }
  .mini-card.featured { transform: none; }
  .calc-body { grid-template-columns: 1fr; }
  .steps-map { flex-direction: column; align-items: flex-start; }
  .steps-map::before { display: none; }
  .step-item { flex-direction: row; align-items: flex-start; min-width: unset; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .main-nav { display: none; position: fixed; inset: 0; top: 70px; background: rgba(10,25,15,0.98); flex-direction: column; align-items: center; justify-content: center; z-index: 999; gap: 32px; }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.3rem; color: var(--white); }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .calc-tabs { flex-direction: column; }
  .calc-tab { text-align: center; }
  .calculator-wrap { padding: 24px; }
}
