/* ── VARIABLES & RESET ── */
:root {
  --primary: #5A4F7B;
  --primary-light: #7B6FA0;
  --accent: #7BDCB9;
  --highlight: #F7B538;
  --bg: #FAF8FF;
  --text: #2D2840;
  --text-light: #6B6480;
  --white: #fff;
  --level-begin: #e8f5ee;
  --level-mid: #fff8e6;
  --level-adv: #f0edf7;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: #F6F4FB; }

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 6.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border: none;
  font-family: inherit;
}
.btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(90,79,123,0.28);
  color: #fff;
}
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  font-family: inherit;
  font-size: 1rem;
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  display: inline-block;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: none;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 1rem;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.header.scrolled {
  background: rgba(250,248,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(90,79,123,0.08);
  padding: 14px 0;
}
.header .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.logo {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #fff;
  transition: color 0.4s;
  flex-shrink: 0;
}
.header.scrolled .logo { color: var(--primary); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }
.header.scrolled .nav-link { color: var(--text); }
.header.scrolled .nav-link:hover { color: var(--primary); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(90,79,123,0.82) 0%,rgba(90,79,123,0.5) 50%,rgba(123,220,185,0.35) 100%);
  z-index: -1;
}
.hero-float { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-float-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle,rgba(123,220,185,0.12),transparent 70%);
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-float-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle,rgba(247,181,56,0.1),transparent 70%);
  bottom: 50px; left: 5%;
  animation: float2 11s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
@keyframes float2 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(20px) rotate(8deg); } }

.hero-content { position: relative; z-index: 1; color: #fff; max-width: 680px; padding-top: 80px; }
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2.2rem;
  max-width: 500px;
  line-height: 1.7;
}
.hero-nav-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
  margin-top: 3.5rem;
}
.hero-nav-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-pill {
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  font-size: 0.82rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.hero-pill:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ── SLIDER ── */
.slider-outer { max-width: 960px; margin: 0 auto; }
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(90,79,123,0.18);
}
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: 520px; object-fit: cover; display: block; }
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  background: linear-gradient(transparent,rgba(45,40,64,0.92));
  color: #fff;
}
.slide-caption h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 0.7rem; }
.slide-caption p { font-size: 0.95rem; opacity: 0.88; line-height: 1.65; max-width: 700px; }
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 10;
  line-height: 1;
}
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.5rem; }
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(90,79,123,0.25);
  border: 0; cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active { background: var(--primary); width: 30px; border-radius: 5px; }

