/* ===== STEP HOUSE — MAIN STYLES ===== */

:root {
  --green: #00A86B;
  --green-dark: #007a4f;
  --green-light: #e8f8f2;
  --orange: #FF7538;
  --orange-light: #fff3ee;
  --purple: #EEBEF1;
  --purple-light: #fdf0fe;
  --dark: #0f1923;
  --dark2: #1a2737;
  --text: #2d3748;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --bg: #f9fafb;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,168,107,0.35);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 6px 28px rgba(0,168,107,0.5); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid transparent;
}
.btn-ghost:hover { border-color: var(--green); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-pulse { animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(0,168,107,0.35); }
  50% { box-shadow: 0 4px 32px rgba(0,168,107,0.65), 0 0 0 8px rgba(0,168,107,0.15); }
}

/* ===== SECTION BASICS ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.section-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.text-accent { color: var(--orange); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: #fff;
  z-index: 9999;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 280px; }
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; }
.cookie-text p { font-size: 0.9rem; line-height: 1.6; opacity: 0.9; }
.cookie-text a { color: var(--green); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-secondary {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-family: var(--font);
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
}
.btn-cookie-secondary:hover { border-color: #fff; color: #fff; }
.btn-cookie-primary {
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font);
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-cookie-primary:hover { background: var(--green-dark); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 1.35rem;
  color: #fff;
  transition: color var(--transition);
  flex-shrink: 0;
}
.header.scrolled .logo { color: var(--dark); }
.logo-text strong { color: var(--green); }
.logo-icon-wrap { flex-shrink: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.header.scrolled .nav-link { color: var(--text); }
.header.scrolled .nav-link:hover { background: var(--green-light); color: var(--green); }
.nav-cta { margin-left: 8px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  z-index: 10;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.header.scrolled .burger span { background: var(--dark); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,20,35,0.85) 0%, rgba(10,20,35,0.6) 60%, rgba(10,20,35,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,107,0.25);
  border: 1px solid rgba(0,168,107,0.5);
  color: #5effba;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font);
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ===== ANIMATIONS ===== */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.7s ease forwards;
}
/* Ensure visibility after animation completes */
.animate-up.anim-done {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HOW SECTION ===== */
.how-section { background: var(--bg); }
.step-map { max-width: 820px; margin: 0 auto 64px; }
.step-item {
  display: flex;
  gap: 32px;
  margin-bottom: 8px;
  align-items: flex-start;
}
.step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-circle {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,168,107,0.35);
}
.step-circle span {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}
.step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--green), rgba(0,168,107,0.1));
  margin: 4px 0;
}
.step-line.last { background: transparent; }
.step-body { flex: 1; padding-bottom: 40px; }
.step-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 12px;
  margin-bottom: 12px;
}
.step-body h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-body p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.step-tag-result {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 14px;
  border-radius: 50px;
}

