:root {
  /* Триадная цветовая схема в футуристическом стиле */
  --primary-color: #00d1b2; /* Бирюзовый */
  --secondary-color: #ff3860; /* Розовый */
  --tertiary-color: #ffdd57; /* Желтый */
  
  /* Темные вариации основных цветов */
  --primary-dark: #00a08c;
  --secondary-dark: #cc2c4c;
  --tertiary-dark: #e5c64d;
  
  /* Светлые вариации основных цветов */
  --primary-light: #7fffe0;
  --secondary-light: #ff8fa6;
  --tertiary-light: #ffea99;
  
  /* Нейтральные цвета */
  --dark: #121212;
  --darker: #0a0a0a;
  --gray-dark: #333333;
  --gray: #666666;
  --gray-light: #999999;
  --light: #f5f5f5;
  --white: #ffffff;
  
  /* Типографика */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Размеры текста */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem;  /* 36px */
  --text-5xl: 3rem;     /* 48px */
  
  /* Тени */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  
  /* Скругления */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Переходы */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Содержание */
  --container-width: 1200px;
  --container-padding: 1.5rem;
  
  /* Z-индексы */
  --z-0: 0;
  --z-10: 10;
  --z-20: 20;
  --z-30: 30;
  --z-40: 40;
  --z-50: 50;
  --z-header: 100;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

/* Контейнеры */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Заголовки секций */
.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
  color: var(--dark);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-full);
}

.section-title.has-text-white {
  color: var(--white);
}

.section-title.has-text-white:after {
  background: linear-gradient(90deg, var(--white), var(--primary-light));
}

/* Кнопки */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  background-color: var(--primary-color);
  color: var(--white);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: var(--primary-dark);
  color: var(--white);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
}

.button.is-tertiary {
  background-color: var(--tertiary-color);
  color: var(--gray-dark);
}

.button.is-tertiary:hover {
  background-color: var(--tertiary-dark);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid currentColor;
}

.button.is-outlined.is-primary {
  color: var(--primary-color);
}

.button.is-outlined.is-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.button.is-outlined.is-white {
  color: var(--white);
  border-color: var(--white);
}

.button.is-outlined.is-white:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.button.is-large {
  font-size: var(--text-lg);
  padding: 1rem 2rem;
}

.button.is-fullwidth {
  width: 100%;
}

.button.is-rounded {
  border-radius: var(--radius-full);
}

/* Хедер */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-header);
  box-shadow: var(--shadow);
  transition: background-color var(--transition);
}

.header.is-transparent {
  background-color: transparent;
  box-shadow: none;
}

.header.is-scrolled {
  background-color: rgba(10, 10, 10, 0.95);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand .title {
  font-size: var(--text-2xl);
  margin-bottom: 0;
  color: var(--white);
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-end {
  display: flex;
  align-items: center;
}

.navbar-item {
  color: var(--white);
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-color);
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  position: relative;
  color: var(--white);
}

.navbar-burger span {
  background-color: currentColor;
  display: block;
  height: 2px;
  width: 24px;
  position: absolute;
  left: calc(50% - 12px);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 8px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 6px);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero секция */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero.is-fullheight {
  height: 100vh;
  min-height: 600px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-body {
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 4rem 0;
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--text-3xl);
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: var(--text-lg);
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--white) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.progress-indicator {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
}

.progress-bar {
  width: 60px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background-color: var(--white);
  border-radius: var(--radius-full);
  animation: progress-animation 2s infinite;
}

@keyframes progress-animation {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

/* Mission секция */
.mission-section {
  background-color: var(--white);
  padding: 6rem 0;
}

.mission-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-image-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 600px;
}

.mission-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.mission-image-container:hover img {
  transform: scale(1.03);
}

.mission-text {
  max-width: 800px;
}

.mission-text p {
  font-size: var(--text-lg);
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
}

.mission-stats {
  margin-top: 2rem;
}

.stat-box {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid var(--primary-color);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: var(--text-base);
  color: var(--gray);
  font-weight: 500;
}

/* Insights секция */
.insights-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  position: relative;
}

.insights-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.insight-card {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 209, 178, 0.3);
}

.card-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.insight-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
  color: var(--dark);
}

.card-content p {
  font-size: var(--text-base);
  margin-bottom: 1.5rem;
  color: var(--gray);
  flex-grow: 1;
}

.progress-container {
  margin-top: auto;
}

.progress-label {
  font-size: var(--text-sm);
  color: var(--gray);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--light);
  overflow: hidden;
}