/* ── FAQ ACCORDION ── */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(90,79,123,0.06);
  transition: box-shadow 0.3s;
}
.accordion-item.open { box-shadow: 0 8px 32px rgba(90,79,123,0.12); }
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.8rem;
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}
.accordion-header:hover { background: rgba(90,79,123,0.03); }
.accordion-icon { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.accordion-body p { padding: 0 1.8rem 1.4rem; color: var(--text-light); line-height: 1.75; font-size: 0.97rem; }

/* ── ABOUT CIRCULAR ── */
.circular-about {
  position: relative;
  width: 600px; height: 600px;
  margin: 0 auto;
}
.circular-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 230px; height: 230px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 0 0 3px var(--accent), 0 20px 60px rgba(90,79,123,0.25);
  z-index: 2;
}
.circular-center img { width: 100%; height: 100%; object-fit: cover; }
.circular-ring { position: absolute; inset: 0; }
.circular-item {
  position: absolute;
  transform: translate(-50%,-50%);
  text-align: center;
  width: 160px;
  background: #fff;
  border-radius: 20px;
  padding: 1rem 0.8rem;
  box-shadow: 0 8px 24px rgba(90,79,123,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
}
.circular-item:hover { transform: translate(-50%,-55%); box-shadow: 0 16px 40px rgba(90,79,123,0.18); }
.circular-item-icon { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.circular-item-title { font-size: 0.85rem; font-weight: 600; color: var(--primary); display: block; margin-bottom: 0.3rem; }
.circular-item-text { font-size: 0.75rem; color: var(--text-light); line-height: 1.5; }

/* ── SCHEDULE TABLE ── */
.table-wrap { overflow-x: auto; border-radius: 20px; box-shadow: 0 8px 32px rgba(90,79,123,0.1); }
.schedule-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 700px; }
.schedule-table th {
  padding: 1.1rem 1.2rem;
  text-align: left;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}
.schedule-table th:first-child { border-radius: 20px 0 0 0; }
.schedule-table th:last-child { border-radius: 0 20px 0 0; }
.schedule-table td {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(90,79,123,0.06);
  transition: filter 0.2s;
}
.schedule-table tr:hover td { filter: brightness(0.96); }
.schedule-table tr:last-child td { border-bottom: none; }
.level-badge {
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.level-badge.begin { background: rgba(123,220,185,0.25); color: #2e8a6a; }
.level-badge.mid { background: rgba(247,181,56,0.25); color: #a0720a; }
.level-badge.adv { background: rgba(90,79,123,0.2); color: var(--primary); }
.table-legend { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-light); }
.legend-dot { width: 16px; height: 16px; border-radius: 4px; border: 1px solid rgba(0,0,0,0.1); flex-shrink: 0; }

/* ── PRICING ORIGAMI ── */
.origami-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  max-width: 820px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(90,79,123,0.15);
}
.origami-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.origami-gray {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,#d4d0e0,#e8e5f0);
  display: flex; align-items: flex-end; padding: 1.5rem;
  transition: opacity 0.4s;
}
.origami-num { font-size: 4rem; font-weight: 200; color: rgba(90,79,123,0.2); line-height: 1; }
.origami-face {
  position: absolute; inset: 0;
  padding: 2rem;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.4s, transform 0.4s;
}
.origami-card:hover .origami-gray { opacity: 0; }
.origami-card:hover .origami-face { opacity: 1; transform: scale(1); }
.origami-card:hover { transform: scale(1.02); z-index: 2; transition: transform 0.3s; }
.origami-face h3 { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.origami-price { font-size: 2.2rem; font-weight: 200; color: #fff; margin-bottom: 0.8rem; letter-spacing: -1px; }
.origami-desc { font-size: 0.82rem; color: rgba(255,255,255,0.88); line-height: 1.55; margin-bottom: 0.8rem; }
.origami-features { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.origami-features li { font-size: 0.8rem; color: rgba(255,255,255,0.9); }

/* ── LEVELS ── */
.levels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.level-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(90,79,123,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.level-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(90,79,123,0.14); }
.level-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.level-name { font-size: 1.3rem; font-weight: 500; color: var(--primary); margin-bottom: 0.8rem; }
.level-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.6; }
.level-sets { display: flex; flex-direction: column; gap: 0.8rem; }
.level-set-btn {
  background: linear-gradient(135deg,rgba(90,79,123,0.07),rgba(123,220,185,0.1));
  border: 1px solid rgba(90,79,123,0.12);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-size: 0.87rem;
  color: var(--primary);
  text-align: left;
  font-weight: 500;
  transition: all 0.3s;
}
.level-set-btn:hover { background: var(--primary); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* ── MODAL ── */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(45,40,64,0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: scaleIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-box.wide { max-width: 680px; }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(90,79,123,0.08);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--primary); color: #fff; }
.modal-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.modal-level-icon { font-size: 2rem; flex-shrink: 0; }
.modal-level-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.modal-title { font-size: 1.25rem; font-weight: 500; color: var(--primary); }
.modal-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  background: rgba(123,220,185,0.12); border-radius: 12px; padding: 0.8rem 1rem;
  margin-bottom: 1.5rem; font-size: 0.85rem;
}
.modal-note { color: var(--text-light); flex: 1; }
.modal-exercises { display: flex; flex-direction: column; gap: 1rem; }
.modal-exercise { background: #F6F4FB; border-radius: 14px; padding: 1rem 1.2rem; }
.modal-exercise-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.modal-exercise-reps { font-size: 0.8rem; color: var(--accent); font-weight: 600; background: rgba(123,220,185,0.15); padding: 0.2rem 0.7rem; border-radius: 20px; }
.modal-exercise p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.modal-dir-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.modal-dir-icon { font-size: 2.5rem; }
.modal-dir-desc { font-size: 0.97rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.8rem; }
.modal-form-title { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 1.2rem; }

/* ── FORMS ── */
.form-row { margin-bottom: 1.2rem; }
.form-row label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--primary); }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(90,79,123,0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  font-family: inherit;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(90,79,123,0.1);
}
.radio-group { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.3rem; }
.radio-label {
  display: flex; align-items: center; gap: 0.7rem;
  cursor: pointer; font-size: 0.9rem; color: var(--text);
  padding: 0.6rem 0.8rem; border-radius: 10px;
  transition: background 0.2s;
}
.radio-label:hover { background: rgba(90,79,123,0.04); }
.radio-label input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 1rem; }
.form-note a { color: var(--primary); text-decoration: underline; }

/* ── RECOMMENDATIONS ── */
.rec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 3rem; }
.rec-col { background: #fff; border-radius: 20px; padding: 2rem 1.8rem; box-shadow: 0 4px 20px rgba(90,79,123,0.07); }
.rec-col-title { font-size: 1.05rem; font-weight: 600; color: var(--primary); margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 2px solid rgba(90,79,123,0.1); }
.rec-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.rec-item { display: flex; align-items: flex-start; gap: 0.7rem; }
.rec-check { color: var(--accent); font-size: 1.1rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.rec-item strong { font-size: 0.9rem; color: var(--text); display: block; margin-bottom: 0.2rem; }
.rec-item span { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; display: block; }
.tips-box { background: linear-gradient(135deg,var(--primary),var(--primary-light)); border-radius: 24px; padding: 2.5rem; color: #fff; }
.tips-box h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 1.8rem; }
.tips-box-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.2rem; }
.tips-box-item { display: flex; gap: 1rem; align-items: flex-start; }
.tips-num { font-size: 1.5rem; font-weight: 200; color: var(--accent); flex-shrink: 0; line-height: 1.3; }
.tips-box-item p { font-size: 0.88rem; color: rgba(255,255,255,0.88); line-height: 1.6; }

/* ── TABS ── */
.tabs-nav {
  display: flex; justify-content: center;
  background: rgba(90,79,123,0.07);
  border-radius: 50px; padding: 5px;
  max-width: 480px; margin: 0 auto 3rem;
}
.tab-btn {
  flex: 1; padding: 0.75rem 1.5rem;
  border-radius: 45px; font-size: 0.9rem;
  color: var(--text-light); font-weight: 500;
  transition: all 0.35s; white-space: nowrap;
}
.tab-btn.active { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(90,79,123,0.25); }
.tab-panel { display: none; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.2rem; }
.tab-panel.active { display: grid; animation: fadeIn 0.4s ease; }
.tip-card {
  display: flex; gap: 1.1rem;
  background: #fff; border-radius: 20px; padding: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(90,79,123,0.07);
  transition: transform 0.3s;
}
.tip-card:hover { transform: translateY(-4px); }
.tip-icon { font-size: 1.7rem; flex-shrink: 0; }
.tip-title { font-size: 0.95rem; font-weight: 600; color: var(--primary); margin-bottom: 0.4rem; }
.tip-text { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* ── ANATOMY CARDS ── */
.anatomy-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.5rem; }
.anatomy-card {
  background: #fff; border-radius: 22px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(90,79,123,0.07);
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.anatomy-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(90,79,123,0.13); }
.anatomy-card.expanded { border-color: var(--accent); }
.anatomy-emoji { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.anatomy-name { font-size: 1.15rem; font-weight: 600; color: var(--primary); margin-bottom: 0.3rem; }
.anatomy-zone { font-size: 0.8rem; color: var(--accent); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.8rem; }
.anatomy-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.8rem; }
.anatomy-more { font-size: 0.82rem; color: var(--accent); font-weight: 600; }
.anatomy-detail {
  display: none;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(90,79,123,0.1);
}
.anatomy-card.expanded .anatomy-detail { display: block; animation: fadeIn 0.3s ease; }
.anatomy-detail p { font-size: 0.88rem; color: var(--text); line-height: 1.7; }

/* ── PROGRESS GRAPH ── */
.progress-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.graph-label { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem; }
.progress-svg { width: 100%; border-radius: 16px; background: #fff; padding: 1rem; box-shadow: 0 4px 20px rgba(90,79,123,0.08); }
.graph-point { cursor: pointer; }
.graph-tooltip {
  display: none;
  margin-top: 1rem;
  background: linear-gradient(135deg,var(--primary),var(--primary-light));
  color: #fff; border-radius: 16px; padding: 1.2rem 1.5rem;
}
.graph-tooltip.visible { display: block; animation: fadeIn 0.3s ease; }
.graph-tooltip strong { display: block; margin-bottom: 0.4rem; font-size: 0.95rem; }
.graph-tooltip p { font-size: 0.88rem; opacity: 0.9; line-height: 1.6; }
.progress-stages { display: flex; flex-direction: column; gap: 1.2rem; }
.stage-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: #fff; border-radius: 18px; padding: 1.4rem;
  box-shadow: 0 4px 16px rgba(90,79,123,0.07);
  transition: transform 0.3s;
}
.stage-card:hover { transform: translateX(4px); }
.stage-num { font-size: 1.8rem; font-weight: 200; color: var(--accent); flex-shrink: 0; line-height: 1.2; }
.stage-card strong { font-size: 0.95rem; color: var(--primary); display: block; margin-bottom: 0.3rem; }
.stage-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ── BODY ZONES ── */
.zones-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.zone-card {
  background: #fff; border-radius: 20px; padding: 1.8rem 1.5rem;
  text-align: center; box-shadow: 0 4px 20px rgba(90,79,123,0.07);
  position: relative; transition: transform 0.3s, box-shadow 0.3s; overflow: visible;
}
.zone-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(90,79,123,0.13); }
.zone-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }
.zone-name { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
.zone-desc { font-size: 0.83rem; color: var(--text-light); line-height: 1.55; }
.zone-tooltip {
  position: absolute;
  bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff; padding: 0.8rem 1.1rem;
  border-radius: 14px; font-size: 0.82rem;
  width: 200px; text-align: left; line-height: 1.5;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 10;
}
.zone-tooltip::after {
  content: ""; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--primary);
}
.zone-card:hover .zone-tooltip { opacity: 1; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(90,79,123,0.4);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom { font-size: 2.5rem; color: #fff; font-weight: 200; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; animation: fadeIn 0.25s ease; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; color: #fff;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; transition: background 0.2s; line-height: 1;
}
.lb-close { top: 24px; right: 24px; font-size: 1.4rem; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }

/* ── DIRECTIONS ── */
.directions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.dir-card {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(90,79,123,0.1);
  transition: transform 0.35s, box-shadow 0.35s;
}
.dir-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(90,79,123,0.18); }
.dir-img { position: relative; height: 200px; overflow: hidden; }
.dir-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dir-card:hover .dir-img img { transform: scale(1.06); }
.dir-icon {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.92); border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.dir-body { padding: 1.8rem; }
.dir-title { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 0.6rem; }
.dir-desc { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1.5rem; }
.dir-btn { width: 100%; text-align: center; padding: 0.85rem; font-size: 0.9rem; }

