/* ============================================================
   VIBES TIME — PURE VANILLA CSS
   Color scheme: #50C878 (primary), #BFFF00 (accent), #138808 (highlight)
   ============================================================ */

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

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

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.section { padding: 80px 0; }
.section-light { background: #f7faf7; }
.section-dark { background: #0f1e16; color: #fff; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; transition: all .25s; cursor: pointer; gap: 8px;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: #50C878; color: #0f1e16;
  box-shadow: 0 4px 20px rgba(80,200,120,0.35);
}
.btn-primary:hover { background: #3fb865; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(80,200,120,0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-green {
  background: transparent; color: #50C878;
  border: 2px solid #50C878;
}
.btn-outline-green:hover { background: #50C878; color: #0f1e16; }

.btn-xl { padding: 16px 36px; font-size: 1.05rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; display: flex; }

.pulse-btn { animation: pulse-glow 2.5s infinite; }
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(80,200,120,0.35); }
  50% { box-shadow: 0 4px 40px rgba(80,200,120,0.65); }
}

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header-light { text-align: center; margin-bottom: 56px; }

.section-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(80,200,120,0.12); color: #138808;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.section-badge-light {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(191,255,0,0.15); color: #BFFF00;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-title-light { color: #fff; margin-bottom: 16px; }
.section-subtitle { color: #555; font-size: 1.05rem; max-width: 620px; margin: 0 auto; }
.section-subtitle-light { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0f1e16; color: #fff; padding: 20px 0;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 0.9rem; min-width: 240px; }
.cookie-text a { color: #50C878; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie {
  padding: 9px 18px; border-radius: 50px; font-weight: 700;
  font-size: 0.85rem; transition: all .2s;
}
.btn-cookie-accept { background: #50C878; color: #0f1e16; }
.btn-cookie-accept:hover { background: #3fb865; }
.btn-cookie-minimal { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-cookie-minimal:hover { border-color: #fff; }
.btn-cookie-settings { background: transparent; color: #BFFF00; border: 1.5px solid rgba(191,255,0,0.4); }
.btn-cookie-settings:hover { border-color: #BFFF00; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: background .3s, box-shadow .3s, padding .3s;
}
.site-header.scrolled {
  background: #fff; padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}
.site-header.scrolled .nav-link { color: #1a1a2e; }
.site-header.scrolled .logo-text { color: #1a1a2e; }

.header-inner {
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.4rem; color: #fff; transition: color .3s;
}
.logo-accent { color: #BFFF00; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; gap: 8px; align-items: center; }
.nav-link {
  padding: 6px 12px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.9);
  transition: background .2s, color .2s;
}
.nav-link:hover { background: rgba(80,200,120,0.15); color: #50C878; }

.header-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.9rem; }

.burger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.site-header.scrolled .burger span { background: #1a1a2e; }

/* ---- MOBILE NAV ---- */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 2000; background: #0f1e16;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 1.6rem; color: #fff; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.mobile-nav-list { text-align: center; margin-bottom: 32px; }
.mobile-nav-list li { margin-bottom: 8px; }
.mobile-nav-link {
  display: block; color: #fff; font-size: 1.5rem; font-weight: 700;
  padding: 12px 24px; border-radius: 12px; transition: background .2s, color .2s;
}
.mobile-nav-link:hover { background: rgba(80,200,120,0.15); color: #50C878; }
.mobile-nav-cta { margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,30,22,0.88) 0%, rgba(15,30,22,0.55) 60%, rgba(15,30,22,0.7) 100%);
}

.hero-content {
  position: relative; z-index: 2; color: #fff;
  padding-top: 100px; padding-bottom: 60px;
}
.hero-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(191,255,0,0.2); color: #BFFF00; border: 1px solid rgba(191,255,0,0.4);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 20px;
}
.hero-title { margin-bottom: 20px; }
.hero-accent { color: #BFFF00; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85);
  max-width: 580px; margin-bottom: 36px; font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column;
}
.stat-number { font-size: 2.2rem; font-weight: 900; color: #50C878; font-family: 'Montserrat', sans-serif; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  text-align: center; color: rgba(255,255,255,0.6); font-size: 0.8rem;
  animation: bounce 2s infinite; z-index: 2;
}
.scroll-arrow { font-size: 1.4rem; margin-top: 4px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BLOCK 1 — STEPS MAP
   ============================================================ */
.section-steps { background: #fff; }

.steps-map {
  position: relative; display: flex; gap: 0; flex-wrap: wrap;
  justify-content: center;
}
.steps-connector {
  position: absolute; top: 48px; left: 5%; right: 5%; height: 3px;
  background: linear-gradient(90deg, #50C878 0%, #BFFF00 50%, #50C878 100%);
  border-radius: 3px; z-index: 0;
}
@media (max-width:900px) { .steps-connector { display: none; } }

.step-card {
  position: relative; z-index: 1; width: 19%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 16px 12px 24px;
  opacity: 0; transform: translateY(30px);
  transition: opacity .5s ease, transform .5s ease;
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:nth-child(2) { transition-delay: .1s; }
.step-card:nth-child(3) { transition-delay: .2s; }
.step-card:nth-child(4) { transition-delay: .3s; }
.step-card:nth-child(5) { transition-delay: .4s; }
.step-card:nth-child(6) { transition-delay: .5s; }

.step-icon-wrap { position: relative; margin-bottom: 16px; }
.step-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #50C878, #138808);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 4px 20px rgba(80,200,120,0.35);
  transition: transform .3s;
}
.step-card:hover .step-icon { transform: scale(1.08); }
.step-number {
  position: absolute; top: -8px; right: -8px;
  width: 28px; height: 28px; background: #BFFF00; color: #0f1e16;
  border-radius: 50%; font-size: 0.7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; color: #1a1a2e; }
.step-desc { font-size: 0.82rem; color: #555; margin-bottom: 12px; line-height: 1.5; }
.step-gain {
  display: flex; align-items: center; gap: 6px;
  background: rgba(80,200,120,0.08); padding: 6px 10px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600; color: #138808;
}

.steps-cta-wrap { text-align: center; margin-top: 48px; }

/* ============================================================
   BLOCK 2 — SLIDER
   ============================================================ */
.section-slider { padding: 80px 0 0; overflow: hidden; }
.slider-wrapper { position: relative; overflow: hidden; margin-top: 40px; }

.slider-track {
  display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.slide {
  min-width: 100%; position: relative; height: 520px; overflow: hidden;
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,30,22,0.92));
  color: #fff; padding: 40px 60px 40px;
}
.slide-caption h3 { font-size: 1.4rem; margin-bottom: 6px; color: #BFFF00; }
.slide-caption p { font-size: 0.95rem; color: rgba(255,255,255,0.85); max-width: 500px; }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,0.3);
  transition: background .2s; z-index: 10;
}
.slider-btn:hover { background: rgba(80,200,120,0.5); }
.slider-btn-prev { left: 20px; }
.slider-btn-next { right: 20px; }

.slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.slider-dot.active { background: #BFFF00; transform: scale(1.3); }

/* ============================================================
   BLOCK 3 — FAQ ACCORDION
   ============================================================ */
.section-faq { background: #fff; }

.faq-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }

.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid #e0e9e4; border-radius: 16px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: #50C878; box-shadow: 0 2px 16px rgba(80,200,120,0.1); }
.faq-item.open { border-color: #50C878; box-shadow: 0 4px 24px rgba(80,200,120,0.12); }

.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 24px; text-align: left;
  font-weight: 700; font-size: 1rem; color: #1a1a2e; background: #fff;
  transition: background .2s;
}
.faq-question:hover { background: #f7faf7; }
.faq-item.open .faq-question { background: rgba(80,200,120,0.06); }
.faq-icon { font-size: 1.4rem; color: #50C878; transition: transform .3s; flex-shrink: 0; font-weight: 900; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
}
.faq-answer.open { padding: 0 24px 20px; max-height: 400px; }
.faq-answer p { color: #555; line-height: 1.7; font-size: 0.95rem; }

.faq-sidebar { display: flex; flex-direction: column; gap: 20px; }
.faq-cta-card {
  background: linear-gradient(135deg, #0f1e16, #1a3a22); color: #fff;
  border-radius: 20px; padding: 28px; text-align: center;
}
.faq-cta-icon { font-size: 2.5rem; margin-bottom: 12px; }
.faq-cta-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.faq-cta-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 20px; }
.faq-cta-card .btn { margin: 6px 0; }

.faq-quick-facts {
  background: #f7faf7; border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.quick-fact { display: flex; align-items: center; gap: 14px; }
.qf-icon { font-size: 1.6rem; flex-shrink: 0; }
.quick-fact div { display: flex; flex-direction: column; }
.quick-fact strong { font-weight: 800; color: #1a1a2e; font-size: 0.95rem; }
.quick-fact span { font-size: 0.8rem; color: #777; }

/* ============================================================
   BLOCK 4 — ABOUT CIRCULAR
   ============================================================ */
.section-about { background: #fff; }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.about-circular-wrap {
  position: relative; width: 440px; height: 440px; margin: 0 auto;
}
.about-center-photo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 220px; height: 220px; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 6px #50C878, 0 0 0 12px rgba(80,200,120,0.2);
}
.about-center-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-brand-ring {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  background: #BFFF00; color: #0f1e16; font-weight: 900; font-size: 0.7rem;
  padding: 4px 14px; border-radius: 50px; white-space: nowrap;
}

.about-orbit { position: absolute; inset: 0; }
.orbit-item {
  position: absolute; display: flex; flex-direction: column; align-items: center;
  gap: 6px; width: 80px; text-align: center;
}
.orbit-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #50C878, #138808);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: 0 2px 12px rgba(80,200,120,0.4);
  animation: orbit-pulse 3s infinite;
}
.orbit-item span { font-size: 0.7rem; font-weight: 700; color: #333; line-height: 1.2; }

.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-2 { top: 15%; right: 0; }
.orbit-3 { bottom: 15%; right: 0; }
.orbit-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-5 { bottom: 15%; left: 0; }
.orbit-6 { top: 15%; left: 0; }

@keyframes orbit-pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.about-text { }
.about-lead { font-size: 1.15rem; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; line-height: 1.5; }
.about-text p { color: #555; margin-bottom: 16px; font-size: 0.95rem; }

.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.about-value {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; background: #f7faf7; border-radius: 14px;
  border-left: 4px solid #50C878;
}
.av-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.about-value strong { display: block; font-weight: 800; color: #1a1a2e; margin-bottom: 2px; }
.about-value p { color: #666; font-size: 0.88rem; margin: 0; }

/* ============================================================
   BLOCK 5 — SCHEDULE TABLE
   ============================================================ */
.section-schedule { }

.table-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.schedule-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: 16px; overflow: hidden;
}
.schedule-table thead { background: linear-gradient(135deg, #0f1e16, #1a3a22); color: #fff; }
.schedule-table th {
  padding: 16px 20px; text-align: left; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: rgba(255,255,255,0.9);
}
.schedule-table td {
  padding: 14px 20px; font-size: 0.92rem; border-bottom: 1px solid #eef2ee;
  color: #333;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background: rgba(80,200,120,0.06); }
.schedule-table tbody tr:nth-child(even) { background: #f9fdf9; }
.schedule-table tbody tr:nth-child(even):hover { background: rgba(80,200,120,0.08); }

.level {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
}
.level-beginner { background: rgba(80,200,120,0.15); color: #138808; }
.level-middle { background: rgba(255,180,0,0.15); color: #cc8800; }
.level-intense { background: rgba(255,60,60,0.12); color: #cc2222; }
.level-all { background: rgba(100,100,255,0.12); color: #3333cc; }

.schedule-note {
  text-align: center; color: #888; font-size: 0.85rem; margin-top: 20px;
  font-style: italic;
}

/* ============================================================
   BLOCK 6 — PRICE CARDS
   ============================================================ */
.section-prices { background: #fff; }

.price-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.price-card {
  position: relative; background: #fff; border-radius: 20px;
  border: 2px solid #e0e9e4; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 0;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.price-card:hover {
  transform: translateY(-6px); border-color: #50C878;
  box-shadow: 0 8px 32px rgba(80,200,120,0.18);
}
.price-card-featured {
  border-color: #50C878; background: linear-gradient(160deg, #f0fcf4, #fff);
  box-shadow: 0 6px 32px rgba(80,200,120,0.2);
}
.price-card-month {
  border-color: #BFFF00; background: linear-gradient(160deg, #fdfff0, #fff);
}
.price-badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #50C878, #BFFF00); color: #0f1e16;
  font-size: 0.75rem; font-weight: 900; padding: 4px 16px; border-radius: 50px;
  white-space: nowrap; letter-spacing: 0.04em;
}

.price-card-top { text-align: center; margin-bottom: 20px; }
.price-icon { font-size: 2.2rem; margin-bottom: 10px; }
.price-name { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; color: #1a1a2e; }
.price-tag {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin-bottom: 8px;
}
.price-amount { font-size: 1.9rem; font-weight: 900; color: #138808; font-family: 'Montserrat', sans-serif; }
.price-old { font-size: 1rem; color: #aaa; text-decoration: line-through; }
.price-desc { font-size: 0.82rem; color: #666; line-height: 1.4; }

.price-features {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px; flex: 1;
}
.price-features li { font-size: 0.88rem; color: #555; display: flex; align-items: center; gap: 8px; }

/* ============================================================
   BLOCK 7 — CALCULATOR
   ============================================================ */
.section-calculator { }
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.calc-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.calc-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px; background: #fff; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.calc-benefit span { font-size: 1.4rem; flex-shrink: 0; }
.calc-benefit p { font-size: 0.88rem; color: #555; margin: 0; }

.calculator-widget {
  background: #fff; border-radius: 24px; padding: 36px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.1); border: 1.5px solid #e0e9e4;
}
.calc-widget-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; color: #1a1a2e; }

.calc-field { margin-bottom: 24px; }
.calc-field label { display: block; font-weight: 700; color: #1a1a2e; font-size: 0.9rem; margin-bottom: 8px; }
.calc-select, .calc-range {
  width: 100%; appearance: none;
}
.calc-select {
  padding: 12px 16px; border-radius: 12px; border: 1.5px solid #d0ddd4;
  font-size: 0.92rem; color: #1a1a2e; background: #fff; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color .2s;
}
.calc-select:focus { border-color: #50C878; outline: none; }

.calc-range {
  height: 6px; background: #e0e9e4; border-radius: 3px;
  accent-color: #50C878; cursor: pointer; margin-bottom: 8px;
}
.range-labels {
  display: flex; justify-content: space-between; font-size: 0.75rem; color: #999;
}

.calc-result {
  background: linear-gradient(135deg, #f0fcf4, #f7faf7);
  border-radius: 16px; padding: 20px; margin-bottom: 20px;
  border: 1.5px solid #d0eedd;
}
.calc-result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem; color: #555;
}
.calc-result-row:last-child { border-bottom: none; }
.calc-result-row strong { font-weight: 800; color: #1a1a2e; }
.calc-result-highlight strong { font-size: 1.3rem; color: #138808; }
.calc-saving { background: rgba(191,255,0,0.15); margin: 0 -8px; padding: 8px 8px; border-radius: 8px; }
.calc-saving strong { color: #666a00; }

.calc-btn { margin-top: 4px; }

/* ============================================================
   BLOCK 8 — SELLING TEXT
   ============================================================ */
.section-selling { background: linear-gradient(160deg, #f0fcf4, #fff); }
.selling-inner { max-width: 960px; margin: 0 auto; }
.selling-title {
  font-size: clamp(1.4rem, 3vw, 2rem); margin: 16px 0 32px;
  line-height: 1.3;
}
.selling-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.selling-col p { color: #555; margin-bottom: 16px; line-height: 1.75; font-size: 0.97rem; }
.selling-highlights { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.sh-item {
  padding: 20px; background: #fff; border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.sh-item:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(80,200,120,0.15); }
.sh-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.sh-item strong { display: block; font-weight: 800; color: #1a1a2e; margin-bottom: 6px; font-size: 0.92rem; }
.sh-item p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.4; }

/* ============================================================
   BLOCK 9 — INFOGRAPHIC
   ============================================================ */
.section-infographic { }

.infographic-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 48px 32px;
}
.infographic-item { text-align: center; }
.infographic-circle {
  position: relative; width: 140px; height: 140px; margin: 0 auto 20px;
}
.progress-ring { transform: rotate(-90deg); width: 100%; height: 100%; }
.progress-ring-bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 8; }
.progress-ring-fill {
  fill: none; stroke: #50C878; stroke-width: 8;
  stroke-dasharray: 251.2; stroke-dashoffset: 251.2;
  stroke-linecap: round; transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1);
}
.infographic-circle.animated .progress-ring-fill {
  /* stroke-dashoffset set by JS */
}
.infographic-number {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 1.4rem; font-weight: 900; color: #BFFF00;
  font-family: 'Montserrat', sans-serif;
}
.infographic-item h3 { font-size: 0.95rem; color: #fff; margin-bottom: 8px; }
.infographic-item p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ============================================================
   BLOCK 10 — PHOTO GALLERY
   ============================================================ */
.section-photo-gallery { background: #fff; }
.gallery-line { border: none; border-top: 2px solid #e0e9e4; margin: 32px 0; }

.photo-gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.gallery-photo-card {
  position: relative; overflow: hidden; border-radius: 16px;
  aspect-ratio: 3/4;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  transition: transform .3s, box-shadow .3s;
}
.gallery-photo-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.gallery-photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-photo-card:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,30,22,0.9));
  color: #fff; padding: 24px 14px 16px; font-size: 0.82rem; font-weight: 700;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.section-reviews { }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: #fff; border-radius: 20px; padding: 28px 24px;
  border: 1.5px solid #e0e9e4; box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 6px 28px rgba(80,200,120,0.15); }
.review-stars { font-size: 1.2rem; color: #f0b429; margin-bottom: 14px; }
.review-text { font-size: 0.92rem; color: #555; font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #50C878, #138808);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: 1rem; flex-shrink: 0;
}
.review-author strong { display: block; font-weight: 800; font-size: 0.9rem; color: #1a1a2e; }
.review-author span { font-size: 0.8rem; color: #999; }

/* ============================================================
   CONTACTS
   ============================================================ */
.section-contacts { }
.contacts-header { text-align: center; margin-bottom: 48px; }
.contacts-title { font-size: clamp(2rem, 4vw, 3rem); color: #BFFF00; }
.contacts-subtitle { color: rgba(255,255,255,0.75); margin-top: 8px; font-size: 1.05rem; }

.contacts-layout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; }
.contacts-info { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-weight: 800; color: #fff; margin-bottom: 2px; font-size: 0.9rem; }
.contact-detail p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }
.contact-link { color: #50C878; transition: color .2s; }
.contact-link:hover { color: #BFFF00; }

.social-links { display: flex; gap: 10px; margin-top: 8px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 16px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 700;
  transition: background .2s, border-color .2s, color .2s;
}
.social-btn:hover { background: rgba(80,200,120,0.2); border-color: #50C878; color: #50C878; }

.map-container {
  border-radius: 20px; overflow: hidden; height: 320px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.15);
}
.map-placeholder {
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,0.6);
}
.map-pin { font-size: 3rem; }
.map-placeholder p { font-size: 1rem; font-weight: 700; color: #fff; }
.map-placeholder span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.section-booking { background: #fff; }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.booking-title { margin-bottom: 16px; }
.booking-text p { color: #666; margin-bottom: 24px; font-size: 0.95rem; }
.booking-promises { display: flex; flex-direction: column; gap: 10px; }
.promise-item { display: flex; align-items: flex-start; gap: 10px; }
.promise-item span { color: #50C878; font-size: 1rem; flex-shrink: 0; }
.promise-item p { font-size: 0.9rem; color: #555; margin: 0; }

.booking-form { background: #f7faf7; border-radius: 24px; padding: 36px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 700; font-size: 0.9rem; color: #1a1a2e; margin-bottom: 6px; }
.required { color: #e03737; }
.form-field input, .form-field select {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid #d0ddd4; font-size: 0.92rem; color: #1a1a2e;
  background: #fff; transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-field input::placeholder { color: #bbb; }
.form-field input:focus, .form-field select:focus {
  border-color: #50C878; box-shadow: 0 0 0 3px rgba(80,200,120,0.15);
}
.form-field input.error { border-color: #e03737; }
.field-error { display: block; font-size: 0.8rem; color: #e03737; margin-top: 4px; min-height: 16px; }

.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: #50C878; }
.form-consent label { font-size: 0.82rem; color: #666; }
.form-consent a { color: #50C878; text-decoration: underline; }

.booking-submit { position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0f1e16; color: #fff; padding: 60px 0 20px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  margin-bottom: 40px;
}
.logo-footer .logo-text { color: #fff; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-top: 12px; }
.footer-nav h4, .footer-legal h4, .footer-contacts h4 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 700;
}
.footer-nav ul li, .footer-legal ul li { margin-bottom: 8px; }
.footer-nav a, .footer-legal a { color: rgba(255,255,255,0.75); font-size: 0.88rem; transition: color .2s; }
.footer-nav a:hover, .footer-legal a:hover { color: #50C878; }
.footer-contacts p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 4px; }
.footer-contacts a { color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-contacts a:hover { color: #50C878; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  text-align: center; color: rgba(255,255,255,0.35); font-size: 0.82rem;
}

/* ============================================================
   ANIMATIONS — FADE IN ON SCROLL
   ============================================================ */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s, transform .6s; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity .6s, transform .6s; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

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

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .about-layout { grid-template-columns: 1fr; }
  .about-circular-wrap { width: 320px; height: 320px; }
  .about-center-photo { width: 160px; height: 160px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { order: -1; }
  .calc-layout { grid-template-columns: 1fr; }
  .contacts-layout { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .photo-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .selling-columns { grid-template-columns: 1fr; }
  .step-card { width: 44%; }
  .steps-connector { display: none; }
  .slide-caption { padding: 24px 24px 24px; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .step-card { width: 100%; }
  .price-cards { grid-template-columns: 1fr; }
  .photo-gallery-grid { grid-template-columns: 1fr 1fr; }
  .infographic-grid { grid-template-columns: 1fr 1fr; }
  .selling-highlights { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .booking-form { padding: 24px; }
  .schedule-table { font-size: 0.82rem; }
  .schedule-table th, .schedule-table td { padding: 10px 12px; }
}

@media (max-width:480px) {
  .photo-gallery-grid { grid-template-columns: 1fr; }
  .selling-highlights { grid-template-columns: 1fr; }
}
