:root {
  --color-background: hsl(220, 16%, 96%);
  --color-foreground: hsl(222, 30%, 12%);
  --color-card: hsl(0, 0%, 100%);
  --color-card-foreground: hsl(222, 30%, 12%);
  --color-primary: hsl(222, 47%, 20%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-secondary: hsl(220, 14%, 92%);
  --color-secondary-foreground: hsl(222, 30%, 12%);
  --color-muted: hsl(220, 12%, 94%);
  --color-muted-foreground: hsl(220, 10%, 46%);
  --color-accent: hsl(36, 95%, 50%);
  --color-accent-foreground: hsl(222, 30%, 12%);
  --color-border: hsl(220, 14%, 88%);
  
  /* Специфичные цвета мессенджеров */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20bd5a;
  --color-telegram: #229ED9;
  --color-telegram-hover: #1e8ec4;
  --color-max: #4224bd;
  --color-max-hover: #6224bd;
  
  /* Шрифты */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  /* Радиусы */
  --radius: 0.625rem;
  --radius-md: calc(var(--radius) - 2px);
  --radius-sm: calc(var(--radius) - 4px);
  
  /* Тени */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Z-index слои */
  --z-header: 50;
  --z-mobile-menu: 60;
  --z-modal: 100;
  --z-widget: 50;
}


/* ========================================
   CSS RESET И БАЗОВЫЕ СТИЛИ
   ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-foreground);
  background-color: var(--color-background);
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}
/* ========================================
   АНИМАЦИИ
   ======================================== */

@keyframes float {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-8px); 
  }
}

@keyframes pulse-ring {
  0% { 
    transform: scale(0.8); 
    opacity: 1; 
  }
  100% { 
    transform: scale(2); 
    opacity: 0; 
  }
}

@keyframes fade-in-up {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes slide-in-left {
  from { 
    opacity: 0; 
    transform: translateX(-30px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes slide-in-right {
  from { 
    opacity: 0; 
    transform: translateX(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

/* Utility классы для анимаций */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-ring {
  animation: pulse-ring 1.5s ease-out infinite;
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out both;
}

.animate-slide-in-left {
  animation: slide-in-left 0.6s ease-out both;
}

.animate-slide-in-right {
  animation: slide-in-right 0.6s ease-out both;
}

/* Задержки для последовательной анимации */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
/* ========================================
   UTILITY КЛАССЫ
   ======================================== */

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Text utilities */
.text-balance {
  text-wrap: balance;
}

/* Transition utilities */
.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

/* Hidden scroll */
.no-scroll {
  overflow: hidden;
}
/* ========================================
   HEADER - Шапка сайта
   ======================================== */

/* Header блок */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background-color: transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  background-color: rgba(26, 37, 64, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
    background-color: var(--color-accent);
}

.header--scrolled .logo__icon {
  background-color: var(--color-accent);
  border-color: transparent;
}

.logo__svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-card);
  transition: color 0.3s ease;
}

.header--scrolled .logo__svg {
  color: var(--color-accent-foreground);
}

.logo__text {
  display: flex;
  flex-direction: column;
    gap: 3px;
}

.logo__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--color-card);
}

.logo__subtitle {
  font-size: 0.6875rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.header--scrolled .logo__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav__link:hover {
  color: var(--color-card);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Messengers */
.messengers {
  display: none;
}

@media (min-width: 768px) {
  .messengers {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }
}

.messengers__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.messengers__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.messengers__icon {
    width: 1.25rem;
    height: 1.25rem;
}

.messengers__link--whatsapp {
  background-color: var(--color-whatsapp);
}

.messengers__link--whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}

.messengers__link--telegram {
  background-color: var(--color-telegram);
}

.messengers__link--telegram:hover {
  background-color: var(--color-telegram-hover);
}

.messengers__link--max {
  background-color: var(--color-max);
}

.messengers__link--max:hover {
  background-color: var(--color-max-hover);
}

/* Divider */
.header__divider {
  display: none;
}

@media (min-width: 768px) {
  .header__divider {
    display: block;
    width: 1px;
    height: 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease;
  }

  .header--scrolled .header__divider {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/* CTA Button */
.header__cta {
  display: none;
}

@media (min-width: 640px) {
  .header__cta {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn--cta {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-card);
}

.btn--cta:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.header--scrolled .btn--cta {
  background-color: var(--color-accent);
  border-color: transparent;
  color: var(--color-accent-foreground);
}

.header--scrolled .btn--cta:hover {
  background-color: hsl(36, 95%, 45%);
}

.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  font-weight: 700;
  padding: 1rem;
}

.btn--accent:hover {
  background-color: hsl(36, 95%, 45%);
}

/* Burger button */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  border-radius: var(--radius);
  background-color: transparent;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

.burger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-card);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger--active .burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger--active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger--active .burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-mobile-menu);
  background-color: rgba(26, 37, 64, 0.98);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu--active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 5rem 1.5rem 1.5rem;
}

/* Mobile menu navigation */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__link {
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fade-in-up 0.6s ease-out forwards;
}

.mobile-menu--active .mobile-menu__link:nth-child(1) { animation-delay: 0s; }
.mobile-menu--active .mobile-menu__link:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu--active .mobile-menu__link:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu--active .mobile-menu__link:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu--active .mobile-menu__link:nth-child(5) { animation-delay: 0.2s; }

.mobile-menu__link:hover {
  color: var(--color-card);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile menu bottom */
.mobile-menu__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fade-in-up 0.6s ease-out 0.25s forwards;
}

.mobile-menu__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile menu phone */
.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu__phone:hover {
  color: var(--color-card);
}

.mobile-menu__phone-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.mobile-menu__phone-text {
  font-size: 1rem;
  font-weight: 600;
}

/* Mobile menu messengers */
.mobile-menu__messengers-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.mobile-menu__messengers-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu__messenger {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu__messenger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu__messenger-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.mobile-menu__messenger--whatsapp {
  color: var(--color-whatsapp);
}

.mobile-menu__messenger--telegram {
  color: var(--color-telegram);
}

.mobile-menu__messenger--max {
  color: var(--color-max);
}

.mobile-menu__messenger-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile menu CTA */
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ========================================
   HERO - Главный экран
   ======================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay--1 {
  background-color: rgba(26, 37, 64, 0.65);
}

.hero__overlay--2 {
  background: linear-gradient(to right, rgba(26, 37, 64, 0.8), rgba(26, 37, 64, 0.5), transparent);
}

.hero__overlay--3 {
  background: linear-gradient(to top, rgba(26, 37, 64, 0.6), transparent, rgba(26, 37, 64, 0.3));
}

/* Container */
.hero__container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .hero__container {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* Content */
.hero__content {
  max-width: 40rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  background-color: rgba(247, 169, 0, 0.2);
  border: 1px solid rgba(247, 169, 0, 0.3);
  border-radius: 9999px;
}

.badge__pulse {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.badge__pulse-dot {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-accent);
  border-radius: 9999px;
}

.badge__pulse-ring {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 9999px;
  opacity: 0.75;
  animation: pulse-ring 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.badge__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
}

/* Title */
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-card);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__title-accent {
  color: var(--color-accent);
}

/* Description */
.hero__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero__description {
    font-size: 1.25rem;
  }
}

/* Buttons */
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
  }
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  box-shadow: 0 10px 15px -3px rgba(247, 169, 0, 0.25);
}

.btn-primary:hover {
  background-color: hsl(36, 95%, 45%);
}

.btn-primary__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-card);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats__item {
  text-align: center;
}