/* ── BOOKING ── */
.booking-layout { display: grid; grid-template-columns: 1fr 480px; gap: 4rem; align-items: start; }
.booking-steps-title { font-size: 1.3rem; font-weight: 500; color: var(--primary); margin-bottom: 2rem; }
.booking-step { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.8rem; }
.booking-step-num { font-size: 1.6rem; font-weight: 200; color: var(--accent); flex-shrink: 0; line-height: 1.2; width: 40px; }
.booking-step strong { font-size: 0.95rem; color: var(--primary); display: block; margin-bottom: 0.3rem; }
.booking-step p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }
.booking-form-wrap { background: #fff; border-radius: 28px; padding: 2.8rem; box-shadow: 0 16px 50px rgba(90,79,123,0.12); }

/* ── FOOTER ── */
.footer { background: var(--primary); color: #fff; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 2.5rem; margin-bottom: 50px; }
.footer h3 { font-size: 1.5rem; font-weight: 300; letter-spacing: 2px; margin-bottom: 1.5rem; }
.footer h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.9rem; opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--accent); }
.footer-links p { font-size: 0.85rem; opacity: 0.6; line-height: 1.7; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.83rem; opacity: 0.5; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(45,40,64,0.97); backdrop-filter: blur(10px);
  color: #fff; padding: 20px 24px;
  z-index: 2500;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cookie-text { font-size: 0.88rem; opacity: 0.85; line-height: 1.55; max-width: 600px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-accept {
  background: var(--accent); color: var(--primary);
  padding: 0.65rem 1.4rem; border-radius: 25px;
  font-size: 0.88rem; font-weight: 600;
  transition: all 0.3s; border: none; cursor: pointer; font-family: inherit;
}
.cookie-accept:hover { background: #5ecba3; transform: translateY(-2px); }
.cookie-necessary {
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8);
  padding: 0.65rem 1.4rem; border-radius: 25px;
  font-size: 0.88rem; transition: all 0.3s; background: none;
  cursor: pointer; font-family: inherit;
}
.cookie-necessary:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ── SIMPLE PAGES ── */
.page-hero { padding: 180px 0 80px; background: linear-gradient(135deg,var(--primary),var(--primary-light)); color: #fff; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 300; margin-bottom: 1rem; }
.page-hero p { opacity: 0.8; }
.page-body { padding: 60px 0 80px; }
.page-body .container { max-width: 800px; }
.page-body h2 { font-size: 1.3rem; color: var(--primary); margin: 2rem 0 0.8rem; font-weight: 600; }
.page-body p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.page-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-body li { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; margin-bottom: 0.3rem; }

/* ── THANKS ── */
.thanks-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg,#FAF8FF,#EEF5F2); padding: 2rem; }
.thanks-card { background: #fff; border-radius: 32px; padding: 4rem; max-width: 580px; box-shadow: 0 24px 80px rgba(90,79,123,0.13); }
.thanks-icon { font-size: 5rem; margin-bottom: 1.5rem; display: block; }
.thanks-title { font-size: 2rem; color: var(--primary); font-weight: 400; margin-bottom: 1rem; }
.thanks-desc { color: var(--text-light); line-height: 1.75; margin-bottom: 2.5rem; }
.thanks-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; text-align: left; }
.thanks-step { display: flex; gap: 1rem; align-items: flex-start; background: #F6F4FB; border-radius: 16px; padding: 1rem 1.2rem; }
.thanks-step-num { color: var(--accent); font-size: 1.3rem; font-weight: 700; flex-shrink: 0; }
.thanks-step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .levels-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(2,1fr); }
  .directions-grid { grid-template-columns: repeat(2,1fr); }
  .progress-layout { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; gap: 2rem; }
  .rec-grid { grid-template-columns: 1fr; }
  .circular-about { width: 100%; max-width: 600px; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero-title { font-size: 2.8rem; }
  .nav-links { display: none; }
  .origami-grid { grid-template-columns: 1fr; }
  .origami-card { aspect-ratio: auto; }
  .origami-gray { position: relative; height: 80px; }
  .origami-face { position: relative; opacity: 1; transform: none; }
  .origami-card:hover { transform: none; }
  .directions-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4), .gallery-item:nth-child(8) { grid-row: auto; grid-column: auto; }
  .slide img { height: 320px; }
  .zones-grid { grid-template-columns: repeat(2,1fr); }
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .circular-about { height: auto; min-height: 800px; }
  .circular-item { width: 130px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .tabs-nav { flex-direction: column; border-radius: 16px; }
  .tab-btn { border-radius: 12px; text-align: center; }
  .thanks-card { padding: 2rem 1.5rem; }
}
