/* === Цветовая палитра === */
:root {
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-text: #2d2d2d;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  
  /* Градиент кнопок: желтый → оранжевый */
  --gradient-primary: linear-gradient(135deg, #FFD54F 0%, #FF9800 50%, #F57C00 100%);
  --gradient-primary-hover: linear-gradient(135deg, #FFCA28 0%, #FB8C00 50%, #EF6C00 100%);
  --gradient-shadow: 0 4px 14px rgba(255, 152, 0, 0.35);
  
  /* Акценты */
  --color-accent-yellow: #FFD54F;
  --color-accent-orange: #FF9800;
  --color-success: #43A047;
  --color-error: #E53935;
}

/* === Базовые стили хэдера === */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  z-index: 1000;
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-primary) 1;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img {
  max-height: 50px;
  transition: transform 0.2s;
}
.logo img:hover {
  transform: scale(1.03);
}

/* === Меню === */
.main-menu, .submenu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.main-menu .menu-item {
  position: relative;
}
.main-menu a {
  text-decoration: none;
  color: var(--color-text);
  padding: 12px 16px;
  display: block;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}
.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.main-menu a:hover,
.main-menu a.current {
  color: var(--color-accent-orange);
  background: rgba(255, 213, 79, 0.12);
}
.main-menu a:hover::after,
.main-menu a.current::after {
  width: 70%;
}

/* Подменю */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  min-width: 220px;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.main-menu .menu-item.parent:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu .menu-item a {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text);
}
.submenu .menu-item:last-child a {
  border-bottom: none;
}
.submenu .menu-item a:hover {
  background: rgba(255, 152, 0, 0.08);
  padding-left: 24px; /* микро-анимация */
}

/* === Кнопки и контакты === */
.header-actions {
  display: flex;
	    flex-direction: column;
  align-items: center;
  gap: 12px;
}
.phone-link {
  color: var(--color-text);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-link::before {
  content: '📞';
  font-size: 16px;
}
.phone-link:hover {
  background: rgba(255, 213, 79, 0.2);
  color: var(--color-accent-orange);
}

/* === Градиентные кнопки === */
.btn-callback,
.btn-submit {
  background: var(--gradient-primary);
  color: #1a1a1a;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: var(--gradient-shadow);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.btn-callback::before,
.btn-submit::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.5s;
}
.btn-callback:hover,
.btn-submit:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}
.btn-callback:hover::before,
.btn-submit:hover::before {
  left: 100%;
}
.btn-callback:active,
.btn-submit:active {
  transform: translateY(0);
}
.btn-callback:disabled,
.btn-submit:disabled {
  background: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  color: #666;
}

/* === Бургер для мобильной версии === */
.burger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.burger-toggle:hover {
  background: rgba(255, 213, 79, 0.2);
}
.burger-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.burger-toggle.active span:nth-child(2) {
  opacity: 0;
}
.burger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === Мобильное меню === */
.mobile-menu-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 15px 20px 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-top: 1px solid var(--color-border);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu-wrapper.active {
  display: block;
}
.mobile .main-menu,
.mobile .submenu {
  flex-direction: column;
  gap: 5px;
}
.mobile .main-menu a {
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 8px;
}
.mobile .submenu {
  position: static;
  box-shadow: none;
  padding-left: 12px;
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  display: none;
  background: rgba(255, 213, 79, 0.06);
  border-radius: 8px;
}
.mobile .menu-item.parent > .submenu.active {
  display: flex;
}
.mobile .menu-item.parent > a::after {
  content: ' ▸';
  font-size: 12px;
  position: static;
  transform: none;
  width: auto;
  background: none;
}
.mobile .menu-item.parent.active > a::after {
  content: ' ▾';
}

/* === Попап === */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active {
  display: flex;
  animation: overlayFade 0.3s ease;
}
@keyframes overlayFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-window {
  background: var(--color-white);
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 35px 30px;
  position: relative;
  animation: modalPop 0.35s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border: 2px solid transparent;
  border-image: var(--gradient-primary) 1;
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: var(--color-light);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.modal-close:hover {
  background: var(--color-accent-yellow);
  color: #1a1a1a;
  transform: rotate(90deg);
}
.modal-content h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--color-text);
  text-align: center;
}
.modal-phone {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--color-accent-orange);
  text-decoration: none;
  margin: 15px 0 25px;
  text-align: center;
  padding: 10px;
  background: rgba(255, 213, 79, 0.15);
  border-radius: 12px;
  transition: all 0.2s;
}
.modal-phone:hover {
  background: rgba(255, 152, 0, 0.2);
  transform: scale(1.02);
}
.modal-content p {
  margin: 0 0 28px;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.5;
  font-size: 15px;
}