@media (min-width: 640px) {
  .stats__item {
    text-align: left;
  }
}

.stats__value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .stats__value {
    justify-content: flex-start;
  }
}

.stats__icon {
  color: var(--color-accent);
  flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.stats__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-card);
}

@media (min-width: 640px) {
  .stats__number {
    font-size: 2rem;
  }
}

.stats__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .stats__label {
    font-size: 1rem;
  }
}

/* Scroll arrow */
.hero__scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero__scroll-arrow:hover {
  color: var(--color-card);
}
/* ========================================
   CATEGORIES - Категории прав
   ======================================== */

.categories {
  padding: 5rem 0;
  background-color: var(--color-background);
}

@media (min-width: 1024px) {
  .categories {
    padding: 7rem 0;
  }
}

.categories__container {
  /* контейнер уже определён в utilities */
}

/* Section Header (общий компонент для всех секций) */
.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.reasons .section-header {
  max-width: 100%;
}

.section-header__label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.section-header__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--color-foreground);
  margin-bottom: 1rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .section-header__title {
    font-size: 2.7rem;
  }
}

.section-header__description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-muted-foreground);
}

/* Categories Grid */
.categories__grid {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Category Card */
.category-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-card);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  box-shadow: var(--shadow-2xl);
}

.category-card--popular {
  border-color: rgba(247, 169, 0, 0.5);
  box-shadow: 0 0 0 1px rgba(247, 169, 0, 0.2);
}

.category-card__popular {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
}

.category-card__image-wrapper {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .category-card__image-wrapper {
    height: 12rem;
  }
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 37, 64, 0.8), rgba(26, 37, 64, 0.2), transparent);
}

.category-card__image-info {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.category-card__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  background-color: rgba(247, 169, 0, 0.9);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-accent-foreground);
  box-shadow: var(--shadow-md);
}

.category-card__term {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(26, 37, 64, 0.3);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}

/* Category Card Content */
.category-card__content {
  padding: 1.25rem;
}

.category-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-foreground);
  margin-bottom: 0.25rem;
}

.category-card__vehicles {
    font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.category-card__desc {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.category-card__price-block {
  flex: 1;
  min-width: 0;
}

.category-card__price-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted-foreground);
  margin-bottom: 0.125rem;
}

.category-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-foreground);
}

.category-card__currency {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted-foreground);
}

/* Category Card Actions */
.category-card__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
  margin-top: 8px;
}

.category-card__details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted-foreground);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.category-card__details-btn:hover {
  color: var(--color-foreground);
  border-color: rgba(34, 47, 77, 0.3);
}

.category-card__order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background-color: var(--color-accent);
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent-foreground);
  box-shadow: 0 4px 6px -1px rgba(247, 169, 0, 0.2);
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.category-card:hover .category-card__order-btn {
  background-color: hsl(36, 95%, 45%);
}

/* ========================================
   SPECIAL CATEGORY CARD - Карточка "Все категории"
   ======================================== */

