/* ============================================
   COREVIA CLUB — MAIN STYLESHEET
   Primary: #BC987E | Accent: #FFDC33 | Highlight: #ECEBBD
   ============================================ */

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

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

:root {
  --primary: #BC987E;
  --primary-dark: #a07b62;
  --primary-light: #d4b89a;
  --accent: #FFDC33;
  --highlight: #ECEBBD;
  --bg: #fdfaf7;
  --bg-alt: #f5f0ea;
  --text: #2c2520;
  --text-muted: #7a6b5d;
  --text-light: #b0a090;
  --white: #ffffff;
  --border: #e2d9ce;
  --shadow: 0 4px 24px rgba(188,152,126,0.13);
  --shadow-lg: 0 8px 48px rgba(188,152,126,0.22);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.22; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(188,152,126,0.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

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

section { padding: 90px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(188,152,126,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(188,152,126,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(255,220,51,0.35);
}
.btn-accent:hover {
  background: #f0cc20;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,220,51,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.site-header.scrolled {
  background: rgba(253,250,247,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(188,152,126,0.12);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg { width: 22px; height: 22px; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-text span { color: var(--primary); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-alt); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(253,250,247,0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--transition);
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fdf6ee 0%, #f0e8dc 100%);
  z-index: 0;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}
.hero-bg-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation: floatSlow 8s ease-in-out infinite;
}
.hero-bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -80px;
  left: -60px;
  animation: floatSlow 10s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--text);
}
.hero-title .line-accent { color: var(--primary); font-style: italic; }

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

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

.stat-item { }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-num span { color: var(--primary); }
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.hero-image {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover img { transform: scale(1.03); }

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
}

.hero-float-card.card-top {
  top: -20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-float-card.card-bottom {
  bottom: 30px;
  right: -24px;
}

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

.rating-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }
.rating-text { font-weight: 600; color: var(--text); font-size: 0.9rem; }
.rating-sub { color: var(--text-muted); font-size: 0.75rem; }

/* ============================================
   SECTION 1 — STEP-BY-STEP MAP (How to start)
   ============================================ */
#pricing { background: var(--bg-alt); }

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

.steps-map::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(188,152,126,0.2);
  transition: all var(--transition);
}
.step-circle:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(188,152,126,0.4);
}

.step-icon { font-size: 1.6rem; }

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

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

.mini-result {
  background: linear-gradient(135deg, rgba(188,152,126,0.1), rgba(236,235,189,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 500;
  font-style: italic;
}

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

.mini-price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.mini-price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.mini-price-card.featured {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.mini-price-card.featured .mini-price-label,
.mini-price-card.featured .mini-price-sessions,
.mini-price-card.featured .mini-price-duration { color: rgba(255,255,255,0.85); }
.mini-price-card.featured .mini-price-amount { color: var(--white); }

.mini-price-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.mini-price-amount { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 8px; }
.mini-price-sessions { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.mini-price-duration { font-size: 0.78rem; color: var(--text-light); }

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

.booking-form-compact .form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(188,152,126,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-submit { width: 100%; margin-top: 8px; }

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

/* ============================================
   SECTION 2 — CAROUSEL / SLIDER
   ============================================ */
#classes { background: var(--white); }

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

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

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

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

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

.slide-caption h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.slide-caption p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }

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

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   SECTION 3 — ACCORDION
   ============================================ */
#faq { background: var(--bg-alt); }

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

.accordion-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}
.accordion-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

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

.accordion-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow); }
.accordion-item.open { border-color: var(--primary); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 12px;
}

.accordion-trigger-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}
.accordion-item.open .accordion-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease, padding 0.3s ease;
}
.accordion-item.open .accordion-body { max-height: 400px; }

.accordion-content {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================
   SECTION 4 — CIRCULAR ABOUT
   ============================================ */
#about { background: var(--white); }

.circular-about {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.circular-center {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.circular-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-item {
  position: absolute;
  width: 160px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: default;
}
.orbit-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.orbit-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.orbit-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 4px;
}
.orbit-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.orbit-item.pos-1 { top: 20px; left: 60px; }
.orbit-item.pos-2 { top: 20px; right: 60px; }
.orbit-item.pos-3 { bottom: 20px; left: 60px; }
.orbit-item.pos-4 { bottom: 20px; right: 60px; }
.orbit-item.pos-5 { top: 50%; left: -20px; transform: translateY(-50%); }
.orbit-item.pos-6 { top: 50%; right: -20px; transform: translateY(-50%); }

.orbit-item.pos-5:hover,
.orbit-item.pos-6:hover { transform: translateY(-50%) scale(1.05); }

/* ============================================
   SECTION 5 — SCHEDULE TABLE
   ============================================ */
#schedule { background: var(--bg-alt); }

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

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

.schedule-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: rgba(188,152,126,0.05); }

.schedule-table tbody td {
  padding: 16px 20px;
  color: var(--text-muted);
  vertical-align: middle;
}

.schedule-table tbody td:first-child {
  color: var(--text);
  font-weight: 600;
}

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.level-badge.beginner {
  background: rgba(236,235,189,0.8);
  color: #7a6b20;
}
.level-badge.intermediate {
  background: rgba(188,152,126,0.15);
  color: var(--primary-dark);
}
.level-badge.all {
  background: rgba(255,220,51,0.2);
  color: #8a7010;
}

.schedule-note {
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ============================================
   SECTION 6 — PRICE CARDS (Full)
   ============================================ */
#pricing {
  background: var(--bg);
  padding: 100px 0;
}

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

.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.price-card.popular {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.02);
}
.price-card.popular:hover { transform: scale(1.02) translateY(-6px); }

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-plan {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-card.popular .price-plan { color: rgba(255,255,255,0.7); }

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card.popular .price-amount { color: var(--white); }

.price-currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 2px;
}

