:root {
  --orange: #FF6B00;
  --orange-dark: #E55A00;
  --orange-light: #FF8C42;
  --orange-glow: rgba(255, 107, 0, 0.5);
  --black: #121212;
  --black-light: #1E1E1E;
  --white: #ffffff;
  --text-light: #f5f5f5;
  --glass-bg: rgba(30, 30, 30, 0.85);
  --glass-border: rgba(255, 107, 0, 0.3);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-light: 0 4px 16px rgba(255, 107, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.10, 1, 0.3, 1);
  --transition1: transform 1.08s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 20%),
    linear-gradient(135deg, #0a0a0f 0%, #1a1a1f 100%);
  font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Текстурный фон */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iIzBhMGEwZiIvPjxwYXRoIGQ9Ik0wIDUwSDUwVjBIMFY1MFpNNTAgNTBIMTAwVjBINTBWNTBaIiBmaWxsPSIjMWExYTFmIiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==') repeat;
  opacity: 0.4;
  z-index: -1;
}

/* Частицы */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Парящая шапка с улучшенным дизайном */
header {
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
  backdrop-filter: blur(45px) saturate(180%);
  padding: 1.2rem 2.5rem;
  position: fixed;
  width: 92%;
  max-width: 1800px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 1.7),
    0 0 30px var(--orange-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 60px;
  transition: var(--transition); 
}

header::before{
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to right, rgba(255,119,0,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,119,0,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: -1;
}

header.scrolled {
  width: 94%;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(30, 30, 30, 0.95) 100%);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.6),
    0 0 40px var(--orange-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  top: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  transition: var(--transition1);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo:hover {
  color: var(--orange);
  text-shadow: 0 0 15px var(--orange-glow);
}

.text-logo{
  width: 170px;
  height: 65px;
  border-radius: 12px;
  object-fit: contain;
  size: 15px;
  transition: var(--transition1);
}

.logo-image {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  object-fit: contain;
  border: 2px solid #FF6B00 !important;
  box-shadow: 
    0 0 15px rgba(255, 107, 0, 0.5),
    inset 0 0 10px rgba(255, 107, 0, 0.3);
  transition: var(--transition1);
  padding: 3px;
}

.logo:hover .text-logo {
  transform:scale(1.05) rotate(8deg);
      box-shadow: 
        0 0 25px var(--orange),
        0 0 40px rgba(255, 107, 0, 0.6),
        inset 0 0 15px rgba(255, 107, 0, 0.3);
}


.logo:hover .logo-image {
  transform: scale(1.2) rotate(-8deg);
      box-shadow: 
        0 0 25px var(--orange),
        0 0 40px rgba(255, 107, 0, 0.6),
        inset 0 0 15px rgba(255, 107, 0, 0.3);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
  padding: 0.6rem 0;
  transition: var(--transition);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  box-shadow: 0 0 12px var(--orange);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

nav a:hover {
  color: var(--orange);
  text-shadow: 0 0 12px var(--orange-glow);
}

nav a:hover::before {
  width: 100%;
}

nav a:hover::after {
  opacity: 1;
}

/* Мобильное меню - скрыто на ПК */
.menu-toggle {
  display: none;
}

/* Главный баннер с картинкой */

.hero-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 5rem 3.5rem; /* Увеличили отступы */
  border-radius: 25px;
  max-width: 800px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
  position: relative; /* ВАЖНО */
  z-index: 1; /* Должен быть выше ::before и ::after */
  transition: var(--transition);
  text-align: center; /* Убедимся, что текст по центру */
  display: flex; /* Используем flex для управления дочерними элементами */
  flex-direction: column; /* Располагаем элементы вертикально */
  align-items: center; /* Центрируем по горизонтали */
  justify-content: center; /* Центрируем по вертикали */
  min-height: 60vh; /* Добавим минимальную высоту, чтобы кнопка могла сдвигаться вниз */
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem; /* Увеличили размер */
  font-weight: 1000;
  margin-bottom: 3rem; /* Уменьшили отступ снизу */
  color: #ff7700; /* Чистый оранжевый */
  text-shadow:
    0 0 15px rgba(255, 107, 0, 0.6), /* Основное свечение */
    0 0 30px rgba(255, 107, 0, 0.4); /* Дополнительное свечение */
  background: linear-gradient(135deg, #ff7700, #ffaa33); /* Градиент для блика */
  -webkit-background-clip: text; /* Применяем градиент к тексту */
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ff7700; /* На случай, если -webkit- не сработает */
  animation: h1-glow-pulse 5s ease-in-out infinite alternate, h1-shimmer 2s linear infinite; /* Добавили анимации */
  position: relative; /* Для правильной работы анимаций */
  overflow: hidden; /* Скрываем возможные выступы градиента */
  z-index: 2; /* Выше слоёв ::before и ::after внутри .hero-content */
}

/* Анимация пульсации свечения */
@keyframes h1-glow-pulse {
  0%, 100% {
    text-shadow:
      0 0 15px rgba(255, 107, 0, 0.6),
      0 0 30px rgba(255, 107, 0, 0.4);
  }
  50% {
    text-shadow:
      0 0 25px rgba(255, 107, 0, 0.8),
      0 0 40px rgba(255, 107, 0, 0.6);
  }
}

/* Анимация "блика" (движение градиента) */
@keyframes h1-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.hero-content .btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--black);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 5px 20px rgba(255, 107, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: none;
  font-size: 1.1rem;
  /* --- НОВОЕ: Отступ сверху --- */
  margin-top: 2rem; /* Кнопка опустится на 2rem ниже */
  /* --- */
  z-index: 2; /* Выше слоёв ::before и ::after внутри .hero-content */
}

/* Анимация появления */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Поведение при наведении */
.hero-content:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


.hero {
  min-height: 100vh;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), /* Полупрозрачный слой поверх изображения */
    url('../image/bann.jpg') center/cover no-repeat; /* Путь к вашему изображению */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden; /* Скрывает возможные выступы изображения */
}