/* Специальная карточка */
.category-card--special {
  border-color: rgba(76, 175, 80, 0.5);
  box-shadow: 0 0 0 1px rgba(76, 175, 80, 0.2);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(76, 175, 80, 0.01) 100%);
}

.category-card--special:hover {
  border-color: rgba(76, 175, 80, 0.7);
  box-shadow: 0 20px 50px -12px rgba(76, 175, 80, 0.25);
}

/* Бейдж "Скидка" */
.category-card__popular--special {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  animation: pulse-special 2s ease-in-out infinite;
}

@keyframes pulse-special {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 6px -1px rgba(76, 175, 80, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(76, 175, 80, 0.4);
  }
}

/* Код категории "ВСЕ" */
.category-card__code--special {
  font-size: 0.75rem;
  padding: 0 0.75rem;
}

/* Специальная цена */
.category-card__price--special {
  color: #4CAF50;
  position: relative;
}

/* Старая цена (зачёркнутая) */
.category-card__old-price {
  font-size: 1rem;
  color: var(--color-muted-foreground);
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 600;
}


/* Category Modal */
.category-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.category-modal--active {
  display: flex;
}

.category-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 37, 64, 0.6);
  backdrop-filter: blur(4px);
}

.category-modal__content {
  position: relative;
  width: 100%;
  max-width: 32rem;
  background-color: var(--color-card);
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  animation: fade-in-up 0.6s ease-out both;
}

.category-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: rgba(26, 37, 64, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  color: var(--color-background);
  transition: background-color 0.3s ease;
}

.category-modal__close:hover {
  background-color: rgba(26, 37, 64, 0.5);
}

.category-modal__image-wrapper {
  position: relative;
  height: 12rem;
}

@media (min-width: 640px) {
  .category-modal__image-wrapper {
    height: 14rem;
  }
}

.category-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-modal__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 37, 64, 0.9), rgba(26, 37, 64, 0.4), transparent);
}

.category-modal__image-info {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-modal__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  background-color: var(--color-accent);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--color-accent-foreground);
  flex-shrink: 0;
}

.category-modal__name-block {
  flex: 1;
  min-width: 0;
}

.category-modal__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-background);
  margin-bottom: 0.125rem;
}

.category-modal__vehicles {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Modal Body */
.category-modal__body {
  padding: 1.5rem 2rem;
}

@media (min-width: 640px) {
  .category-modal__body {
    padding: 1.5rem 2rem 2rem;
  }
}

.category-modal__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-muted-foreground);
  margin-bottom: 1.25rem;
}

/* Modal Info */
.category-modal__info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(220, 223, 230, 0.7);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.category-modal__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.category-modal__info-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.category-modal__info-label {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.125rem;
}

.category-modal__info-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-foreground);
}

.category-modal__info-divider {
  width: 1px;
  height: 2.5rem;
  background-color: var(--color-border);
}

/* Modal Actions */
.category-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.category-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-modal__btn--primary {
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  box-shadow: 0 10px 15px -3px rgba(247, 169, 0, 0.2);
}

.category-modal__btn--primary:hover {
  background-color: hsl(36, 95%, 45%);
}

.category-modal__btn--secondary {
    color: hsl(0deg 0% 100%);
    font-weight: 600;
}

.category-modal__btn--secondary:hover {
  background-color: var(--color-secondary);
}

/* Modal Details Link */
.category-modal__details-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 0.75rem;
}

.category-modal__details-link:hover {
  color: rgba(34, 47, 77, 0.8);
}

/* Modal Note */
.category-modal__note {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  text-align: center;
}
/* ========================================
   ADVANTAGES - Преимущества
   ======================================== */

.advantages {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .advantages {
    padding: 8rem 0;
  }
}

/* Background */
.advantages__bg {
  position: absolute;
  inset: 0;
}

.advantages__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages__overlay {
  position: absolute;
  inset: 0;
}

.advantages__overlay--1 {
  background-color: rgba(26, 37, 64, 0.75);
}

.advantages__overlay--2 {
  background: linear-gradient(to bottom, rgba(26, 37, 64, 0.5), transparent, rgba(26, 37, 64, 0.6));
}

/* Container */
.advantages__container {
  position: relative;
  z-index: 10;
}

/* Light section header variant */
.section-header--light .section-header__title {
  color: var(--color-card);
}

.section-header--light .section-header__description {
  color: rgba(255, 255, 255, 0.7);
}

/* Grid */
.advantages__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Advantage Card */
.advantage-card {
  padding: 1.75rem;
  background-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.advantage-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(247, 169, 0, 0.15);
  border: 1px solid rgba(247, 169, 0, 0.2);
  border-radius: 0.75rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-card__icon {
  background-color: rgba(247, 169, 0, 0.25);
}

.advantage-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
    font-size: 1.25rem;
  color: var(--color-card);
  margin-bottom: 0.5rem;
}

.advantage-card__desc {
    font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
/* ========================================
   REASONS - Почему обращаются
   ======================================== */

.reasons {
  padding: 5rem 0;
  background-color: rgba(220, 223, 230, 0.5);
}

@media (min-width: 1024px) {
  .reasons {
    padding: 7rem 0;
  }
}

.reasons__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card {
  padding: 1.5rem;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.reason-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(34, 47, 77, 0.3);
}

.reason-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
    font-size: 1.25rem;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.reason-card__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-muted-foreground);
}

