/* fierasana — Vanilla CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --primary: #ED760E;
  --accent: #FFD700;
  --highlight: #FFAE42;
  --dark: #1a1a2e;
  --dark-2: #2d2d44;
  --light: #fdfaf6;
  --light-2: #f5f0e8;
  --text: #2c2c3a;
  --text-muted: #6b6b80;
  --white: #ffffff;
  --border: #e8e0d5;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(237,118,14,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.serif { font-family: 'Lora', serif; }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; max-width: 680px; margin: 0 auto 56px; line-height: 1.8; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-light { background: var(--light-2); }
.bg-white { background: var(--white); }
.highlight-bar { display: inline-block; width: 60px; height: 4px; background: var(--primary); border-radius: 2px; margin: 12px auto 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 36px; border-radius: 50px; font-weight: 600; font-size: 1rem;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition);
  letter-spacing: 0.02em; text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.btn-primary:hover { background: #d4680a; border-color: #d4680a; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--primary); border-color: var(--white);
}
.btn-white:hover { background: var(--light-2); }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* HEADER */
.site-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);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.5rem; color: var(--dark);
}
.logo span { color: var(--primary); }
.logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white);
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-weight: 500; font-size: 0.95rem; color: var(--text-muted);
  transition: var(--transition); position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; flex-direction: column; gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-weight: 500; font-size: 1rem; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 40%, #3d2a1a 100%);
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('hero-pilates-home.png');
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(237,118,14,0.2); border: 1px solid rgba(237,118,14,0.4);
  color: var(--highlight); padding: 8px 20px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; margin-bottom: 28px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--highlight); }
.hero-lead {
  color: rgba(255,255,255,0.78); font-size: 1.18rem; margin-bottom: 40px;
  font-family: 'Lora', serif; line-height: 1.9;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 2;
}
.scroll-dot {
  width: 2px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.5)} }

/* STEP MAP (Block 1) */
.step-map { background: linear-gradient(135deg, var(--light-2) 0%, var(--white) 100%); }
.steps-container {
  display: flex; align-items: flex-start; gap: 0;
  position: relative; margin-bottom: 64px; flex-wrap: wrap;
}
.steps-container::before {
  content: ''; position: absolute; top: 48px; left: 10%; right: 10%;
  height: 3px; background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 0; border-radius: 2px;
}
.step-card {
  flex: 1; min-width: 180px; display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1; padding: 0 16px;
}
.step-num {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: var(--white);
  box-shadow: 0 8px 32px rgba(237,118,14,0.3);
  margin-bottom: 20px; transition: var(--transition);
  position: relative;
}
.step-card:hover .step-num { transform: scale(1.08) translateY(-4px); }
.step-icon { font-size: 1.8rem; }
.step-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* MINI PRICE CARDS */
.mini-prices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px;
}
.mini-price-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--transition);
  text-align: center; position: relative; overflow: hidden;
}
.mini-price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}
.mini-price-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.mini-price-card.featured { background: linear-gradient(135deg, var(--primary) 0%, #d4680a 100%); color: var(--white); }
.mini-price-card.featured::before { background: rgba(255,255,255,0.3); }
.mini-price-tag { font-size: 2rem; font-weight: 800; color: var(--primary); }
.mini-price-card.featured .mini-price-tag { color: var(--white); }
.mini-price-currency { font-size: 1rem; vertical-align: super; font-weight: 600; }
.mini-price-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.mini-price-card.featured .mini-price-label { color: rgba(255,255,255,0.8); }
.mini-price-sessions { font-weight: 600; font-size: 0.9rem; margin-top: 8px; }

/* BOOKING FORM */
.booking-form-section {
  background: var(--white); border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow); margin-bottom: 32px;
}
.booking-form-section h3 { margin-bottom: 8px; }
.booking-form-section p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.form-field input {
  padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit; transition: var(--transition);
  background: var(--light);
}
.form-field input:focus { outline: none; border-color: var(--primary); background: var(--white); }
.form-submit { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.form-note { font-size: 0.8rem; color: var(--text-muted); }

/* SLIDER / CAROUSEL (Block 2) */
.slider-section { background: var(--dark); overflow: hidden; }
.slider-section .section-title { color: var(--white); }
.slider-section .section-subtitle { color: rgba(255,255,255,0.65); }
.slider-wrapper { position: relative; overflow: hidden; border-radius: var(--radius); }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.slide {
  min-width: 100%; position: relative; border-radius: var(--radius); overflow: hidden;
}
.slide img { width: 100%; height: 500px; object-fit: cover; }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 48px 40px 32px; color: var(--white);
}
.slide-caption h3 { font-size: 1.5rem; margin-bottom: 8px; }
.slide-caption p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px;
}
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  color: var(--white); cursor: pointer; font-size: 1.1rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }
.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: var(--transition);
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ACCORDION (Block 3) */
.accordion-section { background: var(--white); }
.accordion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.accordion-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.accordion-image img { width: 100%; height: 500px; object-fit: cover; }
.accordion-list { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  transition: var(--transition);
}
.accordion-item.open { border-color: var(--primary); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; transition: var(--transition);
  font-weight: 600; font-size: 0.98rem;
}
.accordion-header:hover { background: var(--light-2); }
.accordion-item.open .accordion-header { background: rgba(237,118,14,0.06); color: var(--primary); }
.accordion-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-2); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition); flex-shrink: 0;
}
.accordion-item.open .accordion-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-body p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* CIRCULAR ABOUT (Block 4) */
.about-section { background: linear-gradient(135deg, #f8f4ef 0%, var(--light) 100%); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about-circle-container {
  position: relative; width: 460px; height: 460px; flex-shrink: 0;
}
.about-center-img {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 220px; height: 220px; border-radius: 50%; object-fit: cover;
  border: 6px solid var(--white); box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  z-index: 2;
}
.orbit-item {
  position: absolute; display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 110px;
}
.orbit-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 6px; border: 2px solid var(--border);
}
.orbit-label { font-size: 0.75rem; font-weight: 600; color: var(--text); text-align: center; line-height: 1.3; }
/* Positions */
.orbit-top { top: 5%; left: 50%; transform: translateX(-50%); }
.orbit-right { top: 50%; right: 2%; transform: translateY(-50%); }
.orbit-bottom-right { bottom: 10%; right: 12%; }
.orbit-bottom { bottom: 3%; left: 50%; transform: translateX(-50%); }
.orbit-left { top: 50%; left: 2%; transform: translateY(-50%); }
.orbit-top-right { top: 12%; right: 12%; }