/* === Форма === */
.callback-form label {
  display: block;
  margin-bottom: 22px;
}
.callback-form label span {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-text);
  font-size: 14px;
}
.callback-form label span b {
  color: var(--color-error);
  margin-left: 2px;
}
.callback-form input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-size: 17px;
  box-sizing: border-box;
  transition: all 0.25s;
  background: var(--color-light);
}
.callback-form input:focus {
  border-color: var(--color-accent-orange);
  outline: none;
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.15);
}
.callback-form input::placeholder {
  color: #aaa;
}
.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 16px;
}
.form-message {
  margin-top: 18px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  min-height: 20px;
  padding: 8px 12px;
  border-radius: 8px;
}
.form-message.success { 
  color: var(--color-success); 
  background: rgba(67, 160, 71, 0.1);
}
.form-message.error { 
  color: var(--color-error); 
  background: rgba(229, 57, 53, 0.1);
}

/* === Адаптив === */
@media (max-width: 992px) {
  .desktop { display: none; }
  .burger-toggle { display: flex; }
  .header-actions .phone-link { display: none; }
  .header-actions { gap: 8px; }
  .btn-callback {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .header-container { padding: 10px 15px; }
  .modal-window { 
    padding: 28px 22px; 
    margin: 10px;
  }
  .modal-content h3 { font-size: 20px; }
  .modal-phone { font-size: 22px; }
  .btn-callback, .btn-submit {
    padding: 14px;
    font-size: 15px;
  }
}

/* === Микро-анимации для интерактива === */
@media (prefers-reduced-motion: no-preference) {
  .main-menu a,
  .btn-callback,
  .modal-phone,
  .burger-toggle span {
    will-change: transform;
  }
}








/* === Слайдер === */
/* === Smooth Scroll === */
html {
  scroll-behavior: smooth;
}

/* === Hero Slider === */
.hero-slider {
  position: relative;
  margin-bottom: 0;
  height: 700px;
  overflow: hidden;
}
.slider-wrapper {
  position: relative;
  height: 100%;
  max-width: 100%;
}
.slider-container {
  height: 100%;
  position: relative;
}

/* Слайд с фоновым изображением */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Затемнение фона */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* Контент слайда */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  color: var(--color-white);
  animation: slideUp 0.8s ease-out;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: fadeInDown 0.8s ease-out 0.2s both;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-content p {
  font-size: 22px;
  margin: 0 0 35px;
  color: rgba(255,255,255,0.9);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-content .btn-gradient {
  animation: fadeIn 0.8s ease-out 0.6s both;
  font-size: 16px;
  padding: 16px 40px;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === Кнопки навигации === */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-nav:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #1a1a1a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(255,152,0,0.4);
}
.slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.slider-prev {
  left: 30px;
}
.slider-next {
  right: 30px;
}

/* === Индикаторы (точки) === */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.dot:hover {
  background: rgba(255,255,255,0.7);
  transform: scale(1.2);
}
.dot.active {
  background: var(--gradient-primary);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 10px rgba(255,152,0,0.6);
  transform: scale(1.3);
}

/* === Адаптив слайдера === */
@media (max-width: 1024px) {
  .hero-slider {
    height: 600px;
  }
  .slide-content h1 {
    font-size: 40px;
  }
  .slide-content p {
    font-size: 18px;
  }
  .slider-nav {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    height: 550px;
  }
  .slide-content {
    padding: 0 20px;
  }
  .slide-content h1 {
    font-size: 32px;
  }
  .slide-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .slide-content .btn-gradient {
    padding: 14px 30px;
    font-size: 14px;
  }
  .slider-nav {
    width: 45px;
    height: 45px;
    opacity: 0.7;
  }
  .slider-prev {
    left: 15px;
  }
  .slider-next {
    right: 15px;
  }
}
@media (max-width: 576px) {
  .hero-slider {
    height: 500px;
  }
  .slide-content h1 {
    font-size: 26px;
  }
  .slide-content p {
    font-size: 14px;
  }
  .slider-dots {
    bottom: 25px;
  }
  .dot {
    width: 12px;
    height: 12px;
  }
}

/* === Отключение анимации для пользователей, которые предпочитают reduced motion === */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .slide,
  .slide-content,
  .slide-content h1,
  .slide-content p,
  .slide-content .btn-gradient {
    animation: none;
  }
  .slide {
    transition: none;
  }
}

/* === Секции === */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--color-text);
  position: relative;
  padding-bottom: 20px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Преимущества === */
