/* CSS Variables - Пастельная цветовая схема */
:root {
  /* Основные цвета */
  --primary-color: #FFB6C1; /* Светло-розовый */
  --primary-dark: #FF91A4;
  --primary-light: #FFD1DC;
  
  --secondary-color: #DDA0DD; /* Светло-сиреневый */
  --secondary-dark: #D87FD8;
  --secondary-light: #E6B8E6;
  
  --accent-color: #B6E5D8; /* Мятный */
  --accent-dark: #9DDBC7;
  --accent-light: #C9F0E1;
  
  --neutral-color: #F5F5F5;
  --neutral-dark: #E8E8E8;
  --neutral-light: #FAFAFA;
  
  /* Текстовые цвета */
  --text-primary: #2D3748;
  --text-secondary: #4A5568;
  --text-light: #718096;
  --text-white: #FFFFFF;
  
  /* Фоновые цвета */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7FAFC;
  --bg-light: #EDF2F7;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(135deg, var(--accent-color), var(--primary-light));
  --gradient-overlay: linear-gradient(135deg, rgba(255,182,193,0.8), rgba(221,160,221,0.8));
  
  /* Тени */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Биоморфные формы */
  --border-radius-organic: 30px 60px 30px 60px;
  --border-radius-soft: 20px;
  --border-radius-round: 50px;
  
  /* Анимации */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Размеры */
  --container-max-width: 1200px;
  --header-height: 70px;
  --section-padding: 80px 0;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Типографика */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

/* Контейнер */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Глобальные стили кнопок */
.btn,
.button,
button,
input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius-round);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn:hover,
.button:hover,
button:hover,
input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
}

.btn:active,
.button:active,
button:active,
input[type='submit']:active {
  transform: translateY(0);
}

.btn.is-light,
.button.is-light {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn.is-light:hover,
.button.is-light:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn.is-large,
.button.is-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.2);
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
}

#header.is-transparent {
  background: transparent;
  border-bottom: none;
}

.navbar-brand .navbar-item {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.navbar-menu {
  background: transparent;
}

.navbar-item {
  color: var(--text-primary);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-item:hover {
  color: var(--primary-color);
  background: transparent;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-normal);
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 80%;
}

/* Hero Section */
#hero {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

#hero .hero-body {
  position: relative;
  z-index: 2;
  padding: var(--section-padding);
}

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

#hero .subtitle {
  color: var(--text-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  font-size: 1.3rem;
  opacity: 0.95;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Биоморфные элементы */
.bio-shape {
  border-radius: var(--border-radius-organic);
  background: var(--gradient-secondary);
  opacity: 0.1;
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.bio-shape:nth-child(2) {
  animation-delay: -2s;
}

.bio-shape:nth-child(3) {
  animation-delay: -4s;
}

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

/* Section стили */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section.has-background-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .title {
  margin-bottom: 1rem;
}

.section-header .subtitle {
  color: var(--text-light);
  font-size: 1.2rem;
}

/* Vision Section */
#vision {
  background: var(--bg-primary);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-lg);
}

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

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

/* Progress Cards */
.progress-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-soft);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.progress-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.progress-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  position: relative;
}

.progress-circle::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--bg-primary);
  border-radius: 50%;
}

.progress-text {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Services Section */
#services {
  background: var(--bg-light);
}

.service-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.service-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card .title {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Instructors Section */
#instructors {
  background: var(--bg-primary);
}

.instructor-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.instructor-card .card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.instructor-card .card-content {
  padding: 2rem;
  text-align: center;
}

/* Timeline */
.timeline-section {
  margin-top: 4rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.timeline-marker {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -13px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -13px;
}

.timeline-content {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-content .heading {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Resources Section */
#resources {
  background: var(--bg-light);
}

.resource-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.resource-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card .title {
  margin-bottom: 1rem;
  flex-grow: 0;
}

.resource-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Media Section */
#media {
  background: var(--bg-primary);
}

.media-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-xl);
}