/* Убираем старый ::before, если он мешает */
/* .hero::before { ... } - можно удалить, если не нужен отдельно */

/* Улучшаем сетку и свечение внутри .hero-content */
.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to right, rgba(255,119,0,0.03) 1px, transparent 2px),
    linear-gradient(to bottom, rgba(255,119,0,0.03) 1px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: -1; /* Сетка под текстом */
}

/* --- НОВОЕ: СВЕЧЕНИЕ ПОД ТЕКСТОМ ВНУТРИ HERO-CONTENT --- */
.hero-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 107, 0, 0.05) 30%,
    transparent 70%
  );
  filter: blur(25px);
  opacity: 0.4;
  z-index: 0; /* Свечение между сеткой и текстом */
  mix-blend-mode: overlay;
  animation: 
    glow-pulse 4s ease-in-out infinite alternate, 
    glow-jitter 6s linear infinite;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes glow-jitter {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-10px, -5px) scale(1.02); }
  50%  { transform: translate(8px, 10px) scale(0.98); }
  75%  { transform: translate(-5px, -8px) scale(1.01); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Убедимся, что .hero-content сам по себе выше слоёв */
.hero-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 3.5rem;
  border-radius: 25px;
  max-width: 800px;
  box-shadow: 
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
  position: relative;
  z-index: 1; /* Выше всех внутренних слоёв */
  transition: var(--transition);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--black);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 5px 20px rgba(255, 107, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: none;
  font-size: 1.1rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s;
}

.btn:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  transform: translateY(-5px);
  box-shadow: 
    0 10px 30px rgba(255, 107, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn:hover::before {
  left: 100%;
}

/* Основные секции */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 3.5rem;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  box-shadow: 0 0 15px var(--orange);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  margin-bottom: 3rem;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 0, 0.5);
}