/* CTA */
.reasons__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.reasons__cta-text {
  font-family: var(--font-heading);
  font-weight: 700;
    font-size: 1.55rem;
  color: var(--color-foreground);
  margin-bottom: 1rem;
}

.reasons__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(247, 169, 0, 0.25);
  transition: all 0.3s ease;
}

.reasons__cta-btn:hover {
  background-color: hsl(36, 95%, 45%);
}
/* ========================================
   PROCESS - Процесс оформления
   ======================================== */

.process {
  padding: 5rem 0;
  background-color: var(--color-background);
}

@media (min-width: 1024px) {
  .process {
    padding: 7rem 0;
  }
}

/* Timeline */
.process__timeline {
  position: relative;
}

/* Vertical line */
.process__line {
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--color-border);
}

@media (min-width: 768px) {
  .process__line {
    left: 1.5rem;
  }
}

/* Process Step */
.process-step {
  position: relative;
  display: flex;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.process-step--visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:not(:last-child) {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .process-step {
    gap: 1.5rem;
  }

  .process-step:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

/* Circle with number */
.process-step__circle {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid var(--color-border);
  background-color: var(--color-card);
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .process-step__circle {
    width: 3rem;
    height: 3rem;
  }
}

.process-step--visible .process-step__circle {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.process-step--visible .process-step__circle--final {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.process-step__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-muted-foreground);
  transition: color 0.5s ease;
}

@media (min-width: 768px) {
  .process-step__number {
    font-size: 0.875rem;
  }
}

.process-step--visible .process-step__number {
  color: var(--color-primary-foreground);
}

.process-step--visible .process-step__circle--final .process-step__number {
  color: var(--color-foreground);
}

/* Card */
.process-step__card {
  flex: 1;
  min-width: 0;
  padding: 1.25rem 1.5rem;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .process-step__card {
    padding: 1.5rem;
  }
}

.process-step__card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(34, 47, 77, 0.2);
}

.process-step--visible .process-step__card:hover {
  background-color: rgba(34, 47, 77, 0.02);
}

/* Header */
.process-step__header {
  display: flex;
    align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Icon */
.process-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: rgba(34, 47, 77, 0.1);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.process-step__card:hover .process-step__icon {
  background-color: rgba(34, 47, 77, 0.15);
}

/* Title wrapper */
.process-step__title-wrapper {
  flex: 1;
  min-width: 0;
}

.process-step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-foreground);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .process-step__title {
    font-size: 1.25rem;
  }
}

/* Time badge */
.process-step__time {
  display: none;
}

@media (min-width: 640px) {
  .process-step__time {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-secondary);
    border-radius: 9999px;
    flex-shrink: 0;
  }

  .process-step__time svg {
    color: var(--color-muted-foreground);
  }

  .process-step__time span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-muted-foreground);
  }
}

/* Description */
.process-step__desc {
    font-size: 1rem;
  line-height: 1.5;
  color: var(--color-muted-foreground);
}

/* Mobile time */
.process-step__time--mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-secondary);
  border-radius: 9999px;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .process-step__time--mobile {
    display: none;
  }
}

.process-step__time--mobile svg {
  color: var(--color-muted-foreground);
}

.process-step__time--mobile span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted-foreground);
}
/* ========================================
   REVIEWS - Отзывы клиентов
   ======================================== */

.reviews {
  padding: 5rem 0;
  background-color: #fff;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .reviews {
    padding: 7rem 0;
  }
}

.reviews__header {
  margin-bottom: 2.5rem;
}

/* Counters */
.reviews__counters {
  display: grid;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .reviews__counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews__counters {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reviews__counter {
  text-align: center;
  padding: 1.25rem;
  background-color: rgba(247, 169, 0, 0.05);
  border: 1px solid rgba(247, 169, 0, 0.1);
  border-radius: 0.75rem;
}

.reviews__counter-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.reviews__counter-label {
  font-size: 1rem;
  color: var(--color-muted-foreground);
}

/* Swiper wrapper */
.reviews__swiper-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.reviews__swiper-wrapper .swiper {
    overflow: visible;
}


/* Review Card */
.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
    min-height: 340px;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}

.review-card__author {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-foreground);
  margin-bottom: 0.125rem;
}

.review-card__source {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

/* Rating */
.review-card__rating {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.review-card__star {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
}

/* Text */
.review-card__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(34, 47, 77, 0.8);
  margin-bottom: 1rem;
}

/* Footer */
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

/* Navigation */
.reviews-nav__wrapper {
  display: flex;
  justify-content: center;
}

.reviews__navigation {
    display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.reviews__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background-color: var(--color-card);
  color: var(--color-foreground);
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.reviews__nav-btn:hover {
  background-color: var(--color-secondary);
  border-color: rgba(247, 169, 0, 0.3);
}

.reviews__nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Pagination */
.reviews__pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Custom pagination dots (будут созданы через JS) */
.reviews-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-pagination-bullet:hover {
  background-color: var(--color-muted-foreground);
}

.reviews-pagination-bullet-active {
  background-color: var(--color-accent);
  width: 28px;
}
/* ========================================
   FAQ - Часто задаваемые вопросы
   ======================================== */

.faq {
  padding: 5rem 0;
  background-color: var(--color-background);
}

@media (min-width: 1024px) {
  .faq {
    padding: 7rem 0;
  }
}

.faq__header {
  margin-bottom: 3rem;
  max-width: 100%;
}

/* FAQ List */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* FAQ Item */
.faq-item {
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-card);
  transition: all 0.3s ease;
}

.faq-item--active {
  border-color: rgba(34, 47, 77, 0.3);
  background-color: rgba(34, 47, 77, 0.05);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: rgba(34, 47, 77, 0.2);
}

/* Header */
.faq-item__header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: background-color 0.3s ease;
}

