/* =========================================
   FORMIX – Главная таблица стилей
   Цвета: #4CAF50 (Forest Green), #FFC107 (Sunrise Yellow), #2196F3 (Sky Blue)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap');

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

:root {
  --green: #4CAF50;
  --green-dark: #388E3C;
  --green-light: #A5D6A7;
  --yellow: #FFC107;
  --yellow-dark: #F9A825;
  --blue: #2196F3;
  --blue-dark: #1565C0;
  --white: #FFFFFF;
  --off-white: #F9FAF8;
  --gray-100: #F4F6F4;
  --gray-200: #E8EDE8;
  --gray-400: #9DB09D;
  --gray-600: #5A6B5A;
  --gray-800: #2E3E2E;
  --black: #1A2519;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(76,175,80,0.10);
  --shadow-lg: 0 8px 48px rgba(76,175,80,0.16);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* -------- SCROLL BAR -------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* -------- UTILITY CLASSES -------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 96px 0; }
.section-alt { background: var(--gray-100); }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow-dark); }
.text-blue { color: var(--blue); }

.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(76,175,80,0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(76,175,80,0.4); }

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

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--black); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,193,7,0.4); }

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

/* -------- ANIMATIONS -------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes waveFlow {
  0% { d: path("M0,30 C200,60 400,0 600,30 C800,60 1000,0 1200,30 L1200,100 L0,100 Z"); }
  50% { d: path("M0,50 C200,10 400,70 600,50 C800,10 1000,70 1200,50 L1200,100 L0,100 Z"); }
  100% { d: path("M0,30 C200,60 400,0 600,30 C800,60 1000,0 1200,30 L1200,100 L0,100 Z"); }
}
@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes typing {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.7s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.7s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.5s ease forwards; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* -------- HEADER / NAV -------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(76,175,80,0.1);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(76,175,80,0.15); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--black);
}
.nav-logo span { color: var(--green); }
.nav-logo img { width: 40px; height: 40px; border-radius: 8px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--green); background: rgba(76,175,80,0.08); }

.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* -------- HERO / GIGAS SECTION -------- */
.gigas {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.gigas-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.gigas:hover .gigas-bg { transform: scale(1.08); }

.gigas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,60,30,0.8) 0%, rgba(20,40,20,0.6) 50%, rgba(33,150,243,0.15) 100%);
}

.gigas-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gigas-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}

.gigas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,0.2);
  border: 1px solid rgba(76,175,80,0.4);
  backdrop-filter: blur(8px);
  color: var(--green-light);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}
.gigas-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.gigas-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--white);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.1s ease both;
}
.gigas-title .highlight {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.gigas-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  opacity: 0.6;
}

.gigas-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 1s 0.2s ease both;
}

.gigas-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 1.1s 0.3s ease both;
}

.gigas-nav-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  animation: fadeInUp 1.2s 0.4s ease both;
}

.gigas-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.gigas-nav-item:hover {
  background: rgba(76,175,80,0.25);
  border-color: rgba(76,175,80,0.5);
  color: var(--white);
  transform: translateY(-3px);
}
.gigas-nav-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(76,175,80,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.gigas-scroll {
  position: absolute;
  bottom: 40px;
  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;
  font-family: var(--font-main);
  letter-spacing: 0.1em;
  animation: floatUp 2.5s ease infinite;
}
.gigas-scroll .arrow {
  width: 24px;
  height: 24px;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  border-right: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}

/* -------- STATS BAR -------- */
.stats-bar {
  background: var(--green-dark);
  padding: 24px 0;
  overflow: hidden;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-item .num {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* -------- SLIDER BLOCK -------- */
.slider-block { background: var(--white); }
.slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  min-width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.slide-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20,40,20,0.9), transparent);
  padding: 40px 40px 32px;
  color: var(--white);
}
.slide-caption h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.slide-caption p { font-size: 0.95rem; opacity: 0.85; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--green); color: var(--white); transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active { background: var(--green); width: 28px; border-radius: 5px; }