/* Улучшенный блок "О нас" */
.about-content {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-intro {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: var(--orange);
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--black);
  border-radius: 50%;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
}

/* Улучшенные блоки материалов */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.material-item {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 140, 66, 0.1));
  padding: 2rem 1.5rem;
  border-radius: 30px;
  text-align: center;
  border: 2px solid var(--glass-border);
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.material-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.material-item:hover::before {
  left: 100%;
}

.material-item:hover {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.25), rgba(255, 140, 66, 0.2));
  border-color: var(--orange);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.3);
}

.material-item .emoji {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.5));
}

.material-item .text {
  display: block;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.about-footer {
  margin-top: 3rem;
  font-style: italic;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
  border-radius: 15px;
  border: 1px solid var(--glass-border);
}

/* Преимущества */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.feature {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 2.5rem 2rem;
  border-radius: 25px;
  text-align: center;
  width: 240px;
  box-shadow: 
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  box-shadow: 0 0 15px var(--orange);
}

.feature:hover {
  transform: translateY(-12px);
  background: rgba(35, 35, 40, 0.9);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3.2rem;
  color: var(--orange);
  margin-bottom: 1.8rem;
  transition: var(--transition);
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.5));
}

.feature:hover .feature-icon {
  transform: scale(1.25);
  filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.8));
}

.feature h3 {
  margin-bottom: 1.2rem;
  color: var(--orange);
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
}

.feature p {
  font-size: 1.1rem;
}

/* Галерея - ПК версия */
.gallery {
  display: grid;
  grid-template-rows: repeat(2, 260px);
  grid-auto-columns: 340px;
  grid-auto-flow: column;
  gap: 2.8rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4.5rem 0;
  scroll-behavior: smooth;
  margin: 0.2rem 0;
  border-radius: 0.2px;
}

.gallery::-webkit-scrollbar {
  height: 10px;
}

.gallery::-webkit-scrollbar-track {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  box-shadow: 0 0 8px var(--orange);
}

.gallery img {
  width: 355px;
  height: 270px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--black-light);
  gap: 0.8rem;
}

.gallery img:hover {
  transform: scale(1.002);
  border-color: var(--orange);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
}

/* Контакты */
.contact-info {
  padding: 2rem;
  text-align: center;
}

.contact-info p {
  margin: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.3rem;
}

.contact-info i {
  color: var(--orange);
  text-shadow: 0 0 8px var(--orange-glow);
}

/* Футер */
footer {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  font-family: 'Montserrat', sans-serif;
}

/* Стили для просмотрщика изображений */
.image-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19, 4, 1, 0.75);
  z-index: 10;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
}

.image-viewer.active {
  display: flex;
}

.viewer-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#viewerImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.close-btn:hover {
  color: var(--orange);
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.2);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 107, 0, 0.8);
  color: white;
  border: none;
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-btn:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.image-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 20px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.materials h2 {
  color: var(--orange);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
  position: relative;
}

.materials h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  box-shadow: 0 0 15px var(--orange);
}


/* Анимации печати */
.printer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 30px;
  margin-right: 15px;
  position: relative;
  vertical-align: middle;
  background: 
    linear-gradient(to bottom, 
      transparent 30%, 
      rgba(255,107,0,0.15) 30%, 
      rgba(255,107,0,0.15) 70%, 
      transparent 70%
    );
  border: 2px solid var(--orange);
  border-radius: 6px 6px 4px 4px;
}

.printer-icon::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 5px;
  background: var(--orange);
  top: -6px;
  left: 12.5%;
  border-radius: 4px 4px 0 0;
}

.printer-icon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 5px;
  background: var(--orange-light);
  bottom: 4px;
  left: 8px;
  animation: printing 1.5s infinite ease-in-out;
  box-shadow: 0 0 12px var(--orange);
  border-radius: 2px;
}

