:root {
  /* Основная цветовая схема */
  --primary-color: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #4caf50;
  --secondary-color: #03a9f4;
  --secondary-dark: #0288d1;
  --secondary-light: #4fc3f7;
  --accent-color: #ff5722;
  --accent-dark: #e64a19;
  --accent-light: #ff8a65;
  
  /* Нейтральные цвета */
  --dark: #212121;
  --dark-medium: #424242;
  --medium: #757575;
  --light-medium: #bdbdbd;
  --light: #f5f5f5;
  --white: #ffffff;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --gradient-dark: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  --gradient-light: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  
  /* Тени */
  --shadow-small: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 10px rgba(0,0,0,0.15);
  --shadow-large: 0 10px 25px rgba(0,0,0,0.2);
  
  /* Скругления */
  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 16px;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры шрифтов */
  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-md: 1rem;      /* 16px */
  --font-size-lg: 1.25rem;   /* 20px */
  --font-size-xl: 1.5rem;    /* 24px */
  --font-size-2xl: 2rem;     /* 32px */
  --font-size-3xl: 2.5rem;   /* 40px */
  --font-size-4xl: 3rem;     /* 48px */
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--font-size-4xl);
}

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

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

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

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

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

/* Контейнеры */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* Утилиты */
.text-center {
  text-align: center;
}

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

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

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

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

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

/* Кнопки */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-medium);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: var(--font-size-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  text-align: center;
  box-shadow: var(--shadow-small);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-medium);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  color: var(--white);
}

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

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-small);
}

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

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

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

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

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
}

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

.logo a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all var(--transition-medium);
}

.logo a:hover {
  transform: scale(1.05);
}

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

.nav-menu ul li a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-menu ul li a:hover {
  color: var(--primary-color);
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

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

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* Герой-секция */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 0;
  padding: 0;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

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

.hero-content p {
  color: var(--white);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

/* Карточки */
.card {
  background-color: var(--white);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

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

.card-content p {
  color: var(--medium);
  margin-bottom: 1.5rem;
}

/* Сетки и контейнеры для карточек */
.cards-container, .media-gallery, .testimonials-container, .pricing-container, .insights-grid, .resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Медиа-секция */
.media-section {
  background-color: var(--light);
}

.media-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.media-item .image-container {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

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

/* Отзывы */
.testimonials-section {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/particles-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.testimonial-rating {
  color: var(--accent-color);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.testimonial-author .image-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.testimonial-author p {
  font-size: var(--font-size-sm);
  color: var(--medium);
  margin-bottom: 0;
}

/* Сообщество */
.community-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  background-attachment: fixed;
}

.community-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
}

.community-section .section-title,
.community-section .section-description {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.community-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

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

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

.community-text p {
  color: var(--light);
  margin-bottom: 1.5rem;
}

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

.community-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-large);
}

/* Ресурсы */
.resources-section {
  background-color: var(--light);
}

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

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

.resource-card h3 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  text-align: center;
}

.resource-card ul {
  padding-left: 1rem;
}

.resource-card ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.resource-card ul li::before {
  content: '→';
  position: absolute;
  left: -1rem;
  color: var(--primary-color);
}

.resource-card ul li a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.resource-card ul li a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Цены */
.pricing-section {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/particles-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.pricing-container {
  position: relative;
  z-index: 1;
}

.pricing-container .card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.pricing-container .card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
  position: relative;
}

.pricing-container .card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: var(--border-radius-small);
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.pricing-container .card ul {
  margin-bottom: 2rem;
  text-align: left;
  padding-left: 1.5rem;
}

.pricing-container .card ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.pricing-container .card ul li::before {
  content: '✓';
  position: absolute;
  left: -1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: var(--font-size-sm);
  color: var(--medium);
}

/* Инсайты */
.insights-section {
  background-color: var(--white);
}

/* Воркшопы */
.workshops-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  background-attachment: fixed;
}

.workshops-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
}

.workshops-section .section-title,
.workshops-section .section-description {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.workshops-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

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

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

.workshops-text p {
  color: var(--light);
  margin-bottom: 1.5rem;
}

.workshops-gallery {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.workshops-gallery .image-container {
  border-radius: var(--border-radius-small);
  overflow: hidden;
  height: 200px;
}

.workshops-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.workshops-gallery .image-container:hover img {
  transform: scale(1.1);
}

/* Клиенты */
.clientele-section {
  background-color: var(--light);
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.client-logo {
  flex: 0 0 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: var(--border-radius-small);
  padding: 1rem;
  transition: transform var(--transition-medium);
}

.client-logo:hover {
  transform: scale(1.1);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.clients-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Контакты */
.contact-section {
  background-color: var(--white);
}

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

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

.contact-info h3 {
  margin-bottom: 2rem;
  color: var(--dark);
}

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

.info-item .icon {
  flex: 0 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  margin-right: 1rem;
}

.info-item p {
  margin-bottom: 0;
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.contact-map img {
  width: 100%;
  height: auto;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-medium);
}

.contact-form h3 {
  margin-bottom: 2rem;
  color: var(--dark);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-medium);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--light-medium);
  border-radius: var(--border-radius-small);
  font-family: 'Lato', sans-serif;
  font-size: var(--font-size-md);
  transition: border-color var(--transition-fast);
}

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

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

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

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

.footer-logo h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--light-medium);
}

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

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.footer-links ul li a,
.footer-legal ul li a {
  color: var(--light-medium);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
  color: var(--primary-light);
}

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

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

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

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

.footer-bottom p {
  color: var(--light-medium);
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

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

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

/* Частицы */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light), var(--white));
}

.success-content {
  text-align: center;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-large);
  max-width: 600px;
  animation: fadeIn 1s ease-out;
}

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

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

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

/* Privacy and Terms pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

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

.page-content h2 {
  margin: 2rem 0 1rem;
  color: var(--dark-medium);
}

.page-content p {
  margin-bottom: 1.5rem;
  color: var(--medium);
}

.page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-content ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.page-content ul li::before {
  content: '•';
  position: absolute;
  left: -1.5rem;
  color: var(--primary-color);
}

/* Медиа-запросы */
@media (max-width: 992px) {
  :root {
    --font-size-4xl: 2.5rem;  /* 40px */
    --font-size-3xl: 2rem;    /* 32px */
    --font-size-2xl: 1.75rem; /* 28px */
    --font-size-xl: 1.25rem;  /* 20px */
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .community-content,
  .workshops-content,
  .contact-container {
    gap: 2rem;
  }
  
  .workshops-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2.25rem; /* 36px */
    --font-size-3xl: 1.75rem; /* 28px */
    --font-size-2xl: 1.5rem;  /* 24px */
  }
  
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-description {
    margin-bottom: 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    transition: all var(--transition-medium);
    padding: 2rem;
    z-index: 1000;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .cards-container, 
  .media-gallery, 
  .testimonials-container, 
  .pricing-container, 
  .insights-grid, 
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .community-content,
  .workshops-content {
    flex-direction: column;
  }
  
  .clients-logos {
    gap: 1rem;
  }
  
  .client-logo {
    flex: 0 0 120px;
    height: 80px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-4xl: 2rem;    /* 32px */
    --font-size-3xl: 1.5rem;  /* 24px */
    --font-size-2xl: 1.25rem; /* 20px */
    --font-size-xl: 1.125rem; /* 18px */
  }
  
  .container {
    padding: 0 0.75rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .logo a {
    font-size: var(--font-size-lg);
  }
  
  .clients-logos {
    gap: 0.75rem;
  }
  
  .client-logo {
    flex: 0 0 100px;
    height: 70px;
  }
}