.carousel-container {
  position: relative;
  height: 500px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--transition-slow);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide .image-container {
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide .content {
  padding: 3rem;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 2;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.1);
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--text-white);
  transform: scale(1.3);
}

/* Contact Section */
#contact {
  background: var(--bg-light);
}

.contact-form-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  padding: 2rem;
}

.field {
  margin-bottom: 2rem;
}

.label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.input,
.textarea,
.select select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--neutral-dark);
  border-radius: var(--border-radius-soft);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--bg-primary);
  color: var(--text-primary);
}

.input:focus,
.textarea:focus,
.select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 182, 193, 0.1);
}

.control.has-icons-left {
  position: relative;
}

.control.has-icons-left .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.control.has-icons-left .input {
  padding-left: 3rem;
}

.contact-info-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-soft);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  height: fit-content;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.contact-text h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
}

.modal-card-head {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--text-white);
}

.modal-card-body {
  padding: 2rem;
  text-align: center;
}

.icon-success {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.modal-card-foot {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  background: var(--bg-light);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  color: var(--text-white);
  padding: 3rem 0 1rem;
}

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

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #A0AEC0;
  transition: var(--transition-fast);
}

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

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

.social-links a {
  color: #A0AEC0;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

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

.contact-footer p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-footer a {
  color: #A0AEC0;
  transition: var(--transition-fast);
}

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

/* Cookie Popup */
.cookie-popup {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--primary-color);
}

.cookie-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-content p {
  margin-bottom: 1rem;
  color: var(--text-white);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
  text-align: center;
  padding: 2rem;
}

.success-content {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--border-radius-soft);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  width: 100%;
}

/* Privacy and Terms Pages */
.content-page {
  padding-top: 100px;
  min-height: 100vh;
}

.content-page .section {
  padding: 2rem 0;
}

.content-page h1,
.content-page h2,
.content-page h3 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-page p,
.content-page li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-page ul,
.content-page ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

/* Параллакс анимации */
.parallax-element {
  transition: transform 0.1s ease-out;
}

/* Адаптивность */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 4rem !important;
    padding-right: 1rem !important;
    text-align: left !important;
  }
  
  .timeline-marker {
    left: 20px !important;
    right: auto !important;
  }
  
  .carousel-slide {
    height: auto;
    min-height: 400px;
  }
  
  .carousel-slide .columns {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 40px 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .navbar-menu {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
  }
  
  .carousel-controls {
    position: static;
    transform: none;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .carousel-slide .content {
    padding: 2rem 1rem;
  }
  
  .progress-circle {
    width: 100px;
    height: 100px;
  }
  
  .instructor-card .card-image {
    height: 250px;
  }
  
  .service-card .card-image {
    height: 200px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .btn,
  .button {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .carousel-slide {
    min-height: 600px;
  }
  
  .modal-card {
    width: 95%;
    margin: 1rem;
  }
  
  .timeline-item {
    padding-left: 3rem !important;
  }
}

/* Анимации появления */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.animate-on-scroll {
  opacity: 0;
  animation-fill-mode: both;
  animation-duration: 0.8s;
}

.animate-on-scroll.animate {
  animation-name: fadeInUp;
  opacity: 1;
}

/* Гласморфизм эффекты */
.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--border-radius-soft);
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mt-6 { margin-top: 3rem; }

/* Цветовые утилиты */
.has-text-primary { color: var(--primary-color) !important; }
.has-text-secondary { color: var(--secondary-color) !important; }
.has-text-dark { color: var(--text-primary) !important; }
.has-text-white { color: var(--text-white) !important; }
.has-text-grey-dark { color: var(--text-secondary) !important; }
.has-text-grey-light { color: var(--text-light) !important; }

.has-background-primary { background-color: var(--primary-color) !important; }
.has-background-light { background-color: var(--bg-light) !important; }
.has-background-white { background-color: var(--bg-primary) !important; }

/* Скрытие элементов */
.is-hidden {
  display: none !important;
}

.is-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}