/* ===================================
   CSS ПЕРЕМЕННЫЕ И КОРНЕВЫЕ СТИЛИ
=================================== */

:root {
  /* Пастельная цветовая схема */
  --primary-color: #8B9DC3;
  --primary-light: #A8B5D6;
  --primary-dark: #6B7FA3;
  --secondary-color: #F7E7CE;
  --secondary-light: #FBF1E4;
  --secondary-dark: #E6D1B0;
  --accent-color: #E8A87C;
  --accent-light: #F0B896;
  --accent-dark: #D4946A;
  --success-color: #A8D5BA;
  --info-color: #B8D4F0;
  --warning-color: #F5D491;
  --danger-color: #F0B3B8;
  
  /* Нейтральные цвета */
  --white: #FFFFFF;
  --light-grey: #F8F9FA;
  --medium-grey: #E9ECEF;
  --dark-grey: #6C757D;
  --black: #2C3E50;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%);
  --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.8) 100%);
  
  /* Тени для объемности */
  --shadow-light: 0 2px 8px rgba(139, 157, 195, 0.15);
  --shadow-medium: 0 4px 16px rgba(139, 157, 195, 0.25);
  --shadow-heavy: 0 8px 32px rgba(139, 157, 195, 0.35);
  --shadow-hover: 0 12px 40px rgba(139, 157, 195, 0.4);
  
  /* Анимации */
  --transition-fast: 0.15s ease-in-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Скругления */
  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 24px;
  --radius-xl: 32px;
  
  /* Размеры */
  --header-height: 70px;
  --container-max-width: 1200px;
}

/* ===================================
   БАЗОВЫЕ СТИЛИ И СБРОС
=================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6,
.title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 1rem;
}

h1, .title.is-1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2, .title.is-2 { font-size: clamp(2rem, 4vw, 3rem); }
h3, .title.is-3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4, .title.is-4 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }
h5, .title.is-5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6, .title.is-6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

.subtitle {
  color: var(--dark-grey);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* Параграфы и текст */
p {
  margin-bottom: 1rem;
  color: var(--dark-grey);
}

/* Ссылки */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Изображения */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   ГЛОБАЛЬНЫЕ СТИЛИ КНОПОК
=================================== */

.btn,
.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-medium);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
  min-width: 140px;
}

.btn-modern,
.button.btn-modern {
  background: var(--gradient-primary);
  color: var(--white);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.btn-modern:hover,
.button.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
  text-decoration: none;
}

.btn-modern:active,
.button.btn-modern:active {
  transform: translateY(0);
  box-shadow: var(--shadow-medium);
}

/* Кнопки основных цветов */
.button.is-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

.button.is-light {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button.is-light:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.button.is-success {
  background: var(--success-color);
  color: var(--white);
}

.button.is-info {
  background: var(--info-color);
  color: var(--white);
}

/* Размеры кнопок */
.button.is-large {
  padding: 16px 32px;
  font-size: 1.125rem;
  min-width: 160px;
}

.button.is-small {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-width: 100px;
}

/* ===================================
   НАВИГАЦИЯ И ХЕДЕР
=================================== */

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 157, 195, 0.1);
  transition: var(--transition-medium);
}

.navbar {
  padding: 1rem 0;
  min-height: var(--header-height);
}

.navbar.is-transparent {
  background: transparent;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-item {
  color: var(--black);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-small);
  transition: var(--transition-fast);
  margin: 0 0.25rem;
}

.navbar-item:hover,
.navbar-item.is-active {
  background: var(--gradient-secondary);
  color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.navbar-burger {
  height: 3.25rem;
  width: 3.25rem;
  border-radius: var(--radius-small);
  transition: var(--transition-fast);
}

.navbar-burger:hover {
  background: var(--light-grey);
}

/* ===================================
   HERO СЕКЦИЯ
=================================== */

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}

.hero-gradient {
  background: var(--gradient-hero);
}

.hero.is-medium {
  min-height: 50vh;
}

.hero.is-fullheight-with-navbar {
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
}

