:root {
  /* Современная цветовая палитра */
  --primary: #7c3aed;          /* Фиолетовый */
  --primary-dark: #5b21b6;     /* Темный фиолетовый */
  --primary-light: #a78bfa;    /* Светлый фиолетовый */
  
  --secondary: #f59e0b;        /* Янтарь */
  --secondary-dark: #d97706;   /* Темный янтарь */
  --secondary-light: #fbbf24;  /* Светлый янтарь */
  
  --accent: #10b981;           /* Изумруд */
  --accent-dark: #059669;      /* Темный изумруд */
  --accent-light: #34d399;     /* Светлый изумруд */
  
  /* Нейтральные цвета */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Фоновые цвета */
  --bg-primary: #0f172a;       /* Темно-синий фон */
  --bg-secondary: #1e293b;     /* Вторичный фон */
  --bg-card: #334155;          /* Фон карточек */
  --bg-overlay: rgba(15, 23, 42, 0.8);
  
  /* Текстовые цвета */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-bg: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  
  /* Тени */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Скругления */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Анимации */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* Сброс стилей */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Varela Round', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gradient-bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* Утилиты */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: rgba(30, 41, 59, 0.5);
}

/* Баннер возраста */
.age-bar {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 0;
}

.age-bar .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.age-pill {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* Хедер */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.brand__logo--sm {
  width: 36px;
  height: 36px;
}

.brand__name {
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.025em;
}

/* Навигация */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav a:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

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

.nav a:hover::after {
  width: 100%;
}

.nav i {
  font-size: 1rem;
  color: var(--primary);
}

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

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

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

.btn--secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-1px);
}

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

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

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn--full {
  width: 100%;
}

