:root {
  /* Неоморфная цветовая схема с раздельно-дополнительными цветами */
  --primary-color: #f22c22;       /* Основной красный */
  --primary-dark: #d01c12;        /* Темный красный */
  --primary-light: #ff5a52;       /* Светлый красный */
  
  --secondary-color: #0a85c2;     /* Дополнительный синий */
  --secondary-dark: #086a9e;      /* Темный синий */
  --secondary-light: #3da9e3;     /* Светлый синий */
  
  --accent-color: #ffc107;        /* Акцентный желтый */
  --accent-dark: #e0a800;         /* Темный желтый */
  --accent-light: #ffdb4d;        /* Светлый желтый */
  
  --background-light: #f8f9fa;    /* Светлый фон */
  --background-medium: #e9ecef;   /* Средний фон */
  --background-dark: #343a40;     /* Темный фон */
  
  --text-dark: #212529;           /* Темный текст */
  --text-medium: #495057;         /* Средний текст */
  --text-light: #f8f9fa;          /* Светлый текст */
  
  /* Неоморфные тени */
  --neomorphic-light: 8px 8px 16px rgba(200, 200, 200, 0.5);
  --neomorphic-dark: -8px -8px 16px rgba(255, 255, 255, 0.8);
  --neomorphic-pressed: inset 4px 4px 8px rgba(200, 200, 200, 0.5), 
                        inset -4px -4px 8px rgba(255, 255, 255, 0.8);
  
  /* Динамические переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
  
  /* Скругления */
  --border-radius-small: 5px;
  --border-radius-medium: 10px;
  --border-radius-large: 20px;
  
  /* Контейнеры */
  --container-padding: 2rem;
  --section-spacing: 5rem;
}

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

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

body {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 1rem auto 2rem;
  border-radius: var(--border-radius-small);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

section {
  padding: 4rem 0;
  position: relative;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-medium);
  font-size: 1.1rem;
}

/* Кнопки */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-medium);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  box-shadow: var(--neomorphic-light);
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translateY(0);
  box-shadow: var(--neomorphic-pressed);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-dark);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--text-dark);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Хедер и навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
  width: auto;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
}

.desktop-nav li {
  margin-left: 1.5rem;
}

.desktop-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--text-dark);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 1rem;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition-fast);
  display: block;
  padding: 0.5rem 0;
}

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

/* Hero секция */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 180px 0 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--text-light);
  animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideUp 1s ease-in-out;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideUp 1.2s ease-in-out;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: slideUp 1.4s ease-in-out;
}

/* Секция Vision */
.vision {
  background-color: var(--background-light);
}

.vision-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.vision-image {
  flex: 0 0 45%;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neomorphic-light);
  transition: transform var(--transition-medium);
}

.vision-image:hover {
  transform: translateY(-10px);
}

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

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

.vision-text {
  flex: 0 0 55%;
}

.vision-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Секция Statistics */
.statistics {
  background-color: var(--background-medium);
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  flex: 0 0 calc(25% - 2rem);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neomorphic-light);
  transition: transform var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-medium);
}

.stat-map {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neomorphic-light);
}

.stat-map img {
  width: 100%;
  height: auto;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
}

.map-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
}

/* Секция Workshops (Сервисы) */
.workshops {
  background-color: var(--background-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.services-grid .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neomorphic-light);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.services-grid .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.services-grid .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.services-grid .card-content {
  padding: 1.5rem;
  text-align: center;
}

.services-grid .card-content h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Секция External Resources (Новости) */
.external-resources {
  background-color: var(--background-medium);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-medium);
  padding: 2rem;
  box-shadow: var(--neomorphic-light);
  transition: transform var(--transition-medium);
}

.resource-card:hover {
  transform: translateY(-10px);
}

.resource-card h3 {
  margin-bottom: 1rem;
}

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

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

/* Секция Case Studies (Наши станции) */
.case-studies {
  background-color: var(--background-light);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
  border-radius: var(--border-radius-small);
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(242, 44, 34, 0.3);
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neomorphic-light);
}

