:root {
  --primary: #00a2d3;
  --secondary: #7ed6f4;
  --bg: #f8fbfc;
  --text: #333;
  --accent: #fff;
  --radius: 16px;
  --max-width: 1200px;
  --nav-height: 80px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-family: 'Nunito', sans-serif;
}

/* Навигационная панель */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 162, 211, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-logo-text .small {
  font-size: 10px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

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

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

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

.nav-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.nav-phone:hover {
  color: var(--secondary);
}

.nav-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
}

/* Главный header */
.hero-header {
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: calc(var(--nav-height) + 20px);
  margin-top: var(--nav-height);
}

/* Летний задний фон */
.summer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Градиентный фон */
.hero-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/background.jpeg') no-repeat center center;
  filter: brightness(50%);
  z-index: 0;
}

/* Логотип */
.logo__container {
  position: absolute;
  top: 100px;
  right: 50px;
  width: 150px;
  height: 60px;
  z-index: 10;
}

.logo {
  width: 100%;
  height: 100%;
}

/* Облака */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  opacity: 0.8;
}

.cloud-1 {
  top: 15%;
  left: 5%;
  width: 100px;
  height: 40px;
  animation: float-cloud 8s ease-in-out infinite;
}

.cloud-2 {
  top: 25%;
  right: 15%;
  width: 80px;
  height: 35px;
  animation: float-cloud 10s ease-in-out infinite reverse;
}

.cloud-3 {
  top: 35%;
  left: 20%;
  width: 120px;
  height: 45px;
  animation: float-cloud 12s ease-in-out infinite;
}

@keyframes float-cloud {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-20px) translateX(30px); }
}

/* Летние элементы */
.summer-element {
  position: absolute;
}

