/* ==========================================
   FIZKULT — MAIN STYLESHEET
   Primary: #7442C8 | Accent: #FF77FF | Highlight: #B565A7
   ========================================== */

:root {
  --primary: #7442C8;
  --primary-dark: #5a2fa5;
  --primary-light: #9b6de3;
  --accent: #FF77FF;
  --accent-dark: #e055e0;
  --highlight: #B565A7;
  --white: #ffffff;
  --black: #111111;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gradient-main: linear-gradient(135deg, #7442C8 0%, #B565A7 50%, #FF77FF 100%);
  --gradient-soft: linear-gradient(135deg, #f8f3ff 0%, #fff0ff 100%);
  --shadow-sm: 0 2px 8px rgba(116, 66, 200, 0.1);
  --shadow-md: 0 4px 20px rgba(116, 66, 200, 0.15);
  --shadow-lg: 0 10px 40px rgba(116, 66, 200, 0.2);
  --shadow-xl: 0 20px 60px rgba(116, 66, 200, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
}

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

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(116, 66, 200, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.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);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider.centered {
  margin: 16px auto 24px;
}

/* ========== HEADER ========== */
.site-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 rgba(116, 66, 200, 0.1);
  transition: box-shadow var(--transition);
}

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

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

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

.main-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover {
  color: var(--primary);
  background: rgba(116, 66, 200, 0.08);
}

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

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

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

.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: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  padding: 24px;
  border-bottom: 2px solid rgba(116, 66, 200, 0.1);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

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

.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--gray-800);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  background: rgba(116, 66, 200, 0.08);
  color: var(--primary);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a3c 0%, #2d0f5f 50%, #3d1468 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-shaping.png') center/cover no-repeat;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(116, 66, 200, 0.7) 0%, rgba(181, 101, 167, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
  text-align: center;
  min-width: 160px;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  opacity: 0.8;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

/* ========== SECTION 1: STEP MAP + PRICES ========== */
.step-map-section {
  background: var(--gradient-soft);
  padding: 100px 0;
}

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

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

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.step-number {
  width: 72px;
  height: 72px;
  background: var(--gradient-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(116, 66, 200, 0.3);
  animation: rotate 8s linear infinite;
}

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

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.mini-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.mini-price-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
}

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

.mini-price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f8f3ff 0%, #fff0ff 100%);
}

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

.mini-price-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1;
  margin-bottom: 4px;
}

.mini-price-value span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
}

.mini-price-detail {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 8px;
}

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

.booking-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.booking-form-sub {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: all var(--transition);
  background: var(--gray-50);
  color: var(--gray-800);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(116, 66, 200, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.detail-btn-wrap {
  text-align: center;
  margin-top: 16px;
}

/* ========== SECTION 2: SLIDER / CAROUSEL ========== */
.slider-section {
  background: #1a0a3c;
  padding: 100px 0;
  overflow: hidden;
}

.slider-section .section-title {
  color: white;
}

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

.slider-section .divider {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px;
  background: linear-gradient(transparent, rgba(26, 10, 60, 0.9));
  color: white;
}

.slide-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.slide-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
}

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

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

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

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

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

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

/* ========== SECTION 3: ansers ========== */
.ansers-section {
  padding: 100px 0;
  background: var(--white);
}

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

.ansers-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 100px;
}

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

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

.ansers-item {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.ansers-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.ansers-trigger {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  transition: all var(--transition);
}

.ansers-trigger:hover {
  color: var(--primary);
}

.ansers-item.open .ansers-trigger {
  color: var(--primary);
  background: rgba(116, 66, 200, 0.04);
}

.ansers-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(116, 66, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 14px;
  color: var(--primary);
}

.ansers-item.open .ansers-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.ansers-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ansers-item.open .ansers-body {
  max-height: 800px;
}

.ansers-content {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
}

.ansers-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}

.ansers-content ul li {
  margin-bottom: 8px;
}

.ansers-content p + p {
  margin-top: 12px;
}

/* ========== SECTION 4: CIRCULAR ABOUT ========== */
.about-section {
  background: var(--gradient-soft);
  padding: 100px 0;
  overflow: hidden;
}

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

.circular-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.circle-photo {
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  border: 6px solid white;
}

.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(116, 66, 200, 0.2);
  animation: rotate 20s linear infinite;
}

.circle-ring-2 {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 2px dashed rgba(181, 101, 167, 0.15);
  animation: rotate 15s linear infinite reverse;
}

.circle-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
  border: 2px solid rgba(116, 66, 200, 0.1);
}

.circle-badge .num {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.circle-badge .txt {
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 4px;
  font-weight: 500;
}

.badge-top {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.badge-right {
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
}

.badge-bottom {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.badge-left {
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.about-feature-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.about-feature-text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========== SECTION 5: TABLE ========== */
.schedule-section {
  padding: 100px 0;
  background: white;
}

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(116, 66, 200, 0.1);
}

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

.schedule-table thead {
  background: var(--gradient-main);
  color: white;
}

.schedule-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.schedule-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}

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

.schedule-table tbody tr:hover {
  background: rgba(116, 66, 200, 0.04);
}

.schedule-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.schedule-table tbody tr:nth-child(even):hover {
  background: rgba(116, 66, 200, 0.06);
}

.schedule-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--gray-800);
}

.schedule-table .day-cell {
  font-weight: 700;
  color: var(--primary);
}

.level-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.level-beginner {
  background: rgba(116, 66, 200, 0.1);
  color: var(--primary);
}

.level-advanced {
  background: rgba(255, 119, 255, 0.1);
  color: #cc44cc;
}

.level-all {
  background: rgba(181, 101, 167, 0.1);
  color: var(--highlight);
}

