/* ============================================================
   GROUPRA — MAIN STYLESHEET
   Pure vanilla CSS, no frameworks
   Colors: #FF5722 (Deep Orange) | #FFAB91 (Coral) | #8BC34A (Lime Green)
   ============================================================ */

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

:root {
  --orange: #FF5722;
  --orange-dark: #E64A19;
  --orange-light: #FF7043;
  --coral: #FFAB91;
  --green: #8BC34A;
  --green-dark: #558B2F;
  --bg: #FAFAFA;
  --bg-dark: #1a1a2e;
  --text: #1C1C2E;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

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

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

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

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 87, 34, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-label.light { color: var(--coral); background: rgba(255,171,145,0.15); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title.light { color: var(--white); }

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

.highlight { color: var(--orange); }
.highlight-light { color: var(--coral); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,87,34,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,87,34,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-xl { font-size: 1.1rem; padding: 18px 40px; }
.btn-block { width: 100%; justify-content: center; }

.pulse-btn { animation: pulseShadow 2s ease-in-out infinite; }
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,87,34,0.35); }
  50% { box-shadow: 0 4px 40px rgba(255,87,34,0.65), 0 0 0 12px rgba(255,87,34,0.08); }
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 900px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 200px; }
.cookie-text p { font-size: 0.9rem; opacity: 0.9; }
.cookie-icon { font-size: 1.4rem; flex-shrink: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
}
.btn-cookie-accept { background: var(--orange); color: var(--white); }
.btn-cookie-accept:hover { background: var(--orange-dark); }
.btn-cookie-necessary { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-cookie-necessary:hover { background: rgba(255,255,255,0.25); }
.btn-cookie-settings { background: transparent; color: rgba(255,255,255,0.7); text-decoration: underline; }
.btn-cookie-settings:hover { color: var(--white); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}
.site-header.scrolled .logo-text { color: var(--text); }

.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; gap: 6px; justify-content: center; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: 50px;
  transition: var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a:hover { color: var(--orange); background: rgba(255,87,34,0.08); }

.header-cta { padding: 10px 24px; font-size: 0.9rem; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .burger span { background: var(--text); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO (fiti) ---- */
.fiti {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.fiti-bg { position: absolute; inset: 0; }
.fiti-img { width: 100%; height: 100%; object-fit: cover; }
.fiti-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,46,0.85) 0%,
    rgba(230,74,25,0.5) 60%,
    rgba(28,28,46,0.7) 100%
  );
}

.particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: floatUp linear infinite;
}
.p1 { width: 6px; height: 6px; background: var(--coral); left: 15%; bottom: -10px; animation-duration: 8s; }
.p2 { width: 4px; height: 4px; background: var(--green); left: 30%; bottom: -10px; animation-duration: 12s; animation-delay: 2s; }
.p3 { width: 8px; height: 8px; background: var(--orange); left: 50%; bottom: -10px; animation-duration: 10s; animation-delay: 1s; }
.p4 { width: 5px; height: 5px; background: var(--coral); left: 65%; bottom: -10px; animation-duration: 9s; animation-delay: 3s; }
.p5 { width: 7px; height: 7px; background: var(--white); left: 80%; bottom: -10px; animation-duration: 11s; animation-delay: 0.5s; opacity: 0.15; }
.p6 { width: 4px; height: 4px; background: var(--green); left: 40%; bottom: -10px; animation-duration: 13s; animation-delay: 4s; }