@keyframes printing {
  0%, 100% {
    transform: translateY(0) scaleY(1);
    opacity: 1;
  }
  25% {
    transform: translateY(-5px) scaleY(0.8);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-10px) scaleY(0.6);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-5px) scaleY(0.8);
    opacity: 0.9;
  }
}

/* Плавающая кнопка калькулятора */
.calc-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(255, 107, 0, 0.4);
  z-index: 2;
  transition: var(--transition);
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.calc-floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 107, 0, 0.6);
}

/* Модальное окно калькулятора */
.calc-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto; /* Добавляем прокрутку для мобильных */
}

.calc-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  max-width: 600px; /* Увеличили ширину */
  width: 95%; /* Увеличили процент ширины */
  max-height: 90vh; /* Ограничиваем высоту */
  overflow-y: auto; /* Внутренняя прокрутка */
  position: relative;
  animation: fadeUp 0.3s ease;
  margin: auto; /* Центрируем */
}

/* Обновленный крестик закрытия */
.calc-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: bold;
  z-index: 2;
  backdrop-filter: blur(10px); /* Добавляем размытие фона */
}

.calc-close:hover {
  background: var(--orange);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--orange-glow);
}

/* Контейнер контента с отступом для крестика */
.calc-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  max-width: 600px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeUp 0.3s ease;
  margin: auto;
  /* Добавляем отступ сверху для крестика */
  padding-top: 3rem; /* Увеличили верхний padding */
}

.calc-content h2 {
  color: var(--orange);
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 0; /* Убираем верхний отступ у заголовка */
  padding-top: 0;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .calc-content {
    padding: 2rem 1.2rem;
    padding-top: 2.5rem; /* Увеличиваем верхний padding на мобильных */
    margin: 20px auto; /* Добавляем отступ от краев экрана */
    max-height: 85vh;
    width: 95%;
    border-radius: 20px;
  }
  
  .calc-close {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    top: 12px;
    right: 12px;
    background: rgba(18, 18, 18, 0.9); /* Темный фон для контраста */
    border: 2px solid var(--orange);
    backdrop-filter: blur(15px);
  }
  
  .calc-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-right: 40px; /* Добавляем отступ справа чтобы текст не заезжал под крестик */
  }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
  .calc-content {
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    padding-top: 2rem; /* Сохраняем увеличенный верхний padding */
    border-radius: 15px;
    margin: 15px auto;
  }
  
  .calc-close {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    top: 10px;
    right: 10px;
  }
  
  .calc-content h2 {
    font-size: 1.3rem;
    padding-right: 35px; /* Отступ для маленьких экранов */
  }
}