.features-section {
  padding: 60px 0;
  background: var(--color-light);
  margin-bottom: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,152,0,0.15);
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-card h3 {
  font-size: 20px;
  margin: 0 0 15px;
  color: var(--color-text);
}
.feature-card p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* === Каталог техники === */
.equipment-section {
  padding: 80px 0;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.equipment-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255,152,0,0.2);
  border-color: var(--color-accent-yellow);
}
.equipment-image {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff9e6 0%, #fff3e0 100%);
}
.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.equipment-card:hover .equipment-image img {
  transform: scale(1.05);
}
.equipment-content {
  padding: 30px;
}
.equipment-content h3 {
  font-size: 22px;
  margin: 0 0 15px;
  color: var(--color-text);
}
.equipment-desc {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.equipment-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}
.equipment-specs li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 14px;
}
.equipment-specs li:last-child {
  border-bottom: none;
}
.equipment-specs strong {
  color: var(--color-accent-orange);
}
.equipment-price {
  margin: 25px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,213,79,0.15) 0%, rgba(255,152,0,0.15) 100%);
  border-radius: 10px;
  text-align: center;
}
.price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 5px;
}
.price-add {
  display: block;
  font-size: 16px;
  color: var(--color-text-light);
}

/* === Информационные блоки === */
.info-section {
  padding: 80px 0;
  background: var(--color-light);
}
.info-block {
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.info-block:last-child {
  margin-bottom: 0;
}
.info-block h2 {
  font-size: 28px;
  margin: 0 0 25px;
  color: var(--color-text);
}
.info-block p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.info-block.highlight {
  border-left: 5px solid transparent;
  border-image: var(--gradient-primary) 1;
}
.advantages-list {
  padding-left: 20px;
  margin: 20px 0;
}
.advantages-list li {
  margin-bottom: 12px;
  color: var(--color-text);
  line-height: 1.6;
  position: relative;
  list-style: none;
}
.advantages-list li::before {
  content: '✓';
  position: absolute;
  left: -20px;
  color: var(--color-accent-orange);
  font-weight: bold;
}

/* === Преимущества работы === */
.work-advantages {
  padding: 60px 0;
  background: var(--gradient-primary);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.advantage-item {
  text-align: center;
  color: #1a1a1a;
  padding: 30px 20px;
}
.advantage-icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.advantage-item h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

/* === Услуги === */
.services-section {
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.service-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255,152,0,0.15);
}
.service-image {
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-content {
  padding: 30px;
}
.service-content h3 {
  font-size: 24px;
  margin: 0 0 20px;
  color: var(--color-text);
}
.service-content p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* === Как мы работаем === */
.how-we-work {
  padding: 80px 0;
  background: var(--color-light);
}
.work-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.work-step {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 auto 25px;
  box-shadow: var(--gradient-shadow);
}
.work-step h3 {
  font-size: 20px;
  margin: 0 0 15px;
  color: var(--color-text);
}
.work-step p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}
.work-step a {
  color: var(--color-accent-orange);
  font-weight: 600;
  text-decoration: none;
}

/* === CTA блок === */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255,213,79,0.2) 0%, rgba(255,152,0,0.2) 100%);
}
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 28px;
  margin: 0 0 20px;
  color: var(--color-text);
}
.cta-content h2 a {
  color: var(--color-accent-orange);
  text-decoration: none;
  display: block;
  margin-top: 10px;
  font-size: 32px;
}
.cta-content p {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 30px;
}
.btn-large {
  padding: 18px 50px;
  font-size: 18px;
}