/* MINI CARDS */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.mini-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.mini-card.popular {
  border-color: var(--green);
  background: var(--green-light);
  box-shadow: 0 8px 32px rgba(0,168,107,0.2);
  transform: scale(1.02);
}
.mini-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mini-badge {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 50px;
}
.mini-badge.hot { background: var(--green); color: #fff; }
.mini-emoji { font-size: 1.5rem; }
.mini-card h4 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.mini-price {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 14px;
}
.mini-price span { font-size: 1.2rem; }
.mini-card ul { list-style: none; }
.mini-card ul li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.mini-card ul li:last-child { border-bottom: none; }
.mini-card ul li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* BOOKING FORM */
.booking-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.booking-header { text-align: center; margin-bottom: 32px; }
.booking-header h3 {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.booking-header p { color: var(--text-light); }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-group input {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.2s;
  outline: none;
  color: var(--dark);
  background: var(--bg);
}
.form-group input:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(0,168,107,0.1); }
.form-group input::placeholder { color: #bbb; }
.booking-form button[type="submit"] { display: flex; }
.learn-more-btn-wrap { text-align: center; }

/* ===== SLIDER ===== */
.slider-section { background: var(--dark); overflow: hidden; }
.slider-section .section-tag { background: rgba(0,168,107,0.2); color: #5effba; }
.slider-section .section-title { color: #fff; }
.slider-section .section-sub { color: rgba(255,255,255,0.6); }
.slider-wrap { position: relative; }
.slider { position: relative; border-radius: var(--radius); overflow: hidden; }
.slide {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 480px;
  align-items: stretch;
}
.slide.active { display: grid; }
.slide-img-wrap { overflow: hidden; }
.slide-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.slide-info {
  background: var(--dark2);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide-tag {
  display: inline-block;
  background: rgba(0,168,107,0.2);
  color: #5effba;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.slide-info h3 {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.slide-info p { color: rgba(255,255,255,0.7); line-height: 1.7; font-size: 0.95rem; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.sl-btn {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s;
  cursor: pointer;
}
.sl-btn:hover { background: var(--green); border-color: var(--green); }
.sl-dots { display: flex; gap: 8px; }
.sl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.sl-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ===== FAQ / ACCORDION ===== */
.faq-section { background: #fff; }
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-left .section-title { text-align: left; font-size: 2rem; }
.faq-left .section-sub { text-align: left; margin: 0; }
.faq-img {
  margin-top: 32px;
  border-radius: var(--radius);
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}
.accordion { display: flex; flex-direction: column; gap: 0; }
.ac-item { border-bottom: 1px solid var(--border); }
.ac-item:first-child { border-top: 1px solid var(--border); }
.ac-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.ac-trigger:hover, .ac-trigger[aria-expanded="true"] { color: var(--green); }
.ac-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-light);
}
.ac-trigger[aria-expanded="true"] .ac-icon { transform: rotate(180deg); color: var(--green); }
.ac-body {
  display: none;
  padding-bottom: 20px;
}
.ac-body.open { display: block; animation: acOpen 0.3s ease; }
@keyframes acOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ac-body p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }

/* ===== ABOUT ===== */
.about-section { background: var(--bg); }
.about-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}
.about-center-col { display: flex; justify-content: center; }
.about-img-ring {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}
.about-img-ring img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
  z-index: 2;
}
.about-ring-1 {
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 3px solid var(--green);
  border-radius: var(--radius);
  z-index: 1;
  opacity: 0.4;
}
.about-ring-2 {
  position: absolute;
  top: -32px; left: -32px; right: 32px; bottom: 32px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.2;
}
.about-facts { display: flex; flex-direction: column; gap: 24px; }
.about-fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.about-fact:hover { transform: translateX(8px); box-shadow: var(--shadow); border-color: var(--green); }
.about-fact-icon { font-size: 1.6rem; flex-shrink: 0; }
.about-fact-body h4 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.about-fact-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* ===== SCHEDULE ===== */
.schedule-section { background: #fff; }
.schedule-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--text-light);
  transition: all 0.2s;
  cursor: pointer;
  background: #fff;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.table-scroll { overflow-x: auto; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 700px;
}
.schedule-table th {
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
}
.schedule-table th:first-child { border-radius: 12px 0 0 0; }
.schedule-table th:last-child { border-radius: 0 12px 0 0; }
.schedule-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
}
.schedule-table tr:hover td { background: var(--green-light); }
.schedule-table tr.hidden { display: none; }
.day-chip {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 50px;
}
.lvl {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.lvl.beginner { background: #e8f8f2; color: #006644; }
.lvl.middle { background: #fff3ee; color: #c0400a; }
.lvl.advanced { background: #f0e8fd; color: #6b21a8; }
.book-link {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid var(--green);
  border-radius: 50px;
  color: var(--green);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s;
}
.book-link:hover { background: var(--green); color: #fff; }

/* ===== PRICES ===== */
.prices-section { background: var(--bg); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all var(--transition);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(145deg, #f0fff8, #fff);
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(0,168,107,0.2);
}
.pc-ribbon {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--green);
  color: #fff;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px 8px;
  border-radius: 0 0 12px 12px;
}
.pc-icon { font-size: 2rem; margin-bottom: 4px; }
.price-card h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}
.pc-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; flex: 0; }
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  margin: 4px 0;
}
.pc-amount {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.pc-curr { font-family: var(--font); font-size: 1.2rem; font-weight: 700; color: var(--green); }
.pc-per { font-size: 0.78rem; color: var(--text-light); width: 100%; }
.pc-list { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
}
.pc-list li.pc-off { color: var(--text-light); }
.pc-list .check { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* CALCULATOR */
.calc-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.calc-header { text-align: center; margin-bottom: 32px; }
.calc-header h3 {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.calc-header p { color: var(--text-light); }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.calc-group { display: flex; flex-direction: column; gap: 10px; }
.calc-group label {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.calc-group select {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--bg);
}
.calc-group select:focus { border-color: var(--green); }
.calc-group input[type="range"] {
  width: 100%;
  accent-color: var(--green);
  height: 6px;
  cursor: pointer;
}
.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: var(--font);
}
.calc-result {
  background: var(--green-light);
  border: 2px solid rgba(0,168,107,0.3);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  text-align: center;
}
.calc-result-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.calc-label { font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--dark); }
.calc-val { font-family: var(--font); font-size: 2rem; font-weight: 900; color: var(--green); }
.calc-note { font-size: 0.875rem; color: var(--text-light); }

/* ===== SELLING ===== */
.selling-section { padding: 0; }
.selling-bg {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 96px 0;
}
.selling-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.selling-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.selling-line { width: 60px; height: 4px; background: var(--green); border-radius: 2px; margin-bottom: 24px; }
.selling-left p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.selling-lead { color: rgba(255,255,255,0.9) !important; font-size: 1.05rem !important; font-style: italic; }
.selling-right { display: flex; flex-direction: column; gap: 28px; }
.selling-point { display: flex; gap: 20px; align-items: flex-start; }
.sp-num {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0,168,107,0.3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}
.selling-point h4 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}
.selling-point p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== INFOGRAPHIC ===== */
.infographic-section { background: var(--bg); }
.infograph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.infograph-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid var(--border);
  transition: all var(--transition);
}
.infograph-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--clr); }
.infograph-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.infograph-emoji { font-size: 1.8rem; flex-shrink: 0; }
.infograph-bar-wrap {
  flex: 1;
  background: var(--border);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.infograph-bar {
  height: 100%;
  border-radius: 4px;
  background: var(--clr);
  width: 0;
  transition: width 1.2s ease;
}
.infograph-pct {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 900;
  color: var(--clr);
  flex-shrink: 0;
}
.infograph-card h4 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.infograph-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.infograph-stat {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr);
  background: color-mix(in srgb, var(--clr) 12%, transparent);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== GALLERY ===== */
.gallery-section { background: #fff; }
.gallery-hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--orange), transparent);
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  padding: 32px 16px 16px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  transform: translateY(4px);
  opacity: 0;
  transition: all 0.3s;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.review-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-author strong { display: block; font-family: var(--font); font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.review-author span { font-size: 0.78rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--bg); padding: 64px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 16px 64px rgba(0,168,107,0.3);
}
.cta-text h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-inner { padding: 64px 24px 32px; }
.footer-top {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo-footer .logo-text { color: #fff; }
.logo-footer .logo-text strong { color: var(--green); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 12px; }
.footer-email { margin-top: 8px; font-size: 0.875rem; }
.footer-email a { color: var(--green); }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--dark);
}
.legal-hero h1 { font-family: var(--font); font-size: 2.4rem; font-weight: 900; color: #fff; }
.legal-hero p { color: rgba(255,255,255,0.5); margin-top: 8px; font-size: 0.9rem; }
.legal-content { padding: 64px 0; max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font); font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; margin-top: 32px; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }

