:root {
  /* Основные цвета в стиле нео-брутализма */
  --primary-color: #ff6b35;
  --secondary-color: #2ec4b6;
  --tertiary-color: #ff3864;
  --dark-color: #1b1b1b;
  --light-color: #f5f5f5;
  --accent-color: #ffcc29;
  --accent-alt-color: #7b2cbf;
  
  /* Темные и светлые варианты для контраста и эффектов при наведении */
  --primary-dark: #e25122;
  --secondary-dark: #20a99c;
  --tertiary-dark: #e61c4c;
  --accent-dark: #f0b700;
  --accent-alt-dark: #6420a3;
  
  /* Нейтральные цвета */
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  
  /* Цвета для текста */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-light: var(--light-color);
  --text-dark: var(--dark-color);
  
  /* Цвета фона */
  --bg-primary: var(--light-color);
  --bg-secondary: var(--gray-200);
  --bg-dark: var(--dark-color);
  --bg-light: var(--light-color);
  
  /* Системные настройки */
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  
  /* Размеры шрифтов */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  
  /* Размеры контейнеров */
  --container-padding: 1.5rem;
  --section-spacing: 5rem;
}

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

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

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

h1 {
  font-size: var(--font-size-3xl);
  text-transform: uppercase;
}

h2 {
  font-size: var(--font-size-2xl);
  position: relative;
  display: inline-block;
}

h2.section-title {
  font-weight: 900;
  margin-bottom: 2.5rem;
  text-align: center;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
}

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

h4 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

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

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

ul {
  list-style: none;
}

section {
  position: relative;
  padding: 5rem var(--container-padding);
  width: 100%;
}

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

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

/* Общие стили кнопок */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition-bounce);
  text-align: center;
  font-size: var(--font-size-sm);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  top: 0;
  left: 0;
}

.btn:hover {
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
  top: -2px;
  left: -2px;
}

.btn:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  top: 2px;
  left: 2px;
}

.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;
}

button, input[type='submit'] {
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-bounce);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  top: 0;
  left: 0;
}

button:hover, input[type='submit']:hover {
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
  top: -2px;
  left: -2px;
}

button:active, input[type='submit']:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  top: 2px;
  left: 2px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: transparent;
}

.header.scrolled {
  background-color: var(--bg-light);
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
}

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

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: var(--font-size-xl);
}

.logo-link {
  color: var(--light-color);
  transition: var(--transition);
}

.header.scrolled .logo-link {
  color: var(--dark-color);
}

.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--light-color);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--dark-color);
}

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--light-color);
  transition: var(--transition);
}

.header.scrolled .burger-menu span {
  background-color: var(--dark-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.hero-title {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 var(--primary-color);
}

.hero-subtitle {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Services Section */
.services {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0);
}

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

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.card-content {
  padding: 1.5rem;
  width: 100%;
  text-align: center;
}

.progress-indicator {
  width: 100%;
  height: 8px;
  background-color: var(--gray-300);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 1rem;
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
  text-align: right;
  padding-right: 5px;
  line-height: 8px;
  font-size: var(--font-size-xs);
  color: white;
}

/* Prices Section */
.prices {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.price-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.price-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition-bounce);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
  z-index: 1;
}

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}

.price-title {
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-color);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.price-features {
  margin-bottom: 2rem;
  width: 100%;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-300);
  text-align: center;
}

.additional-services {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.additional-services h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-300);
}

.service-name {
  font-weight: 600;
  color: var(--text-secondary);
}

.service-price {
  font-weight: 700;
  color: var(--primary-color);
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition-bounce);
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

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

.overlay p {
  color: var(--gray-300);
  margin-bottom: 0;
}

/* Behind the Scenes Section */
.behind-scenes {
  background-color: var(--gray-100);
  padding: 5rem 0;
}

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

.scenes-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.scenes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.stat-widget {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition-bounce);
  min-width: 200px;
  flex: 1;
}

.stat-widget:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-title {
  font-weight: 600;
  color: var(--text-secondary);
}

/* Webinars Section */
.webinars {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.webinar-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.webinar-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition-bounce);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.webinar-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
}

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

.webinar-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.webinar-card .card-content {
  padding: 2rem;
  text-align: left;
}

.webinar-card .btn {
  margin-top: auto;
}

/* Resources Section */
.resources {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

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

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition-bounce);
  text-align: center;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--secondary-color);
  color: white;
}

.resource-card:hover h3,
.resource-card:hover p {
  color: white;
}

/* Insights Section */
.insights {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

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

.insights-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.insights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tips-box {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

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

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

.tip-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

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

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

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

.info-item {
  margin-bottom: 1.5rem;
}

.info-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-family: 'Work Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--gray-300);
  padding-top: 5rem;
}

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

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: white;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.social-links a {
  display: inline-block;
  color: var(--gray-300);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 600;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

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

/* Анимации */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-slide-left {
  animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-right {
  animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Успешная отправка формы */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-light);
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  animation: pulse 2s ease-in-out;
}

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

/* Страницы privacy и terms */
.privacy-page,
.terms-page {
  padding-top: 100px;
  background-color: var(--bg-light);
}

.privacy-content,
.terms-content {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

/* Медиа-запросы */
@media (max-width: 1200px) {
  :root {
    --font-size-3xl: 2.5rem;
    --font-size-2xl: 1.75rem;
    --font-size-xl: 1.25rem;
    --section-spacing: 4rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
    --section-spacing: 3rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .services-grid,
  .gallery-grid,
  .resources-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .scenes-content,
  .insights-content,
  .contact-content {
    flex-direction: column;
  }
  
  .price-cards {
    justify-content: center;
  }
  
  .price-card.featured {
    transform: scale(1);
    order: -1;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.5rem;
    --font-size-xl: 1.25rem;
    --section-spacing: 2.5rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .scenes-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Вспомогательные классы */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.burger-menu{
  display: none;
}