/* ============================================================
   FIT SPHERE — MAIN STYLESHEET
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --red: #C51D34;
  --red-dark: #a01526;
  --pink: #F400A1;
  --white: #ffffff;
  --off-white: #fdf7f7;
  --light-gray: #f4f4f6;
  --gray: #9ca3af;
  --dark-gray: #374151;
  --dark: #111318;
  --text: #1a1a2e;
  --card-shadow: 0 8px 32px rgba(197,29,52,0.10);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --radius: 16px;
  --section-padding: 96px 0;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.75; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-pink { color: var(--pink); }
.bg-dark { background: var(--dark); }
.bg-red { background: var(--red); }
.bg-light { background: var(--light-gray); }
.section { padding: var(--section-padding); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(197,29,52,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197,29,52,0.45);
}
.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }

/* ---------- Section Headings ---------- */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(197,29,52,0.1);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.10);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  transition: color var(--transition);
}
.header.scrolled .logo { color: var(--dark); }
.logo-icon {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  font-weight: 900;
  flex-shrink: 0;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
  transition: all var(--transition);
}
.header.scrolled .nav a { color: var(--dark-gray); }
.nav a:hover { color: var(--red); background: rgba(197,29,52,0.08); }
.nav .btn { padding: 10px 24px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.header.scrolled .hamburger span { background: var(--dark); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-nav.open { display: flex; opacity: 1; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d14 0%, #1a0a12 50%, #0d0d14 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,29,52,0.6) 0%, rgba(13,13,20,0.8) 50%, rgba(244,0,161,0.25) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.1s ease both;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--red), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  animation: fadeInUp 0.9s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeInUp 0.9s 0.4s ease both;
}
.hero-stat {}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--pink); }
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  animation: fadeInRight 1s 0.2s ease both;
}
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(197,29,52,0.4);
}
.hero-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,13,20,0.6) 100%);
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-float-card-1 {
  bottom: 32px;
  left: -32px;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card-2 {
  top: 32px;
  right: -32px;
  animation: float 3s 1.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-card-value { font-size: 1.4rem; font-weight: 800; color: var(--red); }
.float-card-label { font-size: 0.8rem; color: var(--dark-gray); }

/* Hero scroll indicator */
.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.8rem;
  animation: fadeIn 1s 1s ease both;
}
.scroll-mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   BLOCK 1 — HOW TO SIGN UP (STEP MAP + MINI PRICE CARDS + FORM)
   ============================================================ */
.how-section { background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  margin-bottom: 72px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--pink));
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.step-card.visible { opacity: 1; transform: none; }
.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(197,29,52,0.35);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-number {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
}
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.step-desc { font-size: 0.88rem; color: var(--dark-gray); }

/* Mini price cards */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.mini-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.mini-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--pink));
}
.mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197,29,52,0.3);
  box-shadow: 0 16px 48px rgba(197,29,52,0.2);
}
.mini-card.featured {
  background: linear-gradient(135deg, var(--red) 0%, #a01526 100%);
  color: white;
}
.mini-card.featured .mini-card-name,
.mini-card.featured .mini-card-detail { color: rgba(255,255,255,0.8); }
.mini-card.featured .mini-card-price { color: white; }
.mini-card-name { font-size: 0.85rem; font-weight: 600; color: var(--dark-gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.mini-card-price { font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 4px; }
.mini-card-price sup { font-size: 1rem; vertical-align: super; }
.mini-card-detail { font-size: 0.82rem; color: var(--gray); margin-top: 8px; }

/* Compact booking form */
.booking-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--card-shadow);
  max-width: 640px;
  margin: 0 auto 40px;
}
.booking-form-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.booking-form-subtitle { font-size: 0.9rem; color: var(--dark-gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--dark-gray); }
.form-control {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all var(--transition);
  background: var(--off-white);
  outline: none;
  color: var(--text);
}
.form-control:focus { border-color: var(--red); background: white; box-shadow: 0 0 0 3px rgba(197,29,52,0.1); }
.form-control::placeholder { color: var(--gray); }
.form-submit-wrap { text-align: center; margin-top: 24px; }

.learn-more-wrap { text-align: center; }

/* ============================================================
   BLOCK 2 — SLIDER / CAROUSEL
   ============================================================ */
.slider-section { background: var(--dark); overflow: hidden; }
.slider-section .section-label { background: rgba(244,0,161,0.15); color: var(--pink); }
.slider-section .section-title { color: white; }
.slider-section .section-subtitle { color: rgba(255,255,255,0.65); }
.slider-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.slide {
  min-width: 100%;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.slide img { width: 100%; height: 540px; object-fit: cover; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,13,20,0.85) 100%);
}
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
}
.slide-label {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--pink));
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.slide-title { font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 8px; }
.slide-desc { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 540px; }
.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 rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
  cursor: pointer;
  background: rgba(255,255,255,0.05);
}
.slider-btn:hover { background: var(--red); border-color: var(--red); }
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--pink); width: 24px; border-radius: 4px; }