.faq-item__header:hover {
  background-color: rgba(34, 47, 77, 0.02);
}

/* Number */
.faq-item__number {
    font-size: 1.4rem;
  font-weight: 700;
  color: rgba(141, 150, 170, 0.5);
  flex-shrink: 0;
  width: 2rem;
  transition: color 0.3s ease;
}

.faq-item--active .faq-item__number {
  color: var(--color-accent);
}

/* Question */
.faq-item__question {
  flex: 1;
  min-width: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-foreground);
  padding-right: 0.5rem;
}

@media (min-width: 640px) {
  .faq-item__question {
      font-size: 1.2rem;
      font-weight: 600;
  }
}

/* Icon */
.faq-item__icon {
  flex-shrink: 0;
  color: var(--color-muted-foreground);
  transition: transform 0.3s ease;
}

.faq-item--active .faq-item__icon {
  transform: rotate(180deg);
}

/* Content */
.faq-item__content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-item--active .faq-item__content {
  max-height: 500px;
  opacity: 1;
}

/* Answer */
.faq-item__answer {
  padding: 0 1.25rem 1rem 4.25rem;
}

.faq-item__answer p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-muted-foreground);
}
/* ========================================
   SEO TEXT - SEO текст
   ======================================== */

.seo-text {
  padding: 5rem 0;
  background-color: rgba(220, 223, 230, 0.5);
}

@media (min-width: 1024px) {
  .seo-text {
    padding: 7rem 0;
  }
}

/* Header */
.seo-text__header {
  text-align: center;
  margin-bottom: 2.5rem;
}


/* Content */
.seo-text__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .seo-text__content {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Image */
.seo-text__image-wrapper {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .seo-text__image-wrapper {
    width: 33.333%;
  }
}

.seo-text__image {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
}

/* Text */
.seo-text__text-wrapper {
  flex: 1;
  min-width: 0;
}

.seo-text__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted-foreground);
}

.seo-text__text p {
  margin-bottom: 1rem;
}

.seo-text__text strong {
  color: var(--color-foreground);
  font-weight: 600;
}

.seo-text__subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-foreground);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.seo-text__subtitle--small {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-foreground);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Hidden text */
.seo-text__hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.seo-text__hidden--visible {
  max-height: 3000px;
}

/* Toggle button */
.seo-text__toggle {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.seo-text__toggle:hover {
  color: rgba(34, 47, 77, 0.8);
}

/* Features */
.seo-text__features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .seo-text__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .seo-text__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seo-text__feature {
  display: flex;
    align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.seo-text__feature-bullet {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  background-color: rgba(247, 169, 0, 0.15);  /* Светло-оранжевый фон */
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.seo-text__feature-bullet::before {
  content: '';
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7A900' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.seo-text__feature-text {
  font-size: 1rem;
  color: var(--color-foreground);
  line-height: 1.4;
}
/* ========================================
   CONTACTS - Контакты
   ======================================== */

.contacts {
  padding: 5rem 0;
  background-color: var(--color-background);
}

@media (min-width: 1024px) {
  .contacts {
    padding: 7rem 0;
  }
}

.contacts__header {
  margin-bottom: 3.5rem;
}

/* Content */
.contacts__content {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .contacts__content {
    grid-template-columns: 2fr 3fr;
  }
}

/* Cards */
.contacts__cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contacts__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contacts__cards {
    grid-template-columns: 1fr;
  }
}

.contacts__card {
  padding: 1.25rem;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.contacts__card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(247, 169, 0, 0.3);
}

.contacts__card:has(.contacts__card-icon-wrapper) {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contacts__card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(247, 169, 0, 0.1);
  flex-shrink: 0;
}

.contacts__card-icon {
  color: var(--color-accent);
}

.contacts__card-content {
  flex: 1;
  min-width: 0;
}

.contacts__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-foreground);
  margin-bottom: 0.125rem;
}

.contacts__card-title--full {
  margin-bottom: 0.75rem;
}

.contacts__card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts__card-link:hover {
  color: hsl(36, 95%, 45%);
}

.contacts__card-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin: 0.125rem 0;
}

/* Messengers */
.contacts__messengers {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contacts__messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.contacts__messenger-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-card);
}

.contacts__messenger--whatsapp {
  background-color: var(--color-whatsapp);
}

.contacts__messenger--whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}

.contacts__messenger--telegram {
  background-color: var(--color-telegram);
}

.contacts__messenger--telegram:hover {
  background-color: var(--color-telegram-hover);
}

.contacts__messenger--max {
  background-color: var(--color-max);
}

.contacts__messenger--max:hover {
  background-color: var(--color-max-hover);
}

/* Regions */
.contacts__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.contacts__region {
  padding: 0.125rem 0.625rem;
  background-color: var(--color-secondary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted-foreground);
}

/* Map */
.contacts__map-wrapper {
  min-height: 380px;
}

