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

:root {
  --pink: #FC74FD;
  --blue: #A6CAF0;
  --orange: #FFA161;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #2d2d44;
  --text-light: #6b6b8a;
  --white: #ffffff;
  --bg-light: #fdf6ff;
  --bg-blue: #f0f6ff;
  --card-bg: #ffffff;
  --border: #e8e0f0;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(252, 116, 253, 0.12);
  --shadow-lg: 0 8px 40px rgba(252, 116, 253, 0.18);
  --transition: all 0.3s ease;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-light); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(252,116,253,0.10);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(252,116,253,0.35);
}

.btn-primary:hover {
  background: #e85df0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252,116,253,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

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

.btn-outline {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,161,97,0.35);
}

.btn-orange:hover {
  background: #f08840;
  transform: translateY(-2px);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.logo span {
  color: var(--pink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav a:hover {
  color: var(--pink);
  background: rgba(252,116,253,0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: rgba(252,116,253,0.08);
  color: var(--pink);
}

/* ========== HERO ========== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252,116,253,0.3) 0%, rgba(166,202,240,0.2) 50%, rgba(255,161,97,0.15) 100%);
}

.hero-orb1, .hero-orb2, .hero-orb3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-orb1 {
  width: 400px; height: 400px;
  background: rgba(252,116,253,0.25);
  top: -100px; right: -100px;
}

.hero-orb2 {
  width: 300px; height: 300px;
  background: rgba(166,202,240,0.3);
  bottom: -80px; left: -80px;
  animation-delay: -3s;
}

.hero-orb3 {
  width: 200px; height: 200px;
  background: rgba(255,161,97,0.25);
  top: 50%; left: 40%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 80px 0;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252,116,253,0.2);
  border: 1px solid rgba(252,116,253,0.4);
  color: #ffd6ff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
  display: block;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-main {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(252,116,253,0.3);
}

.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 12px 18px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.hero-card-float.left {
  left: -20px;
  bottom: 30%;
  animation-delay: -2s;
}

.hero-card-float.top {
  right: -10px;
  top: 20%;
  animation-delay: -4s;
}

.hero-card-float .emoji {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

/* ========== STEP MAP (Block 1) ========== */
.step-map {
  background: var(--bg-light);
  overflow: hidden;
}

.steps-container {
  position: relative;
  padding: 20px 0;
}

.steps-line {
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--orange));
  border-radius: 3px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(252,116,253,0.3);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.step-item h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.step-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Mini price cards */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mini-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.mini-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mini-card.featured {
  border-color: var(--pink);
  background: linear-gradient(135deg, #fff5ff, #f0f6ff);
}

.mini-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--pink);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

.mini-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.mini-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.mini-card-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
  display: block;
  margin: 8px 0;
}

.mini-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Inline booking form */
.inline-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-top: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.inline-form-wrap h3 {
  text-align: center;
  margin-bottom: 8px;
}

.inline-form-wrap .sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: white;
  box-shadow: 0 0 0 3px rgba(252,116,253,0.12);
}

.form-center {
  text-align: center;
  margin-top: 20px;
}

.discover-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

/* ========== SLIDER (Block 2) ========== */
.slider-section {
  background: var(--dark);
  overflow: hidden;
}

.slider-section .section-header h2,
.slider-section .section-header .section-label {
  color: white;
}

.slider-section .section-header p {
  color: rgba(255,255,255,0.65);
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}

.slide-image {
  position: relative;
  overflow: hidden;
}

.slide-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slide:hover .slide-image img {
  transform: scale(1.05);
}

.slide-content {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.slide-tag {
  display: inline-block;
  background: rgba(252,116,253,0.2);
  border: 1px solid rgba(252,116,253,0.4);
  color: #ffd6ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.slide-content h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.slide-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.75;
}

.slide-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}



.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--pink);
  width: 24px;
  border-radius: 4px;
}

/* ========== ACCORDION (Block 3) ========== */
.accordion-section {
  background: var(--bg-blue);
}

.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.accordion-info h2 {
  margin-bottom: 20px;
}

.accordion-info p {
  margin-bottom: 28px;
  line-height: 1.8;
}