/* === Кнопки === */
.btn-gradient {
  display: inline-block;
  background: var(--gradient-primary);
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--gradient-shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}
.btn-gradient:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,152,0,0.5);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-accent-orange);
  padding: 12px 30px;
  border: 2px solid var(--color-accent-orange);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--color-accent-orange);
  color: var(--color-white);
}
.btn-link {
  display: inline-block;
  background: none;
  border: none;
  color: var(--color-accent-orange);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  font-size: 16px;
  transition: all 0.2s;
}
.btn-link:hover {
  color: var(--color-accent-yellow);
}

/* === Формы в модальных окнах === */
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-size: 16px;
  margin-bottom: 20px;
  background: var(--color-light);
  cursor: pointer;
}
.form-select:focus {
  outline: none;
  border-color: var(--color-accent-orange);
  background: var(--color-white);
}
.modal-large {
  max-width: 650px;
}

/* === Адаптив === */
@media (max-width: 992px) {
  .slide {
    flex-direction: column;
  }
  .slide-content {
    padding: 40px 25px;
  }
  .slide-content h1 {
    font-size: 26px;
  }
  .slide-image {
    min-height: 250px;
  }
  .section-title {
    font-size: 26px;
  }
  .equipment-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .features-grid,
  .work-steps {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .info-block {
    padding: 30px 20px;
  }
  .cta-content h2 {
    font-size: 22px;
  }
  .cta-content h2 a {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .slide-content h1 {
    font-size: 22px;
  }
  .section-title {
    font-size: 22px;
  }
  .equipment-content h3,
  .service-content h3 {
    font-size: 20px;
  }
  .btn-gradient {
    padding: 12px 24px;
    font-size: 13px;
  }
}







/* === Футер === */
.site-footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #e0e0e0;
  padding: 60px 0 0;
  margin-top: 80px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Сетка футера */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Колонки */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Логотип */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}
.logo-subtitle {
  font-size: 14px;
  color: var(--color-accent-orange);
  font-weight: 600;
  line-height: 1.2;
}
.footer-desc {
  font-size: 14px;
  color: #999;
  line-height: 1.5;
  margin: 0;
}

/* Заголовки колонок */
.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 25px;
  padding-bottom: 12px;
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-primary) 1;
  display: inline-block;
}

/* Телефон */
.footer-phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.footer-phone:hover {
  color: var(--color-accent-yellow);
}

/* Мессенджеры */
.footer-messengers {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.messenger-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s;
  color: var(--color-white);
}
.messenger-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.messenger-link.telegram:hover {
  background: #0088cc;
}
.messenger-link.viber:hover {
  background: #7360f2;
}
.messenger-link.whatsapp:hover {
  background: #25d366;
}

/* Email */
.footer-email {
  display: block;
  font-size: 15px;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.footer-email:hover {
  color: var(--color-accent-yellow);
}

/* Меню футера */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 12px;
}
.footer-menu a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
}
.footer-menu a::before {
  content: '›';
  position: absolute;
  left: -15px;
  color: var(--color-accent-orange);
  font-size: 18px;
  opacity: 0;
  transition: all 0.2s;
}
.footer-menu a:hover {
  color: var(--color-accent-yellow);
  padding-left: 12px;
}
.footer-menu a:hover::before {
  opacity: 1;
  left: 0;
}

/* Копирайт */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 25px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* === Адаптив === */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .site-footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-logo-wrap {
    flex-direction: column;
    text-align: center;
  }
  .footer-phone {
    font-size: 20px;
  }
  .footer-messengers {
    justify-content: center;
  }
  .footer-menu {
    text-align: center;
  }
  .footer-menu a:hover {
    padding-left: 0;
  }
  .footer-menu a::before {
    display: none;
  }
}





/* =====================================================
   ЕДИНЫЙ CSS ДЛЯ СТРАНИЦ АРЕНДЫ СПЕЦТЕХНИКИ
   Спецтех.бел | Эволюция цветов: белый + желто-оранжевый
   ===================================================== */

/* === Переменные === */
:root {
  /* Базовые цвета */
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-text: #2d2d2d;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  
  /* Градиент: желтый → оранжевый */
  --gradient-primary: linear-gradient(135deg, #FFD54F 0%, #FF9800 50%, #F57C00 100%);
  --gradient-primary-hover: linear-gradient(135deg, #FFCA28 0%, #FB8C00 50%, #EF6C00 100%);
  --gradient-shadow: 0 4px 14px rgba(255, 152, 0, 0.35);
  
  /* Акценты */
  --color-accent-yellow: #FFD54F;
  --color-accent-orange: #FF9800;
  --color-success: #43A047;
  --color-error: #E53935;
  
  /* Размеры */
  --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* === Сброс и базовые стили === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-accent-orange);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--color-accent-yellow);
}
ul, ol {
  padding-left: 25px;
}
li {
  margin-bottom: 8px;
}