.about-content { max-width: 520px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.about-stat { background: var(--white); padding: 20px; border-radius: var(--radius-sm); text-align: center; box-shadow: var(--shadow); }
.about-stat-num { font-size: 2rem; font-weight: 800; color: var(--primary); }
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* TABLE (Block 5) */
.schedule-section { background: var(--white); }
.schedule-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.schedule-table thead { background: linear-gradient(135deg, var(--primary), #d4680a); color: var(--white); }
.schedule-table th { padding: 18px 20px; text-align: left; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; }
.schedule-table td { padding: 16px 20px; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr { transition: var(--transition); }
.schedule-table tbody tr:hover { background: rgba(237,118,14,0.04); }
.badge {
  display: inline-flex; padding: 4px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
}
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-blue { background: #e3f2fd; color: #1565c0; }
.badge-orange { background: #fff3e0; color: #e65100; }
.badge-purple { background: #f3e5f5; color: #6a1b9a; }

/* PRICE CARDS (Block 6) */
.pricing-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); }
.pricing-section .section-title { color: var(--white); }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.65); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 36px 28px; color: var(--white);
  transition: var(--transition); position: relative; overflow: hidden;
}
.price-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(237,118,14,0.05), transparent);
  opacity: 0; transition: var(--transition);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(237,118,14,0.4); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.price-card:hover::after { opacity: 1; }
.price-card.popular {
  background: linear-gradient(135deg, var(--primary) 0%, #d4680a 100%);
  border-color: transparent; box-shadow: 0 16px 48px rgba(237,118,14,0.3);
}
.popular-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--dark); font-size: 0.72rem;
  font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.04em;
}
.price-card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.price-card h3 { font-size: 1.1rem; margin-bottom: 20px; }
.price-amount { font-size: 2.8rem; font-weight: 800; margin-bottom: 4px; }
.price-currency { font-size: 1.4rem; vertical-align: super; }
.price-period { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 24px; }
.price-card.popular .price-period { color: rgba(255,255,255,0.8); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.price-card.popular .price-features li { color: rgba(255,255,255,0.9); }
.price-card .btn { width: 100%; }
.btn-card { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-card:hover { background: var(--primary); border-color: var(--primary); }
.price-card.popular .btn-card { background: rgba(255,255,255,0.25); }

/* CALCULATOR (Block 7) */
.calculator-section { background: var(--light-2); }
.calculator-card {
  background: var(--white); border-radius: var(--radius); padding: 56px;
  box-shadow: var(--shadow); max-width: 780px; margin: 0 auto;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.calc-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; color: var(--text); }
.calc-slider { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 3px; background: var(--border); outline: none; }
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); cursor: pointer;
  box-shadow: 0 2px 8px rgba(237,118,14,0.4);
}
.calc-slider-value { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-top: 8px; }
.calc-select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit; cursor: pointer; transition: var(--transition);
  background: var(--light); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b80' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.calc-select:focus { outline: none; border-color: var(--primary); }
.calc-result {
  background: linear-gradient(135deg, var(--primary) 0%, #d4680a 100%);
  color: var(--white); border-radius: var(--radius-sm); padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.result-label { font-size: 0.9rem; opacity: 0.85; margin-bottom: 4px; }
.result-amount { font-size: 2.4rem; font-weight: 800; }
.result-savings { font-size: 0.85rem; opacity: 0.85; background: rgba(255,255,255,0.15); padding: 6px 14px; border-radius: 20px; }

/* TEXT BLOCK (Block 8) */
.text-block-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1e2a1a 100%);
  position: relative; overflow: hidden;
}
.text-block-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,118,14,0.12) 0%, transparent 70%);
}
.text-block-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.text-block-content h2 { color: var(--white); margin-bottom: 28px; }
.text-block-content p { color: rgba(255,255,255,0.75); font-size: 1.15rem; line-height: 2; font-family: 'Lora', serif; margin-bottom: 24px; }
.text-block-content p:last-of-type { margin-bottom: 40px; }
.quote-mark { font-size: 6rem; line-height: 0; color: rgba(237,118,14,0.2); font-family: 'Lora', serif; display: block; margin-bottom: 16px; }

