@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary: #0D98BA;
  --primary-dark: #0a7a94;
  --primary-light: #e0f5fa;
  --accent: #87A96B;
  --accent-dark: #6a8a52;
  --accent-light: #eef4e8;
  --highlight: #8A2BE2;
  --highlight-light: #f2e8fc;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #2d3748;
  --text-light: #718096;
  --text-lighter: #a0aec0;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-2: #f0f4f8;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(13, 152, 186, 0.12);
  --shadow-lg: 0 8px 48px rgba(13, 152, 186, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

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

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px; color: white;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--dark);
}

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

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

.site-nav a {
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: color 0.2s; position: relative;
}

.site-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width 0.3s;
}

.site-nav a:hover { color: var(--primary); }
.site-nav a:hover::after { width: 100%; }

.header-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.header-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,152,186,0.35);
}

.header-cta::after { display: none !important; }

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

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

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

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

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600; transition: var(--transition);
  cursor: pointer; border: none;
}

.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 20px rgba(13,152,186,0.3);
}

.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13,152,186,0.4);
}

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

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

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

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

.btn-lg { padding: 18px 44px; font-size: 16px; }

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

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d2545 40%, #0a3d52 100%);
}

.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('../images/hero-stretching-studio.png');
  background-size: cover; background-position: center;
  opacity: 0.35; z-index: 1;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.4) 60%, rgba(10,22,40,0.2) 100%);
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,152,186,0.2); border: 1px solid rgba(13,152,186,0.4);
  color: #7dd8ef; padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}

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

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px); font-weight: 700;
  color: white; line-height: 1.1; margin-bottom: 24px; max-width: 680px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title em {
  color: var(--primary); font-style: italic; display: block;
}

.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.75);
  max-width: 520px; line-height: 1.7; margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-actions .btn-outline { color: white; border-color: rgba(255,255,255,0.5); }
.hero-actions .btn-outline:hover { background: white; color: var(--primary); border-color: white; }

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700; color: white; line-height: 1;
}

.hero-stat-number span { color: var(--primary); }

.hero-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 1px;
}

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

/* ===== SECTION COMMON ===== */
.section {
  padding: 96px 40px;
}

.section-inner {
  max-width: 1200px; margin: 0 auto;
}

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}

.section-label::before {
  content: ''; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px); font-weight: 700;
  color: var(--dark); line-height: 1.2; margin-bottom: 16px;
}

.section-desc {
  font-size: 17px; color: var(--text-light);
  line-height: 1.7; max-width: 600px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== SECTION 1: STEPS ===== */
.steps-section {
  background: linear-gradient(180deg, #f0f9ff 0%, #e8f5e9 100%);
  padding: 96px 40px;
}

.steps-header {
  text-align: center; margin-bottom: 64px;
}

.steps-header .section-label { justify-content: center; }
.steps-header .section-label::before { display: none; }

.steps-map {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; margin-bottom: 80px;
}

.steps-map::before {
  content: ''; position: absolute; top: 36px;
  left: 10%; right: 10%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--highlight));
  z-index: 0; border-radius: 2px;
}

.step-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px;
  position: relative; z-index: 1;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white; margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); flex-shrink: 0;
}

