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

:root {
  --primary: #3EB489;
  --primary-dark: #2d8a6a;
  --primary-light: #5fd4a9;
  --accent: #98FF98;
  --highlight: #6B8E23;
  --highlight-dark: #4a6218;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --text-dark: #1d2b3a;
  --text-muted: #5a6a7a;
  --text-light: #8a9bac;
  --white: #ffffff;
  --light-bg: #f4fdf8;
  --light-bg-2: #edf9f3;
  --card-bg: #ffffff;
  --border: #d1ede3;
  --border-dark: #b0dcc8;
  --shadow-sm: 0 2px 8px rgba(62, 180, 137, 0.08);
  --shadow-md: 0 4px 20px rgba(62, 180, 137, 0.15);
  --shadow-lg: 0 8px 40px rgba(62, 180, 137, 0.20);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Segoe UI', 'Arial', sans-serif;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(62, 180, 137, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(62, 180, 137, 0.55);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

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

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

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

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

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

.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--primary);
  background: var(--light-bg);
}

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

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

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

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.mobile-nav a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(22, 33, 62, 0.75) 50%,
    rgba(62, 180, 137, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 180, 137, 0.2);
  border: 1px solid rgba(62, 180, 137, 0.4);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.1s both;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.scroll-indicator::before {
  content: '';
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}

/* ===== SECTION GENERAL ===== */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ===== STEP MAP SECTION (BLOCK 1) ===== */
.stepmap-section {
  background: var(--light-bg);
  padding: 100px 0 0;
}

.stepmap-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin-bottom: 64px;
  overflow-x: auto;
}

.stepmap-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.stepmap-card {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stepmap-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stepmap-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(62, 180, 137, 0.4);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.stepmap-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.stepmap-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.stepmap-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== MINI PRICE CARDS ===== */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.mini-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  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(--primary), var(--accent));
}

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

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

.mini-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mini-card .price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.mini-card .price-note {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== BOOKING FORM ===== */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto 40px;
}

.booking-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.booking-form-wrap p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(62, 180, 137, 0.12);
}

.form-group input::placeholder { color: var(--text-light); }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

.more-btn-wrap {
  text-align: center;
  padding: 40px 0 100px;
}

/* ===== SLIDER SECTION (BLOCK 2) ===== */
.slider-section {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

.slider-section .section-title {
  color: var(--white);
}

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

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

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

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 60px 40px 40px;
}

.slide-caption h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.slide-caption p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.slider-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(62, 180, 137, 0.4);
  background: transparent;
  color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

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

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ===== ACCORDION SECTION (BLOCK 3) ===== */
.accordion-section {
  background: var(--light-bg);
}

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

.accordion-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.accordion-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.accordion-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.accordion-image-badge strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}

.accordion-image-badge span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

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

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}

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

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

.accordion-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-item.active .accordion-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.accordion-trigger h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.accordion-chevron {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}

.accordion-item.active .accordion-chevron {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding: 0 24px 24px 78px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.accordion-body-inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.accordion-body-inner ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

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

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

.about-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-center-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--primary);
  box-shadow: 0 0 0 12px rgba(62,180,137,0.12), var(--shadow-xl);
}

.about-center-label {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.about-orb {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  max-width: 200px;
  text-align: center;
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

.about-orb:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.about-orb:nth-child(odd) {
  animation-delay: -3s;
}

.about-orb-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.about-orb h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-orb p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-orb-1 { top: 20px; left: 0; }
.about-orb-2 { top: 20px; right: 0; }
.about-orb-3 { bottom: 20px; left: 40px; animation-delay: -1s; }
.about-orb-4 { bottom: 20px; right: 40px; animation-delay: -2s; }
.about-orb-5 { top: 50%; left: -20px; transform: translateY(-50%); animation-delay: -4s; }
.about-orb-6 { top: 50%; right: -20px; transform: translateY(-50%); animation-delay: -5s; }

.about-text {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-feature {
  text-align: center;
  padding: 32px 24px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-feature h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TABLE SECTION (BLOCK 5) ===== */
.table-section {
  background: var(--dark);
  color: var(--white);
}

.table-section .section-title {
  color: var(--white);
}

.table-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.schedule-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 6px;
  width: fit-content;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(62, 180, 137, 0.4);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.schedule-table tbody tr {
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}

.schedule-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.08);
}

.schedule-table tbody tr:hover {
  background: rgba(62, 180, 137, 0.15);
}

.schedule-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.level-start { background: rgba(152,255,152,0.2); color: var(--accent); }
.level-mid { background: rgba(62,180,137,0.2); color: var(--primary-light); }
.level-adv { background: rgba(107,142,35,0.2); color: #a3c45d; }

/* ===== PRICE CARDS SECTION (BLOCK 6) ===== */
.prices-section {
  background: var(--light-bg);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(145deg, var(--dark), var(--dark-2));
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(62,180,137,0.3);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.price-card.featured:hover {
  box-shadow: 0 16px 50px rgba(62,180,137,0.4);
}

.price-card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.price-popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(35deg);
}

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

.price-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-card.featured .price-name {
  color: rgba(255,255,255,0.6);
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.price-card.featured .price-unit { color: rgba(255,255,255,0.5); }

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.price-card.featured .price-features li {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.1);
}

.price-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-features li:last-child { border-bottom: none; }

/* ===== CALCULATOR SECTION (BLOCK 7) ===== */
.calc-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--highlight));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.calc-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");
}

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