@media (min-width: 1024px) {
  .contacts__map-wrapper {
    min-height: 0;
  }
}

.contacts__map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .contacts__map {
    min-height: 0;
  }
}

.contacts__map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contacts__map-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 37, 64, 0.8), transparent);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contacts__map-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: var(--color-accent);
  flex-shrink: 0;
}

.contacts__map-icon svg {
  color: var(--color-accent-foreground);
}

.contacts__map-address {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-card);
  margin-bottom: 0.125rem;
}

.contacts__map-metro {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Banner */
.contacts__cta-banner {
  position: relative;
  padding: 2rem 3rem;
  background-color: var(--color-foreground);
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 1024px) {
  .contacts__cta-banner {
    padding: 3rem;
  }
}

.contacts__cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(247, 169, 0, 0.2), transparent, rgba(247, 169, 0, 0.1));
  pointer-events: none;
}

.contacts__cta-content {
  position: relative;
  z-index: 10;
}

.contacts__cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-card);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .contacts__cta-title {
    font-size: 1.875rem;
  }
}

.contacts__cta-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.contacts__cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .contacts__cta-buttons {
    flex-direction: row;
  }
}

.contacts__cta-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(247, 169, 0, 0.25);
  transition: all 0.3s ease;
}

.contacts__cta-btn--primary:hover {
  background-color: hsl(36, 95%, 45%);
}

.contacts__cta-messengers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contacts__cta-messenger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-card);
  transition: all 0.2s ease;
}

.contacts__cta-messenger-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.contacts__cta-messenger span {
  display: none;
}

@media (min-width: 768px) {
  .contacts__cta-messenger span {
    display: inline;
  }
}

.contacts__cta-messenger--whatsapp {
  background-color: var(--color-whatsapp);
}

.contacts__cta-messenger--whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}

.contacts__cta-messenger--telegram {
  background-color: var(--color-telegram);
}

.contacts__cta-messenger--telegram:hover {
  background-color: var(--color-telegram-hover);
}

.contacts__cta-messenger--max {
  background-color: var(--color-max);
}

.contacts__cta-messenger--max:hover {
  background-color: var(--color-max-hover);
}
/* ========================================
   FOOTER - Подвал сайта
   ======================================== */

.footer {
  padding: 3rem 0;
  background-color: var(--color-foreground);
  color: var(--color-card);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer Logo */
.logo__icon--footer {
    background-color: var(--color-accent);
}

.logo__icon-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--color-primary-foreground);
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Column */
.footer__column-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-card);
  margin-bottom: 1rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__list-item {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Contacts */
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact:hover {
  color: var(--color-card);
}

.footer__schedule {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__schedule p {
  margin: 0.25rem 0;
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright,
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
/* ========================================
   MESSENGER WIDGET - Виджет мессенджеров
   ======================================== */

.messenger-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-widget);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
}

.messenger-widget__btn {
    display: flex;
    align-items: center;
    width: 300px;
    height: 52px;
    color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    transition: all 0.2s 
ease;
    gap: 10px;
    padding: 0 30px;
}

.messenger-widget__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-card);
}

.footer__contact--max {
    border: 3px solid;
    border-radius: 100%;
    padding: 2px;
}

.messenger-widget__btn--whatsapp {
  background-color: var(--color-whatsapp);
}

.messenger-widget__btn--whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}

.messenger-widget__btn--telegram {
  background-color: var(--color-telegram);
}

.messenger-widget__btn--telegram:hover {
  background-color: var(--color-telegram-hover);
}

.messenger-widget__btn--max {
  background-color: var(--color-max);
}

.messenger-widget__btn--max:hover {
  background-color: var(--color-max-hover);
}


/* ========================================
   CATEGORY PAGE - Страница категории
   ======================================== */

/* ========== CATEGORY HERO ========== */
.category-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.category-hero__bg {
  position: absolute;
  inset: 0;
}

.category-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-hero__overlay {
  position: absolute;
  inset: 0;
}

.category-hero__overlay--1 {
  background-color: rgba(26, 37, 64, 0.75);
}

.category-hero__overlay--2 {
  background: linear-gradient(to bottom, rgba(26, 37, 64, 0.6), rgba(26, 37, 64, 0.8));
}

.category-hero__container {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.category-hero__content {
  max-width: 48rem;
}

/* Back button */
.category-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--color-card);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-hero__back:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(-4px);
}

/* Badge */
.category-hero__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.category-hero__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  height: 3.5rem;
  padding: 0 1rem;
  background-color: var(--color-accent);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-accent-foreground);
}

.category-hero__popular {
  padding: 0.375rem 1rem;
  background-color: rgba(247, 169, 0, 0.2);
  border: 1px solid var(--color-accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* Title & Description */
.category-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--color-card);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .category-hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .category-hero__title {
    font-size: 3rem;
  }
}

.category-hero__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* Info items */
.category-hero__info {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .category-hero__info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-hero__info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.category-hero__info-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.category-hero__info-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.125rem;
}

.category-hero__info-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-card);
}

/* Buttons */
.category-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .category-hero__buttons {
    flex-direction: row;
  }
}

.category-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ========== CATEGORY DETAILS ========== */
.category-details {
  padding: 4rem 0;
  background-color: var(--color-background);
}

.category-details__content h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}

.category-details__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-muted-foreground);
}