.accordion-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.accordion-info-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.accordion-info-card p {
  font-size: 0.9rem;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.open {
  border-color: var(--pink);
  box-shadow: var(--shadow);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.accordion-trigger:hover { background: var(--bg-light); }

.accordion-trigger-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.accordion-trigger-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(252,116,253,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-item.open .accordion-trigger-icon {
  background: var(--pink);
}

.accordion-trigger h4 {
  font-size: 1rem;
  color: var(--dark);
}

.accordion-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-arrow {
  background: var(--pink);
  border-color: var(--pink);
  color: white;
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 24px 24px;
}

.accordion-item.open .accordion-body {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.accordion-body p {
  margin-bottom: 12px;
  line-height: 1.75;
}

.accordion-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.accordion-body ul li::before {
  content: '→';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== ABOUT CIRCULAR (Block 4) ========== */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.about-photo-ring {
  position: relative;
  width: 320px;
  height: 320px;
}

.about-photo-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px dashed rgba(252,116,253,0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  transition: var(--transition);
}

.about-badge:hover { transform: scale(1.05); }

.about-badge .icon {
  font-size: 1.4rem;
}

.about-badge.b1 { top: 20px; right: -20px; }
.about-badge.b2 { bottom: 60px; right: -30px; }
.about-badge.b3 { bottom: 30px; left: -20px; }
.about-badge.b4 { top: 80px; left: -40px; }

.about-content h2 {
  margin-bottom: 20px;
}

.about-content > p {
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--pink);
  background: white;
}

.about-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.about-feature h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.82rem;
}

/* ========== TABLE (Block 5) ========== */
.schedule-section {
  background: var(--bg-light);
}

.schedule-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.schedule-tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.schedule-tab.active,
.schedule-tab:hover {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

.table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
  vertical-align: middle;
}

.schedule-table tr:last-child td { border-bottom: none; }

.schedule-table tbody tr {
  transition: var(--transition);
}

.schedule-table tbody tr:hover {
  background: var(--bg-light);
}

.level-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.level-beginner { background: rgba(166,202,240,0.25); color: #3a7bd5; }
.level-mid { background: rgba(255,161,97,0.2); color: #d96a1a; }
.level-advanced { background: rgba(252,116,253,0.15); color: #b83ab8; }

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ========== PRICING (Block 6) ========== */
.pricing-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(252,116,253,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(166,202,240,0.08) 0%, transparent 60%);
}

.pricing-section .section-header h2,
.pricing-section .section-header .section-label {
  color: white;
}

.pricing-section .section-header p {
  color: rgba(255,255,255,0.65);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.price-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.price-card:hover {
  border-color: rgba(252,116,253,0.5);
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: var(--pink);
  background: rgba(252,116,253,0.12);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.price-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.price-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.price-amount {
  margin-bottom: 28px;
}

.price-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink);
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}

.price-period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 4px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.price-feature::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(252,116,253,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--pink);
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.price-card.featured .btn {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 4px 20px rgba(252,116,253,0.4);
}

.price-card .btn:hover {
  background: var(--pink);
  border-color: var(--pink);
}

/* ========== CALCULATOR (Block 7) ========== */
.calc-section {
  background: var(--bg-light);
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.calc-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.calc-box h3 {
  margin-bottom: 28px;
  text-align: center;
}

.calc-group {
  margin-bottom: 28px;
}

.calc-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.calc-slider-wrap {
  position: relative;
  padding: 0 0 8px;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--pink);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(252,116,253,0.4);
  cursor: grab;
  transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); }

.calc-val {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
}

.calc-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-light);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.calc-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(252,116,253,0.12);
}

.calc-result {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: white;
  margin-top: 8px;
}

.calc-result-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.calc-result-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--pink);
  display: block;
  line-height: 1;
}

