:root {
  /* Футуристическая аналоговая цветовая схема */
  --primary-color: #4a00e0;
  --primary-light: #7a32ff;
  --primary-dark: #2e0080;
  --secondary-color: #00b8d4;
  --secondary-light: #5edfff;
  --secondary-dark: #0088a3;
  --accent-color: #ff4081;
  --accent-light: #ff80ab;
  --accent-dark: #c51162;
  
  /* Нейтральные цвета */
  --background: #f5f7fa;
  --background-dark: #e0e6ed;
  --text-color: #2d3748;
  --text-light: #4a5568;
  --text-white: #ffffff;
  --text-dark: #1a202c;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-dark: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  --gradient-light: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.2);
  
  /* Скругления */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Размеры шрифтов */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Анимации */
  --animation-duration: 0.8s;
  --animation-delay: 0.2s;
  
  /* Размеры контейнеров */
  --container-padding: 1rem;
  --section-spacing: 5rem;
  --card-spacing: 1.5rem;
}

/* === Базовые стили === */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover, a:focus {
  color: var(--primary-light);
  text-decoration: underline;
}

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

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

h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin: 0 0 1.5rem;
}

ul {
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

/* === Кнопки === */
.btn, button, input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: var(--font-size);
  line-height: 1.4;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.btn:hover, button:hover, input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn:active, button:active, input[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
  background-size: 200% 200%;
  color: var(--text-white);
}

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

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

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

.btn-tertiary:hover {
  background-color: var(--accent-light);
  color: var(--text-white);
}

/* === Хедер === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition);
}

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

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.logo a {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--font-size-xl);
  text-decoration: none;
  color: var(--text-dark);
}

.logo a span {
  color: var(--primary-color);
}

.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

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

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

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

.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  transition: all var(--transition);
}

/* === Hero секция === */
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--background-dark);
  background: url(./image/about-1.jpg);
  background-size: cover;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 0.8s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp var(--animation-duration) ease-out forwards;
}

.hero-content h1, .hero-content p {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
}

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

/* === О нас секция === */
.about-section {
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
  background-color: var(--background);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.progress-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 3rem;
}

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

.progress-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: conic-gradient(var(--primary-color) 0% var(--progress, 0%), #e0e0e0 var(--progress, 0%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-circle::before {
  content: attr(data-progress) '%';
  position: absolute;
  font-weight: 700;
  font-size: var(--font-size-xl);
}

.progress-circle::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  background-color: var(--background);
}

.progress-item p {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* === Мастерские === */
.workshops-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-dark);
  position: relative;
  overflow: hidden;
}

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

.card {
  background-color: var(--background);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.card-content {
  padding: var(--card-spacing);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

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

.card-content p {
  color: var(--text-light);
}

.card-actions {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  margin-right: 1rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

/* === Команда === */
.team-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background);
}

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

.team-grid .card {
  text-align: center;
}

.team-grid .card-image {
  width: 100%;
  height: 300px;
}

.position {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* === Инструкторы === */
.instructors-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-dark);
}

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

.specialty {
  font-style: italic;
  color: var(--primary-light);
  font-weight: 500;
}

.instructors-grid .card-image {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  margin: 1.5rem auto;
}

.instructors-grid .card-image img {
  border-radius: 50%;
}

/* === Вебинары === */
.webinars-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background);
}

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

.webinars-grid .card-content {
  padding: 1.5rem;
}

/* === Признания === */
.accolades-section {
  padding: var(--section-spacing) 0;
  background-image: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.accolades-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.accolade-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accolade-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.accolade-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.accolade-item h3 {
  margin-bottom: 0.5rem;
}

/* === Ресурсы === */
.resources-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-dark);
}

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

.resource-card {
  background-color: var(--background);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

.resource-card a {
  display: inline-block;
  margin-top: auto;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 3px;
}

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

.resource-card a:hover::after {
  width: 100%;
}

/* === Сообщество === */
.community-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background);
}

.community-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.community-text {
  flex: 1;
  min-width: 300px;
}

.community-events {
  flex: 1;
  min-width: 300px;
}

.event-card {
  display: flex;
  margin-bottom: 1.5rem;
  background-color: var(--background-dark);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.event-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: var(--gradient-primary);
  color: var(--text-white);
  width: 90px;
  text-align: center;
}

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

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

.event-details {
  padding: 1rem;
  flex: 1;
}

.event-details h3 {
  margin-bottom: 0.5rem;
}

.event-details p {
  margin-bottom: 0;
  color: var(--text-light);
}

.testimonials {
  padding: 3rem 0;
}

.testimonials h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  background-color: var(--background-dark);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 6rem;
  color: var(--primary-light);
  opacity: 0.2;
  line-height: 1;
}

.testimonial p {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  text-align: right;
  font-weight: 700;
}

/* === Контакты === */
.contact-section {
  padding: var(--section-spacing) 0;
  background-color: var(--background-dark);
  position: relative;
}

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

.contact-form-container {
  flex: 2;
  min-width: 400px;
}

.contact-form {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Roboto', sans-serif;
  font-size: var(--font-size);
  transition: border-color var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 0, 224, 0.2);
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin-right: 10px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-item {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

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

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

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

.social-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  background-color: var(--primary-light);
  color: var(--text-white);
  transition: background-color var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  text-decoration: none;
}

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

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

.footer-logo {
  flex: 2;
  min-width: 300px;
}

.footer-logo a {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--font-size-xl);
  color: var(--text-white);
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-logo a span {
  color: var(--secondary-light);
}

.footer-logo p {
  margin-bottom: 0;
  opacity: 0.8;
}

.footer-nav, .footer-legal, .footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-nav h3, .footer-legal h3, .footer-social h3 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: var(--font-size-lg);
}

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

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

.footer-nav a, .footer-legal a {
  color: var(--text-white);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover {
  opacity: 1;
  text-decoration: none;
}

.footer-social .social-links {
  flex-direction: column;
}

.footer-social .social-links a {
  background-color: transparent;
  padding: 0;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-social .social-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

/* === Модальные окна === */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--background);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: modalFadeIn var(--animation-duration);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
}

/* === Дополнительные страницы === */
/* Success page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 800px;
}

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

/* Privacy & Terms pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.privacy-page .container, .terms-page .container {
  max-width: 900px;
}

.privacy-page h2, .terms-page h2 {
  margin-top: 2.5rem;
}

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

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

/* === Прокрутка-зависимые эффекты === */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

/* === Адаптивный дизайн === */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 4rem;
  }
  
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 3rem;
    --card-spacing: 1.25rem;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--background);
    box-shadow: var(--shadow-md);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .main-nav li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .main-nav a {
    display: block;
    padding: 1rem;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-section {
    padding: 150px 0 80px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-container {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --section-spacing: 2.5rem;
    --card-spacing: 1rem;
  }
  
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  .hero-section {
    padding: 120px 0 60px;
  }
  
  .hero-content p {
    font-size: var(--font-size-lg);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .workshops-grid, .team-grid, .instructors-grid {
    grid-template-columns: 1fr;
  }
  
  .progress-indicators {
    flex-direction: column;
    align-items: center;
  }
}

/* === Для печати === */
@media print {
  .site-header, .hero-section, .footer-social, .cta-buttons {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .card, .event-card, .testimonial, .info-item {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

html,body{
  overflow-x: hidden;
}