/* ========== Подзаголовки разных уровней ========== */
.category-details__content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.category-details__content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-foreground);
  margin-top: 1.75rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.category-details__content h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-foreground);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.category-details__content h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-foreground);
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

/* ========== Текстовое форматирование ========== */
.category-details__content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
}

.category-details__content strong,
.category-details__content b {
  font-weight: 700;
  color: var(--color-foreground);
}

.category-details__content em,
.category-details__content i {
  font-style: italic;
}

/* ========== Списки ========== */
.category-details__content ul,
.category-details__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.category-details__content ul {
  list-style-type: disc;
}

.category-details__content ol {
  list-style-type: decimal;
}

.category-details__content li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}

.category-details__content li::marker {
  color: var(--color-accent);
}

/* Вложенные списки */
.category-details__content ul ul,
.category-details__content ol ol,
.category-details__content ul ol,
.category-details__content ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ========== Ссылки ========== */
.category-details__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.category-details__content a:hover {
  color: hsl(36, 95%, 45%);
}

/* ========== Цитаты ========== */
.category-details__content blockquote {
  position: relative;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(247, 169, 0, 0.05);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.category-details__content blockquote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-foreground);
  margin-bottom: 0;
}

.category-details__content blockquote p:last-child {
  margin-bottom: 0;
}

/* ========== Разделитель ========== */
.category-details__content hr {
  height: 1px;
  border: none;
  background-color: var(--color-border);
  margin: 2rem 0;
}

/* ========== Таблицы ========== */
.category-details__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.category-details__content thead {
  background-color: rgba(34, 47, 77, 0.05);
}

.category-details__content th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-foreground);
  border-bottom: 2px solid var(--color-border);
}

.category-details__content td {
  padding: 0.875rem 1rem;
  color: var(--color-muted-foreground);
  border-bottom: 1px solid var(--color-border);
}

.category-details__content tbody tr:hover {
  background-color: rgba(247, 169, 0, 0.03);
}

.category-details__content tbody tr:last-child td {
  border-bottom: none;
}

/* ========== Код (если нужно) ========== */
.category-details__content code {
  padding: 0.125rem 0.375rem;
  background-color: rgba(34, 47, 77, 0.08);
  border-radius: 0.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  color: var(--color-foreground);
}

.category-details__content pre {
  padding: 1rem;
  margin: 1.5rem 0;
  background-color: rgba(34, 47, 77, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow-x: auto;
}

.category-details__content pre code {
  padding: 0;
  background: none;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ========== Изображения ========== */
.category-details__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

/* ========== Выделенные блоки (полезная информация) ========== */
.category-details__content .info-box {
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(34, 139, 230, 0.08);
  border-left: 4px solid hsl(208, 79%, 51%);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.category-details__content .warning-box {
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(234, 179, 8, 0.08);
  border-left: 4px solid hsl(48, 96%, 53%);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.category-details__content .success-box {
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(34, 197, 94, 0.08);
  border-left: 4px solid hsl(142, 71%, 45%);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ========== Адаптивность для мобильных ========== */
@media (max-width: 640px) {
  .category-details__content h3 {
    font-size: 1.375rem;
  }
  
  .category-details__content h4 {
    font-size: 1.125rem;
  }
  
  .category-details__content table {
    font-size: 0.875rem;
  }
  
  .category-details__content th,
  .category-details__content td {
    padding: 0.625rem 0.75rem;
  }
}


/* ========== CATEGORY VEHICLES ========== */
.category-vehicles {
  padding: 4rem 0;
  background-color: var(--color-card);
}

.category-vehicles__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--color-foreground);
  text-align: center;
  margin-bottom: 3rem;
}

.category-vehicles__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .category-vehicles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-vehicles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vehicle-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.vehicle-card__icon {
  color: var(--color-accent);
  margin: 0 auto 1rem;
}

.vehicle-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-foreground);
  line-height: 1.4;
}

/* ========== WHO NEEDS ========== */
.category-who-needs {
  padding: 4rem 0;
  background-color: var(--color-background);
}

.category-who-needs__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--color-foreground);
  text-align: center;
  margin-bottom: 3rem;
}

.category-who-needs__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .category-who-needs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-who-needs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.who-needs-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.who-needs-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.who-needs-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(247, 169, 0, 0.1);
  border-radius: 9999px;
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.who-needs-card__text {
  font-size: 0.9375rem;
  color: var(--color-foreground);
  font-weight: 500;
}

/* ========== REQUIREMENTS ========== */
.category-requirements {
  padding: 4rem 0;
  background-color: var(--color-card);
}

.category-requirements__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--color-foreground);
  text-align: center;
  margin-bottom: 3rem;
}

.category-requirements__list {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.requirement-item__icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.requirement-item__text {
  font-size: 1rem;
  color: var(--color-foreground);
  font-weight: 500;
}

/* ========== PRICING ========== */
.category-pricing {
  padding: 4rem 0;
  background-color: var(--color-background);
}

.category-pricing__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--color-foreground);
  text-align: center;
  margin-bottom: 3rem;
}

.category-pricing__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .category-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  padding: 2rem 1.5rem;
  background-color: var(--color-card);
  border: 2px solid var(--color-border);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(247, 169, 0, 0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  background-color: var(--color-accent);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-foreground);
}

.pricing-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.pricing-card__term {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}

.pricing-card__price span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-muted-foreground);
}