/* ===== THANKS PAGE ===== */
.thanks-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); }
.thanks-box { text-align: center; max-width: 500px; padding: 64px 40px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.thanks-icon { font-size: 4rem; margin-bottom: 24px; }
.thanks-box h1 { font-family: var(--font); font-size: 2rem; font-weight: 900; color: var(--dark); margin-bottom: 16px; }
.thanks-box p { color: var(--text-light); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-center-col { display: none; }
}

@media (max-width: 900px) {
  .faq-container { grid-template-columns: 1fr; }
  .faq-img { display: none; }
  .slide { grid-template-columns: 1fr; min-height: auto; }
  .slide-info { padding: 32px; }
  .infograph-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .selling-inner { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(360px, 100%);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: right 0.3s ease;
    z-index: 5;
  }
  .nav.open { right: 0; }
  .nav-link { color: rgba(255,255,255,0.8) !important; background: transparent !important; width: 100%; font-size: 1rem; padding: 12px 0; }
  .nav-link:hover { color: var(--green) !important; }
  .nav-cta { margin-left: 0; margin-top: 16px; }
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .cta-box { padding: 40px 32px; flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .schedule-table { font-size: 0.82rem; }
  .price-grid { grid-template-columns: 1fr; }
  .booking-wrap { padding: 32px 24px; }
  .calc-section { padding: 32px 24px; }
  .infograph-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .step-item { flex-direction: column; gap: 12px; }
  .step-left { flex-direction: row; }
  .step-line { width: auto; height: 2px; min-height: auto; min-width: 24px; background: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 240px; }
  .hero-title { font-size: 2rem; }
}
