/* ══════════════════════════════════════════════════════════════
   БАЗОВЫЕ СТИЛИ
   ══════════════════════════════════════════════════════════════ */

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

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.Jacobs {
  height: 120px !important;
}

/* ══════════════════════════════════════════════════════════════
   УТИЛИТЫ
   ══════════════════════════════════════════════════════════════ */

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

.section { 
  padding: 100px 0; 
}

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

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

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

.section-sub {
  font-size: 17px; 
  color: var(--muted); 
  max-width: 640px; 
  line-height: 1.7;
}

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