/* -------- ABOUT / CIRCLE BLOCK -------- */
.about-block { background: var(--off-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-circle-wrap {
  position: relative;
  width: 420px;
  height: 420px;
}
.about-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(76,175,80,0.3);
  animation: spin 20s linear infinite;
}
.orbit-item {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-800);
  white-space: nowrap;
  animation: spin 20s linear infinite reverse;
  display: flex;
  align-items: center;
  gap: 6px;
}
.orbit-item .ico { font-size: 1rem; }
.orbit-top    { top: 0;    left: 50%; transform: translate(-50%, -50%); }
.orbit-right  { top: 50%; right: 0; transform: translate(50%, -50%); }
.orbit-bottom { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.orbit-left   { top: 50%; left: 0;  transform: translate(-50%, -50%); }

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray-600); margin-bottom: 20px; font-size: 1rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(76,175,80,0.06);
  transition: transform var(--transition);
}
.about-feature:hover { transform: translateY(-3px); }
.about-feature .icon {
  width: 40px;
  height: 40px;
  background: rgba(76,175,80,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature h4 { font-size: 0.85rem; margin-bottom: 2px; }
.about-feature p { font-size: 0.78rem; color: var(--gray-600); }

/* -------- ACCORDION BLOCK -------- */
.accordion-block { background: var(--white); }
.accordion-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.accordion-visual img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.accordion-item.open { border-color: var(--green); box-shadow: 0 4px 20px rgba(76,175,80,0.12); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--gray-100); }
.accordion-item.open .accordion-header { background: rgba(76,175,80,0.06); }
.accordion-header h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
}
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  transition: all var(--transition);
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body-inner { padding: 0 24px 24px; }
.accordion-body-inner p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 12px; }
.accordion-body-inner ul { padding-left: 8px; }
.accordion-body-inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.accordion-body-inner ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* -------- TABLE BLOCK -------- */
.table-block { background: var(--gray-100); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}
.schedule-table thead tr {
  background: var(--green);
  color: var(--white);
}
.schedule-table th {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
}
.schedule-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.schedule-table tbody tr:hover { background: rgba(76,175,80,0.04); }
.schedule-table tbody tr:last-child td { border-bottom: none; }

