@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS - NEW VISUAL DIRECTION
═══════════════════════════════════════════════════════════ */
:root {
  --bg-base:       #0a0a0f;
  --bg-dark:       #12121a;
  --bg-card:       #1a1a26;
  --bg-card-hover: #1f1f2e;
  --bg-gradient:   linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  
  --border:        rgba(99, 102, 241, 0.15);
  --border-light:  rgba(255, 255, 255, 0.08);
  --border-accent: rgba(99, 102, 241, 0.3);

  --primary:       #6366f1;
  --primary-hover: #7c3aed;
  --secondary:     #ec4899;
  --accent:        #06b6d4;
  
  --text-primary:  #f8fafc;
  --text-secondary:#cbd5e1;
  --text-muted:    #64748b;

  --white:         #ffffff;
  --success:       #10b981;
  --warning:       #f59e0b;
  --error:         #ef4444;

  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  --shadow-card:   0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 8px 40px rgba(99, 102, 241, 0.2);
  --shadow-glow:   0 0 60px rgba(99, 102, 241, 0.15);

  --section-pad:   120px;
  --container:     1280px;
  --gap:           12px;
  
  --font-display:  'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
  overflow-x: hidden;
}

img, svg { 
  display: block; 
  max-width: 100%; 
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { 
  color: var(--text-secondary); 
  line-height: 1.7; 
  font-size: 1rem;
}

a { 
  text-decoration: none; 
  color: inherit; 
  transition: all 0.3s ease;
}

ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 { 
  margin-bottom: 24px;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p { 
  color: var(--text-secondary); 
  font-size: 1.125rem;
  max-width: 600px; 
  margin: 0 auto; 
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT — CENTER ALIGNMENT FOR INDEX PAGE
═══════════════════════════════════════════════════════════ */
.hero .container,
.section .container:not(.contacts .container):not(.footer .container) {
  text-align: center;
}

.hero-layout,
.about-grid,
.services-grid,
.steps-row,
.packages-grid,
.equip-grid,
.events-grid,
.stats-inner,
.faq-grid {
  text-align: left;
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS — SECTION TAG
═══════════════════════════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS — BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
}

.btn-full { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   COMPONENTS — LOGO & BRAND
═══════════════════════════════════════════════════════════ */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.site-brand:hover {
  transform: scale(1.05);
}

.logo-svg {
  width: 56px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.site-brand--sm .logo-svg { width: 40px; }
.brand-name--sm { font-size: 1.25rem; }

/* ═══════════════════════════════════════════════════════════
   COMPONENTS — CARDS
═══════════════════════════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bg-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   COMPONENTS — PHOTO PLACEHOLDER
═══════════════════════════════════════════════════════════ */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

.photo-placeholder svg { 
  width: 48px; 
  height: 48px; 
  opacity: 0.6;
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 1 — HERO
═══════════════════════════════════════════════════════════ */
.hero {
  background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              linear-gradient(180deg, var(--bg-base) 0%, var(--bg-dark) 100%);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero .container { 
  position: relative; 
  z-index: 1; 
}

.hero .site-brand { 
  margin-bottom: 80px; 
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  padding: 12px 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '✨';
  font-size: 1rem;
}

.hero-title {
  margin-bottom: 32px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  font-weight: 800;
}

.hero-title .gradient-text {
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  flex-shrink: 0;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 360px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 2 — ABOUT
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-photo {
  width: 100%;
  aspect-ratio: 1;
  min-height: 400px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.about-text .section-tag { display: block; }
.about-text h2 { margin-bottom: 32px; }
.about-text p { margin-bottom: 24px; font-size: 1.125rem; }
.about-text p:last-of-type { margin-bottom: 40px; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 12px 0;
}

.check-list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--success);
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 3 — SERVICES
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  padding: 16px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: rgba(99, 102, 241, 0.2);
  transform: scale(1.1);
}

.service-icon svg { 
  width: 100%; 
  height: 100%; 
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--white);
}

.service-card p { 
  font-size: 1rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 4 — HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

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

.step-num {
  font-size: 3rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.step-card h3 { 
  margin-bottom: 16px; 
  font-size: 1.125rem;
  color: var(--white);
}

.step-card p { 
  font-size: 0.9375rem;
  line-height: 1.6;
}

.step-connector {
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector svg { 
  width: 40px; 
  height: 32px; 
  opacity: 0.4;
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 5 — PACKAGES
═══════════════════════════════════════════════════════════ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: all 0.4s ease;
}

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

.pkg-card--featured {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-accent);
}

.pkg-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-gradient);
  opacity: 0.05;
  border-radius: var(--radius-lg);
}

.pkg-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-accent);
}

.pkg-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pkg-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  padding: 12px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius);
}

.pkg-icon svg { 
  width: 100%; 
  height: 100%;
  color: var(--primary);
}

.pkg-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
}

.pkg-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pkg-features li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.pkg-card--featured .pkg-features li { 
  color: var(--text-primary); 
}

.pkg-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.pkg-card--featured .pkg-price {
  color: var(--white);
}

.pkg-action {
  margin-top: auto;
  padding-top: 24px;
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 6 — EQUIPMENT
═══════════════════════════════════════════════════════════ */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.equip-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease;
}

.equip-item:hover {
  transform: translateY(-4px);
}

.equip-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.equip-info h4 { 
  margin-bottom: 12px; 
  color: var(--white);
  font-size: 1.125rem;
}

.equip-info p { 
  font-size: 1rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 7 — EVENTS
═══════════════════════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.event-card:hover::before {
  opacity: 1;
}

.event-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius);
  transition: all 0.4s ease;
}