/* INFOGRAPHIC (Block 9) */
.infographic-section { background: var(--light-2); }
.infographic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  text-align: center; box-shadow: var(--shadow); position: relative;
  transition: var(--transition); overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.info-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.info-stat { font-size: 2.4rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.info-card h4 { font-size: 1rem; margin-bottom: 12px; }
.info-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* GALLERY (Block 10) */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative;
}
.gallery-grid::after {
  content: ''; display: block;
  grid-column: 1 / -1;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
  border-radius: 2px; margin: 12px 0;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  box-shadow: var(--shadow); transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; height: 380px; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 40px 16px 16px; color: var(--white);
  font-size: 0.85rem; font-weight: 500;
}

/* FOOTER */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.footer-logo { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-legal { font-size: 0.78rem; line-height: 1.7; }
.footer-heading { color: var(--white); font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { font-size: 0.88rem; line-height: 1.9; }
.footer-contact a { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 16px;
}
.footer-bottom-text { font-size: 0.82rem; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); color: var(--white);
  padding: 20px 24px; border-top: 2px solid var(--primary);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { flex: 1; font-size: 0.88rem; line-height: 1.6; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 22px; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: var(--transition);
}
.cookie-btn-accept { background: var(--primary); color: var(--white); border-color: var(--primary); }
.cookie-btn-accept:hover { background: #d4680a; }
.cookie-btn-essential { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.cookie-btn-essential:hover { border-color: var(--white); }
.cookie-btn-settings { background: transparent; color: rgba(255,255,255,0.7); border-color: transparent; text-decoration: underline; }

/* ANIMATIONS */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0; transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }
.slide-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* THANKS PAGE */
.thanks-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 100px 24px;
}
.thanks-card {
  background: var(--white); border-radius: var(--radius); padding: 64px 56px;
  text-align: center; max-width: 560px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.thanks-icon { font-size: 4rem; margin-bottom: 24px; }
.thanks-card h1 { margin-bottom: 16px; }
.thanks-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 32px; }

/* LEGAL PAGES */
.legal-page { padding-top: 120px; padding-bottom: 80px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-date { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 48px; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; color: var(--dark); }
.legal-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.9; }
.legal-content ul { color: var(--text-muted); margin: 0 0 16px 20px; }
.legal-content li { font-size: 0.95rem; line-height: 1.9; margin-bottom: 4px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .accordion-grid { grid-template-columns: 1fr; }
  .accordion-image { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .steps-container::before { display: none; }
  .steps-container { flex-direction: column; align-items: center; }
  .step-card { width: 100%; max-width: 300px; }
  .mini-prices { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .calculator-card { padding: 28px 20px; }
  .booking-form-section { padding: 24px 20px; }
  .hero-btns { flex-direction: column; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 300px; }
  .thanks-card { padding: 40px 28px; }
}