.step-card:nth-child(1) .step-number { background: linear-gradient(135deg, #0D98BA, #0a7a94); }
.step-card:nth-child(2) .step-number { background: linear-gradient(135deg, #31b0c8, #87A96B); }
.step-card:nth-child(3) .step-number { background: linear-gradient(135deg, #87A96B, #6a8a52); }
.step-card:nth-child(4) .step-number { background: linear-gradient(135deg, #9b5de5, #8A2BE2); }
.step-card:nth-child(5) .step-number { background: linear-gradient(135deg, #8A2BE2, #5a1a9a); }

.step-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.step-desc { font-size: 12.5px; color: var(--text-light); line-height: 1.5; }

.step-sensation {
  margin-top: 10px; padding: 6px 12px;
  background: white; border-radius: 50px; font-size: 11.5px;
  color: var(--primary); font-weight: 500;
  border: 1px solid var(--primary-light); white-space: nowrap;
}

/* Mini Price Cards */
.mini-price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 40px;
}

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

.mini-price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}

.mini-price-card:nth-child(1)::before { background: linear-gradient(90deg, var(--primary), #31b0c8); }
.mini-price-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent), #a8c88a); }
.mini-price-card:nth-child(3)::before { background: linear-gradient(90deg, var(--highlight), #b06be8); }

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

.mini-price-name {
  font-size: 13px; font-weight: 600; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}

.mini-price-value {
  font-family: var(--font-display); font-size: 34px; font-weight: 700;
  color: var(--dark); line-height: 1; margin-bottom: 4px;
}

.mini-price-currency { font-size: 18px; font-weight: 500; }
.mini-price-period { font-size: 13px; color: var(--text-lighter); margin-bottom: 12px; }
.mini-price-detail { font-size: 13px; color: var(--text-light); line-height: 1.5; }

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

.booking-form-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px; text-align: center;
}

.booking-form-subtitle {
  font-size: 14px; color: var(--text-light); text-align: center; margin-bottom: 28px;
}

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

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

.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}

.form-group input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text); transition: var(--transition); background: var(--bg);
}

.form-group input:focus {
  border-color: var(--primary); background: white;
  box-shadow: 0 0 0 3px rgba(13,152,186,0.12);
}

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

.form-submit-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; border: none; border-radius: 50px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: var(--transition); margin-top: 8px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13,152,186,0.4);
}

.know-more-btn { text-align: center; }

.know-more-btn a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: 15px;
  transition: var(--transition);
}

.know-more-btn a:hover { gap: 14px; color: var(--primary-dark); }

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

.slider-section .section-label { color: rgba(255,255,255,0.6); }
.slider-section .section-title { color: white; }
.slider-section .section-desc { color: rgba(255,255,255,0.6); }

.slider-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}

.slider-controls { display: flex; gap: 12px; }

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

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

.slider-track-wrapper { position: relative; overflow: hidden; }

.slider-track {
  display: flex; gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 4/3;
}

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

.slider-item:hover img { transform: scale(1.05); }

.slider-item-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
}

.slider-item-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: white; margin-bottom: 6px;
}

.slider-item-desc { font-size: 13px; color: rgba(255,255,255,0.7); }

.slider-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}

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

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

/* ===== SECTION 3: ACCORDION ===== */
.accordion-section { background: white; padding: 96px 40px; }

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

.accordion-image-wrapper { position: sticky; top: 100px; }

.accordion-image {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg); position: relative;
}

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

.accordion-badge {
  position: absolute; bottom: -20px; left: 24px; right: 24px;
  background: white; border-radius: var(--radius); padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 16px;
}

.accordion-badge-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

.accordion-badge-text { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4; }

.accordion-item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}

.accordion-item.open {
  border-color: var(--primary); box-shadow: 0 4px 20px rgba(13,152,186,0.1);
}

.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; gap: 16px;
}

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

.accordion-trigger-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: var(--transition);
}

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

.accordion-trigger-title {
  font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.3;
}

.accordion-arrow {
  font-size: 20px; color: var(--text-light);
  transition: transform 0.3s ease; flex-shrink: 0;
}

.accordion-item.open .accordion-arrow { transform: rotate(180deg); color: var(--primary); }

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

.accordion-item.open .accordion-body { max-height: 500px; }

.accordion-content {
  padding: 0 24px 20px 76px; font-size: 14.5px;
  color: var(--text-light); line-height: 1.7;
}

.accordion-content p { margin-bottom: 10px; }

.accordion-content ul { margin-top: 10px; }

.accordion-content li {
  padding: 4px 0 4px 20px; position: relative;
}

.accordion-content li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}

/* ===== SECTION 4: ABOUT ===== */
.about-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0f4ff 100%);
  padding: 96px 40px; overflow: hidden;
}

.about-grid {
  display: grid; grid-template-columns: 1fr 320px 1fr;
  gap: 40px; align-items: center; max-width: 1200px; margin: 0 auto;
}

.about-center { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }

.about-circle-container {
  width: 320px; height: 320px; flex-shrink: 0;
}