.event-card:hover .event-icon {
  background: rgba(99, 102, 241, 0.2);
  transform: scale(1.05);
}

.event-icon svg { 
  width: 100%; 
  height: 100%;
  color: var(--primary);
}

.event-card h4 { 
  margin-bottom: 12px;
  font-size: 1.125rem;
  color: var(--white);
}

.event-card p { 
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 8 — STATS
═══════════════════════════════════════════════════════════ */
.stats {
  background: linear-gradient(135deg, var(--bg-base) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.stats-text .section-tag { display: block; }
.stats-text h2 { margin-bottom: 24px; }
.stats-text p { 
  margin-bottom: 40px;
  font-size: 1.125rem;
}

.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.stat-block:hover::before {
  opacity: 1;
}

.stat-val {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.stat-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 9 — FAQ
═══════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-q {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.faq-a {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   BLOCK 10 — CONTACTS
═══════════════════════════════════════════════════════════ */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  padding: 16px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
  background: rgba(99, 102, 241, 0.2);
  transform: scale(1.1);
}

.contact-icon svg { 
  width: 100%; 
  height: 100%;
  color: var(--primary);
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-display);
}

a.contact-value:hover { 
  color: var(--primary);
}

.contact-address { 
  text-align: center; 
}

.contact-note { 
  font-size: 0.875rem; 
  color: var(--text-muted); 
}

.contacts-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.contacts-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-gradient);
  opacity: 0.03;
  border-radius: var(--radius-xl);
}

.contacts-cta p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.contacts-cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
}

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

.footer-brand .site-brand--sm { 
  margin-bottom: 24px; 
}

.footer-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

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

.footer-col ul li {
  font-size: 1rem;
  color: var(--text-muted);
}

.footer-col ul li a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --section-pad: 96px; }
  .container { padding: 0 24px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { 
    grid-template-columns: 1fr;
    gap: 48px; 
  }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 64px; }
  .faq-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 32px; }
  
  .steps-row {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .step-connector { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 20px; }
  
  .services-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stats-numbers { grid-template-columns: 1fr; }
  .contacts-cta { padding: 48px 32px; }
  .contacts-cta-btns { flex-direction: column; align-items: center; }
  
  .card { padding: 24px; }
  .service-card { padding: 32px 24px; }
  .step-card { padding: 32px 24px; }
  .pkg-card { padding: 28px 20px; }
}