.calc-result-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.calc-per-class {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.calc-per-class strong {
  color: var(--orange);
}

.calc-info {
  padding: 20px 0;
}

.calc-info h3 { margin-bottom: 20px; }

.calc-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.calc-benefit:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.calc-benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(252,116,253,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.calc-benefit h4 { margin-bottom: 4px; font-size: 0.95rem; }
.calc-benefit p { font-size: 0.85rem; }

/* ========== SELLING TEXT (Block 8) ========== */
.selling-section {
  background: linear-gradient(135deg, var(--dark), var(--dark2), #0a1628);
  position: relative;
  overflow: hidden;
}

.selling-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252,116,253,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.selling-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(166,202,240,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.selling-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.selling-inner .section-label { margin-bottom: 24px; }

.selling-inner h2 {
  color: white;
  margin-bottom: 32px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
}

.selling-inner h2 .pink { color: var(--pink); }

.selling-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 24px;
}

.selling-highlight {
  background: rgba(252,116,253,0.12);
  border: 1px solid rgba(252,116,253,0.3);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin: 32px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  position: relative;
}

.selling-highlight::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 4rem;
  color: var(--pink);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.6;
}

.selling-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.selling-tag {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  transition: var(--transition);
}

.selling-tag:hover {
  background: rgba(252,116,253,0.2);
  border-color: rgba(252,116,253,0.5);
  color: white;
}

/* ========== INFOGRAPHIC (Block 9) ========== */
.infographic-section {
  background: var(--bg-light);
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}

.info-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(252,116,253,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  background: var(--pink);
  transform: scale(1.1) rotate(10deg);
}

.info-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.info-card p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.info-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--pink);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.infographic-timeline {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.infographic-timeline h3 {
  text-align: center;
  margin-bottom: 32px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--orange), var(--pink));
}

.timeline-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.timeline-dot {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(252,116,253,0.3);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.timeline-dot:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(252,116,253,0.45);
}

.timeline-item h4 {
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.78rem;
  max-width: 120px;
  margin: 0 auto;
}

/* ========== GALLERY (Block 10) ========== */
.gallery-section {
  background: var(--white);
}

.gallery-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--blue), var(--orange), transparent);
  margin-bottom: 60px;
  border: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%; height: 100%;
  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;
  padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(10,10,30,0.85));
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  transition: var(--transition);
}

.gallery-caption-icon {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 4rem;
  color: rgba(252,116,253,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  display: block;
}

.author-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ========== CONTACTS ========== */
.contacts-section {
  background: var(--white);
}

.contacts-header {
  text-align: center;
  margin-bottom: 48px;
}

.contacts-header h2 { margin-bottom: 8px; }
.contacts-header h2 .pink { color: var(--pink); }

.map-container {
  background: var(--bg-light);
  border-radius: var(--radius);
  height: 450px;
  margin-bottom: 60px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
}

.map-placeholder {
  text-align: center;
}

.map-placeholder .map-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(252,116,253,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--pink);
}

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.contact-form-box h3 { margin-bottom: 24px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

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

.footer-col h5 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--pink);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--pink); }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(252,116,253,0.3);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.cookie-text a { color: var(--pink); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.cookie-btn.accept {
  background: var(--pink);
  color: white;
}

.cookie-btn.accept:hover { background: #e85df0; }

.cookie-btn.necessary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn.necessary:hover { background: rgba(255,255,255,0.15); }

.cookie-btn.settings {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn.settings:hover { color: var(--pink); border-color: var(--pink); }

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(252,116,253,0.4);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(252,116,253,0.5);
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========== LEGAL PAGES ========== */
.legal-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: white;
  padding: 140px 0 70px;
  text-align: center;
}

.legal-hero h1 { color: white; margin-bottom: 16px; }
.legal-hero p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.legal-content {
  padding: 70px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  color: var(--dark);
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== THANKS PAGE ========== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-blue) 100%);
}

.thanks-box {
  max-width: 520px;
  background: var(--white);
  border-radius: 24px;
  padding: 60px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  animation: bounce 0.8s ease;
}

@keyframes bounce {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-box h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.thanks-box p {
  margin-bottom: 32px;
  line-height: 1.75;
}

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

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .accordion-layout { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .contact-bottom { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-line { display: none; }
  .infographic-grid { grid-template-columns: 1fr 1fr; }
  .timeline { flex-wrap: wrap; gap: 24px; }
  .timeline::before { display: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav { display: none; }
  .burger { display: flex; }
  .header-cta .btn { display: none; }
  .hero-content { padding: 50px 0; }
  .hero-actions { flex-direction: column; }
  .hero-stats { justify-content: center; }
  .slide-inner { grid-template-columns: 1fr; height: auto; }
  .slide-image { height: 240px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .inline-form-wrap { padding: 24px; }
  .calc-box { padding: 24px; }
  .thanks-box { padding: 40px 24px; }
}