.about-circle-img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  box-shadow: 0 20px 60px rgba(13,152,186,0.25);
  border: 6px solid white;
}

.about-items { display: flex; flex-direction: column; gap: 24px; }
.about-items-right { text-align: right; }
.about-items-right .about-card { text-align: right; }

.about-card {
  background: white; border-radius: var(--radius); padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: var(--transition);
}

.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.about-card-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.about-card-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.about-card-text { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== SECTION 5: TABLE ===== */
.table-section { background: white; padding: 96px 40px; }

.table-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}

.table-wrapper {
  overflow-x: auto; border-radius: var(--radius);
  border: 1.5px solid var(--border); box-shadow: var(--shadow);
}

.schedule-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.schedule-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white;
}

.schedule-table th {
  padding: 16px 20px; text-align: left; font-weight: 600; font-size: 13px; letter-spacing: 0.5px;
}

.schedule-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text);
}

.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--primary-light); }

.level-badge {
  display: inline-flex; padding: 3px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}

.level-beginner { background: #e8f5e9; color: #2e7d32; }
.level-medium { background: #fff3e0; color: #e65100; }
.level-advanced { background: #f3e5f5; color: #6a1b9a; }

.table-features { margin-top: 28px; }

.table-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text);
}

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

.table-feature-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px;
}

/* ===== SECTION 6: PRICES ===== */
.prices-section {
  background: linear-gradient(180deg, var(--bg) 0%, white 100%);
  padding: 96px 40px;
}

.prices-header {
  text-align: center; margin-bottom: 56px;
}

.prices-header .section-label { justify-content: center; }
.prices-header .section-label::before { display: none; }

.prices-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; align-items: start; max-width: 1200px; margin: 0 auto;
}

.price-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 28px; border: 2px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}

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

.price-card.popular {
  border-color: var(--primary); background: linear-gradient(180deg, #e0f5fa 0%, white 100%);
  transform: translateY(-12px);
}

.price-card.popular:hover { transform: translateY(-18px); }

.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 0 0 10px 10px; letter-spacing: 0.5px; text-transform: uppercase;
}

.price-card-icon { font-size: 36px; margin-bottom: 16px; }
.price-card-name { font-size: 14px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.price-card-price { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.price-card-price sup { font-size: 22px; font-weight: 500; vertical-align: super; }
.price-card-period { font-size: 14px; color: var(--text-lighter); margin-bottom: 24px; }
.price-card-divider { height: 1px; background: var(--border); margin: 20px 0; }

.price-card-features { margin: 0 0 28px; }

.price-card-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text); padding: 6px 0;
}

.price-card-features li::before {
  content: '\2713'; color: var(--accent); font-weight: 700; flex-shrink: 0;
}

.price-card-btn {
  width: 100%; padding: 14px; border-radius: 50px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: var(--transition); border: 2px solid var(--primary);
  background: transparent; color: var(--primary);
}

.price-card-btn:hover, .price-card.popular .price-card-btn {
  background: var(--primary); color: white;
}

/* ===== SECTION 7: CALCULATOR ===== */
.calculator-section {
  background: linear-gradient(135deg, var(--dark), #0a2540);
  padding: 96px 40px; color: white;
}

.calculator-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}

.calculator-text .section-title { color: white; }
.calculator-text .section-desc { color: rgba(255,255,255,0.6); }

.calc-benefits { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }

.calc-benefit { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.75); }

.calc-benefit-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

.calculator-widget {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 40px; backdrop-filter: blur(12px);
}

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

.calc-label {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 1px;
}

.calc-slider {
  width: 100%; appearance: none; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.15); outline: none; cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); cursor: pointer;
  box-shadow: 0 2px 8px rgba(13,152,186,0.5);
}

.calc-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.calc-type-btn {
  padding: 12px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.15); background: transparent;
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition); text-align: center;
}

.calc-type-btn.active, .calc-type-btn:hover {
  border-color: var(--primary); background: rgba(13,152,186,0.2); color: white;
}

.calc-result {
  margin-top: 24px; padding: 24px;
  background: rgba(13,152,186,0.15); border: 1.5px solid rgba(13,152,186,0.4);
  border-radius: var(--radius); text-align: center;
}