/* Дополнительная защита - если все равно налазит */
@media (max-width: 360px) {
  .calc-content {
    padding-top: 2.2rem;
  }
  
  .calc-content h2 {
    font-size: 1.2rem;
    padding-right: 30px;
  }
  
  .calc-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: rgba(18, 18, 18, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: bold;
  z-index: 3;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
}

/* Подсказка для поля */
.field-hint {
  font-size: 0.75rem;
  color: var(--orange-light);
  margin-top: 0.3rem;
  opacity: 0.8;
  font-style: italic;
}

/* Примеры объемов */
.volume-examples {
  background: rgba(255, 107, 0, 0.05);
  padding: 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  margin-bottom: 1.2rem;
}

.examples-title {
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.examples span {
  background: rgba(255, 107, 0, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.examples span:hover {
  background: rgba(255, 107, 0, 0.2);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* Поле цвета */
.color-picker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.color-input {
  width: 50px;
  height: 40px;
  border: 2px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
}

.color-input::-webkit-color-swatch {
  border: none;
  border-radius: 6px;
}

.color-input::-moz-color-swatch {
  border: none;
  border-radius: 6px;
}

.color-label {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Текстовое поле */
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(30, 30, 30, 0.8);
  color: var(--text-light);
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  min-height: 70px; /* Уменьшили минимальную высоту */
  transition: var(--transition);
}

textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 8px var(--orange-glow);
}

/* Загрузка файла */
.file-upload {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.file-input {
  display: none;
}

.file-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px;
  background: rgba(255, 107, 0, 0.1);
  border: 2px dashed var(--orange);
  border-radius: 10px;
  color: var(--orange);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  justify-content: center;
  font-size: 0.9rem;
}

.file-label:hover {
  background: rgba(255, 107, 0, 0.2);
  transform: translateY(-2px);
}

.file-icon {
  font-size: 1.1rem;
}

.file-name {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

.calc-result {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 66, 0.1));
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  margin: 1.2rem 0;
  text-align: center;
}

.calc-result h3 {
  color: var(--orange);
  margin: 0;
  font-size: 1.1rem;
}

#result {
  font-size: 1.5rem;
  color: var(--orange-light);
  font-weight: bold;
}

/* Примечание */
.calc-note {
  font-size: 0.75rem;
  color: var(--orange-light);
  margin-top: 0.5rem;
  text-align: center;
  opacity: 0.8;
}

.calc-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.calc-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .calc-modal {
    padding: 10px;
    align-items: flex-start; /* Выравниваем по верху для мобильных */
  }
  
  .calc-content {
    padding: 1.5rem 1.2rem;
    margin: 10px auto;
    max-height: 85vh;
    width: 98%;
    border-radius: 20px;
  }
  
  .calc-close {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    top: 12px;
    right: 12px;
  }
  
  .calc-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .color-picker {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .examples {
    flex-direction: column;
  }
  
  .examples span {
    text-align: center;
    padding: 0.4rem 0.8rem;
  }
  
  .calc-field {
    margin-bottom: 1rem;
  }
  
.calc-field input,
.calc-field select,
.calc-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(30, 30, 30, 0.9) !important;
  color: var(--text-light) !important;
  font-size: 0.95rem;
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Для селектов */
.calc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B00' d='M6 8L2 4h8z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px !important;
  padding-right: 35px !important;
}

/* Для цветового поля */
.color-input {
  width: 50px;
  height: 40px;
  border: 2px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  background: rgba(30, 30, 30, 0.9) !important;
}

.calc-field input:focus,
.calc-field select:focus,
.calc-field textarea:focus {
  outline: none;
  border-color: var(--orange) !important;
  box-shadow: 0 0 8px var(--orange-glow) !important;
  background: rgba(40, 40, 40, 0.9) !important;
}
  
  .file-label {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .calc-result {
    padding: 1rem;
  }
  
  .calc-result h3 {
    font-size: 1rem;
  }
  
  #result {
    font-size: 1.3rem;
  }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
  .calc-content {
    padding: 1.2rem 1rem;
    border-radius: 15px;
  }
  
  .calc-content h2 {
    font-size: 1.3rem;
  }
  
  .calc-field label {
    font-size: 0.9rem;
  }
  
  .calc-field input,
  .calc-field select,
  textarea {
    font-size: 0.85rem;
  }
  
  .calc-submit-btn {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Стили для скроллбара в калькуляторе */
.calc-content::-webkit-scrollbar {
  width: 6px;
}

.calc-content::-webkit-scrollbar-track {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 3px;
}

.calc-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 3px;
}

.calc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calc-modal[style*="display: flex"] {
    opacity: 1;
}

/* Тёмные стили для полей как в твоём дизайне */
.calc-field input,
.calc-field select,
.calc-field textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(30, 30, 30, 0.9);
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.calc-field input:focus,
.calc-field select:focus,
.calc-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 10px var(--orange-glow);
  background: rgba(40, 40, 40, 0.9);
}

.calc-field input::placeholder {
  color: rgba(245, 245, 245, 0.6);
}

/* === УВЕЛИЧЕНИЕ РАЗМЕРА ШРИФТА В ГЛАВНОМ БЛОКЕ === */

/* Заголовок */
.hero-content h1 {
  font-size: 5.2rem !important; /* Увеличиваем заголовок */
}

/* Подзаголовок */
.hero-content .subtitle {
  font-size: 2rem !important; /* Увеличиваем подзаголовок */
}

/* Основной текст */
.hero-content p {
  font-size: 1.4rem !important; /* Увеличиваем основной текст */
}

/* Кнопка */
.hero-content .btn {
  font-size: 1.5rem !important; /* Увеличиваем текст кнопки */
}

/* === АДАПТИВНЫЕ СТИЛИ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ === */

@media (max-width: 768px) {
  /* Заголовок */
  .hero-content h1 {
    font-size: 2.7rem !important; /* Уменьшили с 7rem до 4rem */
  }

  /* Подзаголовок */
  .hero-content .subtitle {
    font-size: 1.5rem !important; /* Уменьшили с 2rem до 1.5rem */
  }

  /* Основной текст */
  .hero-content p {
    font-size: 1.3rem !important; /* Уменьшили с 1.6rem до 1.3rem */
  }

  /* Кнопка */
  .hero-content .btn {
    font-size: 1.1rem !important; /* Уменьшили с 1.3rem до 1.1rem */
  }
}

/* === НЕОННАЯ ОБВОДКА .hero-content === */

.neon-border {
  position: absolute; /* Позиционируем относительно .hero-content */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px; /* Должно совпадать с .hero-content */
  pointer-events: none; /* Не мешает кликать по содержимому */
  z-index: 5; /* Должен быть выше текста и слоёв ::before, ::after */
  overflow: hidden; /* Обрезаем, если выходит за границы */
}

/* Создаём "бегущий" неон */
.neon-border::before {
  content: '';
  position: absolute;
  top: -2px; /* Начинаем чуть выше */
  left: -2px; /* Начинаем чуть левее */
  width: calc(100% + 4px); /* Ширина + отступы */
  height: calc(100% + 4px); /* Высота + отступы */
  background: linear-gradient(
    45deg,
    transparent 0%,
    #ff7700 10%, /* Оранжевый цвет неона */
    #ffaa33 20%, /* Светло-оранжевый */
    #ff7700 30%,
    transparent 40%,
    #ff7700 50%,
    #ffaa33 60%,
    #ff7700 70%,
    transparent 80%,
    transparent 100%
  );
  background-size: 300% 300%; /* Увеличиваем размер градиента для анимации */
  animation: neon-run 3s linear infinite; /* Анимация движения */
  border-radius: 25px; /* Совпадает с .hero-content */
  box-shadow:
    0 0 10px #ff7700, /* Внутренняя подсветка */
    0 0 20px #ff7700,
    0 0 30px rgba(255, 107, 0, 0.8),
    0 0 40px rgba(255, 107, 0, 0.6);
  /* Стираем "хвосты" градиента за пределами границы */
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor; /* Старый синтаксис для WebKit */
}

/* Анимация движения неона по периметру */
@keyframes neon-run {
  0% {
    background-position: 0% 50%; /* Начало */
  }
  100% {
    background-position: 300% 50%; /* Конец (300% для 300% размера) */
  }
}
/* Основной контейнер для FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

/* Настройка сетки для десктопа */
@media (min-width: 768px) {
  .faq-container {
    /* Убираем grid и используем flex, так как строки теперь обернуты в div */
  }
}

/* Контейнер для каждой строки (на десктопе будет содержать 2 карточки) */
.faq-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

/* На десктопе делаем строки двухколоночными */
@media (min-width: 768px) {
  .faq-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* На мобильных устройствах строки становятся одноколоночными */
@media (max-width: 767px) {
  .faq-row {
    flex-direction: column;
  }
}

/* Стили для каждой карточки FAQ */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 1rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex: 1; /* Карточки растягиваются, чтобы заполнить всю ширину строки */
}

/* Стили для заголовка вопроса */
.faq-item summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-light);
  padding: 0.8rem 1rem;
  display: block;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 10px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* Плавное раскрытие/закрытие */