.price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.price-card.popular .price-period { color: rgba(255,255,255,0.65); }

.price-sessions {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.price-card.popular .price-sessions { color: var(--accent); }

.price-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-card.popular .price-duration { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.2); }

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

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.price-card.popular .price-feature { color: rgba(255,255,255,0.82); }

.price-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(188,152,126,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--primary);
  flex-shrink: 0;
}
.price-card.popular .price-feature .check {
  background: rgba(255,255,255,0.2);
  color: var(--accent);
}

.price-cta { margin-top: auto; }
.price-card.popular .btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.price-card.popular .btn-outline:hover {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

/* ============================================
   SECTION 7 — CALCULATOR
   ============================================ */
#calculator { background: var(--bg-alt); }

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

.calc-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.calc-field { margin-bottom: 28px; }
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.calc-label .value-display {
  background: var(--highlight);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(188,152,126,0.4);
  border: 3px solid var(--white);
  transition: transform var(--transition);
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

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

.calc-option {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.calc-option.selected,
.calc-option:hover {
  border-color: var(--primary);
  background: rgba(188,152,126,0.08);
  color: var(--primary);
}

.calc-result {
  text-align: center;
  padding: 20px;
}

.result-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
}

.result-label {
  font-size: 0.88rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.result-amount {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.result-unit {
  font-size: 2rem;
  vertical-align: super;
  margin-right: 4px;
}

.result-desc {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 28px;
  line-height: 1.5;
}

.result-saving {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.calc-desc-text {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   SECTION 8 — SELLING TEXT
   ============================================ */
#about-pilates {
  background: linear-gradient(135deg, #3d2e24 0%, #5c4032 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.selling-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.selling-bg-decor::before,
.selling-bg-decor::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--primary-light);
}
.selling-bg-decor::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}
.selling-bg-decor::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -80px;
}

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

.selling-inner .section-label {
  background: rgba(255,220,51,0.15);
  color: var(--accent);
}

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

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

.selling-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 22px;
}

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

.selling-pillar {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 24px;
  min-width: 160px;
  text-align: center;
  transition: all var(--transition);
}
.selling-pillar:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.pillar-icon { font-size: 2rem; margin-bottom: 10px; }
.pillar-name { font-weight: 600; font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.pillar-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ============================================
   SECTION 9 — INFOGRAPHIC
   ============================================ */
#benefits { background: var(--white); }

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

.infographic-item {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  overflow: hidden;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

.infographic-item::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.12;
  transition: all var(--transition);
}

.infographic-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.infographic-item:hover::before { opacity: 0.2; transform: scale(1.5); }

.infographic-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}
.infographic-number span { font-size: 1.5rem; }

.infographic-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.infographic-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.infographic-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}
.infographic-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s ease 0.3s;
}

/* ============================================
   SECTION 10 — PHOTO GALLERY
   ============================================ */
#gallery { background: var(--bg-alt); }

.gallery-hr {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
  margin-bottom: 48px;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(30,20,15,0.7));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  transform: translateY(6px);
  opacity: 0.85;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.testimonial-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary-light);
  line-height: 0.5;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.author-info {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #1e1510;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}

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

.footer-brand .logo-text { color: var(--white); }
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

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

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

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: #1e1510;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.1);
}

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

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 18px;
}
.cookie-text a { color: var(--primary-light); text-decoration: underline; }

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all var(--transition);
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.accept:hover { background: var(--primary-dark); }
.cookie-btn.necessary {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}
.cookie-btn.necessary:hover { background: rgba(255,255,255,0.18); }
.cookie-btn.settings {
  background: transparent;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger-children > * { opacity: 0; transform: translateY(20px); }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1) { transition: all 0.5s ease 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition: all 0.5s ease 0.15s; }
.stagger-children.visible > *:nth-child(3) { transition: all 0.5s ease 0.25s; }
.stagger-children.visible > *:nth-child(4) { transition: all 0.5s ease 0.35s; }
.stagger-children.visible > *:nth-child(5) { transition: all 0.5s ease 0.45s; }
.stagger-children.visible > *:nth-child(6) { transition: all 0.5s ease 0.55s; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 8px; }
.legal-meta { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 48px; }
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.25rem; margin: 36px 0 12px; color: var(--text); }
.legal-content p { margin-bottom: 14px; font-size: 0.95rem; color: var(--text-muted); }
.legal-content ul { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-content li { font-size: 0.93rem; color: var(--text-muted); list-style: disc; }

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

.thanks-inner {
  max-width: 520px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  animation: bounceIn 0.7s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-inner h1 { font-size: 2.4rem; margin-bottom: 16px; }
.thanks-inner p { font-size: 1.05rem; margin-bottom: 32px; }

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

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { order: -1; }
  .hero-img-wrap img { height: 360px; }
  .steps-map { grid-template-columns: 1fr 1fr; }
  .steps-map::before { display: none; }
  .accordion-grid { grid-template-columns: 1fr; }
  .accordion-image { display: none; }
  .circular-about { flex-direction: column; gap: 24px; min-height: auto; }
  .orbit-item { position: static; transform: none !important; width: 100%; }
  .orbit-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
  .calculator-wrap { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mini-price-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-float-card.card-top { top: -10px; left: -10px; }
  .hero-float-card.card-bottom { right: -8px; }
  .steps-map { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}