.calc-result-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.calc-result-price { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: white; line-height: 1; margin-bottom: 4px; }
.calc-result-price sup { font-size: 26px; vertical-align: super; }
.calc-per-class { font-size: 18px; color: var(--primary); margin-top: 8px; font-weight: 600; }
.calc-result-note { font-size: 13px; color: rgba(255,255,255,0.5); }

.calc-submit-btn {
  width: 100%; margin-top: 16px; padding: 14px 32px;
  border-radius: 50px; background: var(--primary); color: white;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: var(--transition);
}

.calc-submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== SELL TEXT ===== */
.sell-section { background: white; padding: 96px 40px; }

.sell-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.sell-text h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 32px;
}

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

.sell-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }

.sell-quote {
  margin-top: 32px; padding: 24px 28px;
  border-left: 4px solid var(--primary); background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; font-size: 17px; color: var(--text); line-height: 1.6;
}

.sell-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.sell-stat-card {
  background: var(--bg); border-radius: var(--radius); padding: 24px;
  text-align: center; border: 1.5px solid var(--border); transition: var(--transition);
}

.sell-stat-card:hover { border-color: var(--primary); background: var(--primary-light); }

.sell-stat-num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.sell-stat-text { font-size: 13px; color: var(--text-light); font-weight: 500; }

.sell-big-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius); padding: 32px; color: white; text-align: center;
  margin-top: 16px;
}

.sell-big-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.sell-big-card-text { font-size: 14px; opacity: 0.8; line-height: 1.6; }

/* ===== INFOGRAPHIC ===== */
.infographic-section {
  background: linear-gradient(135deg, var(--accent-light) 0%, #f0f9ff 100%);
  padding: 96px 40px;
}

.infographic-header { text-align: center; margin-bottom: 64px; }
.infographic-header .section-label { justify-content: center; }
.infographic-header .section-label::before { display: none; }

.infographic-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}

.infographic-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: var(--transition);
  position: relative; overflow: hidden;
}

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

.infographic-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.infographic-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 36px; transition: var(--transition);
}

.infographic-card:hover .infographic-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.infographic-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.infographic-unit { font-size: 20px; font-weight: 500; }
.infographic-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.infographic-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery-section { background: white; padding: 96px 40px; }

.gallery-header {
  margin-bottom: 56px; display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 24px;
  max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: 40px;
}

.gallery-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--highlight), transparent);
  border-radius: 2px; margin-bottom: 40px; max-width: 1200px; margin-left: auto; margin-right: auto;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}

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

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-caption { color: white; font-size: 13px; font-weight: 500; line-height: 1.4; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); padding: 96px 40px; }

.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}

.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); border: 1.5px solid var(--border);
  transition: var(--transition);
}

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

.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }

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

.testimonial-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.testimonial-role { font-size: 12px; color: var(--text-lighter); }

/* ===== CONTACTS ===== */
.contacts-section { background: var(--bg); padding: 96px 40px 0; }

.contacts-header { text-align: center; margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }

.contacts-logo-large { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contacts-logo-large span { color: var(--primary); }
.contacts-address { font-size: 16px; color: var(--text-light); margin-bottom: 8px; }
.contacts-email { font-size: 15px; color: var(--primary); font-weight: 500; }

.map-container { width: 100%; height: 450px; background: var(--border); }

.map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8f4f8, #d4edf7);
  color: var(--text-light); font-size: 16px; gap: 12px;
}

.map-placeholder-icon { font-size: 48px; }

.contacts-form-section { padding: 72px 40px 96px; background: var(--bg); }

.contacts-form-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.contacts-info h2 {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  color: var(--dark); margin-bottom: 20px; line-height: 1.2;
}

.contacts-info p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item { display: flex; align-items: center; gap: 16px; }

.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}

.contact-detail-text { font-size: 15px; color: var(--text); font-weight: 500; }

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

.footer-inner { max-width: 1200px; margin: 0 auto; }

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

.footer-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-brand-desc { font-size: 13px; line-height: 1.6; max-width: 240px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 24px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px; font-size: 12px;
}