/* Герой секция */
.hero {
  padding: 6rem 0;
  background: 
    radial-gradient(800px 400px at 20% 0%, rgba(124, 58, 237, 0.15), transparent 60%),
    radial-gradient(600px 300px at 80% 0%, rgba(16, 185, 129, 0.1), transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 60ch;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__card {
  background: rgba(51, 65, 85, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  transition: all var(--transition-normal);
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.score {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.score span {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.hero__logo {
  height: 48px;
  margin: 1rem 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.bullets i {
  color: var(--accent);
  font-size: 1rem;
}

.micro {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
}

/* Main content */
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card h3 i {
  color: var(--primary);
  font-size: 1.25rem;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Sidebar */
.aside {
  background: rgba(51, 65, 85, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.tick {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.tick li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.tick li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.125rem;
}

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

/* Секция с выделением */
.highlight {
  background: rgba(51, 65, 85, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid var(--accent);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  padding: 2rem;
  margin: 2rem 0;
}

.highlight__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.rating__value {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--text-primary);
  text-align: center;
}

.rating__value span {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.rating__stars {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: var(--secondary);
  text-align: center;
}

.brandline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.brandline__logo {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.brandline__name {
  text-transform: lowercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--secondary);
  font-size: 1.5rem;
}

.hl-title {
  margin: 0.75rem 0 1rem;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--text-primary);
}

.hl-bullets {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.hl-bullets li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.hl-bullets i {
  color: var(--accent);
  margin-top: 0.25rem;
}

/* Секция ответственного гемблинга */
.list-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.list-cards li {
  background: rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.list-cards li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.list-cards i {
  color: var(--accent);
  font-size: 1.125rem;
}

.panel {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

/* Форма контакта */
.form {
  display: grid;
  gap: 1.5rem;
  background: rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form label {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form label i {
  color: var(--primary);
}

.form input,
.form select,
.form textarea {
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  padding: 1rem;
  outline: none;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  transform: translateY(-1px);
}

.form-inline {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.form-inline input {
  flex: 1;
}

.newsletter {
  background: rgba(51, 65, 85, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.newsletter h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter h3 i {
  color: var(--secondary);
}

.newsletter p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.links ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.links li {
  margin-bottom: 0.75rem;
}

.links a {
  text-decoration: none;
  color: var(--text-secondary);
  opacity: 0.85;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.links a:hover {
  opacity: 1;
  color: var(--primary);
}

.links i {
  color: var(--primary);
}

/* Дисклеймер */
.disclaimer {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  padding: 2rem;
  margin: 3rem auto;
  box-shadow: var(--shadow-2xl);
  transition: all var(--transition-normal);
}

.disclaimer:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

.disclaimer h3 {
  text-align: center;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.disclaimer p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.responsable-logos {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.responsable-logos img {
  height: 50px;
  filter: grayscale(100%) brightness(1.2);
  transition: all var(--transition-fast);
}

.responsable-logos img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

/* Футер */
.site-footer {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  color: var(--text-secondary);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 1fr;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand strong {
  font-size: 1.25rem;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--secondary-light);
}

.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
  color: var(--text-muted);
}

.footer-copy i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

/* Баннер cookies */
.cookies {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies__inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.cookies p {
  margin: 0;
  color: var(--text-secondary);
  flex: 1;
}

.cookies a {
  color: var(--primary);
  text-decoration: underline;
}

/* Заголовки */
h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 1rem;
}

h2 i {
  color: var(--primary);
  font-size: 2rem;
}

h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

ul {
  margin: 0 0 1rem 1.5rem;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Страницы контента */
.content-page {
  padding: 3rem 0;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.page-header h1 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
}

.page-header h1 i {
  color: var(--primary);
  font-size: 2.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  gap: 3rem;
  align-items: start;
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-section {
  background: rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.content-section:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.content-section h2 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.content-section h2 i {
  color: var(--primary);
  font-size: 1.5rem;
}

.content-section h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-section h3 i {
  color: var(--secondary);
  font-size: 1.25rem;
}

.content-section h4 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-section h4 i {
  color: var(--accent);
  font-size: 1rem;
}

/* Информационные карточки */
.info-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: all var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.warning-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.warning-card h3 {
  margin-bottom: 1rem;
  color: #fca5a5;
}

.contact-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-card p {
  margin-bottom: 1.5rem;
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.sidebar-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-card h3 i {
  color: var(--primary);
  font-size: 1.25rem;
}

.sidebar-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.sidebar-links {
  background: rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.sidebar-links h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-links h4 i {
  color: var(--secondary);
  font-size: 1rem;
}

.sidebar-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.75rem;
}

.sidebar-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.sidebar-links a:hover {
  color: var(--primary);
}

.sidebar-links i {
  color: var(--primary);
  font-size: 0.875rem;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .highlight__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta {
    justify-content: flex-start;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero__text h1 {
    font-size: 2.5rem;
  }
  
  .hero__text p {
    font-size: 1.125rem;
  }
  
  .cta-row {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .header-grid {
    flex-direction: column;
    gap: 1rem;
  }
  
  .list-cards {
    grid-template-columns: 1fr;
  }
  
  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookies__inner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .page-header h1 i {
    font-size: 2rem;
  }
  
  .content-section {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__text h1 {
    font-size: 2rem;
  }
  
  .hero__text p {
    font-size: 1rem;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .content-section {
    padding: 1rem;
  }
  
  .sidebar-card,
  .sidebar-links {
    padding: 1rem;
  }
  
  .hero__card {
    padding: 1.5rem;
  }
  
  .highlight {
    padding: 1.5rem;
  }
}

/* Анимации */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.content-section {
  animation: slideInUp 0.6s ease-out;
}

.content-section:nth-child(1) { animation-delay: 0.1s; }
.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.3s; }
.content-section:nth-child(4) { animation-delay: 0.4s; }
.content-section:nth-child(5) { animation-delay: 0.5s; }
.content-section:nth-child(6) { animation-delay: 0.6s; }

.sidebar-card {
  animation: fadeIn 0.8s ease-out;
}

.sidebar-card:nth-child(1) { animation-delay: 0.2s; }
.sidebar-card:nth-child(2) { animation-delay: 0.4s; }
.sidebar-card:nth-child(3) { animation-delay: 0.6s; }
.sidebar-card:nth-child(4) { animation-delay: 0.8s; }

.card {
  animation: slideInUp 0.6s ease-out;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* Дополнительные эффекты */
.accent {
  color: var(--primary);
  font-weight: 700;
}

/* Улучшения для существующих компонентов */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

/* Улучшения для форм */
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  transform: translateY(-1px);
}

/* Улучшения для кнопок */
.btn:active {
  transform: translateY(0);
}

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

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* Улучшения для навигации */
.nav a {
  position: relative;
}

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

.nav a:hover::after {
  width: 100%;
}

/* Улучшения для бренда */
.brand:hover .brand__name {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Улучшения для героя */
.hero__card {
  transition: all var(--transition-normal);
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

/* Улучшения для дисклеймера */
.disclaimer {
  transition: all var(--transition-normal);
}

.disclaimer:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

/* Улучшения для футера */
.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.footer-links a:hover::after {
  width: 100%;
}

/* ===== НОВЫЕ ASIDE ЭЛЕМЕНТЫ ===== */
.aside-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.aside-header h3 {
  margin: 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.375rem;
}

.aside-header h3 i {
  color: var(--primary);
  font-size: 1.75rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
}

.aside-content {
  margin-bottom: 2.5rem;
}

/* Элементы доверия для главной страницы */
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-fast);
}

.trust-item:hover {
  background: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.trust-text h4 {
  margin: 0 0 0.75rem 0;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.trust-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Информационные элементы для контакта */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-fast);
}

.info-item:hover {
  background: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.info-text h4 {
  margin: 0 0 0.75rem 0;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.info-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-text a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.info-text a:hover {
  color: var(--primary-dark);
}

/* Элементы защиты для страницы конфиденциальности */
.protection-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(51, 65, 85, 0.4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.protection-item:hover {
  background: rgba(51, 65, 85, 0.6);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.protection-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.protection-text h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

.protection-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Элементы типов cookies */
.cookie-type-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(51, 65, 85, 0.4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.cookie-type-item:hover {
  background: rgba(51, 65, 85, 0.6);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cookie-type-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.cookie-type-text h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

.cookie-type-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Элементы условий */
.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(51, 65, 85, 0.4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.terms-item:hover {
  background: rgba(51, 65, 85, 0.6);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.terms-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.terms-text h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
}

.terms-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.aside-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-200);
}

/* ===== ОБЪЕДИНЕННЫЙ ФУТЕР С ДИСКЛЕЙМЕРОМ ===== */
.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.footer-disclaimer h3 {
  text-align: center;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.footer-disclaimer h3 i {
  color: var(--secondary);
  font-size: 1.5rem;
}

.disclaimer-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.footer-copy {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-copy i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦ КОНТЕНТА ===== */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.page-header h1 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
  font-weight: 900;
}

.page-header h1 i {
  color: var(--primary);
  font-size: 2.5rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  gap: 3rem;
  align-items: start;
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-section {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.content-section:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.content-section h2 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.content-section h2 i {
  color: var(--primary);
  font-size: 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
}

.content-section h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.content-section h3 i {
  color: var(--secondary);
  font-size: 1.25rem;
  background: rgba(249, 115, 22, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
}

.content-section h4 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.content-section h4 i {
  color: var(--accent);
  font-size: 1rem;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
}

/* Информационные карточки */
.info-card {
  background: var(--bg-secondary);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: all var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card h3 i {
  color: var(--secondary);
  background: rgba(249, 115, 22, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
}

.warning-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.warning-card h3 {
  margin-bottom: 1rem;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.warning-card h3 i {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
}

.contact-card {
  background: var(--bg-secondary);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.contact-card h3 i {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
}

.contact-card p {
  margin-bottom: 1.5rem;
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.sidebar-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.sidebar-card h3 i {
  color: var(--primary);
  font-size: 1.25rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
}

.sidebar-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.sidebar-links {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.sidebar-links h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.sidebar-links h4 i {
  color: var(--secondary);
  font-size: 1rem;
  background: rgba(249, 115, 22, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
}

.sidebar-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.75rem;
}

.sidebar-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.sidebar-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.sidebar-links i {
  color: var(--primary);
  font-size: 0.875rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
}

/* Адаптивность */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .aside-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .trust-item,
  .info-item,
  .protection-item,
  .cookie-type-item,
  .terms-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .aside-header h3 {
    font-size: 1.125rem;
  }
  
  .aside-header h3 i {
    font-size: 1.25rem;
  }
  
  .trust-icon,
  .info-icon,
  .protection-icon,
  .cookie-type-icon,
  .terms-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-disclaimer {
    padding: 1.5rem;
  }
  
  .footer-disclaimer h3 {
    font-size: 1.125rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-disclaimer h3 i {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .aside-content {
    grid-template-columns: 1fr;
  }
  
  .footer-disclaimer {
    padding: 1rem;
  }
  
  .disclaimer-content p {
    font-size: 0.875rem;
  }
}

/* ===== НОВАЯ HERO СЕКЦИЯ ===== */
.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.7) 0%, 
    rgba(118, 75, 162, 0.7) 50%, 
    rgba(240, 147, 251, 0.7) 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

/* Левая колонка - контент */
.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.hero-badge i {
  color: #fbbf24;
  font-size: 1rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fbbf24;
}

.hero-title-year {
  display: inline-block;
  font-size: 4rem;
  font-weight: 900;
  color: #10b981;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #e5e7eb;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fbbf24;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: #d1d5db;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn--hero-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1f2937;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn--hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn--hero-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--hero-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.trust-icons {
  display: flex;
  gap: 0.5rem;
}

.trust-icons i {
  color: #10b981;
  font-size: 1rem;
}

/* Правая колонка - карточка */
.hero-card-wrapper {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #10b981, #7c3aed);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rating-badge {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: #fbbf24;
}

.rating-max {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 600;
}

.card-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.card-logo {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.partner-logo {
  width: 480px;
  height: 180px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1rem;
}

.card-bonus {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bonus-amount {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
}

.bonus-text {
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 600;
}

.card-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #374151;
}

.feature-item i {
  color: #10b981;
  font-size: 1rem;
}

.btn--card-cta {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.btn--card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.card-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.safety-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 600;
}

.terms {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
}

/* Плавающие элементы */
.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  top: -30px;
  right: -30px;
  animation-delay: 0s;
}

.floating-2 {
  bottom: -30px;
  right: 50px;
  animation-delay: 2s;
}

.floating-3 {
  top: 50%;
  right: -40px;
  animation-delay: 4s;
}

/* Адаптивность для hero */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .hero-title-main {
    font-size: 2.5rem;
  }
  
  .hero-title-accent {
    font-size: 2rem;
  }
  
  .hero-title-year {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn--hero-primary,
  .btn--hero-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 1.5rem;
  }
  
  .hero-title-main {
    font-size: 2rem;
  }
  
  .hero-title-accent {
    font-size: 1.5rem;
  }
  
  .hero-title-year {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .floating-element {
    display: none;
  }
}

/* ===== НОВАЯ СЕКЦИЯ "О НАС" ===== */
.about-new {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  overflow: hidden;
}

.about-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  animation: pattern-float 30s ease-in-out infinite;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.8) 0%, 
    rgba(226, 232, 240, 0.8) 50%, 
    rgba(203, 213, 225, 0.8) 100%);
}

@keyframes pattern-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.about-container {
  position: relative;
  z-index: 2;
}

/* Section header */
.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: white;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.about-badge i {
  color: #fbbf24;
  font-size: 1rem;
}

.about-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.title-brand {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.title-subtitle {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fbbf24;
}

.about-intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Main content */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Карточки */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.card-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #fbbf24, #10b981);
}

/* Специфичные стили для карточек */
.criteria-list {
  list-style: none;
  padding: 0;
}

.criteria-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #4b5563;
  font-size: 0.875rem;
}

.criteria-list i {
  color: #10b981;
  font-size: 1rem;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
}

.commitment-item i {
  color: #fbbf24;
  font-size: 1rem;
}

.independence-proof {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 0.875rem;
}

.proof-item i {
  color: #7c3aed;
  font-size: 1rem;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-box {
  text-align: center;
  padding: 1rem;
  background: rgba(124, 58, 237, 0.05);
  border-radius: 12px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7c3aed;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

/* Sidebar */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trust-block,
.transparency-block,
.achievements-block {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-header h3,
.transparency-header h3,
.achievements-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-header i,
.transparency-header i,
.achievements-header i {
  color: #fbbf24;
  font-size: 1.125rem;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.trust-text p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.transparency-block p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.transparency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.achievements-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(251, 191, 36, 0.05);
  border-radius: 12px;
}

.achievement-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.achievement-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.achievement-text p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* CTA block */
.about-cta {
  background: linear-gradient(135deg, #1f2937, #374151);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.cta-content p {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--cta-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn--cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn--cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--cta-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Адаптивность для about секции */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-cards {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn--cta-primary,
  .btn--cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .about-new {
    padding: 4rem 0;
  }
  
  .title-main {
    font-size: 2rem;
  }
  
  .title-brand {
    font-size: 3rem;
  }
  
  .title-subtitle {
    font-size: 2.5rem;
  }
  
  .about-intro {
    font-size: 1.125rem;
  }
  
  .about-cta {
    padding: 2rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-cards {
    gap: 1.5rem;
  }
  
  .about-card {
    padding: 1.5rem;
  }
  
  .title-main {
    font-size: 1.75rem;
  }
  
  .title-brand {
    font-size: 2.5rem;
  }
  
  .title-subtitle {
    font-size: 2rem;
  }
  
  .about-cta {
    padding: 1.5rem;
  }
  
  .commitment-grid {
    grid-template-columns: 1fr;
  }
  
  .community-stats {
    grid-template-columns: 1fr;
  }
}


/* ===== MODERN CONTACT SECTION ===== */
.contact-new {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
  background-image: url('../images/htp_re.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
  animation: pattern-float 30s ease-in-out infinite;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(240, 249, 255, 0.5) 0%, 
    rgba(224, 242, 254, 0.5) 50%, 
    rgba(186, 230, 253, 0.4) 100%);
}

.contact-container {
  position: relative;
  z-index: 2;
}

/* Section header */
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.contact-badge i {
  color: #60a5fa;
  font-size: 1rem;
}

.contact-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.contact-title .title-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-title .title-accent {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Main content */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Левая колонка - форма */
.contact-form-section {
  display: flex;
  flex-direction: column;
}

.form-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.form-header h3 i {
  color: #3b82f6;
  font-size: 1.5rem;
}

.form-header p {
  color: #64748b;
  line-height: 1.6;
}

/* Форма */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.form-group label i {
  color: #3b82f6;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Действия формы */
.form-actions {
  text-align: center;
  margin-top: 1rem;
}

.btn--contact-submit {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn--contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-disclaimer i {
  color: #10b981;
}

.form-disclaimer a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

/* Правая колонка - информация */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Быстрый контакт */
.quick-contact {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-contact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quick-contact h3 i {
  color: #f59e0b;
  font-size: 1.25rem;
}

.quick-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.quick-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  background: rgba(59, 130, 246, 0.1);
}

.quick-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.quick-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.quick-content p {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.25rem;
}

.quick-note {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

/* Часы работы */
.working-hours {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.working-hours h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.working-hours h3 i {
  color: #10b981;
  font-size: 1.25rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 12px;
}

.hours-item .day {
  font-weight: 600;
  color: #1e293b;
}

.hours-item .time {
  font-weight: 700;
  color: #10b981;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  color: #065f46;
  font-size: 0.875rem;
}

.response-time i {
  color: #10b981;
  font-size: 1rem;
}

/* Новостная рассылка */
.newsletter-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.newsletter-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.newsletter-header h3 i {
  color: #f59e0b;
  font-size: 1.25rem;
}

.newsletter-header p {
  color: #64748b;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.newsletter-input {
  position: relative;
  flex: 1;
}

.newsletter-input i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
}

.newsletter-input input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.btn--newsletter {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.benefit-item i {
  color: #10b981;
  font-size: 0.875rem;
}

/* Полезные ссылки */
.useful-links {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.useful-links h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.useful-links h3 i {
  color: #8b5cf6;
  font-size: 1.25rem;
}

.links-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 12px;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.link-item:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateX(4px);
}

.link-item i:first-child {
  color: #8b5cf6;
  font-size: 1rem;
}

.link-item span {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
}

.link-item i:last-child {
  color: #9ca3af;
  font-size: 0.75rem;
}

/* FAQ блок */
.contact-faq {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-faq h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.contact-faq h3 i {
  color: #3b82f6;
  font-size: 1.75rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.faq-item {
  text-align: left;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.875rem;
}

/* Адаптивность для contact секции */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .btn--newsletter {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .contact-new {
    padding: 4rem 0;
  }
  
  .contact-title .title-main {
    font-size: 2rem;
  }
  
  .contact-title .title-accent {
    font-size: 2.5rem;
  }
  
  .contact-intro {
    font-size: 1.125rem;
  }
  
  .form-card {
    padding: 2rem;
  }
  
  .contact-faq {
    padding: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 1.5rem;
  }
  
  .quick-contact,
  .working-hours,
  .newsletter-card,
  .useful-links {
    padding: 1.5rem;
  }
  
  .quick-contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .hours-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .response-time {
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ===== НОВАЯ СЕКЦИЯ "ФУТЕР" ===== */
.footer-new {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: #f8fafc;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
  animation: pattern-float 40s ease-in-out infinite;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.95) 50%, 
    rgba(51, 65, 85, 0.95) 100%);
}

.footer-container {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2rem;
}

/* Основной контент футера */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

/* Левая колонка - бренд */
.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.brand-logo {
  position: relative;
  flex-shrink: 0;
}

.brand-logo .brand__logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  filter: brightness(1.1);
}

.logo-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 16px;
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}

.brand-info {
  flex: 1;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Социальные сети */
.footer-social h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Центральная колонка - навигация */
.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav-group h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 0.75rem;
}

.footer-nav-list a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

/* Правая колонка - контакт и новости */
.footer-contact-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-contact h4,
.footer-newsletter h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
}

.contact-item i {
  color: #60a5fa;
  font-size: 1rem;
  width: 16px;
}

.footer-newsletter p {
  color: #cbd5e1;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter-form-footer {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input-footer {
  position: relative;
  flex: 1;
}

.newsletter-input-footer i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.875rem;
}

.newsletter-input-footer input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.5);
  color: #f8fafc;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.newsletter-input-footer input:focus {
  outline: none;
  border-color: #60a5fa;
  background: rgba(15, 23, 42, 0.8);
}

.newsletter-input-footer input::placeholder {
  color: #64748b;
}

.btn--newsletter-footer {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--newsletter-footer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Блок дисклеймера */
.footer-disclaimer-new {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.disclaimer-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fef2f2;
  margin: 0;
}

.disclaimer-content-new {
  margin-bottom: 2rem;
}

.disclaimer-text p {
  color: #fecaca;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.disclaimer-text p:last-child {
  margin-bottom: 0;
}

.disclaimer-text strong {
  color: #fef2f2;
}

/* Responsible organizations logos */
.responsable-logos-new h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  text-align: center;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #cbd5e1;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.logo-item img {
  filter: brightness(1.2);
}

.logo-item span {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* Нижняя часть футера */
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-copyright i {
  color: #64748b;
}

.copyright-text {
  color: #cbd5e1;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

.separator {
  color: #475569;
  font-size: 0.75rem;
}

/* Адаптивность для футера */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .brand-logo {
    align-self: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-nav-section {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-nav-section {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-nav-group {
    text-align: center;
  }
  
  .footer-contact-section {
    text-align: center;
  }
  
  .newsletter-form-footer {
    flex-direction: column;
  }
  
  .btn--newsletter-footer {
    align-self: center;
  }
  
  .disclaimer-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== НОВАЯ СЕКЦИЯ "AGE-BAR" ===== */
.age-bar-new {
  position: relative;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  color: #ffffff;
  padding: 1rem 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.age-bar-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.age-bar-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: pattern-float 20s ease-in-out infinite;
}

.age-bar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(220, 38, 38, 0.95) 0%, 
    rgba(185, 28, 28, 0.95) 50%, 
    rgba(153, 27, 27, 0.95) 100%);
}

.age-bar-container {
  position: relative;
  z-index: 2;
}

.age-bar-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

/* Возрастной бейдж */
.age-badge-section {
  display: flex;
  justify-content: center;
}

.age-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.age-badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
}

.age-badge-text {
  text-align: center;
}

.age-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.age-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.age-badge-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: glow-sweep 3s ease-in-out infinite;
}

@keyframes glow-sweep {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* Секция предупреждения */
.warning-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.warning-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.warning-content {
  flex: 1;
}

.warning-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.warning-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.warning-text strong {
  color: #fbbf24;
  font-weight: 700;
}

/* Секция помощи */
.help-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.help-header {
  text-align: right;
}

.help-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.help-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}

.help-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.help-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.phone-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.875rem;
}

.phone-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.phone-number {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.phone-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.help-links {
  display: flex;
  gap: 0.75rem;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.help-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.help-link i {
  font-size: 0.875rem;
}

/* Адаптивность для age-bar */
@media (max-width: 1024px) {
  .age-bar-content {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
  }
  
  .help-section {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  
  .help-header {
    text-align: center;
  }
  
  .help-contact {
    align-items: center;
  }
  
  .phone-content {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .age-bar-new {
    padding: 1.5rem 0;
  }
  
  .age-bar-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .warning-section {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }
  
  .age-badge {
    padding: 1rem;
  }
  
  .age-number {
    font-size: 1.25rem;
  }
  
  .warning-title {
    font-size: 1rem;
  }
  
  .warning-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .age-bar-new {
    padding: 1rem 0;
  }
  
  .age-bar-content {
    gap: 1rem;
  }
  
  .age-badge {
    padding: 0.75rem;
  }
  
  .age-number {
    font-size: 1.125rem;
  }
  
  .warning-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .help-phone {
    padding: 0.5rem 0.75rem;
  }
  
  .phone-number {
    font-size: 0.875rem;
  }
}

/* ===== НОВАЯ СЕКЦИЯ "SITE-HEADER" ===== */
.site-header-new {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
  color: #1f2937;
  padding: 1rem 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.header-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
  animation: pattern-float 30s ease-in-out infinite;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.95) 50%, 
    rgba(226, 232, 240, 0.95) 100%);
}

.header-container {
  position: relative;
  z-index: 2;
}

.header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

/* Бренд */
.header-brand-section {
  display: flex;
  justify-content: flex-start;
}

.brand-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.brand-new:hover {
  transform: translateY(-2px);
}

.brand-logo-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
}

.brand__logo-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.logo-glow-new {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  border-radius: 16px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.brand-new:hover .logo-glow-new {
  opacity: 0.3;
}

.brand-info-new {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand__name-new {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Навигация */
.nav-new {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #6b7280;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover {
  color: #1f2937;
  transform: translateY(-2px);
}

.nav-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link:hover .nav-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.nav-text {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* Кнопка контакта */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn--header-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  border: none;
  cursor: pointer;
}

.btn--header-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.btn-text {
  font-weight: 600;
}

/* Мобильное меню */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(59, 130, 246, 0.2);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

  .hamburger-line {
    width: 100%;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  
  /* Анимация гамбургера */
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

/* Мобильная навигация */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2rem;
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  color: #ef4444;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(239, 68, 68, 0.2);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none;
  color: #6b7280;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  transform: translateX(8px);
}

.mobile-nav-link i {
  width: 24px;
  text-align: center;
  font-size: 1.125rem;
}

.mobile-nav-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-phone,
.mobile-email {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 0.875rem;
}

.mobile-phone i,
.mobile-email i {
  width: 20px;
  text-align: center;
}

/* Адаптивность для хедера */
@media (max-width: 1024px) {
  .nav-new {
    gap: 1.5rem;
  }
  
  .nav-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .site-header-new {
    padding: 0.75rem 0;
  }
  
  .header-content {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }
  
  .nav-new {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .brand__name-new {
    font-size: 1.25rem;
  }
  
  .brand__tagline {
    font-size: 0.7rem;
  }
  
  .btn--header-contact {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .btn-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-content {
    gap: 0.75rem;
  }
  
  .brand-logo-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .brand__name-new {
    font-size: 1.125rem;
  }
  
  .btn--header-contact {
    padding: 0.5rem;
  }
  
  .mobile-nav-content {
    width: 100%;
  }
}