.palm-tree-1 {
  bottom: 0;
  left: 5%;
  width: 60px;
  height: 200px;
  background: linear-gradient(45deg, #228B22, #32CD32);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: sway-palm 6s ease-in-out infinite;
}

.palm-tree-2 {
  bottom: 0;
  right: 10%;
  width: 50px;
  height: 180px;
  background: linear-gradient(45deg, #228B22, #32CD32);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: sway-palm 8s ease-in-out infinite reverse;
}

.beach-umbrella {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 120px;
  background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: rotate-umbrella 10s ease-in-out infinite;
}

@keyframes sway-palm {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

@keyframes rotate-umbrella {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  50% { transform: translateX(-50%) rotate(5deg); }
}

/* Английские элементы */
.english-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: float-element 6s ease-in-out infinite;
}

.book-1 {
  top: 20%;
  left: 15%;
  font-size: 24px;
  animation-delay: 0s;
}

.book-2 {
  top: 30%;
  right: 25%;
  font-size: 20px;
  animation-delay: 2s;
}

.flag-uk {
  top: 40%;
  left: 10%;
  font-size: 28px;
  animation-delay: 1s;
}

.flag-us {
  top: 50%;
  right: 15%;
  font-size: 26px;
  animation-delay: 3s;
}

.graduation-cap {
  top: 60%;
  left: 20%;
  font-size: 22px;
  animation-delay: 4s;
}

@keyframes float-element {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Декоративные элементы */
.deco-element {
  position: absolute;
  font-size: 24px;
  animation: sparkle 4s ease-in-out infinite;
}

.star-1 {
  top: 15%;
  left: 30%;
  animation-delay: 0s;
}

.star-2 {
  top: 45%;
  right: 30%;
  animation-delay: 1s;
}

.star-3 {
  top: 70%;
  left: 40%;
  animation-delay: 2s;
}

.leaf-1 {
  top: 25%;
  left: 60%;
  animation-delay: 0.5s;
}

.leaf-2 {
  top: 55%;
  right: 40%;
  animation-delay: 1.5s;
}

.leaf-3 {
  top: 75%;
  left: 70%;
  animation-delay: 2.5s;
}

@keyframes sparkle {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    opacity: 0.7;
  }
  50% { 
    transform: scale(1.2) rotate(180deg); 
    opacity: 1;
  }
}

/* Градиентный фон */
.hero-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/background.jpeg') no-repeat center center;
  filter: brightness(50%);
  z-index: 0;
}

/* Контейнер для воздушных шаров */
.balloons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Воздушные шары */
.balloon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.balloon-body {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: 
    inset -15px -15px 30px rgba(0, 0, 0, 0.2),
    inset 5px 5px 15px rgba(255, 255, 255, 0.3),
    0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.balloon-body::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 30%;
  width: 25%;
  height: 25%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.balloon-body::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 25%;
  width: 15%;
  height: 15%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 50%;
}

.balloon-basket {
  width: 70%;
  height: 25%;
  background: linear-gradient(45deg, #8B4513, #A0522D, #CD853F);
  border-radius: 8px;
  margin-top: -8px;
  box-shadow: 
    0 3px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.2);
  position: relative;
  border: 1px solid #654321;
}

.balloon-basket::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 12px;
  background: linear-gradient(to bottom, #8B4513, #654321);
  border-radius: 1px;
}

.balloon-basket::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 40%;
  background: linear-gradient(45deg, #654321, #8B4513);
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.balloon-string {
  width: 3px;
  height: 80px;
  background: linear-gradient(to bottom, #8B4513, #654321, #8B4513);
  margin-top: -8px;
  position: relative;
  border-radius: 1px;
}

.balloon-string::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -2px;
  width: 7px;
  height: 7px;
  background: #654321;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.balloon-string::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: -1px;
  width: 5px;
  height: 5px;
  background: #8B4513;
  border-radius: 50%;
  opacity: 0.7;
}

/* Размеры воздушных шаров */
.balloon-large {
  width: 120px;
  height: 160px;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.balloon-medium {
  width: 80px;
  height: 110px;
  top: 20%;
  right: 20%;
  animation-delay: 2s;
}

.balloon-small {
  width: 60px;
  height: 80px;
  bottom: 30%;
  left: 25%;
  animation-delay: 4s;
}

.balloon-tiny {
  width: 40px;
  height: 55px;
  top: 40%;
  left: 5%;
  animation-delay: 1s;
}

.balloon-medium-alt {
  width: 90px;
  height: 120px;
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

.balloon-small-alt {
  width: 50px;
  height: 70px;
  top: 60%;
  right: 35%;
  animation-delay: 5s;
}

/* Цвета воздушных шаров */
.balloon-large .balloon-body {
  background: radial-gradient(circle at 30% 30%, 
    #FF6B6B 0%, 
    #FF5252 30%, 
    #FF1744 70%, 
    #D32F2F 100%);
}

.balloon-medium .balloon-body {
  background: radial-gradient(circle at 30% 30%, 
    #4ECDC4 0%, 
    #26C6DA 30%, 
    #00BCD4 70%, 
    #0097A7 100%);
}

.balloon-small .balloon-body {
  background: radial-gradient(circle at 30% 30%, 
    #FFD93D 0%, 
    #FFC107 30%, 
    #FF9800 70%, 
    #F57C00 100%);
}

.balloon-tiny .balloon-body {
  background: radial-gradient(circle at 30% 30%, 
    #AB47BC 0%, 
    #9C27B0 30%, 
    #8E24AA 70%, 
    #7B1FA2 100%);
}

.balloon-medium-alt .balloon-body {
  background: radial-gradient(circle at 30% 30%, 
    #66BB6A 0%, 
    #4CAF50 30%, 
    #388E3C 70%, 
    #2E7D32 100%);
}

.balloon-small-alt .balloon-body {
  background: radial-gradient(circle at 30% 30%, 
    #FF8A65 0%, 
    #FF7043 30%, 
    #FF5722 70%, 
    #E64A19 100%);
}

/* Логотип */
.logo__container {
  position: absolute;
  top: 100px;
  right: 50px;
  width: 150px;
  height: 60px;
  z-index: 10;
}

.logo {
  width: 100%;
  height: 100%;
}

/* Основной контент */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.title-line {
  display: block;
}

.title-line.highlight {
  color: var(--secondary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.subtitle-highlight {
  color: var(--secondary);
  font-weight: 600;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: #e5faff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 162, 211, 0.3);
}

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

.btn-secondary:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--radius);
  min-width: 100px;
  transition: var(--transition);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Нижняя часть header'а */
.hero-footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  margin-top: auto;
  padding-bottom: 40px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.scroll-indicator:hover {
  transform: translateY(5px);
}

.scroll-indicator span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.scroll-indicator i {
  animation: bounce 2s infinite;
}

/* Анимации */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fly {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(-10px, -15px) rotate(2deg);
  }

  50% {
    transform: translate(-20px, -30px) rotate(-5deg);
  }

  75% {
    transform: translate(-10px, -15px) rotate(-10deg);
  }

  100% {
    transform: translate(20px, 10px) rotate(2deg);
  }
}

@media (min-width: 480px) {
  header .parallax {
    background: url("https://images.unsplash.com/photo-1514923995763-768e52f5af87?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8YWlyJTIwYmFsbG9vbnxlbnwwfHwwfHx8MA%3D%3D")  no-repeat center center;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  section h2 {
    text-align: left;
    margin-bottom: 20px;
  }

  footer {
    padding: 40px;
    flex-direction: column;
    text-align: center;
  }

  .btn {
    width: 100%;
  }
}

/* Адаптивные стили */
@media (max-width: 768px) {
  /* Навигация */
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 20px;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 15px 0;
  }

  .nav-contacts {
    gap: 15px;
  }

  .nav-phone span {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Главный header */
  .hero-header {
    height: 100vh;
    padding: 120px 20px 80px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .feature-item {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item {
    min-width: 80px;
    padding: 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-footer {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    bottom: 20px;
  }

  .logo__container {
    top: 80px;
    right: 20px;
  }

  .logo {
    width: 60px;
  }

  .floating-shapes {
    display: none;
  }

  /* Блок "О нашей студии" */
  .about-studio {
    padding: 60px 20px;
  }

  .about-main {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .about-header h2 {
    gap: 10px;
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .achievements {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .achievement-card {
    padding: 20px 15px;
  }

  .achievement-number {
    font-size: 2rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .advantage-item {
    padding: 25px 20px;
  }

  .about-cta {
    padding: 40px 20px;
  }

  .about-cta h3 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .about-cta .btn {
    min-width: auto;
    width: 100%;
  }

  /* Блок "Почему выбирают нас" */
  .why-choose-us {
    padding: 60px 20px;
  }

  .why-header h2 {
    font-size: 2rem;
  }

  .why-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-benefits {
    flex-wrap: wrap;
    gap: 8px;
  }

  .benefit-tag {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-item {
    padding: 20px;
  }

  .why-cta {
    padding: 40px 20px;
  }

  .why-cta h3 {
    font-size: 1.5rem;
  }

  .why-cta .btn {
    width: 100%;
  }

  /* Блок "Как работают наши занятия" */
  .learning-process {
    padding: 60px 20px;
  }

  .process-header h2 {
    font-size: 2rem;
  }

  .process-subtitle {
    font-size: 1rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-card {
    padding: 25px 20px;
  }

  .step-connector {
    display: none;
  }

  .process-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 20px;
  }

  .process-cta {
    padding: 40px 20px;
  }

  .process-cta h3 {
    font-size: 1.5rem;
  }

  .process-cta .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .process-cta .btn {
    width: 100%;
  }

  /* Блок отзывов */
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-cta {
    padding: 40px 20px;
  }

  .testimonials-cta h3 {
    font-size: 1.5rem;
  }

  .testimonials-cta .btn {
    width: 100%;
  }

  /* Блок контактов */
  .contact-section {
    padding: 60px 20px;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .contact-info .benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info .benefit-item {
    padding: 20px;
  }

  .contact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-form-wrapper {
    padding: 0px !important;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-method {
    padding: 20px;
  }

  /* Общие адаптации */
  .container {
    padding: 0 20px;
  }

  .camp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .camp-list {
    text-align: center;
  }

  .features, .testimonials, .methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 20px;
  }

  .trial {
    padding: 40px 20px;
    margin: 40px auto;
  }

  .trial h2 {
    font-size: 1.8rem;
  }

  #contact {
    padding: 40px 20px;
  }

  #contact form {
    padding: 30px 20px;
  }

  footer {
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
  }

  /* Адаптация воздушных шаров для мобильных */
  .balloon-large {
    width: 80px;
    height: 110px;
    top: 5%;
    left: 10%;
  }
  
  .balloon-medium {
    width: 60px;
    height: 80px;
    top: 15%;
    right: 15%;
  }
  
  .balloon-small {
    width: 45px;
    height: 60px;
    bottom: 25%;
    left: 20%;
  }
  
  .balloon-tiny {
    width: 30px;
    height: 40px;
    top: 35%;
    left: 3%;
  }
  
  .balloon-medium-alt {
    width: 65px;
    height: 85px;
    bottom: 15%;
    right: 8%;
  }
  
  .balloon-small-alt {
    width: 35px;
    height: 50px;
    top: 55%;
    right: 25%;
  }
  
  /* Адаптация облаков */
  .cloud-1 {
    width: 70px;
    height: 30px;
    top: 10%;
    left: 5%;
  }
  
  .cloud-2 {
    width: 60px;
    height: 25px;
    top: 20%;
    right: 10%;
  }
  
  .cloud-3 {
    width: 80px;
    height: 35px;
    bottom: 15%;
    left: 15%;
  }
  
  /* Адаптация летнего фона для мобильных */
  .sun {
    width: 80px;
    height: 80px;
    top: 5%;
    right: 5%;
  }
  
  .cloud {
    opacity: 0.6;
  }
  
  .cloud-1 {
    width: 60px;
    height: 25px;
  }
  
  .cloud-2 {
    width: 50px;
    height: 20px;
  }
  
  .cloud-3 {
    width: 70px;
    height: 30px;
  }
  
  .palm-tree-1,
  .palm-tree-2 {
    height: 120px;
  }
  
  .beach-umbrella {
    width: 60px;
    height: 90px;
  }
  
  .english-element {
    font-size: 18px;
    padding: 6px;
  }
  
  .deco-element {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .nav-logo-text {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .stat-item {
    min-width: 70px;
    padding: 12px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .hero-header {
    padding: 100px 15px 60px;
  }

  .hero-content {
    padding: 0 10px;
  }

  /* Блок "О нашей студии" */
  .about-studio {
    padding: 40px 15px;
  }

  .about-header h2 {
    font-size: 1.8rem;
  }

  .about-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .achievements {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .achievement-card {
    padding: 15px;
  }

  .achievement-number {
    font-size: 1.8rem;
  }

  .achievement-label {
    font-size: 0.8rem;
  }

  .advantages h3 {
    font-size: 1.2rem;
  }

  .advantage-item {
    padding: 20px 15px;
  }

  .advantage-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .advantage-item h4 {
    font-size: 1.1rem;
  }

  .about-cta {
    padding: 30px 15px;
  }

  .about-cta h3 {
    font-size: 1.3rem;
  }

  .about-cta p {
    font-size: 0.9rem;
  }

  /* Блок "Почему выбирают нас" */
  .why-choose-us {
    padding: 40px 15px;
  }

  .why-header h2 {
    font-size: 1.8rem;
  }

  .why-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .feature-card {
    padding: 20px 15px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .benefit-item {
    padding: 15px;
  }

  .benefit-content h4 {
    font-size: 1.1rem;
  }

  .benefit-content p {
    font-size: 0.9rem;
  }

  .why-cta {
    padding: 30px 15px;
  }

  .why-cta h3 {
    font-size: 1.3rem;
  }

  /* Блок "Как работают наши занятия" */
  .learning-process {
    padding: 40px 15px;
  }

  .process-header h2 {
    font-size: 1.8rem;
  }

  .process-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .step-card {
    padding: 20px 15px;
  }

  .step-card h3 {
    font-size: 1.2rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .info-card {
    padding: 15px;
  }

  .info-card h4 {
    font-size: 1.1rem;
  }

  .info-card p {
    font-size: 0.9rem;
  }

  .process-cta {
    padding: 30px 15px;
  }

  .process-cta h3 {
    font-size: 1.3rem;
  }

  /* Блок отзывов */
  .testimonials-section {
    padding: 40px 15px;
  }

  .testimonials-header h2 {
    font-size: 1.8rem;
  }

  .testimonials-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .testimonial-card {
    padding: 20px 15px;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }

  .author-info h4 {
    font-size: 1.1rem;
  }

  .author-info span {
    font-size: 0.8rem;
  }

  .testimonial-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(0, 162, 211, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
  }

  .testimonial-result i {
    font-size: 1rem;
  }

  /* Статистика отзывов */
  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .testimonials-stats .stat-item {
    padding: 15px;
  }

  .testimonials-stats .stat-number {
    font-size: 1.5rem;
  }

  .testimonials-stats .stat-label {
    font-size: 0.8rem;
  }

  .testimonials-cta {
    padding: 30px 15px;
  }

  .testimonials-cta h3 {
    font-size: 1.3rem;
  }

  /* Блок контактов */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }

  .contact-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .contact-info h3 {
    font-size: 1.2rem;
  }

  .contact-info .benefit-item {
    padding: 15px;
  }

  .contact-info .benefit-text h4 {
    font-size: 1.1rem;
  }

  .contact-info .benefit-text p {
    font-size: 0.9rem;
  }

  .contact-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-stats .stat-item {
    padding: 15px;
  }

  .contact-stats .stat-number {
    font-size: 1.5rem;
  }

  .contact-stats .stat-label {
    font-size: 0.8rem;
  }

  .contact-form-wrapper {
    padding: 20px 15px;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .contact-form h3 {
    font-size: 1.2rem;
  }

  .contact-form p {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .contact-method {
    padding: 15px;
  }

  .method-info h4 {
    font-size: 1.1rem;
  }

  .method-info p {
    font-size: 0.9rem;
  }

  /* Общие адаптации */
  .container {
    padding: 0 15px;
  }

  .trial {
    padding: 30px 15px;
  }

  .trial h2 {
    font-size: 1.5rem;
  }

  .trial p {
    font-size: 0.9rem;
  }

  .trial ul li {
    font-size: 0.9rem;
  }

  #contact {
    padding: 30px 15px;
  }

  #contact form {
    padding: 25px 15px;
  }

  #contact form h2 {
    font-size: 1.5rem;
  }

  #contact form p {
    font-size: 0.9rem;
  }

  #contact input {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  footer {
    padding: 25px 15px;
  }

  /* Скрытие некоторых воздушных шаров на очень маленьких экранах */
  .balloon-tiny,
  .balloon-small-alt {
    display: none;
  }
  
  /* Уменьшение размеров оставшихся шаров */
  .balloon-large {
    width: 60px;
    height: 80px;
    top: 8%;
    left: 8%;
  }
  
  .balloon-medium {
    width: 45px;
    height: 60px;
    top: 20%;
    right: 10%;
  }
  
  .balloon-small {
    width: 35px;
    height: 45px;
    bottom: 20%;
    left: 15%;
  }
  
  .balloon-medium-alt {
    width: 50px;
    height: 65px;
    bottom: 12%;
    right: 5%;
  }
  
  /* Уменьшение облаков */
  .cloud-1 {
    width: 50px;
    height: 25px;
    top: 8%;
    left: 3%;
  }
  
  .cloud-2 {
    width: 40px;
    height: 20px;
    top: 18%;
    right: 8%;
  }
  
  .cloud-3 {
    width: 60px;
    height: 25px;
    bottom: 12%;
    left: 10%;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .stat-item {
    min-width: 60px;
    padding: 10px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Все заголовки блоков */
  .about-header h2,
  .why-header h2,
  .process-header h2,
  .testimonials-header h2,
  .contact-header h2 {
    font-size: 1.6rem;
  }

  /* Все подзаголовки */
  .about-subtitle,
  .why-subtitle,
  .process-subtitle,
  .testimonials-subtitle,
  .contact-subtitle {
    font-size: 0.9rem;
  }

  /* Все CTA блоки */
  .about-cta,
  .why-cta,
  .process-cta,
  .testimonials-cta {
    padding: 25px 15px;
  }

  .about-cta h3,
  .why-cta h3,
  .process-cta h3,
  .testimonials-cta h3 {
    font-size: 1.2rem;
  }

  /* Все карточки */
  .achievement-card,
  .advantage-item,
  .feature-card,
  .step-card,
  .info-card,
  .testimonial-card,
  .benefit-item,
  .contact-info .benefit-item,
  .contact-method {
    padding: 15px;
  }

  /* Все иконки */
  .achievement-icon,
  .advantage-icon,
  .feature-icon,
  .step-icon,
  .info-icon,
  .contact-info .benefit-icon,
  .method-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  /* Все заголовки карточек */
  .advantage-item h4,
  .feature-card h3,
  .step-card h3,
  .info-card h4,
  .benefit-content h4,
  .contact-info .benefit-text h4,
  .method-info h4 {
    font-size: 1rem;
  }

  /* Все тексты карточек */
  .advantage-item p,
  .feature-card p,
  .step-card p,
  .info-card p,
  .benefit-content p,
  .contact-info .benefit-text p,
  .method-info p,
  .testimonial-content p {
    font-size: 0.8rem;
  }

  /* Все номера */
  .achievement-number,
  .benefit-number,
  .step-number {
    font-size: 1.6rem;
  }

  /* Все статистики */
  .stat-number,
  .testimonials-stats .stat-number,
  .contact-stats .stat-number {
    font-size: 1.3rem;
  }

  .stat-label,
  .testimonials-stats .stat-label,
  .contact-stats .stat-label {
    font-size: 0.7rem;
  }
}

/* Планшеты */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-features {
    gap: 20px;
  }

  .hero-stats {
    gap: 30px;
  }

  .nav-menu {
    gap: 25px;
  }

  /* Адаптация для планшетов */
  .about-main,
  .features-grid,
  .process-steps,
  .testimonials-grid,
  .contact-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .achievements {
    grid-template-columns: repeat(4, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Большие экраны */
@media (min-width: 1025px) {
  .hero-content {
    padding: 0 50px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-features {
    gap: 30px;
  }

  .hero-stats {
    gap: 40px;
  }

  .stat-item {
    min-width: 120px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Ландшафтная ориентация на мобильных */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-header {
    height: 100vh;
    padding: 80px 20px 40px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .hero-features {
    gap: 10px;
    margin-bottom: 15px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 15px;
  }

  .hero-stats {
    gap: 15px;
    margin-bottom: 15px;
  }

  .hero-footer {
    bottom: 10px;
    padding: 0 20px;
  }

  .logo__container {
    top: 60px;
    right: 15px;
  }

  .logo {
    width: 50px;
  }
}

/* Блок "О нашей студии" */
.about-studio {
  background: linear-gradient(135deg, #f8fbfc 0%, #e8f4f8 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-studio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Заголовок */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 162, 211, 0.3);
}

.about-header h2 {
  display: flex;
  align-items: center;
  text-align: left;
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}

.about-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Основной контент */
.about-content {
  margin-bottom: 60px;
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #444;
}

.highlight-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Изображение */
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.studio-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 162, 211, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  cursor: pointer;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

.overlay-content span {
  font-size: 1rem;
  font-weight: 600;
}

/* Достижения */
.achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.achievement-card {
  background: white;
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 1.5rem;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.achievement-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Преимущества */
.advantages {
  margin-bottom: 60px;
}

.advantages h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--text);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-item {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 162, 211, 0.05), rgba(126, 214, 244, 0.05));
  border-radius: var(--radius);
  opacity: 0;
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.advantage-item:hover::before {
  opacity: 1;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.advantage-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.advantage-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  position: relative;
  z-index: 1;
}

/* Призыв к действию */
.about-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.about-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta .btn {
  min-width: 200px;
}

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

.about-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.about-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.about-cta .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* Декоративные элементы */
.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* Блок "Почему выбирают нас" */
.why-choose-us {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfc 100%);
  padding: 80px 20px;
  position: relative;
}

.why-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.why-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}

.why-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Карточки преимуществ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.feature-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.benefit-tag {
  background: rgba(0, 162, 211, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Дополнительные преимущества */
.additional-benefits {
  margin-bottom: 60px;
}

.additional-benefits h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--text);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

/* Призыв к действию */
.why-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.why-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  pointer-events: none;
}

.why-cta .cta-content {
  position: relative;
  z-index: 1;
}

.why-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.why-cta .btn {
  min-width: 250px;
}

.floating-star {
  position: absolute;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.floating-star:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-star:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-star:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* Блок "Как проходят занятия" */
.learning-process {
  background: linear-gradient(135deg, #f8fbfc 0%, #e8f4f8 100%);
  padding: 80px 20px;
  position: relative;
}

.process-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}

.process-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Шаги процесса */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.step-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 20px;
  color: white;
  font-size: 2rem;
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
}

.step-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
}

.step-feature i {
  color: var(--primary);
  font-size: 1rem;
}

/* Соединители между шагами */
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 60px;
}

.connector-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.connector-arrow {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
}

/* Дополнительная информация */
.process-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

.info-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

/* Призыв к действию процесса */
.process-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots2" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots2)"/></svg>');
  pointer-events: none;
}

.process-cta .cta-content {
  position: relative;
  z-index: 1;
}

.process-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.process-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.process-cta .btn {
  min-width: 200px;
}

/* Блок отзывов */
.testimonials-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfc 100%);
  padding: 80px 20px;
  position: relative;
}

.testimonials-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.testimonials-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Карточки отзывов */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.author-info span {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(0, 162, 211, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

.testimonial-result i {
  font-size: 1rem;
}

/* Статистика отзывов */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonials-stats .stat-item {
  background: white;
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.testimonials-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonials-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.testimonials-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Призыв к действию отзывов */
.testimonials-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars2" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars2)"/></svg>');
  pointer-events: none;
}

.testimonials-cta .cta-content {
  position: relative;
  z-index: 1;
}

.testimonials-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonials-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.testimonials-cta .btn {
  min-width: 300px;
}

/* Блок контактов */
.contact-section {
  background: linear-gradient(135deg, #f8fbfc 0%, #e8f4f8 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #333;
  padding: 8px 16px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}

.contact-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Основной контент контактов */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text);
}

.contact-info .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
  background: none;
  box-shadow: none;
}

.contact-info .benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info .benefit-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.contact-info .benefit-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-stats .stat-item {
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-stats .stat-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

/* Форма контактов */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  text-align: center;
}

.contact-form p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  color: #999;
  font-size: 1.1rem;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #333;
  color: #333;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 162, 211, 0.1);
}

.contact-form input::placeholder {
  color: #666;
  font-weight: 400;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 50px;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 20px;
}

.form-footer {
  margin-top: 20px;
  text-align: center;
}

.form-footer p {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

.form-footer i {
  color: var(--primary);
  margin-right: 5px;
}

/* Альтернативные способы связи */
.contact-alternatives {
  text-align: center;
}

.contact-alternatives h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  color: var(--text);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.method-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Общие адаптации */
.container {
  padding: 0 20px;
}

.trial {
  padding: 40px 20px;
  margin: 40px auto;
}

.trial h2 {
  font-size: 1.8rem;
}

#contact {
  padding: 40px 20px;
}

#contact form {
  padding: 30px 20px;
}

footer {
  padding: 30px 20px;
  flex-direction: column;
  gap: 20px;
}

/* Сложный Footer */
.main-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
  pointer-events: none;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Основная секция footer */
.footer-main {
  padding: 80px 0 60px;
}

.footer-main .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.footer-section {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 100%;
  margin-bottom: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-brand {
  flex: 2 1 320px;
  min-width: 260px;
  max-width: 100%;
  margin-bottom: 0;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .footer-main .footer-container {
    gap: 32px 16px;
  }
  .footer-section, .footer-brand {
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .footer-main .footer-container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px 12px;
  }
  .footer-section, .footer-brand {
    flex: 1 1 45%;
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .footer-main .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-section, .footer-brand {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }
}

@media print {
  .navbar,
  .scroll-to-top,
  .notification,
  .floating-element,
  .cta-decoration {
    display: none !important;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}

@media (max-width: 768px) {
  /* ... existing code ... */
  
  .about-image {
    display: none;
  }
  
  .testimonials-cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .testimonials-cta .cta-content {
    margin-bottom: 1.5rem;
  }
  
  .testimonials-cta .cta-decoration {
    position: static;
    opacity: 0.3;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-wrapper {
    order: 1;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-methods {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Адаптация летнего фона для мобильных */
  .sun {
    width: 80px;
    height: 80px;
    top: 5%;
    right: 5%;
  }
  
  .cloud {
    opacity: 0.6;
  }
  
  .cloud-1 {
    width: 60px;
    height: 25px;
  }
  
  .cloud-2 {
    width: 50px;
    height: 20px;
  }
  
  .cloud-3 {
    width: 70px;
    height: 30px;
  }
  
  .palm-tree-1,
  .palm-tree-2 {
    height: 120px;
  }
  
  .beach-umbrella {
    width: 60px;
    height: 90px;
  }
  
  .english-element {
    font-size: 18px;
    padding: 6px;
  }
  
  .deco-element {
    font-size: 18px;
  }
}

/* Летний языковой лагерь */
.summer-camp {
  background: linear-gradient(135deg, #c2f0f7 0%, #fef6d7 100%);
  background-size: cover;
  padding: clamp(40px, 8vw, 100px) 20px;
  color: #333;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 40px;
}

.summer-camp .container {
  max-width: 1200px;
  margin: 0 auto;
}

.camp-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
  color: #034f84;
}

.camp-title span {
  display: block;
  color: var(--primary);
}

.camp-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 50px;
  color: #555;
}

.camp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.camp-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.camp-list li {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.camp-list li:nth-child(1) { animation-delay: 0.2s; }
.camp-list li:nth-child(2) { animation-delay: 0.4s; }
.camp-list li:nth-child(3) { animation-delay: 0.6s; }
.camp-list li:nth-child(4) { animation-delay: 0.8s; }
.camp-list li:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.camp-infographic {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.day-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  width: 100px;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.8);
  animation: scaleIn 0.5s ease forwards;
}
.day-card span {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #444;
}
.day-card:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.day-card:nth-child(1) { animation-delay: 0.3s; }
.day-card:nth-child(2) { animation-delay: 0.5s; }
.day-card:nth-child(3) { animation-delay: 0.7s; }
.day-card:nth-child(4) { animation-delay: 0.9s; }
.day-card:nth-child(5) { animation-delay: 1.1s; }
@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: bold;
  margin-top: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
  background: #0070aa;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .camp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .camp-list {
    text-align: center;
  }
}

/* Минималистичный футер */
.main-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.footer-description {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary);
  width: 16px;
  flex-shrink: 0;
}

.contact-item a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 15px;
  min-width: 150px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

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

.footer-bottom p {
  color: #999;
  font-size: 0.85rem;
  margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  
  .footer-brand {
    min-width: 0;
  }
  
  .footer-contacts {
    min-width: 0;
  }
  
  .footer-social {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 30px 0 15px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-main {
    gap: 25px;
  }
}