.level-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
}
.level-beginner  { background: rgba(76,175,80,0.12); color: var(--green-dark); }
.level-middle    { background: rgba(255,193,7,0.18); color: #B45309; }
.level-advanced  { background: rgba(33,150,243,0.12); color: var(--blue-dark); }

/* -------- PRICE ORIGAMI BLOCK -------- */
.price-block { background: var(--white); }
.origami-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.origami-piece {
  position: relative;
  background: var(--gray-100);
  padding: 48px 40px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.origami-piece::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.origami-piece:nth-child(1)::before { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.origami-piece:nth-child(2)::before { background: linear-gradient(135deg, #FFC107, #F57F17); }
.origami-piece:nth-child(3)::before { background: linear-gradient(135deg, #2196F3, #0D47A1); }
.origami-piece:nth-child(4)::before { background: linear-gradient(135deg, #9C27B0, #4A148C); }

.origami-piece:hover::before { opacity: 1; }
.origami-piece:hover { transform: scale(1.02); z-index: 2; }

.origami-bg-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 5rem;
  opacity: 0.08;
  transition: all 0.4s ease;
  user-select: none;
}
.origami-piece:hover .origami-bg-icon { opacity: 0.2; font-size: 6rem; }

.origami-content {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.origami-piece:hover .origami-content { color: var(--white); }

.origami-tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.origami-piece:hover .origami-tag { color: rgba(255,255,255,0.7); }

.origami-price {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.origami-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-400);
  transition: color 0.3s ease;
}
.origami-piece:hover .origami-price,
.origami-piece:hover .origami-price span { color: var(--white); }

.origami-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.origami-piece:hover .origami-title { color: var(--white); }

.origami-perks { display: flex; flex-direction: column; gap: 6px; }
.origami-perk {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.origami-piece:hover .origami-perk { color: rgba(255,255,255,0.85); }
.origami-perk::before { content: '→'; font-weight: 700; color: var(--green); transition: color 0.3s ease; }
.origami-piece:hover .origami-perk::before { color: rgba(255,255,255,0.7); }

.origami-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: all 0.3s ease;
}
.origami-piece:hover .origami-cta { color: var(--white); }
.origami-cta::after { content: '→'; transition: transform 0.3s ease; }
.origami-piece:hover .origami-cta::after { transform: translateX(4px); }

/* -------- LEVELS BLOCK -------- */
.levels-block { background: var(--gray-100); }
.levels-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.level-tab {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-600);
}
.level-tab:hover { border-color: var(--green); color: var(--green); }
.level-tab.active { background: var(--green); border-color: var(--green); color: var(--white); }

.level-panel { display: none; }
.level-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  animation: fadeInUp 0.5s ease;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }

.program-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.program-card-tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(76,175,80,0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.program-card-title { font-size: 1.1rem; margin-bottom: 8px; }
.program-card-desc { font-size: 0.88rem; color: var(--gray-600); }
.program-card-body { padding: 20px 24px; }
.program-steps { display: flex; flex-direction: column; gap: 10px; }
.program-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.step-num {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-text { font-size: 0.88rem; color: var(--gray-600); padding-top: 4px; }
.program-card-footer {
  padding: 16px 24px;
  background: var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-duration {
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: var(--gray-400);
}
.open-popup-btn {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.open-popup-btn:hover { gap: 8px; }
.open-popup-btn::after { content: '→'; }

/* -------- RECOMMENDATIONS BLOCK -------- */
.recs-block { background: var(--white); }
.recs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.rec-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.rec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.rec-card:hover::before { transform: scaleY(1); }
.rec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.rec-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  animation: floatUp 3s ease infinite;
}
.rec-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.rec-desc { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 12px; }
.rec-tip {
  font-size: 0.82rem;
  color: var(--green-dark);
  background: rgba(76,175,80,0.08);
  padding: 8px 12px;
  border-radius: 8px;
  font-style: italic;
}

/* -------- TIPS BY LEVEL BLOCK -------- */
.tips-block { background: var(--gray-100); }
.tips-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 48px;
  background: var(--white);
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}
.tips-tab {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-600);
}
.tips-tab.active { background: var(--green); color: var(--white); }

.tips-panel { display: none; }
.tips-panel.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: fadeInUp 0.5s ease;
}
.tip-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(76,175,80,0.06);
  transition: transform var(--transition);
}
.tip-item:hover { transform: translateY(-3px); }
.tip-num {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(76,175,80,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.tip-text h4 { font-size: 0.95rem; margin-bottom: 6px; }
.tip-text p { font-size: 0.85rem; color: var(--gray-600); }

/* -------- GALLERY BLOCK -------- */
.gallery-block { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(76,175,80,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .height-200 { height: 200px; }
.gallery-item .height-400 { height: 412px; }
.gallery-item .height-280 { height: 280px; }

/* -------- INTERACTIVE CARDS (DIRECTIONS) -------- */
.cards-block { background: var(--gray-100); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.direction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.direction-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.direction-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.direction-card:hover .direction-card-img { transform: scale(1.06); }
.direction-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.direction-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.direction-card-title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.direction-card-desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 20px;
}
.direction-card-btn {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.direction-card-btn:hover { background: var(--green-dark); transform: scale(1.02); }

/* -------- TRANSFORMATION BLOCK -------- */
.transform-block { background: var(--off-white); }
.transform-scroll-container {
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--gray-100);
}
.transform-cards {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 4px;
}
.transform-card {
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.transform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.transform-img-wrap {
  position: relative;
  height: 240px;
  background: var(--gray-100);
  overflow: hidden;
}
.transform-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transform-before-after {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.ba-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.ba-badge.before { background: rgba(0,0,0,0.55); color: var(--white); }
.ba-badge.after  { background: rgba(76,175,80,0.9); color: var(--white); }
.transform-body { padding: 24px; }
.transform-name {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.transform-result {
  font-size: 0.82rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}
.transform-story { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }
.transform-program {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.8rem;
  color: var(--gray-400);
}
.transform-program strong { color: var(--gray-800); }

/* -------- VIRTUAL TRAINER BLOCK -------- */
.trainer-block { background: var(--green-dark); }
.trainer-block .section-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.trainer-block .section-title { color: var(--white); }
.trainer-block .section-subtitle { color: rgba(255,255,255,0.7); }

.body-selector {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.body-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
}
.body-btn:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); transform: translateY(-3px); }
.body-btn.active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.body-btn .icon { font-size: 2rem; }

.exercises-panel { display: none; animation: fadeInUp 0.5s ease; }
.exercises-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exercise-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}
.exercise-anim {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: floatUp 2.5s ease infinite;
}
.exercise-title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.exercise-desc { font-size: 0.88rem; opacity: 0.8; margin-bottom: 16px; }
.exercise-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,193,7,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
}

/* -------- ENERGY & BALANCE BLOCK -------- */
.energy-block { background: var(--black); overflow: hidden; position: relative; }
.energy-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.energy-canvas-wrap canvas { width: 100%; height: 100%; }
.energy-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.energy-text .section-label { background: rgba(76,175,80,0.2); color: var(--green-light); }
.energy-text .section-title { color: var(--white); }
.energy-text p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.energy-principles { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.energy-principle {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(255,255,255,0.8);
}
.energy-principle .icon {
  width: 44px;
  height: 44px;
  background: rgba(76,175,80,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.energy-principle h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.energy-principle p { font-size: 0.85rem; opacity: 0.7; }

.energy-visual-wrap { display: flex; justify-content: center; align-items: center; }
.energy-svg-visual { width: 100%; max-width: 480px; }

/* -------- CTA FORM BLOCK -------- */
.form-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1B5E20 50%, #0D3D12 100%);
  padding: 96px 0;
}
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.form-text .section-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.form-text .section-title { color: var(--white); }
.form-text p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.form-benefits { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.form-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.form-benefit::before { content: '✓'; color: var(--yellow); font-weight: 700; font-size: 1rem; }

.booking-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--green); }
.form-group input::placeholder { color: var(--gray-400); }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(76,175,80,0.4); }
.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}

/* -------- MODAL -------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(40px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.modal-header h2 { font-size: 1.25rem; color: var(--black); flex: 1; }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--gray-600);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--gray-100); border-color: var(--gray-400); }
.modal-body { padding: 28px 32px; }
.modal-desc { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; }
.modal-section-title {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
  margin-top: 20px;
}
.radio-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.radio-option:hover { border-color: var(--green); background: rgba(76,175,80,0.04); }
.radio-option input[type="radio"] { accent-color: var(--green); width: 16px; height: 16px; }
.radio-option span { font-size: 0.9rem; color: var(--gray-800); }

/* -------- FOOTER -------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.social-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: scale(1.1); }
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--green-light); }
.footer-company {
  font-size: 0.78rem;
  opacity: 0.5;
  margin-top: 8px;
}

/* -------- COOKIE BANNER -------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(76,175,80,0.2);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner p { font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; opacity: 0.85; }
.cookie-banner p a { color: var(--green-light); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid;
}
.cookie-btn.accept { background: var(--green); color: var(--white); border-color: var(--green); }
.cookie-btn.accept:hover { background: var(--green-dark); }
.cookie-btn.necessary { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.cookie-btn.necessary:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cookie-btn.settings { background: transparent; color: rgba(255,255,255,0.5); border-color: transparent; }
.cookie-btn.settings:hover { color: rgba(255,255,255,0.8); }

/* -------- BACK TO TOP -------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(76,175,80,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* -------- MOBILE NAV -------- */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-links a {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--gray-800);
  display: block;
  transition: all var(--transition);
}
.mobile-menu-links a:hover { color: var(--green); background: rgba(76,175,80,0.08); }
.mobile-menu-cta { margin-top: 16px; display: flex; justify-content: center; }

/* -------- LEGAL PAGES -------- */
.legal-hero {
  background: linear-gradient(135deg, var(--green-dark), #1B5E20);
  padding: 120px 0 64px;
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: 2.5rem; }
.legal-hero p { color: rgba(255,255,255,0.75); margin-top: 12px; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 20px;
}
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 16px; color: var(--black); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--gray-800); }
.legal-content p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { margin-bottom: 16px; padding-left: 20px; }
.legal-content ul li { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 8px; list-style: disc; }

/* -------- THANKS PAGE -------- */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 50%, #E3F2FD 100%);
  padding: 40px 20px;
}
.thanks-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.6s ease;
}
.thanks-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: pulse 2s ease infinite;
}
.thanks-card h1 { font-size: 2rem; margin-bottom: 16px; }
.thanks-card p { color: var(--gray-600); margin-bottom: 8px; }
.thanks-card .back-btn {
  margin-top: 32px;
  display: inline-block;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-circle-wrap { width: 340px; height: 340px; }
  .about-photo { width: 180px; height: 180px; }
  .accordion-inner { grid-template-columns: 1fr; gap: 40px; }
  .origami-grid { grid-template-columns: 1fr 1fr; }
  .form-inner { grid-template-columns: 1fr; gap: 48px; }
  .energy-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .gigas-nav-preview { grid-template-columns: 1fr 1fr; }
  .gigas-title { font-size: 2.2rem; }
  .gigas-actions { flex-direction: column; }
  .gigas-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .about-circle-wrap { width: 280px; height: 280px; }
  .about-photo { width: 150px; height: 150px; }
  .about-features { grid-template-columns: 1fr; }

  .level-panel.active { grid-template-columns: 1fr; }

  .recs-grid { grid-template-columns: 1fr; }

  .tips-panel.active { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.span-2 { grid-column: span 1; }

  .cards-grid { grid-template-columns: 1fr; }

  .exercises-panel.active { grid-template-columns: 1fr; }

  .origami-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .section { padding: 64px 0; }

  .booking-form { padding: 28px 24px; }

  .gigas-nav-preview { grid-template-columns: 1fr 1fr; gap: 8px; }

  .schedule-table { font-size: 0.82rem; }
  .schedule-table th, .schedule-table td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .gigas-nav-preview { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.span-2 { grid-column: span 1; }
  .tips-tabs { width: 100%; flex-direction: column; background: transparent; padding: 0; }
  .tips-tab { width: 100%; border-radius: var(--radius); }
  .tips-tab.active { background: var(--green); color: var(--white); }
  .body-selector { gap: 8px; }
  .body-btn { padding: 14px 18px; }
  .origami-piece { min-height: 220px; padding: 32px 24px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