.faq-item[open] {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

/* Изменение маркера (плюс/минус) */
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: var(--orange);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '-';
}

/* Эффект при наведении на заголовок */
.faq-item summary:hover {
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
}

/* Стили для ответа */
.faq-item p {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 10px;
  line-height: 1.6;
  color: var(--text-light);
  font-size: 0.95rem;
  border-left: 3px solid var(--orange);
  transition: var(--transition);
}

/* Убираем стандартную стрелку браузера */
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  display: none;
}
/* Стили для единого блока ответа */
.faq-answer {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  font-size: 0.95rem;
  border-left: 3px solid var(--orange);
  transition: var(--transition);
  box-shadow: inset 0 0 0 1px rgba(255, 107, 0, 0.1);
}

/* Стили для списков внутри .faq-answer */
.faq-answer ul {
  margin: 0.8rem 0 0.8rem 1.5rem;
  padding: 0;
  list-style: none;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--orange);
  line-height: 1.4;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}
/* Стили для единого блока ответа */
.faq-answer {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: inset 0 0 0 1px rgba(255, 107, 0, 0.1);
}

/* Стили для отдельных строк внутри .faq-answer */
.faq-answer-block {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.faq-answer-block:hover {
  background: rgba(255, 107, 0, 0.1);
  transform: translateY(-1px);
}

/* Стили для иконок в блоках */
.faq-answer-icon {
  font-size: 1.2rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
}

/* Стили для кнопок мессенджеров */
.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin: 1.8rem 0;
}