/* ============================================================
   BLOCK 3 — ACCORDION FAQ
   ============================================================ */
.faq-section {}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.faq-visual { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 60px rgba(197,29,52,0.2); }
.faq-visual img { width: 100%; height: 480px; object-fit: cover; }
.accordion-item {
  border: 2px solid #f0f0f5;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.accordion-item:hover { border-color: rgba(197,29,52,0.25); }
.accordion-item.open { border-color: var(--red); }
.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: white;
  transition: background var(--transition);
}
.accordion-item.open .accordion-header { background: rgba(197,29,52,0.04); }
.accordion-question { font-weight: 600; font-size: 1rem; }
.accordion-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
}
.accordion-item.open .accordion-icon { background: var(--red); color: white; transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  background: white;
}
.accordion-item.open .accordion-body {
  max-height: 300px;
  padding: 0 24px 20px;
}
.accordion-body p { color: var(--dark-gray); font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   BLOCK 4 — CIRCULAR ABOUT
   ============================================================ */
.about-section { background: var(--dark); overflow: hidden; }
.about-section .section-title { color: white; }
.about-section .section-subtitle { color: rgba(255,255,255,0.6); }
.about-section .section-label { background: rgba(244,0,161,0.15); color: var(--pink); }
.circle-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0;
}
.circle-center {
  width: 260px; height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid rgba(197,29,52,0.5);
  box-shadow: 0 0 80px rgba(197,29,52,0.3);
  position: relative;
  z-index: 2;
}
.circle-center img { width: 100%; height: 100%; object-fit: cover; }
.circle-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(197,29,52,0.3);
  animation: rotateSlow 20s linear infinite;
}
.ring-1 { width: 400px; height: 400px; }
.ring-2 { width: 560px; height: 560px; animation-direction: reverse; animation-duration: 30s; }
.circle-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 140px;
}
.circle-item-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(197,29,52,0.4);
}
.circle-item-title { font-size: 0.85rem; font-weight: 700; color: white; }
.circle-item-desc { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================================
   BLOCK 5 — SCHEDULE TABLE
   ============================================================ */
.table-section {}
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--card-shadow); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 700px;
}
.schedule-table thead tr {
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: white;
}
.schedule-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.schedule-table tbody tr {
  border-bottom: 1px solid #f0f0f5;
  transition: background var(--transition);
}
.schedule-table tbody tr:hover { background: rgba(197,29,52,0.04); }
.schedule-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  vertical-align: middle;
}
.badge-level {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}
.badge-beginner { background: rgba(74,222,128,0.15); color: #16a34a; }
.badge-medium { background: rgba(251,191,36,0.15); color: #d97706; }
.badge-advanced { background: rgba(197,29,52,0.12); color: var(--red); }
.badge-all { background: rgba(139,92,246,0.15); color: #7c3aed; }

/* ============================================================
   BLOCK 6 — DETAILED PRICE CARDS
   ============================================================ */
.pricing-section { background: var(--light-gray); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.price-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--pink));
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197,29,52,0.3);
  box-shadow: 0 20px 60px rgba(197,29,52,0.2);
}
.price-card.popular {
  background: linear-gradient(145deg, var(--dark) 0%, #1a0a12 100%);
  border-color: var(--red);
  transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(90deg, var(--red), var(--pink));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.price-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-gray);
  margin-bottom: 20px;
}
.price-card.popular .price-card-name { color: rgba(255,255,255,0.7); }
.price-card-amount { font-size: 3rem; font-weight: 800; color: var(--red); line-height: 1; }
.price-card.popular .price-card-amount { color: white; }
.price-card-currency { font-size: 1.2rem; vertical-align: super; }
.price-card-period { font-size: 0.85rem; color: var(--gray); margin-top: 4px; margin-bottom: 24px; }
.price-card.popular .price-card-period { color: rgba(255,255,255,0.5); }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f5;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.price-card.popular .price-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.price-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(197,29,52,0.12);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.price-card.popular .price-features li::before { background: rgba(244,0,161,0.2); color: var(--pink); }

/* ============================================================
   BLOCK 7 — CALCULATOR
   ============================================================ */
