:root {
  /* Colors */
  --bg-dark: #0A0A0A;
  --bg-darker: #050505;
  --bg-light: #FFFFFF;
  --bg-gray: #F5F5F7;
  --bg-gray-2: #ECECEE;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --text-muted: #6B7280;
  --text-muted-dark: #9CA3AF;
  --accent: #F6218F;
  --accent-hover: #D31878;
  /* RGB-триплет акцента — через него идут все полупрозрачные оттенки (soft/тени/градиенты),
     чтобы per-city смена цвета (layout инжектит --accent/-hover/-rgb) перекрашивала ВСЁ. */
  --accent-rgb: 246, 33, 143;
  --accent-soft: rgba(var(--accent-rgb), 0.1);
  --success: #10B981;
  --warning: #F59E0B;
  --border: #E5E7EB;
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Fonts */
  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.16);
  --shadow-accent: 0 8px 24px rgba(var(--accent-rgb), 0.25);

  /* Container */
  --container: 1280px;
  --container-narrow: 1080px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layers */
  --z-header: 100;
  --z-sticky: 90;
  --z-popup: 1000;
  --z-overlay: 999;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-light);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { line-height: 1.6; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container-narrow {
  max-width: var(--container-narrow);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-8); }
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-20) 0; }
}

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

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

.section-head {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-head__eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-head__title {
  margin-bottom: var(--space-4);
}

.section-head__sub {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

.section--dark .section-head__sub {
  color: var(--text-muted-dark);
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.hidden { display: none !important; }

@media (max-width: 767px) {
  .desktop-only { display: none !important; }
}
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
}