@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.fiti-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 900px;
}
.fiti-badge {
  display: inline-block;
  background: rgba(255,171,145,0.2);
  border: 1px solid rgba(255,171,145,0.4);
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.fiti-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.fiti-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.fiti-sections-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.sections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.section-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.section-chip:hover {
  background: rgba(255,87,34,0.3);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.chip-icon { font-size: 1rem; }

.fiti-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.fiti-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-suffix { font-size: 2rem; color: var(--coral); font-weight: 700; }
.stat-label { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ---- SECTIONS ---- */
section { padding: 96px 0; }

/* ---- SLIDER ---- */
.section-slider { background: var(--bg); overflow: hidden; }
.section-slider .container { margin-bottom: 48px; }
.slider-wrap { position: relative; }
.slider { position: relative; overflow: hidden; }
.slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.slide.active { display: grid; animation: slideIn 0.5s ease; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.slide-img-wrap { overflow: hidden; }
.slide-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.slide:hover .slide-img-wrap img { transform: scale(1.04); }
.slide-body {
  background: linear-gradient(135deg, var(--text) 0%, #2d1b69 100%);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: var(--white);
}
.slide-tag {
  display: inline-block;
  background: rgba(255,87,34,0.2);
  border: 1px solid rgba(255,87,34,0.4);
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  width: fit-content;
}
.slide-body h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.slide-body p { color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 1.05rem; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  background: var(--text);
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  display: grid;
  place-items: center;
}
.slider-btn:hover { background: var(--orange); 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);
}
.slider-dot.active { background: var(--orange); transform: scale(1.3); }

/* ---- FAQ ACCORDION ---- */
.section-faq { background: var(--white); }
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.accordion-item:hover { box-shadow: var(--shadow-sm); }
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
  background: transparent;
}
.accordion-header:hover { color: var(--orange); background: rgba(255,87,34,0.03); }
.accordion-header[aria-expanded="true"] { color: var(--orange); }
.acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,87,34,0.1);
  color: var(--orange);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.accordion-header[aria-expanded="true"] .acc-icon { transform: rotate(45deg); background: var(--orange); color: white; }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.accordion-body.open { max-height: 400px; }
.accordion-body p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---- ABOUT CIRCULAR ---- */
.section-about { background: linear-gradient(135deg, #FFF3E0 0%, #FBE9E7 100%); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { display: flex; justify-content: center; }
.about-circle-wrap {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
}
.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,87,34,0.15);
}
.ring-1 { inset: -30px; animation: rotateSlow 20s linear infinite; border-style: dashed; }
.ring-2 { inset: -10px; animation: rotateSlow 15s linear infinite reverse; }
.ring-3 { inset: 20px; animation: rotateSlow 25s linear infinite; border-style: dotted; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.circle-photo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.circle-photo img { width: 100%; height: 100%; object-fit: cover; }

.orbit-pill {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: orbitFloat 3s ease-in-out infinite;
}
.pill-icon { font-size: 1rem; }
.pill-top { top: -20px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.pill-right { right: -30px; top: 50%; transform: translateY(-50%); animation-delay: 0.75s; }
.pill-bottom { bottom: -20px; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.pill-left { left: -30px; top: 50%; transform: translateY(-50%); animation-delay: 2.25s; }
@keyframes orbitFloat {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 12px 40px rgba(255,87,34,0.25); transform: translateX(-50%) translateY(-4px); }
}
.pill-right { animation-name: orbitFloatRight; }
.pill-left { animation-name: orbitFloatLeft; }
@keyframes orbitFloatRight {
  0%, 100% { box-shadow: var(--shadow-md); transform: translateY(-50%); }
  50% { box-shadow: 0 12px 40px rgba(255,87,34,0.25); transform: translateY(calc(-50% - 4px)); }
}
@keyframes orbitFloatLeft {
  0%, 100% { box-shadow: var(--shadow-md); transform: translateY(-50%); }
  50% { box-shadow: 0 12px 40px rgba(255,87,34,0.25); transform: translateY(calc(-50% + 4px)); }
}

.about-lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.feature-row { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { font-size: 1.8rem; flex-shrink: 0; width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.feature-body h4 { font-weight: 700; margin-bottom: 6px; font-size: 1.05rem; }
.feature-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ---- SCHEDULE TABLE ---- */
.section-schedule { background: var(--bg); }
.schedule-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 2px solid var(--border);
  font-family: var(--font-body);
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.schedule-table th {
  background: linear-gradient(135deg, var(--text) 0%, #2d1b69 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.schedule-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.schedule-table tr:hover td { background: rgba(255,87,34,0.03); }
.schedule-table tr:last-child td { border-bottom: none; }
.level-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.level-beginner { background: rgba(139,195,74,0.15); color: var(--green-dark); }
.level-intermediate { background: rgba(255,171,145,0.25); color: var(--orange); }
.level-advanced { background: rgba(233,30,99,0.12); color: #C2185B; }
.table-btn {
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  transition: var(--transition);
  font-family: var(--font-body);
}
.table-btn:hover { background: var(--orange-dark); transform: scale(1.05); }

/* ---- PRICING ORIGAMI ---- */
.section-pricing { background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #1a1a2e 100%); }
.section-pricing .section-label { color: var(--coral); background: rgba(255,171,145,0.15); }
.section-pricing .section-title { color: var(--white); }
.section-pricing .section-sub { color: rgba(255,255,255,0.7); }

.origami-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.origami-card {
  position: relative;
  transition: var(--transition);
}
.origami-card:hover { transform: translateY(-8px); }
.origami-card.popular { transform: translateY(-12px); }
.origami-card.popular:hover { transform: translateY(-16px); }

.origami-inner {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  height: 100%;
}
.origami-card:hover .origami-inner {
  background: rgba(255,255,255,0.1);
  border-color: var(--orange);
  box-shadow: 0 20px 60px rgba(255,87,34,0.3);
}
.origami-card.popular .origami-inner {
  border-color: var(--orange);
  background: rgba(255,87,34,0.12);
}

.origami-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(225deg, rgba(255,87,34,0.3) 0%, transparent 60%);
  transition: var(--transition);
}
.origami-card:hover .origami-corner {
  background: linear-gradient(225deg, rgba(255,87,34,0.6) 0%, transparent 60%);
}

.popular-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.origami-icon { font-size: 2.5rem; margin-bottom: 16px; }
.origami-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.origami-price { margin-bottom: 24px; }
.price-main {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.price-per { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.origami-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.origami-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}
.origami-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.origami-btn { font-size: 0.9rem; padding: 12px 24px; width: 100%; justify-content: center; }

/* ---- LEVELS ---- */
.section-levels { background: var(--white); }
.levels-tabs { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.level-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--text-muted);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.level-tab:hover { border-color: var(--orange); color: var(--orange); }
.level-tab.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.level-icon { font-size: 1.2rem; }
.levels-content { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.level-program-card {
  background: linear-gradient(135deg, #FFF3E0 0%, #FAFAFA 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  cursor: pointer;
  transition: var(--transition);
}
.level-program-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.lpc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.lpc-title { font-size: 1.15rem; font-weight: 700; }
.lpc-duration {
  background: rgba(255,87,34,0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.lpc-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.lpc-exercises { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.lpc-exercise {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.lpc-exercise::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.lpc-note {
  background: rgba(139,195,74,0.15);
  border-left: 3px solid var(--green);
  padding: 10px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--green-dark);
}
.btn-open-popup {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: var(--font-body);
  margin-top: 16px;
}
.btn-open-popup:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,87,34,0.4); }

/* ---- RECOMMENDATIONS ---- */
.section-recs { background: var(--bg); }
.recs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
.rec-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); transform: translateY(-4px); }
.rec-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,87,34,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.rec-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.rec-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.rec-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,87,34,0.1);
  color: var(--orange);
}

/* ---- TIPS ---- */
.section-tips { background: var(--white); }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tips-col {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.tips-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
}
.beginner-header { background: linear-gradient(135deg, #E8F5E9, #F1F8E9); }
.intermediate-header { background: linear-gradient(135deg, #FFF3E0, #FBE9E7); }
.advanced-header { background: linear-gradient(135deg, #FCE4EC, #F3E5F5); }
.tips-icon { font-size: 1.8rem; }
.tips-header h3 { font-size: 1.1rem; font-weight: 700; }
.tips-list { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.tips-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.tips-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ---- ENERGY SVG ---- */
.section-energy {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0d1b2a 100%);
  color: var(--white);
}
.energy-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.energy-svg-wrap { display: flex; justify-content: center; }
.energy-svg { width: 100%; max-width: 550px; }

.energy-node { transition: var(--transition); filter: drop-shadow(0 0 8px rgba(255,87,34,0.4)); }
.energy-figure:hover .energy-node { transform: scale(1.12); filter: drop-shadow(0 0 20px rgba(255,87,34,0.8)); }

.pulse-ring { animation: pulsing 3s ease-in-out infinite; }
.r1 { animation-delay: 0s; }
.r2 { animation-delay: 0.5s; }
.r3 { animation-delay: 1s; }
@keyframes pulsing {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50% { transform: scale(1.03); opacity: 0.2; }
}

.moving-dot { animation: orbitNode 6s linear infinite; }
.dot1 { animation-duration: 6s; }
.dot2 { animation-duration: 9s; animation-delay: -3s; }
.dot3 { animation-duration: 7.5s; animation-delay: -1.5s; }
@keyframes orbitNode {
  0% { cx: 300px; cy: 195px; }
  14% { cx: 420px; cy: 150px; }
  28% { cx: 420px; cy: 355px; }
  42% { cx: 300px; cy: 390px; }
  57% { cx: 180px; cy: 355px; }
  71% { cx: 180px; cy: 150px; }
  85% { cx: 300px; cy: 110px; }
  100% { cx: 300px; cy: 195px; }
}

.energy-fact-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.fact-placeholder { text-align: center; color: rgba(255,255,255,0.4); }
.fact-arrow { font-size: 2rem; margin-bottom: 12px; animation: bounce 1.5s ease-in-out infinite; }
.fact-content { animation: fadeInUp 0.4s ease; }
.fact-emoji { font-size: 3rem; margin-bottom: 16px; }
#fact-title { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
#fact-text { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; }
.fact-stat {
  background: rgba(255,87,34,0.2);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  color: var(--coral);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---- PROGRESS ---- */
.section-progress { background: var(--bg); }
.progress-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.progress-form-side h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.goal-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.goal-label { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.goal-check { display: none; }
.goal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.goal-check:checked + .goal-chip {
  background: rgba(255,87,34,0.1);
  border-color: var(--orange);
  color: var(--orange);
}
.goal-chip:hover { border-color: var(--orange); color: var(--orange); }
.progress-sessions label { font-weight: 700; margin-bottom: 12px; display: block; }
.session-btns { display: flex; gap: 10px; }
.sess-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  transition: var(--transition);
}
.sess-btn:hover, .sess-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.progress-chart { width: 100%; }
.progress-legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.achievements-wrap { margin-top: 32px; }
.achievements-wrap h4 { font-weight: 700; margin-bottom: 16px; }
.badges-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.badge-item.earned {
  border-color: var(--orange);
  background: rgba(255,87,34,0.06);
  color: var(--orange);
}
.badge-icon { font-size: 1.4rem; }
.program-suggestions { margin-top: 48px; }
.program-suggestions h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.suggestions-list { display: flex; flex-wrap: wrap; gap: 12px; }
.suggest-chip {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- RHYTHM CANVAS ---- */
.section-rhythm { background: linear-gradient(135deg, #0d1b2a, #1a1a2e); color: var(--white); }
.section-rhythm .section-sub.light { color: rgba(255,255,255,0.7); }
.rhythm-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6;
  min-height: 300px;
  overflow: hidden;
}
#rhythm-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}
.rhythm-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  pointer-events: none;
}
.rhythm-tracks {
  display: flex;
  gap: 12px;
  pointer-events: all;
}
.track-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.track-item:hover, .track-item.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.track-icon { font-size: 1rem; }
.rhythm-hint { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 12px; }

/* ---- GALLERY ---- */
.section-gallery { background: var(--white); }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span { color: var(--white); font-size: 0.9rem; font-weight: 700; }

.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 3; }
.gallery-item:nth-child(8) { grid-column: span 1; }
.gallery-item:nth-child(9) { grid-column: span 2; }
.gallery-item:nth-child(10) { grid-column: span 2; grid-row: span 1; }

/* ---- PROGRAMS / CARDS ---- */
.section-programs { background: linear-gradient(135deg, #FFF3E0 0%, #FAFAFA 100%); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.prog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.prog-img { height: 220px; overflow: hidden; }
.prog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prog-card:hover .prog-img img { transform: scale(1.06); }
.prog-body { padding: 24px; }
.prog-tag {
  display: inline-block;
  background: rgba(255,87,34,0.1);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.prog-body h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 10px; }
.prog-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.prog-btn { font-size: 0.9rem; padding: 10px 24px; width: 100%; justify-content: center; }

/* ---- BOOKING ---- */
.section-booking {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 40%, #8B0000 100%);
  color: var(--white);
}
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.booking-text .section-sub { color: rgba(255,255,255,0.8); max-width: 100%; margin-bottom: 32px; font-size: 1.05rem; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; }
.booking-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); }
.booking-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--text); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--bg);
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--orange); background: var(--white); }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-note a { color: var(--orange); text-decoration: underline; }

/* ---- FOOTER ---- */
.site-footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin: 16px 0; }
.footer-legal p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-legal a { color: var(--coral); }
.footer-nav-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-nav-col a:hover { color: var(--orange); }
.footer-social { margin-top: 24px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.social-link:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* ---- MODAL ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 560px;
  position: relative;
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--orange); color: var(--white); }
.modal-content h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 8px; }
.modal-content .modal-sub { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; line-height: 1.6; }
.modal-tariff-group { margin-bottom: 20px; }
.modal-tariff-group label { font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; display: block; }
.tariff-radios { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tariff-radio { display: none; }
.tariff-label {
  display: block;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.tariff-radio:checked + .tariff-label {
  border-color: var(--orange);
  background: rgba(255,87,34,0.08);
  color: var(--orange);
}
.tariff-label:hover { border-color: var(--orange); color: var(--orange); }

/* ---- ANIMATIONS ---- */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate="fade-right"] { transform: translateX(-24px); }
[data-animate="fade-left"] { transform: translateX(24px); }
[data-animate="fade-in"] { transform: none; }
[data-animate].animated { opacity: 1; transform: translate(0); }

/* ---- LEGAL PAGE STYLES ---- */
.legal-page { padding: 120px 0 64px; }
.legal-page h1 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; list-style: disc; }

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

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .booking-layout { grid-template-columns: 1fr; gap: 40px; }
  .progress-layout { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .energy-layout { grid-template-columns: 1fr; }
  .slide { grid-template-columns: 1fr; min-height: auto; }
  .slide-img-wrap { height: 250px; }
  .tips-grid { grid-template-columns: 1fr; }
  .levels-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28,28,46,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 20px; text-align: center; }
  .main-nav a { font-size: 1.4rem; color: var(--white); }
  .burger { display: flex; }
  .header-cta { display: none; }

  .fiti-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .fiti-actions { flex-direction: column; align-items: flex-start; }
  .fiti-stats { gap: 24px; }

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

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 180px; }
  .gallery-item.gi-wide { grid-column: span 2 !important; height: 200px; }
  .gallery-item.gi-tall { height: 220px; }

  .schedule-tabs { justify-content: center; }
  .modal-box { padding: 28px 20px; }
  .tariff-radios { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  section { padding: 64px 0; }
  .origami-grid { grid-template-columns: 1fr; }
  .origami-card.popular { transform: none; }
  .fiti-stats { flex-direction: column; gap: 16px; }
  .sections-grid { gap: 8px; }
}