.messenger-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.6rem;
  border-radius: 16px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 220px;
  justify-content: center;
  color: white;
}

.messenger-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Иконки внутри кнопок */
.messenger-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Цвета: WhatsApp — зелёный, Telegram — синий */
.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.telegram {
  background: linear-gradient(135deg, #0088cc, #005a88);
}

/* Адаптивность */
@media (max-width: 768px) {
  .messenger-links {
    flex-direction: column;
    align-items: center;
  }
  .messenger-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Стильная технологичная кнопка Email */
.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 25, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 107, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.email-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.email-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.4),
    0 0 15px var(--orange-glow);
}

.email-btn:hover::before {
  left: 100%;
}

.email-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--orange);
  filter: drop-shadow(0 0 6px var(--orange-glow));
  transition: var(--transition);
}

.email-btn:hover .email-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 12px var(--orange-glow));
}

.contact-slogan {
  margin-top: 2rem;
  font-style: italic;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  position: relative;
  padding: 1rem 2rem;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 16px;
  border-left: 3px solid var(--orange);
  box-shadow: inset 0 0 10px rgba(255, 107, 0, 0.1);
  animation: slogan-float 6s ease-in-out infinite;
}

.contact-slogan::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.3;
  font-family: 'Montserrat', serif;
}

.contact-slogan::after {
  content: '"';
  position: absolute;
  bottom: -30px;
  right: 10px;
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.3;
  font-family: 'Montserrat', serif;
}

@keyframes slogan-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Неоновое свечение при наведении */
.contact-slogan:hover {
  color: var(--orange);
  text-shadow: 0 0 12px var(--orange-glow);
  border-left-color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
  box-shadow:
    inset 0 0 15px rgba(255, 107, 0, 0.2),
    0 0 12px var(--orange-glow);
}

/* Стили для лапки кота */
.cat-paw {
  position:relative;
  top: 5%;
  right: -8%;
  width: 220px;
  height: 120px;
  z-index: 1;
  animation: paw-float 8s ease-in-out infinite;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cat-paw:hover {
  opacity: 1;
  transform: scale(1.1) rotate(8deg);
}

.cat-paw-img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.5));
}

@keyframes paw-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .cat-paw {
    top: 15%;
    right: 5%;
    width: 80px;
    height: 80px;
  }
}