.hero-title {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  color: var(--white) !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  margin-top: 2rem;
}

.hero-buttons .button {
  margin: 0.5rem;
}

/* ===================================
   СЕКЦИИ И КОНТЕЙНЕРЫ
=================================== */

.section {
  padding: 4rem 0;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

.has-text-centered .subtitle {
  margin-bottom: 3rem;
}

/* ===================================
   КАРТОЧКИ И ЭЛЕМЕНТЫ
=================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(139, 157, 195, 0.1);
  transition: var(--transition-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.image-container img {
  margin: 0 auto;
  display: block;
  object-fit: cover;
}

/* ===================================
   ПРОЕКТЫ
=================================== */

.project-card {
  height: 100%;
  transition: var(--transition-medium);
}

.project-card .card-content {
  padding: 1.5rem;
}

.progress-container {
  margin-top: 1rem;
}

.progress-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-grey);
  font-size: 0.875rem;
}

.progress {
  height: 8px;
  border-radius: var(--radius-small);
  background: var(--light-grey);
  overflow: hidden;
}

.progress::-webkit-progress-bar {
  background: var(--light-grey);
}

.progress.is-success::-webkit-progress-value {
  background: var(--success-color);
}

.progress.is-primary::-webkit-progress-value {
  background: var(--primary-color);
}

.progress.is-info::-webkit-progress-value {
  background: var(--info-color);
}

/* ===================================
   ОТЗЫВЫ КЛИЕНТОВ
=================================== */

.testimonial-card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  height: 100%;
}

.testimonial-card .media-left .image-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-light);
}

.testimonial-card .content {
  font-style: italic;
  position: relative;
  padding: 1rem;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-medium);
  margin-top: 1rem;
}

.testimonial-card .content::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: 'Georgia', serif;
}

.stats-widget {
  margin-top: 1rem;
}

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

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Oswald', sans-serif;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--dark-grey);
  margin-top: 0.25rem;
}

/* ===================================
   РЕСУРСЫ
=================================== */

.resource-card {
  height: 100%;
  border-left: 4px solid var(--accent-color);
}

.resource-card .card-content {
  padding: 2rem;
}

/* ===================================
   ПРАЙСИНГ
=================================== */

.pricing-card {
  position: relative;
  transition: var(--transition-medium);
  height: 100%;
}

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

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

.pricing-card.is-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  z-index: 10;
}

.price-container {
  margin: 1.5rem 0;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Oswald', sans-serif;
}

.period {
  font-size: 1rem;
  color: var(--dark-grey);
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--medium-grey);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success-color);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* ===================================
   КАЛЕНДАРЬ СОБЫТИЙ
=================================== */

.event-card {
  border-left: 4px solid var(--info-color);
  height: 100%;
}

.event-card .card-content {
  display: flex;
  padding: 1.5rem;
  text-align: left;
  align-items: flex-start;
}

.event-date {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--radius-medium);
  text-align: center;
  margin-right: 1.5rem;
  min-width: 80px;
}

.event-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
}

.event-date .month {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.event-info {
  flex: 1;
}

.event-meta {
  margin-top: 1rem;
}

.event-meta .tag {
  margin-right: 0.5rem;
}

/* ===================================
   МЕДИА
=================================== */

.media-card {
  height: 100%;
  overflow: hidden;
}

.media-card .card-image {
  height: 200px;
}

.media-card .tag {
  margin-top: 1rem;
}

/* ===================================
   ПАРТНЕРЫ
=================================== */

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 120px;
  background: var(--white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.partner-logo img {
  max-height: 80px;
  opacity: 0.7;
  transition: var(--transition-fast);
  filter: grayscale(100%);
}

.partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===================================
   УСТОЙЧИВОЕ РАЗВИТИЕ
=================================== */

.sustainability-image {
  height: 300px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

/* ===================================
   FAQ
=================================== */

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

.faq-item {
  border: 1px solid var(--medium-grey);
  border-radius: var(--radius-medium);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

.faq-question {
  padding: 1.5rem;
  background: var(--light-grey);
  cursor: pointer;
  user-select: none;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

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

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

/* ===================================
   КОНТАКТЫ
=================================== */

.contact-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card {
  text-align: center;
  height: 100%;
  transition: var(--transition-medium);
}

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

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modern-input,
.modern-select {
  border: 2px solid var(--medium-grey);
  border-radius: var(--radius-medium);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--white);
}

.modern-input:focus,
.modern-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 157, 195, 0.1);
  outline: none;
}

.working-hours {
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}

.working-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--medium-grey);
}

