:root {
  /* Тетрада цветовая схема */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #dc2626;
  --secondary-dark: #b91c1c;
  --secondary-light: #ef4444;
  --tertiary-color: #059669;
  --tertiary-dark: #047857;
  --tertiary-light: #10b981;
  --quaternary-color: #7c3aed;
  --quaternary-dark: #6d28d9;
  --quaternary-light: #8b5cf6;
  
  /* Нейтральные цвета */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--quaternary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
  --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--quaternary-dark) 50%, var(--secondary-dark) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Типографика */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  
  /* Размеры */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Анимации */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* Глобальные стили кнопок */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  text-transform: none;
  letter-spacing: 0.025em;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover:before {
  left: 100%;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
  border-radius: var(--border-radius-lg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Ссылки "Читать далее" */
.read-more-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
}

.read-more-link:after {
  content: '→';
  margin-left: 8px;
  transition: transform var(--transition-normal);
}

.read-more-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.read-more-link:hover:after {
  transform: translateX(4px);
}

/* Utility классы */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* Header */
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  z-index: 1000;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color) !important;
  text-decoration: none;
  gap: 12px;
}

.navbar-brand img {
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 60px;
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: 8px 16px !important;
  margin: 0 4px;
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: var(--white) !important;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--white) !important;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Team Section */
.team-card {
  border: none;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  background: var(--white);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.team-card .card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

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

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

.team-card .card-title {
  color: var(--gray-900);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-card .card-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.team-card .card-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Case Studies Section */
.carousel-container {
  position: relative;
  margin: 2rem 0;
}

.case-study-card {
  border: none;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  background: var(--white);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.case-study-card .card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.case-study-card:hover .card-image img {
  transform: scale(1.08);
}

.case-study-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.case-study-card .card-title {
  color: var(--gray-900);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.case-study-card .card-description {
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: all var(--transition-normal);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* Resource Cards */
.resource-card {
  border: none;
  border-radius: var(--border-radius-xl);
  transition: all var(--transition-normal);
  background: var(--white);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

.resource-card .card-title {
  color: var(--gray-900);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.resource-card .card-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

/* Contact Section */
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-item h5 {
  color: var(--white) !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.8;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.form-control::placeholder,
.form-select option {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
  color: var(--white);
}

/* FAQ Section */
.accordion {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.accordion-item {
  border: none;
  background: var(--white);
}

.accordion-item:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--gray-900);
  background: var(--white);
  border: none;
  padding: 1.5rem;
  transition: all var(--transition-normal);
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23374151'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform var(--transition-normal);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--gray-600);
  line-height: 1.8;
  border-top: 1px solid var(--gray-200);
}

/* Sustainability Section */
.sustainability-item {
  position: relative;
  padding-left: 1rem;
}

.sustainability-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.sustainability-item h5 {
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sustainability-item p {
  color: var(--gray-600);
  line-height: 1.7;
}

.image-gallery img {
  transition: all var(--transition-normal);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.image-gallery img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Insights Section */
.insight-card {
  border: none;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  background: var(--white);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.insight-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

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

.insight-card .card-title {
  color: var(--gray-900);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.insight-card .card-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

/* Footer */
.footer-section {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-section::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 1000 100" preserveAspectRatio="none"><polygon fill="%23ffffff" points="1000,0 1000,100 0,100"></polygon></svg>') no-repeat;
  background-size: 100% 100px;
  transform: translateY(-100px);
  opacity: 0.1;
}

.footer-content h5,
.footer-content h6 {
  color: var(--white) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-links a:before {
  content: '→';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all var(--transition-normal);
}

.footer-links a:hover:before {
  opacity: 1;
  left: -20px;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

/* Специальные страницы */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: 2rem;
}

.success-content h1 {
  color: var(--white) !important;
  margin-bottom: 2rem;
}

.success-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.privacy-content,
.terms-content {
  padding-top: 120px;
  padding-bottom: 60px;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.terms-content h1,
.terms-content h2,
.terms-content h3 {
  color: var(--gray-900);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p,
.terms-content p,
.privacy-content li,
.terms-content li {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Адаптивность */
@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .footer-legal {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
  
  .parallax {
    background-attachment: scroll;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-buttons .btn {
    margin: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 30px 0;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Анимации появления */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Гласморфизм эффекты */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

/* Дополнительные утилиты */
.text-gradient {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.shadow-custom {
  box-shadow: var(--shadow-xl);
}

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

/* Исправления для Bootstrap */
.navbar-dark .navbar-nav .nav-link {
  color: var(--gray-700) !important;
}

.navbar-dark .navbar-brand {
  color: var(--primary-color) !important;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
}

.bg-light {
  background-color: var(--gray-50) !important;
}

/* Оптимизация производительности */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.lazyload {
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.lazyload.loaded {
  opacity: 1;
}