.slot-available {
  color: #16a34a;
  font-weight: 600;
}

.slot-limited {
  color: #ea580c;
  font-weight: 600;
}

/* ========== SECTION 6: PRICE CARDS ========== */
.prices-section {
  padding: 100px 0;
  background: var(--gradient-soft);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

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

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.price-card:hover::before,
.price-card.featured::before {
  transform: scaleX(1);
}

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

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f8f3ff 0%, #fff0ff 100%);
  transform: scale(1.03);
}

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

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-main);
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.price-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-800);
  line-height: 1;
  margin-bottom: 4px;
}

.price-value span {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-600);
}

.price-period {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.price-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
}

.price-feature::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(116, 66, 200, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== SECTION 7: CALCULATOR ========== */
.calculator-section {
  padding: 100px 0;
  background: #1a0a3c;
}

.calculator-section .section-title {
  color: white;
}

.calculator-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

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

.calc-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
}

.calc-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

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

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-main);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255,119,255,0.3);
  transition: box-shadow var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(255,119,255,0.2);
}

.calc-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 32px;
}

.calc-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

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

.calc-type-btn:hover,
.calc-type-btn.active {
  border-color: var(--accent);
  color: white;
  background: rgba(255,119,255,0.15);
}

.calc-result {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,119,255,0.3);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

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

.calc-result-price {
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.calc-result-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.calc-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.calc-info-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,119,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.calc-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.calc-info-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ========== SECTION: SELLING TEXT ========== */
.selling-section {
  padding: 100px 0;
  background: var(--white);
}

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

.selling-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.selling-paragraph {
  font-size: 17px;
  line-height: 1.85;
  color: var(--gray-600);
}

.selling-paragraph strong {
  color: var(--primary);
  font-weight: 700;
}

.selling-quote {
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: rgba(255,119,255,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 18px;
  font-style: italic;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.6;
}

.selling-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.selling-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.selling-highlight::before {
  content: '♦';
  font-size: 12px;
  color: var(--accent);
}

.selling-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.selling-stat {
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid rgba(116, 66, 200, 0.1);
}

.selling-stat .num {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.selling-stat .lbl {
  font-size: 13px;
  color: var(--gray-600);
}

/* ========== SECTION: INFOGRAPHIC ========== */
.infographic-section {
  padding: 100px 0;
  background: var(--gradient-soft);
}

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

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.info-card:hover {
  border-color: rgba(116,66,200,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.info-card:hover::after {
  transform: scaleX(1);
}

.info-icon-circle {
  width: 80px;
  height: 80px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.info-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.info-card-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.info-stat-bar {
  margin-top: 16px;
  background: var(--gray-200);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}

.info-stat-fill {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 4px;
  width: 0;
  transition: width 1.2s ease 0.5s;
}

.info-stat-fill.animated {
  width: var(--target-width, 80%);
}

/* ========== SECTION: PHOTO GALLERY ========== */
.gallery-section {
  padding: 100px 0;
  background: white;
}

.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;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(26,10,60,0.85));
  color: white;
  font-size: 13px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}

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

.gallery-hr {
  width: 100%;
  height: 2px;
  background: var(--gradient-main);
  border: none;
  margin: 48px 0 0;
}

/* ========== SECTION 8: INTERACTIVE ZONE CARDS ========== */
.zones-section {
  padding: 100px 0;
  background: var(--gradient-soft);
}

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

.zone-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.zone-card-image {
  height: 180px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.zone-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(116,66,200,0.4) 0%, rgba(255,119,255,0.2) 100%);
}

.zone-card-body {
  padding: 24px;
}

.zone-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.zone-card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.zone-card-btn {
  width: 100%;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: all 0.35s var(--transition-bounce);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray-600);
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.radio-label:hover {
  border-color: var(--primary);
}

.radio-label input {
  accent-color: var(--primary);
}

.radio-label:has(input:checked) {
  border-color: var(--primary);
  background: rgba(116,66,200,0.05);
  color: var(--primary);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: white;
  padding: 24px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
  border-top: 3px solid var(--primary);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 14px;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  padding: 10px 24px;
  background: var(--gradient-main);
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-cookie-minimal {
  padding: 10px 24px;
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-cookie-minimal:hover {
  border-color: var(--gray-400);
  color: var(--gray-800);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0d0520;
  color: rgba(255,255,255,0.8);
  padding: 80px 0 40px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: white;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-contact span:first-child {
  font-size: 18px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

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

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

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

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

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ========== 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);
}

/* ========== LEGAL PAGES ========== */
.legal-header {
  background: var(--gradient-main);
  padding: 120px 0 60px;
  color: white;
}

.legal-header h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 12px;
}

.legal-header p {
  opacity: 0.8;
  font-size: 16px;
}

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

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.legal-content li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

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

.thanks-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  max-width: 600px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 0 auto 32px;
  animation: bounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ansers-layout {
    grid-template-columns: 1fr;
  }
  .ansers-image {
    position: static;
  }
  .circular-layout {
    grid-template-columns: 1fr;
  }
  .circular-center {
    max-width: 360px;
  }
  .infographic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .selling-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .calculator-layout {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 36px; }
  .hero-stats { display: none; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .infographic-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-box { padding: 32px 24px; }
  .thanks-box { padding: 48px 24px; }
  .booking-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .mini-prices { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .prices-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
  .modal-radio-group { grid-template-columns: 1fr; }
  .cookie-actions { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .calc-type-grid { grid-template-columns: 1fr; }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Page transition top bar */
.page-top-bar {
  height: 4px;
  background: var(--gradient-main);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0%;
  transition: width 0.3s ease;
}