.calc-section .section-title { color: var(--white); }
.calc-section .section-subtitle { color: rgba(255,255,255,0.75); }

.calc-widget {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.calc-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  display: block;
}

.calc-select-wrap {
  position: relative;
  margin-bottom: 24px;
}

.calc-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  transition: var(--transition);
}

.calc-select option { color: var(--text-dark); background: var(--white); }

.calc-select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.2);
}

.calc-slider-wrap {
  margin-bottom: 24px;
}

.calc-slider {
  width: 100%;
  height: 6px;
  appearance: none;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  outline: none;
  margin-top: 8px;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.calc-slider-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-top: 8px;
}

.calc-result {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.calc-result-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.calc-result-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
  transition: all 0.3s ease;
}

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

/* ===== PROMO TEXT SECTION (BLOCK 8) ===== */
.promo-section {
  background: var(--white);
}

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

.promo-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.promo-text h2 em {
  color: var(--primary);
  font-style: normal;
}

.promo-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.promo-quote {
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  background: var(--light-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
}

.promo-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.promo-benefit:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.promo-benefit-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.promo-benefit div h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.promo-benefit div p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== INFOGRAPHIC SECTION (BLOCK 9) ===== */
.infographic-section {
  background: var(--light-bg);
  overflow: hidden;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.info-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  background: var(--light-bg-2);
  z-index: 1;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.info-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  counter-increment: none;
}

.info-unit {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.info-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.info-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

.info-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: var(--transition);
}

.info-pill:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.info-pill-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-pill div h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.info-pill div p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== GALLERY SECTION (BLOCK 10) ===== */
.gallery-section {
  background: var(--dark-2);
}

.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.65); }

.gallery-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  margin: 40px 0;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 40px 16px 16px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

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

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

.testimonial-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
  background: none;
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(62,180,137,0.1);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

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

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

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact p span:first-child { flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

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

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

.footer-legal a:hover { color: var(--primary); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 2000;
  display: none;
  animation: slideUp 0.5s ease;
}

.cookie-banner.show { display: block; }

.cookie-banner h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cookie-banner p a {
  color: var(--primary);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-main);
  transition: var(--transition);
}

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

.cookie-btn-primary:hover { background: var(--primary-dark); }

.cookie-btn-secondary {
  border-color: var(--border);
  color: var(--text-muted);
  background: var(--white);
}

.cookie-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== LEGAL PAGES ===== */
.legal-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 120px 0 60px;
  color: var(--white);
  text-align: center;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.legal-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.legal-content {
  padding: 80px 0;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 40px 0 16px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 8px;
}

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  padding: 40px 24px;
}

.thanks-card {
  max-width: 560px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  animation: fadeInUp 0.8s ease;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
  animation: pulse 2s ease infinite;
}

.thanks-card h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.thanks-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,180,137,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(62,180,137,0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

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

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

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-image { display: none; }
  .about-orb { display: none; }
  .about-radial { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .promo-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

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

  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 24px; }

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

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

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  
  .schedule-tabs { flex-wrap: wrap; }
  .about-text { grid-template-columns: 1fr; }

  .section { padding: 70px 0; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .cookie-buttons { flex-direction: column; }
  .infographic-grid { grid-template-columns: 1fr; }
  .infographic-bottom { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
