:root {
  /* Нейроморфизм и аналоговая цветовая схема */
  --primary-color: #6a7fdb;
  --primary-dark: #5268c2;
  --primary-light: #8a99e6;
  --secondary-color: #5ebec4;
  --secondary-dark: #49a7ad;
  --secondary-light: #78d2d7;
  --accent-color: #f5c542;
  --accent-dark: #e3b32f;
  --accent-light: #f7d06a;
  
  /* Нейтральные цвета */
  --background-light: #f8f9fd;
  --background-dark: #e4e6f0;
  --text-dark: #222222;
  --text-medium: #333333;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --border-color: #d1d9e6;
  
  /* Тени для нейроморфизма */
  --shadow-light: 8px 8px 16px rgba(174, 174, 192, 0.4);
  --shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.8);
  --shadow-inset: inset 4px 4px 8px rgba(174, 174, 192, 0.25), 
                  inset -4px -4px 8px rgba(255, 255, 255, 0.5);
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  
  /* Переходы */
  --transition-fast: all 0.3s ease;
  --transition-medium: all 0.5s ease;
  --transition-slow: all 0.8s ease;
  
  /* Размеры */
  --border-radius-small: 8px;
  --border-radius-medium: 12px;
  --border-radius-large: 20px;
  --container-padding: 5%;
}

/* Базовые стили */
html, body {
  font-family: 'Merriweather', serif;
  color: var(--text-medium);
  background-color: var(--background-light);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

/* Базовые стили для кнопок (глобально) */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-medium);
  transition: var(--transition-fast);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border: none;
  box-shadow: var(--shadow-light);
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-inset);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-light);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* Контейнеры и секции */
.container {
  padding: 0 var(--container-padding);
}

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

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

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

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

/* Искривленные сетки */
.curved-section {
  position: relative;
}

.curved-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: inherit;
  border-radius: 100% 100% 0 0;
}

.curved-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: inherit;
  border-radius: 0 0 100% 100%;
  z-index: -1;
}

/* Навигация */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-medium);
}

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

.navbar {
  padding: 0;
}

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-light);
}

.navbar-toggler:focus {
  box-shadow: var(--shadow-inset);
  outline: none;
}

.nav-link {
  color: var(--text-medium);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

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

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

/* Hero секция */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Для фиксированного хедера */
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  margin-top: 2rem;
}

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  transition: var(--transition-medium);
}

.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: var(--gradient-overlay);
  border-radius: var(--border-radius-large);
}

.hero-text-overlay h1,
.hero-text-overlay p {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* About секция */
.about-section {
  background-color: var(--background-light);
}

.about-image {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

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

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-large);
}

.about-content {
  padding: 1.5rem;
}

.timeline {
  margin-top: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--gradient-primary);
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1.5rem;
}

.timeline-marker {
  position: absolute;
  left: -8px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-light);
}

.timeline-content {
  background-color: var(--background-light);
  padding: 1rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
}

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

/* Resources секция */
.resources-section {
  background-color: var(--background-dark);
  position: relative;
}

.resource-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* External Resources */
.external-resources {
  background-color: var(--background-light);
  padding: 5rem 0;
}

.external-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.ext-resource-card {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  text-align: center;
}

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

.ext-resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.ext-resource-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Webinars секция */
.webinars-section {
  background-color: var(--background-dark);
}

.webinar-image {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
}

.webinar-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-large);
}

.webinar-content {
  padding: 1rem;
}

.webinar-item {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
  margin-bottom: 1.5rem;
  transition: var(--transition-medium);
}

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

.webinar-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.webinar-item h4 {
  margin-bottom: 1rem;
}

/* Success Stories секция */
.success-stories-section {
  background-color: var(--background-light);
}

.story-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.story-author {
  font-style: italic;
  color: var(--text-muted);
  text-align: right;
  margin-top: 1rem;
}

/* Pricing секция */
.pricing-section {
  background-color: var(--background-dark);
}

.pricing-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

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

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--primary-light);
  z-index: 2;
}

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

.pricing-header {
  background: var(--gradient-primary);
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-body {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-body ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pricing-footer {
  padding: 1.5rem;
  text-align: center;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 1rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background-dark);
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Partners секция */
.partners-section {
  background-color: var(--background-light);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  width: 100%;
  height: 100%;
}

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

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

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

/* Media секция */
.media-section {
  background-color: var(--background-dark);
}

.media-video {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  cursor: pointer;
}

.media-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  transition: var(--transition-medium);
}

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

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 25px solid var(--primary-color);
  border-bottom: 15px solid transparent;
  margin-left: 8px;
}

.media-content {
  padding: 1.5rem;
}

.media-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

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

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

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.podcast-section {
  margin-top: 4rem;
}

.podcast-item {
  text-align: center;
  margin-bottom: 2rem;
}

.podcast-item img {
  width: 80%;
  height: auto;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  margin: 0 auto 1.5rem;
}

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

.podcast-item h4 {
  margin-bottom: 1rem;
}

/* Contact секция */
.contact-section {
  background-color: var(--background-light);
}

.contact-info {
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  margin-bottom: 2rem;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.social-links h4 {
  margin-bottom: 1rem;
}

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

.social-icons a {
  color: var(--primary-color);
  transition: var(--transition-fast);
  font-weight: 500;
}

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

.contact-form {
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
}

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

.form-control {
  background-color: var(--background-light);
  border: none;
  border-radius: var(--border-radius-medium);
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  color: var(--text-medium);
  box-shadow: var(--shadow-inset);
  transition: var(--transition-fast);
}

.form-control:focus {
  box-shadow: var(--shadow-inset), 0 0 0 3px rgba(106, 127, 219, 0.2);
  outline: none;
}

.form-check-input {
  background-color: var(--background-light);
  border: none;
  box-shadow: var(--shadow-inset);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  padding: 5rem 0 2rem;
  position: relative;
}

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

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

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

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

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-newsletter h4 {
  margin-bottom: 1.5rem;
}

.newsletter-form {
  margin-top: 1.5rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-legal {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.footer-legal li a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* Success, Privacy и Terms страницы */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.success-content {
  text-align: center;
  padding: 3rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  max-width: 800px;
  width: 100%;
}

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

.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.privacy-content,
.terms-content {
  background-color: var(--background-light);
  padding: 3rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.9);
  color: var(--text-light);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-left: 1rem;
}

.cookie-btn:hover {
  background-color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-text-overlay {
    padding: 1.5rem;
  }
  
  .hero-text-overlay h1 {
    font-size: 2.5rem;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-text-overlay h1 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-newsletter,
  .footer-links,
  .footer-brand {
    margin-bottom: 2rem;
  }
  
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
  }
  
  .cookie-btn {
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-text-overlay {
    padding: 1rem;
  }
  
  .card-image {
    height: 200px;
  }
  
  .partner-logo {
    padding: 1rem;
  }
  
  .media-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-item {
    margin-bottom: 1.5rem;
  }
}

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

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

@keyframes drawLine {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

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

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

.draw-animation::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary-color);
  animation: drawLine 1.5s ease-out forwards;
}

/* Дополнительные классы-утилиты */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

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

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.shadow-neomorphic {
  box-shadow: var(--shadow-light);
}

.shadow-inset-neomorphic {
  box-shadow: var(--shadow-inset);
}

.rounded-large {
  border-radius: var(--border-radius-large);
}

.rounded-medium {
  border-radius: var(--border-radius-medium);
}

.rounded-small {
  border-radius: var(--border-radius-small);
}