.progress::-webkit-progress-bar {
  background-color: var(--light);
  border-radius: var(--radius-full);
}

.progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

/* Recursos Externos секция */
.recursos-section {
  background-color: var(--light);
  padding: 6rem 0;
}

.resource-card {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--primary-color);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.resource-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
}

.resource-card h3 a {
  color: var(--dark);
  transition: color var(--transition-fast);
}

.resource-card h3 a:hover {
  color: var(--primary-color);
}

.resource-card p {
  font-size: var(--text-base);
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  color: var(--white);
}

.tag.is-primary {
  background-color: var(--primary-color);
}

.tag.is-info {
  background-color: #3298dc;
}

/* Webinars секция */
.webinars-section {
  background-color: var(--white);
  padding: 6rem 0;
}

.webinar-card {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.webinar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 209, 178, 0.3);
}

.webinar-card .image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.webinar-card .image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.webinar-card:hover .image-container img {
  transform: scale(1.05);
}

.webinar-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.date-day {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
}

.webinar-meta {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.webinar-meta p {
  display: flex;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.webinar-meta p i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Blog секция */
.blog-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  position: relative;
}

.blog-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.blog-card {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 56, 96, 0.3);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-date {
  font-weight: 500;
}

.blog-author {
  font-style: italic;
}

/* Clientele секция */
.clientele-section {
  background-color: var(--light);
  padding: 6rem 0;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.client-testimonial-container {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.client-testimonial-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.client-image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin-right: 1.5rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 4px solid var(--primary-light);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-testimonial {
  flex-grow: 1;
}

.client-testimonial p {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.client-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-color);
}

.client-logos {
  margin-top: 4rem;
}

.client-logos img {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition), opacity var(--transition);
  margin: 0 auto;
}

.client-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Media секция */
.media-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  position: relative;
}

.media-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.media-card {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 221, 87, 0.3);
}

/* FAQ секция */
.faq-section {
  background-color: var(--white);
  padding: 6rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light);
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background-color: var(--primary-color);
  color: var(--white);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background-color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-answer p {
  padding: 0 0 1.5rem;
  font-size: var(--text-base);
  color: var(--gray);
}

/* Contact секция */
.contact-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  position: relative;
}

.contact-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}

.contact-item div {
  flex-grow: 1;
}

.contact-item h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-item p {
  font-size: var(--text-sm);
  color: var(--gray-light);
  margin-bottom: 0.25rem;
}

.contact-form-container {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  transition: box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.contact-form .checkbox {
  display: flex;
  align-items: center;
}

.contact-form .checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--dark);
  padding: 4rem 0 2rem;
  color: var(--gray-light);
}

.footer-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-description {
  font-size: var(--text-base);
  margin-bottom: 1.5rem;
  color: var(--gray-light);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

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

.footer-links {
  list-style: none;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

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

.footer-certification {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.footer-certification img {
  margin-right: 1rem;
  width: 80px;
  height: auto;
}

.footer-certification p {
  font-size: var(--text-xs);
  color: var(--gray-light);
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--gray-light);
}

/* Параллакс эффект */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Success страница */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light);
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.success-title {
  font-size: var(--text-3xl);
  color: var(--dark);
  margin-bottom: 1rem;
}

.success-message {
  font-size: var(--text-lg);
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Стили для static pages (privacy, terms) */
.static-page {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.static-page .container {
  max-width: 800px;
}

.static-page h1 {
  font-size: var(--text-4xl);
  margin-bottom: 2rem;
}

.static-page h2 {
  font-size: var(--text-2xl);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.static-page p {
  margin-bottom: 1.5rem;
}

.static-page ul, 
.static-page ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.static-page li {
  margin-bottom: 0.5rem;
}

/* Cookie Consent */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#acceptCookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color var(--transition-fast);
}

#acceptCookies:hover {
  background-color: var(--primary-dark);
}

/* Медиа запросы */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--darker);
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .navbar-item {
    padding: 0.75rem 1.5rem;
    width: 100%;
  }
  
  .navbar-burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .client-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-2xl);
  }
}

@media screen and (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .button {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .client-testimonial-container {
    flex-direction: column;
    text-align: center;
  }
  
  .client-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .footer {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-certification {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-certification img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-xl);
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .contact-item {
    flex-direction: column;
  }
  
  .contact-item i {
    margin-right: 0;
    margin-bottom: 0.5rem;
    width: auto;
  }
  
  .stat-number {
    font-size: var(--text-3xl);
  }
}
.navbar-item {
    color: #928c8c;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}