.footer-legal { line-height: 1.8; color: rgba(255,255,255,0.4); }
.footer-copy { color: rgba(255,255,255,0.4); text-align: right; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--dark); color: white; padding: 20px 40px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  transform: translateY(0); transition: transform 0.4s ease;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner.hidden { transform: translateY(110%); }

.cookie-text { flex: 1; font-size: 14px; line-height: 1.5; min-width: 240px; color: rgba(255,255,255,0.75); }
.cookie-text a { color: var(--primary); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.cookie-btn {
  padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition); border: none; white-space: nowrap;
}

.cookie-btn-accept { background: var(--primary); color: white; }
.cookie-btn-accept:hover { background: var(--primary-dark); }
.cookie-btn-minimal { background: rgba(255,255,255,0.1); color: white; }
.cookie-btn-minimal:hover { background: rgba(255,255,255,0.2); }
.cookie-btn-settings { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-settings:hover { color: white; border-color: rgba(255,255,255,0.5); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(40px); 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); }

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

/* ===== PAGE HEADER (legal) ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark), #0a2540);
  padding: 120px 40px 72px; text-align: center;
}

.page-header h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 54px); font-weight: 700; color: white; margin-bottom: 16px; }
.page-header p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }

.legal-content { max-width: 800px; margin: 0 auto; padding: 72px 40px; }
.legal-content h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--dark); margin: 40px 0 16px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; list-style: disc; }
.legal-content li { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 8px; }

/* ===== THANKS ===== */
.thanks-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 40px;
  background: linear-gradient(135deg, #f0f9ff 0%, #f0f4ff 100%); text-align: center;
}

.thanks-icon {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(13,152,186,0.3);
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(10deg); }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.thanks-title { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.thanks-text { font-size: 18px; color: var(--text-light); max-width: 480px; line-height: 1.6; margin-bottom: 40px; }

/* ===== COOKIE SETTINGS (cookie.php) ===== */
.cookie-setting-card {
  background: var(--bg); border-radius: var(--radius); padding: 24px;
  margin-bottom: 20px; border: 1.5px solid var(--border);
}

.cookie-setting-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}

.cookie-setting-header strong { font-size: 16px; }

.cookie-badge-always {
  padding: 4px 12px; background: var(--accent-light); color: var(--accent-dark);
  border-radius: 50px; font-size: 12px; font-weight: 600;
}

.cookie-toggle-label {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-size: 14px; font-weight: 600;
}

.cookie-toggle-label input { width: 18px; height: 18px; cursor: pointer; }

.cookie-setting-desc { font-size: 14px; color: var(--text-light); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .prices-grid .price-card.popular { transform: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-circle-container { width: 240px; height: 240px; margin: 0 auto; }
  .about-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-items-right { text-align: left; }
  .about-items-right .about-card { text-align: left; }
  .steps-map { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .steps-map::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section, .steps-section, .slider-section, .accordion-section,
  .about-section, .table-section, .prices-section, .calculator-section,
  .sell-section, .infographic-section, .gallery-section, .testimonials-section {
    padding: 72px 24px;
  }
  .contacts-section { padding: 72px 24px 0; }
  .contacts-form-section { padding: 48px 24px 72px; }
  .site-footer { padding: 48px 24px 32px; }
  .site-header { padding: 0 24px; }
  .site-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-content { padding: 60px 24px; }
  .hero-stats { gap: 28px; }
  .hero-stat-number { font-size: 28px; }
  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-image-wrapper { display: none; }
  .table-layout { grid-template-columns: 1fr; }
  .calculator-layout { grid-template-columns: 1fr; }
  .sell-inner { grid-template-columns: 1fr; }
  .contacts-form-inner { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-map { grid-template-columns: repeat(2, 1fr); }
  .slider-item { flex: 0 0 calc(50% - 12px); }
  .mini-price-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { text-align: left; }
  .cookie-banner { padding: 20px 24px; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .steps-map { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .prices-grid { grid-template-columns: 1fr; }
  .calc-type-grid { grid-template-columns: 1fr; }
  .sell-stat-cards { grid-template-columns: 1fr; }
  .about-items { grid-template-columns: 1fr; }
}