/* === Контейнеры === */
.container,
.breadcrumbs-container,
.inner-page-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.fbimg {
	margin: 0 !important;
}

/* =====================================================
   ХЛЕБНЫЕ КРОШКИ
   ===================================================== */
.breadcrumbs {
  background: var(--color-light);
  padding: 15px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 15px;
  font-size: 14px;
}
.breadcrumbs-list li {
  display: flex;
  align-items: center;
  margin: 0;
}
.breadcrumbs-list li:not(:last-child)::after {
  content: '/';
  color: var(--color-text-light);
  margin-left: 15px;
  font-weight: 400;
}
.breadcrumbs-list a {
  color: var(--color-text-light);
}
.breadcrumbs-list a:hover {
  color: var(--color-accent-orange);
}
.breadcrumbs-list li:last-child {
  color: var(--color-text);
  font-weight: 500;
}

/* =====================================================
   ЗАГОЛОВОК СТРАНИЦЫ
   ===================================================== */
.page-header {
  margin-bottom: 50px;
    max-width: var(--container-max);
    margin: 0 auto;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 770px) {
	.page-header {flex-wrap: wrap; justify-content: center;}
}

.page-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 15px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}
.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.page-subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 800px;
  line-height: 1.7;
  margin: 0;
}

/* =====================================================
   ОСНОВНОЙ КОНТЕНТ
   ===================================================== */
.inner-page-content {
  padding-bottom: 60px;
}
.content-section {
  margin-bottom: 50px;
}
.content-section:last-child {
  margin-bottom: 0;
}
.content-section > p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.content-section > p:last-child {
  margin-bottom: 0;
}

/* Заголовки секций */
.content-section h2 {
  font-size: 32px;
  color: var(--color-text);
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-border);
  position: relative;
  font-weight: 700;
}
.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--gradient-primary);
}
.content-section h3 {
  font-size: 24px;
  color: var(--color-text);
  margin: 35px 0 18px;
  font-weight: 700;
}
.content-section h4 {
  font-size: 20px;
  color: var(--color-text);
  margin: 25px 0 15px;
  font-weight: 600;
}

/* Списки в контенте */
.content-section ul,
.content-section ol {
  margin: 20px 0 30px;
  padding-left: 28px;
}
.content-section li {
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
}
.content-section ul li::before {
  content: '•';
  position: absolute;
  left: -20px;
  color: var(--color-accent-orange);
  font-size: 24px;
  line-height: 1;
}
.content-section strong,
.content-section b {
  color: var(--color-text);
  font-weight: 600;
}

/* =====================================================
   КАРТОЧКА ТЕХНИКИ
   ===================================================== */
.tech-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  margin: 40px 0;
  border: 2px solid transparent;
  transition: var(--transition);
}
.tech-card:hover {
  border-color: var(--color-accent-yellow);
  box-shadow: 0 10px 40px rgba(255,152,0,0.15);
}
.tech-card-image {
  height: 400px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff3e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.tech-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.03) 100%);
}
.tech-card-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.tech-card:hover .tech-card-image img {
  transform: scale(1.05);
}
.tech-card-content {
  padding: 40px;
}
.tech-card-title {
  font-size: 28px;
  color: var(--color-text);
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.3;
}
.tech-card-description {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 16px;
}

/* =====================================================
   ХАРАКТЕРИСТИКИ (СЕТКА)
   ===================================================== */
.tech-specs {
  background: var(--color-light);
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
}
.tech-specs h3 {
  margin: 0 0 25px;
  font-size: 22px;
  color: var(--color-text);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px 30px;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
}
.spec-item:last-child {
  border-bottom: none;
}
.spec-label {
	flex-basis: 50% !important;
  font-weight: 600;
  color: var(--color-text);
  flex: 0 0 auto;
  padding-right: 15px;
}
.spec-value {
  color: var(--color-accent-orange);
  font-weight: 500;
  text-align: right;
  flex: 1;
}