.pricing-card__btn {
  display: inline-block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: var(--color-accent);
  color: var(--color-accent-foreground);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-card__btn:hover {
  background-color: hsl(36, 95%, 45%);
  transform: scale(1.02);
}

/* ========== CATEGORY FAQ ========== */
.category-faq {
  padding: 4rem 0;
  background-color: var(--color-card);
}

.category-faq__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--color-foreground);
  text-align: center;
  margin-bottom: 3rem;
}

.category-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.category-faq-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.category-faq-item--active {
  border-color: rgba(34, 47, 77, 0.3);
  box-shadow: var(--shadow-sm);
}

.category-faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.category-faq-item__question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-foreground);
}

.category-faq-item__icon {
  color: var(--color-muted-foreground);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.category-faq-item--active .category-faq-item__icon {
  transform: rotate(180deg);
}

.category-faq-item__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.category-faq-item--active .category-faq-item__content {
  max-height: 500px;
  opacity: 1;
}

.category-faq-item__answer {
  padding: 0 1.5rem 1.25rem;
}

.category-faq-item__answer p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-muted-foreground);
}

/* ========== OTHER CATEGORIES ========== */
.other-categories {
  padding: 4rem 0;
  background-color: var(--color-background);
}

.other-categories__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--color-foreground);
  text-align: center;
  margin-bottom: 3rem;
}

.other-categories__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .other-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .other-categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.other-category-card {
  position: relative;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.other-category-card:hover {
  box-shadow: var(--shadow-2xl);
}

.other-category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.other-category-card:hover .other-category-card__image {
  transform: scale(1.1);
}

.other-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 37, 64, 0.9), rgba(26, 37, 64, 0.3), transparent);
}

.other-category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 10;
}

.other-category-card__code {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background-color: var(--color-accent);
  border-radius: 0.375rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--color-accent-foreground);
  margin-bottom: 0.5rem;
}

.other-category-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-card);
  margin-bottom: 0.375rem;
}

.other-category-card__price {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}



/* Модальное окно */
.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.consultation-modal--open {
    display: flex;
}

/* Затемненный фон */
.consultation-modal__backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.2s ease-out;
}

/* Контент модального окна */
.consultation-modal__content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

/* Шапка */
.consultation-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.consultation-modal__title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.consultation-modal__subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.consultation-modal__close {
    flex-shrink: 0;
    padding: 8px;
    background: none;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.consultation-modal__close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

/* Методы связи */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

/* Карточка метода связи */
.contact-method {
    display: flex;
    gap: 16px;
    padding: 16px;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    cursor: pointer;
}

.contact-method:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.contact-method--accent {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

/* Иконка метода связи */
.contact-method__icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.contact-method__icon-wrapper--accent {
    background-color: #3b82f6;
    color: white;
}

.contact-method__icon-wrapper--whatsapp {
    background-color: #25D366;
    color: white;
}

.contact-method__icon-wrapper--telegram {
    background-color: #2AABEE;
    color: white;
}

.contact-method__icon-wrapper--email {
    background-color: #3b82f6;
    color: white;
}

.contact-method__icon {
    width: 20px;
    height: 20px;
}

/* Контент метода связи */
.contact-method__content {
    flex: 1;
    min-width: 0;
}

.contact-method__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.contact-method__label {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.contact-method__badge {
    display: inline-flex;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
    color: #3b82f6;
    background-color: #dbeafe;
    border-radius: 9999px;
}

.contact-method__desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.contact-method__extra {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    font-size: 16px;
    font-weight: 600;
    color: #3b82f6;
}

/* Футер */
.consultation-modal__footer {
    display: flex;
    gap: 12px;
    padding: 16px 24px 24px;
    background-color: #f9fafb;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.consultation-modal__footer-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #3b82f6;
    margin-top: 2px;
}

.consultation-modal__footer-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Блокировка скролла */
body.no-scroll {
    overflow: hidden;
}

/* Адаптивность */
@media (max-width: 640px) {
    .consultation-modal {
        padding: 0;
    }

    .consultation-modal__content {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }

    .consultation-modal__header {
        padding: 20px;
    }

    .consultation-modal__title {
        font-size: 20px;
    }

    .contact-methods {
        padding: 20px;
    }

    .contact-method {
        padding: 14px;
    }

    .consultation-modal__footer {
        padding: 14px 20px 20px;
    }
}


.error-404 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
}

.error-404__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2540 0%, #2d3e66 100%);
}

.error-404__container {
    position: relative;
    z-index: 10;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.error-404__content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.error-404__code {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 8rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.error-404__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-card);
    margin-bottom: 1rem;
}

.error-404__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.error-404__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .error-404__actions {
        flex-direction: row;
    }
}

.error-404__actions .btn-primary,
.error-404__actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-404__actions .btn-primary {
    background-color: var(--color-accent);
    color: var(--color-accent-foreground);
}

.error-404__actions .btn-primary:hover {
    background-color: hsl(36, 95%, 45%);
}

.error-404__actions .btn-secondary {
    background-color: transparent;
    color: var(--color-card);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.error-404__actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.error-404__links {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.error-404__links-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-card);
    margin-bottom: 1.5rem;
}

.error-404__links-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.error-404__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-404__link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
}

.error-404__link-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-accent);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--color-accent-foreground);
}

.error-404__link-name {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-card);
}