.working-day:last-child {
  border-bottom: none;
}

.working-day .day {
  font-weight: 600;
  color: var(--black);
}

.working-day .time {
  color: var(--primary-color);
  font-weight: 600;
}

.map-container,
.map-container-large {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map-container-large {
  height: 400px;
}

/* ===================================
   КОМАНДА
=================================== */

.team-card {
  height: 100%;
  text-align: center;
}

.team-card .card-image {
  height: 300px;
}

.team-card .image-container {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 2rem auto;
  overflow: hidden;
  border: 4px solid var(--primary-light);
}

/* ===================================
   ЦЕННОСТИ
=================================== */

.value-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  height: 100%;
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* ===================================
   СТРАНИЦА УСПЕХА
=================================== */

.success-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-animation {
  animation: bounceIn 1s ease-out;
}

.success-icon {
  background: var(--success-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3rem;
  color: var(--white);
  box-shadow: var(--shadow-heavy);
}

.success-next-steps {
  margin: 3rem 0;
}

.step-item {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.success-actions {
  text-align: center;
}

.resource-preview {
  height: 100%;
  border-left: 4px solid var(--accent-color);
}

.contact-quick p {
  margin-bottom: 0.5rem;
}

/* ===================================
   ПРАВОВЫЕ СТРАНИЦЫ
=================================== */

.legal-content {
  padding-top: 100px;
}

.legal-content h2 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--dark-grey);
}

/* ===================================
   ФУТЕР
=================================== */

.footer {
  background: linear-gradient(135deg, var(--black) 0%, #34495e 100%);
  color: var(--light-grey);
  padding: 3rem 0 1rem;
}

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

.footer-section p {
  color: var(--light-grey);
  line-height: 1.6;
}

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

.contact-info strong {
  color: var(--white);
}

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

.social-links a {
  color: var(--primary-light);
  margin-right: 1rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

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

.footer-links a {
  color: var(--light-grey);
  margin: 0 0.5rem;
  transition: var(--transition-fast);
}

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

.footer hr {
  border-color: rgba(139, 157, 195, 0.3);
  margin: 2rem 0 1rem;
}

/* ===================================
   СЛУЖЕБНЫЕ КЛАССЫ
=================================== */

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
  transition: var(--transition-medium);
}

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

/* ===================================
   АНИМАЦИИ
=================================== */

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

/* ===================================
   АДАПТИВНОСТЬ
=================================== */

@media (max-width: 1023px) {
  .hero {
    background-attachment: scroll;
  }
  
  .pricing-card.is-featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .event-card .card-content {
    flex-direction: column;
    text-align: center;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 2rem 0;
  }
  
  .hero-buttons .button {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .team-card .image-container {
    width: 150px;
    height: 150px;
  }
  
  h1, .title.is-1 { font-size: 2.5rem; }
  h2, .title.is-2 { font-size: 2rem; }
  
  .navbar-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-medium);
    margin: 0.5rem;
    box-shadow: var(--shadow-medium);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .button {
    font-size: 0.875rem;
    padding: 10px 20px;
  }
  
  .button.is-large {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* ===================================
   УЛУЧШЕННАЯ ПРОИЗВОДИТЕЛЬНОСТЬ
=================================== */

.card,
.button,
.navbar-item,
.project-card,
.testimonial-card,
.pricing-card {
  will-change: transform;
}

.hero {
  will-change: background-position;
}

/* Предзагрузка критических шрифтов */
@font-face {
  font-family: 'Oswald';
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  font-display: swap;
}