/* =====================================================
   БЛОК ЦЕН
   ===================================================== */
.pricing-block {
  background: linear-gradient(135deg, rgba(255,213,79,0.15) 0%, rgba(255,152,0,0.15) 100%);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  margin: 40px 0;
  border: 2px solid transparent;
  border-image: var(--gradient-primary) 1;
}
.pricing-title {
  font-size: 24px;
  color: var(--color-text);
  margin: 0 0 25px;
  font-weight: 700;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: inline-block;
  text-align: left;
  min-width: 280px;
}
.pricing-list li {
  padding: 14px 20px;
  margin-bottom: 12px;
  background: var(--color-white);
  border-radius: 10px;
  font-size: 16px;
  color: var(--color-text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 0 0 10px;
}
.pricing-list li:last-child {
  margin-bottom: 0;
}
.pricing-list li strong {
  color: var(--color-accent-orange);
  font-size: 18px;
  font-weight: 700;
}
.pricing-note {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 20px;
  font-style: italic;
}

/* =====================================================
   КОЛОНКИ ПРЕИМУЩЕСТВ
   ===================================================== */
.features-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 40px 0;
}
.feature-column {
  background: var(--color-white);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.feature-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,152,0,0.15);
  border-color: var(--color-accent-yellow);
}
.feature-column-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--gradient-shadow);
}
.feature-column h4 {
  font-size: 18px;
  color: var(--color-text);
  margin: 0 0 12px;
  font-weight: 600;
}
.feature-column p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* =====================================================
   ГАЛЕРЕЯ
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(255,152,0,0.2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* =====================================================
   ВИДЕО (YouTube)
   ===================================================== */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* =====================================================
   FAQ (АККОРДЕОН)
   ===================================================== */
.faq-list {
  margin: 30px 0;
}
.faq-item {
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}
.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-size: 16px;
}
.faq-question:hover {
  background: rgba(255,213,79,0.1);
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--color-accent-orange);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 800px;
}
.faq-answer p {
  margin: 15px 0 0;
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 15px;
}

/* =====================================================
   CTA БЛОК
   ===================================================== */
.inner-cta {
  background: var(--gradient-primary);
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  margin: 60px 0;
  box-shadow: var(--gradient-shadow);
  position: relative;
  overflow: hidden;
}
.inner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 50%);
}
.inner-cta > * {
  position: relative;
  z-index: 1;
}
.inner-cta h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin: 0 0 15px;
  font-weight: 800;
  line-height: 1.3;
}
.inner-cta p {
  font-size: 18px;
  color: #333;
  margin: 0 0 25px;
}
.inner-cta .phone-display {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 10px 0 25px;
  text-decoration: none;
}
.inner-cta .phone-display:hover {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.inner-cta .btn-gradient {
  background: var(--color-white);
  color: var(--color-accent-orange);
  font-size: 18px;
  padding: 16px 45px;
  font-weight: 700;
}
.inner-cta .btn-gradient:hover {
  background: var(--color-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* =====================================================
   КНОПКИ
   ===================================================== */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--gradient-shadow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  white-space: nowrap;
}
.btn-gradient:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,152,0,0.5);
  color: #1a1a1a;
}
.btn-gradient:active {
  transform: translateY(0);
}
.btn-gradient:disabled {
  background: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  color: #666;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-accent-orange);
  padding: 12px 30px;
  border: 2px solid var(--color-accent-orange);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--color-accent-orange);
  color: var(--color-white);
}

/* =====================================================
   ФОРМЫ И ПОЛЯ ВВОДА
   ===================================================== */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-text);
  font-size: 14px;
}
.form-label .required {
  color: var(--color-error);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-size: 16px;
  transition: var(--transition);
  background: var(--color-light);
  color: var(--color-text);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-orange);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255,152,0,0.15);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #aaa;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-select {
  cursor: pointer;
  appearance: none;
  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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

/* =====================================================
   ТАБЛИЦЫ
   ===================================================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.data-table th,
.data-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.data-table th {
  background: var(--gradient-primary);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table tr:hover {
  background: var(--color-light);
}
.data-table td strong {
  color: var(--color-accent-orange);
}

/* =====================================================
   УТИЛИТЫ
   ===================================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.hidden { display: none !important; }

/* =====================================================
   АДАПТИВ
   ===================================================== */