.timeline-item .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.timeline-item .card-content {
  padding: 1.5rem;
  text-align: center;
}

.timeline-item .card-content h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Секция Team */
.team {
  background-color: var(--background-medium);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-grid .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neomorphic-light);
  transition: transform var(--transition-medium);
}

.team-grid .card:hover {
  transform: translateY(-10px);
}

.team-grid .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

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

.team-grid .card-content {
  padding: 1.5rem;
  text-align: center;
}

.team-grid .card-content h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-grid .position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

/* Секция Our Process */
.our-process {
  background-color: var(--background-light);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius-small);
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: var(--neomorphic-light);
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-fast);
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

.step-content {
  flex: 1;
  padding: 2rem 2rem 2rem 4rem;
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neomorphic-light);
  transition: transform var(--transition-medium);
}

.process-step:hover .step-content {
  transform: translateX(10px);
}

.step-content h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Секция Behind Scenes */
.behind-scenes {
  background-color: var(--background-medium);
}

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 3rem;
}

.scene-card {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neomorphic-light);
}

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

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

.scene-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  transform: translateY(0);
  transition: transform var(--transition-medium);
}

.scene-card:hover .scene-content {
  transform: translateY(-10px);
}

.scene-content h3 {
  color: white;
  margin-bottom: 1rem;
}

/* Секция FAQ */
.faq {
  background-color: var(--background-light);
}

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

.faq-item {
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neomorphic-light);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(242, 44, 34, 0.05);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  flex: 1;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Секция Blog */
.blog {
  background-color: var(--background-medium);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-grid .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--neomorphic-light);
  transition: transform var(--transition-medium);
}

.blog-grid .card:hover {
  transform: translateY(-10px);
}

.blog-grid .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.blog-grid .card-content {
  padding: 1.5rem;
  text-align: center;
}

.blog-grid .date {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-medium);
  font-size: 0.875rem;
}

.blog-grid .card-content h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.blog-grid .btn {
  margin-top: 1rem;
}

/* Секция Contact */
.contact {
  background-color: var(--background-light);
}

.contact-container {
  display: flex;
  gap: 3rem;
}

.contact-form {
  flex: 0 0 60%;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input, 
select, 
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-small);
  font-family: 'Merriweather', serif;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, 
select:focus, 
textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(10, 133, 194, 0.2);
}

.contact-info {
  flex: 0 0 35%;
}

.info-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neomorphic-light);
}

.info-item h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.info-item p {
  margin-bottom: 0.5rem;
}

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

.social-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-small);
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
}

/* Футер */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 0 0 100%;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-logo img {
  max-height: 75px;
  margin: 0 auto;
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-nav-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1.5rem;
}

.footer-nav-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
}

.footer-nav-column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-small);
}

.footer-nav-column ul {
  list-style: none;
}

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

.footer-nav-column a {
  color: #ddd;
  transition: color var(--transition-fast);
}

.footer-nav-column a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.875rem;
  color: #aaa;
}

.footer .social-links a {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* Страницы Terms и Privacy */
.terms-content,
.privacy-content {
  padding-top: 100px;
}

/* Страница Success */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neomorphic-light);
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.success-content p {
  margin-bottom: 2rem;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Адаптивный дизайн */
@media (max-width: 1200px) {
  .timeline::before {
    left: 50px;
  }
  
  .timeline-item::before {
    left: 50px;
  }
  
  .timeline-content {
    width: calc(100% - 100px);
    margin-left: 100px !important;
  }
  
  .scenes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .vision-content {
    flex-direction: column;
  }
  
  .vision-image, 
  .vision-text {
    flex: 0 0 100%;
  }
  
  .stat-card {
    flex: 0 0 calc(50% - 2rem);
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-form,
  .contact-info {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-card {
    flex: 0 0 100%;
  }
  
  .footer-nav {
    flex-direction: column;
  }
  
  .footer-nav-column {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .services-grid,
  .resources-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
  }
  
  .step-content {
    padding: 1.5rem;
  }
  
  .process-timeline::before {
    display: none;
  }
}