:root {
  /* Триадная цветовая схема */
  --primary-color: #3a42e1; /* Основной - синий */
  --secondary-color: #e13a84; /* Второстепенный - розовый */
  --tertiary-color: #3ae174; /* Третичный - зеленый */
  
  /* Оттенки основных цветов */
  --primary-dark: #2930b8;
  --primary-light: #656aed;
  --secondary-dark: #b82d67;
  --secondary-light: #e76ba3;
  --tertiary-dark: #2db85c;
  --tertiary-light: #6aed96;
  
  /* Нейтральные цвета */
  --dark: #1a1a24;
  --gray-dark: #2d2d3a;
  --gray: #5a5a6e;
  --gray-light: #8a8a9e;
  --light: #f3f3f7;
  
  /* Акцентные цвета для нео-брутализма */
  --accent-neon: #fdf44c; /* Неоновый желтый */
  --accent-orange: #ff7425;
  
  /* Функциональные цвета */
  --success: #29cc7a;
  --warning: #ffc931;
  --danger: #f44336;
  --info: #31b0ff;
  
  /* Тени */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.2);
  --shadow-brutalism: 8px 8px 0 rgba(0, 0, 0, 0.9);
  
  /* Типографика */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  
  /* Размеры и отступы */
  --header-height: 80px;
  --border-radius: 4px;
  --border-radius-lg: 12px;
}

/* Базовые стили */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.section-title {
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-divider {
  height: 4px;
  width: 80px;
  background: var(--primary-color);
  margin: 0 auto 2rem;
}

.section-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--gray);
}

/* Контейнеры и секции */
section {
  padding: 5rem 0;
  position: relative;
}

section:nth-child(odd) {
  background-color: var(--light);
}

section:nth-child(even) {
  background-color: #ffffff;
}

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

/* Кнопки */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

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

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

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

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.hero-buttons {
  margin-top: 2rem;
}

/* Неон-брутализм стили для кнопок */
.btn-brutalism {
  border: 3px solid var(--dark);
  background: var(--accent-neon);
  color: var(--dark);
  box-shadow: var(--shadow-brutalism);
  border-radius: 0;
  transition: all 0.2s ease;
}

.btn-brutalism:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.9);
}

/* Навигация */
header {
  background-color: rgba(26, 26, 36, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: white !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: white;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Hero секция */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 6rem 0;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 26, 36, 0.9), rgba(26, 26, 36, 0.6));
  z-index: 1;
}

.hero-section h1 {
  font-weight: 900;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #FFFFFF; /* Гарантируем белый цвет текста */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF; /* Гарантируем белый цвет текста */
}

/* About секция */
.about-section {
  position: relative;
  overflow: hidden;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

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

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

.portfolio-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-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 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.card-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Sustainability секция */
.sustainability-section {
  position: relative;
  overflow: hidden;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  margin-bottom: 0;
  color: var(--gray);
}

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

.resource-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: white;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

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

/* Process секция */
.process-section {
  background-color: white;
}

.process-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--light);
  box-shadow: var(--shadow-md);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: var(--font-heading);
  z-index: 1;
}

.image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.process-card p {
  color: var(--gray);
  margin-bottom: 0;
}

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

.partner-card {
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card img {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.partner-card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Pricing секция */
.pricing-section {
  background-color: white;
}

.pricing-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 0.9rem;
  border-bottom-left-radius: var(--border-radius);
}

.pricing-header {
  background-color: var(--dark);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: white;
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: var(--font-heading);
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 0.25rem;
}

.custom-price {
  font-size: 1.75rem;
  font-weight: 700;
}

.pricing-features {
  padding: 2rem 1.5rem;
  flex-grow: 1;
  width: 100%;
}

.pricing-features ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

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

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

.pricing-footer {
  padding: 1.5rem;
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.02);
}

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

.event-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: white;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.event-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  min-width: 70px;
  z-index: 1;
}

.day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.month {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
}

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

.event-type {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

/* Press секция */
.press-section {
  background-color: white;
}

.press-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--light);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.press-logo {
  margin-bottom: 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-quote {
  font-style: italic;
  color: var(--gray);
}

.press-source {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

.career-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: white;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.location {
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Contact секция */
.contact-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.contact-info {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: var(--light);
  height: 100%;
}

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

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

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.contact-item p {
  margin-bottom: 0;
  color: var(--gray);
}

.contact-form-container {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background-color: white;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.form-control {
  border: 2px solid #eaeaea;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(58, 66, 225, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer-section {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 0;
}

.footer-section h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.6);
}

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

.social-links a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: white;
  transform: translateY(-3px);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Модальные окна */
.modal-content {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: none;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
}

.modal-title {
  font-weight: 700;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: none;
  padding: 1rem 2rem 2rem;
}

.result-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.result-item h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.result-item p {
  margin-bottom: 0;
  color: var(--gray);
}

/* Cookie Consent Popup */
#cookieConsentPopup {
  font-family: var(--font-body);
}

#cookieConsentPopup p {
  margin-bottom: 1rem;
}

#acceptCookies {
  display: inline-block;
  min-width: 120px;
}

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

.success-container {
  max-width: 600px;
}

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

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.success-message {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Доп. страницы */
.page-header {
  padding-top: 150px;
  padding-bottom: 3rem;
  background-color: var(--light);
}

.page-content {
  padding: 3rem 0;
}

/* Privacy и Terms страницы */
.terms-page, .privacy-page {
  padding-top: 100px;
}

.terms-page h2, .privacy-page h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.terms-page p, .privacy-page p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

/* Медиа запросы */
@media (max-width: 991.98px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .navbar-collapse {
    background-color: var(--dark);
    padding: 1rem;
    border-radius: var(--border-radius);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .sustainability-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-section {
    padding-top: 3rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom-links li {
    margin: 0 0.75rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/* Анимации и эффекты */
[data-sr] {
  visibility: hidden;
}

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

/* Необрутализм элементы */
.brutalism-card {
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-brutalism);
  border-radius: 0;
  background-color: var(--accent-neon);
  padding: 2rem;
  transition: all 0.2s ease;
}

.brutalism-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.9);
}

/* Для контактной формы обратной связи */
.contact-form {
  position: relative;
}

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

/* Анимации для карточек */
@keyframes floatAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

/* Дополнительные стили для улучшения читаемости */
.text-on-image {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.overlay-dark {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

/* Стили для ссылок "Читать далее" */
.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--primary-dark);
}

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

html,body{
  overflow-x: hidden;
}