@media (max-width: 1024px) {
  .page-title { font-size: 36px; }
  .tech-card-image { height: 350px; }
  .tech-card-content { padding: 30px; }
  .inner-cta { padding: 40px 30px; }
  .inner-cta h2 { font-size: 28px; }
}

@media (max-width: 768px) {
  .page-title { font-size: 30px; }
  .page-subtitle { font-size: 16px; }
  
  .content-section h2 { font-size: 26px; }
  .content-section h3 { font-size: 22px; }
  
  .tech-card-image { height: 300px; }
  .tech-card-content { padding: 25px; }
  .tech-card-title { font-size: 24px; }
  
  .tech-specs { padding: 25px 20px; }
  .specs-grid { grid-template-columns: 1fr; }
  
  .pricing-block { padding: 30px 20px; }
  .pricing-list { min-width: auto; }
  
  .features-columns { grid-template-columns: 1fr; }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  .faq-question { font-size: 15px; padding: 18px 20px; }
  .faq-answer { padding: 0 20px; }
  .faq-item.active .faq-answer { padding: 0 20px 18px; }
  
  .inner-cta { padding: 35px 25px; }
  .inner-cta h2 { font-size: 24px; }
  .inner-cta .phone-display { font-size: 24px; }
  
  .btn-gradient {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .page-title { font-size: 26px; }
  .content-section h2 { font-size: 22px; }
  
  .tech-card-image { height: 250px; }
  .tech-card-title { font-size: 20px; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  
  .inner-cta { padding: 30px 20px; }
  .inner-cta h2 { font-size: 22px; }
  .inner-cta p { font-size: 16px; }
  
  .breadcrumbs-list { font-size: 13px; }
  
  /* Убираем анимации для экономии батареи на мобильных */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
  }
}

/* =====================================================
   ПЕЧАТЬ
   ===================================================== */
@media print {
  .breadcrumbs,
  .inner-cta,
  .btn-gradient,
  .video-wrapper,
  .gallery-item,
  .faq-question::after {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  .tech-card,
  .pricing-block {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
}




/* Вводный блок */
.service-intro {
  margin-bottom: 50px;
}

.service-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 30px;
}

/* Сетка преимуществ */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: var(--color-light);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--color-border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--color-accent-orange);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 15px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

/* Этапы работы */
.service-steps {
  margin-top: 30px;
}

.step-item {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--color-light);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent-orange);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;

}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

.stp_usl {
	margin: 0 !important;
}

/* Карусель галереи - 3 в ряд */
.service-gallery {
  position: relative;
  max-width: 100%;
  margin: 40px 0;
  overflow: hidden;
  padding: 0 60px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 14px);
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 18px;
  border: 2px dashed var(--color-border);
}

/* Когда добавите фото, замените .image-placeholder на: */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 2px solid var(--color-border);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--color-accent-orange);
  border-color: var(--color-accent-orange);
  color: white;
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

/* Этапы заказа */
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.order-step {
  position: relative;
  padding: 25px 20px 20px;
  background: var(--color-light);
  border-radius: 12px;
  text-align: center;
}

.order-step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.order-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* Финальный CTA */
.service-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--color-light) 0%, #f8f9fa 100%);
  border-radius: 12px;
  margin-top: 50px;
}

.cta-block {
  max-width: 600px;
  margin: 0 auto;
}

.cta-percentage {
  font-size: 72px;
  font-weight: 900;
  color: var(--color-accent-orange);
  margin-bottom: 20px;
  line-height: 1;
}

.cta-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 20px;
}

.phone-display-large {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent-orange);
  text-decoration: none;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.phone-display-large:hover {
  color: var(--color-accent-yellow);
}

.cta-block > p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Адаптивность */
@media (max-width: 992px) {
  .gallery-item {
    flex: 0 0 calc(50% - 10px);
  }
  
  .service-gallery {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .service-features-grid {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .order-steps {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    flex: 0 0 100%;
  }
  
  .service-gallery {
    padding: 0 45px;
  }
  
  .gallery-prev,
  .gallery-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .cta-percentage {
    font-size: 48px;
  }
  
  .phone-display-large {
    font-size: 24px;
  }
  
  .service-cta {
    padding: 40px 20px;
  }
}