.calc-section { background: var(--dark); }
.calc-section .section-title { color: white; }
.calc-section .section-subtitle { color: rgba(255,255,255,0.65); }
.calc-section .section-label { background: rgba(244,0,161,0.15); color: var(--pink); }
.calc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.calc-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.calc-slider-wrap { position: relative; }
input[type='range'] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 4px 12px rgba(197,29,52,0.5);
  cursor: pointer;
  transition: transform var(--transition);
}
input[type='range']::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-slider-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.calc-type-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-type-btn {
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.calc-type-btn.active,
.calc-type-btn:hover {
  background: linear-gradient(135deg, var(--red), var(--pink));
  border-color: transparent;
  color: white;
}
.calc-result {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  text-align: center;
}
.calc-result-label { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.calc-result-price {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, white, var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.calc-result-detail { font-size: 0.88rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   BLOCK 8 — SELLING TEXT
   ============================================================ */
.selling-section {
  background: linear-gradient(135deg, var(--red) 0%, #a01526 40%, var(--pink) 100%);
  position: relative;
  overflow: hidden;
}
.selling-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.selling-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.selling-section .section-label { background: rgba(255,255,255,0.2); color: white; }
.selling-section h2 { color: white; margin-bottom: 24px; }
.selling-text { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 24px; line-height: 1.8; }
.selling-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.selling-highlight {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   BLOCK 9 — INFOGRAPHIC
   ============================================================ */
.infographic-section { background: var(--off-white); }
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.info-card.visible { opacity: 1; transform: none; }
.info-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(197,29,52,0.15); }
.info-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(197,29,52,0.1), rgba(244,0,161,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.info-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.info-number span { color: var(--pink); }
.info-title { font-weight: 700; margin-bottom: 8px; }
.info-desc { font-size: 0.88rem; color: var(--dark-gray); }

/* Animated counter */
.count-up { display: inline-block; }

/* ============================================================
   BLOCK 10 — PHOTO GALLERY
   ============================================================ */
.gallery-section {}
.gallery-divider { height: 2px; background: linear-gradient(90deg, var(--red), var(--pink)); margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(13,13,20,0.85));
  color: white;
  padding: 40px 16px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(4px);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================================
   TESTIMONIALS (BONUS)
   ============================================================ */
.reviews-section { background: var(--light-gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.review-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; }
.review-text { font-size: 0.95rem; color: var(--dark-gray); font-style: italic; margin-bottom: 20px; line-height: 1.75; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.95rem; }
.reviewer-role { font-size: 0.8rem; color: var(--gray); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a0a12; color: rgba(255,255,255,0.7); padding: 80px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .logo { margin-bottom: 16px; color: white; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal a:hover { color: var(--pink); }
.footer-requisites { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: rgba(17,19,24,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px 28px;
  z-index: 3000;
  box-shadow: 0 16px 60px rgba(0,0,0,0.5);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: none; opacity: 1; }
.cookie-title { color: white; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.cookie-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.65; }
.cookie-text a { color: var(--pink); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  min-width: 100px;
  text-align: center;
}
.cookie-btn-all { background: linear-gradient(135deg, var(--red), var(--pink)); color: white; border: none; }
.cookie-btn-all:hover { opacity: 0.9; }
.cookie-btn-nec { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
.cookie-btn-nec:hover { background: rgba(255,255,255,0.15); }
.cookie-btn-set { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); }
.cookie-btn-set:hover { color: white; border-color: rgba(255,255,255,0.3); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   LEGAL / THANKS PAGES
   ============================================================ */
.legal-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a12 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.legal-hero h1 { color: white; margin-bottom: 16px; }
.legal-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.legal-content { padding: 80px 0; max-width: 840px; margin: 0 auto; }
.legal-content h2 { margin: 40px 0 16px; }
.legal-content h3 { margin: 24px 0 12px; }
.legal-content p { margin-bottom: 16px; color: var(--dark-gray); }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { color: var(--dark-gray); margin-bottom: 8px; }

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
}
.thanks-card {
  background: white;
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  max-width: 560px;
  box-shadow: 0 16px 64px rgba(197,29,52,0.15);
}
.thanks-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  margin: 0 auto 24px;
  animation: bounceIn 0.7s ease;
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.thanks-card h1 { margin-bottom: 16px; }
.thanks-card p { color: var(--dark-gray); margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-float-card-1 { left: 0; }
  .hero-float-card-2 { right: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-visual { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .mini-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .calc-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .calc-card { padding: 28px 20px; }
  .booking-form-wrap { padding: 28px 20px; }
  .circle-wrap { padding: 40px 0; }
  .ring-1 { width: 320px; height: 320px; }
  .ring-2 { width: 460px; height: 460px; }
  .circle-center { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 16px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-float-card { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
}
