@font-face {
  font-family: "Akrobat";
  src: url("./Akrobat/Akrobat-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Akrobat";
  src: url("./Akrobat/Akrobat-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Akrobat";
  src: url("./Akrobat/Akrobat-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Akrobat";
  src: url("./Akrobat/Akrobat-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Akrobat";
  src: url("./Akrobat/Akrobat-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Akrobat";
  src: url("./Akrobat/Akrobat-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Akrobat";
  src: url("./Akrobat/Akrobat-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Akrobat";
  src: url("./Akrobat/Akrobat-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Muller";
  src: url("./Muller/MULLERDEMO-EXTRABOLD.OTF") format("opentype");
  font-weight: 800;
  font-style: normal;
}

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #000;
  background-color: #000;
  background-image: url(./media/bg-body.png);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: repeat-y;
  overflow-x: hidden;
  min-height: 100vh;
}

section {
  background: transparent;
  border: none;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #881df2;
}

.icon {
  width: 25px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(20px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.logo-img {
  width: 70px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-family: "Muller", sans-serif;
  font-weight: 400;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #881df2;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone {
  font-family: "Akrobat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.cta-btn {
  background: #881df2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-family: "Muller", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-btn:hover {
  background: #7019d9;
  transform: translateY(-1px);
}

.cta-btn-secondary {
  background: transparent;
  color: #881df2;
  border: 1px solid #881df2;
}

.cta-btn-secondary:hover {
  background: #881df2;
  color: white;
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

/* FIXED: Все заголовки теперь имеют фиксированные размеры */
.hero-content h1 {
  font-family: "Muller", sans-serif;
  font-size: 52px;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-content h2 {
  font-family: "Muller", sans-serif;
  font-size: 35px;
  letter-spacing: -1px;
  margin-top: 28px;
  line-height: 1.3;
}

.hero-content h3 {
  font-family: "Muller", sans-serif;
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 1.4;
}

/* FIXED: Добавлен класс hero-span */
.hero-span {
  display: block;
  font-family: "Muller", sans-serif;
  font-size: 20px;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #881df2;
}

.hero-content span {
  font-family: "Muller", sans-serif;
  font-size: 23px;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* FIXED: Фиксированные размеры для логотипов */
.hero-logo,
.hero-logo-service,
.hero-logo-main {
  max-width: 340px;
  width: 100%;
  height: auto;
}

.hero-logo-main {
  max-width: 200px;
  height: 160px;
}

/* FIXED: Фиксированный размер вместо процентного */
.hero-logo-service {
  width: 340px;
  max-width: 90%;
  height: auto;
}

.hero-highlight {
  color: #881df2;
  font-weight: 500;
}

/* FIXED: Фиксированный размер текста */
.hero-content p {
  font-family: "Akrobat", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 2px;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.video-modal-close:hover {
  transform: scale(1.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== TECHNOLOGY PROCESS SECTION ===== */
.tech-process {
  padding: 0 40px;
}

.container {
  max-width: 1400px;
  margin: 60px auto;
}

.container h2 {
  font-family: "Muller", sans-serif;
  font-weight: 400;
}

.container p {
  font-family: "Akrobat", sans-serif;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

/* FIXED: Фиксированный размер */
.section-title {
  font-family: "Muller", sans-serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

/* FIXED: Фиксированный размер */
.section-subtitle {
  font-family: "Muller", sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  line-height: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.process-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: linear-gradient(
    135deg,
    rgba(136, 29, 242, 0.1) 0%,
    rgba(136, 29, 242, 0.05) 100%
  );
  border: 1px solid rgba(136, 29, 242, 0.3);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.process-video {
  width: 100%;
  height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.process-video img {
  grid-area: 1 / 1;
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 4px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(136, 29, 242, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  border: none;
  font-size: 18px;
  z-index: 2;
}

.play-button:hover {
  background: #881df2;
  transform: translate(-50%, -50%) scale(1.1);
}

.process-content {
  padding: 32px;
}

.process-number {
  font-family: "Muller", sans-serif;
  color: #881df2;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* FIXED: Фиксированный размер */
.process-title {
  font-family: "Muller", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

/* FIXED: Фиксированный размер */
.process-description {
  font-family: "Akrobat", sans-serif;
  color: #cbc1c1;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  padding: 0 40px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #881df2;
  color: white;
  border-color: #881df2;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.portfolio-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 4px solid #881df2;
}

.portfolio-item-hidden {
  display: none;
}

.portfolio-item-hidden.show {
  display: block;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-info h3 {
  color: white;
  font-family: "Muller", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.portfolio-info p {
  color: #ccc;
  font-family: "Akrobat", sans-serif;
  font-size: 14px;
}

.portfolio-zoom {
  background: #f3f3f3ff;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.portfolio-zoom:hover {
  background: #7019d9;
  transform: scale(1.1);
}

.portfolio-zoom img {
  width: 20px;
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #881df2;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  z-index: 10000;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== EQUIPMENT GALLERY ===== */
.equipment {
  padding: 120px 40px;
}

.equipment-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.equipment-track {
  display: flex;
  transition: transform 0.5s ease;
}

.equipment-slide {
  min-width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

.equipment-slide div {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
}

.equipment-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #881df2;
  transform: scale(1.5);
}

.equipment-img {
  height: 100%;
  border-radius: 8px;
}

/* FIXED: Added equipment-order section styles */
.equipment-order {
  padding: 60px 40px;
}

.equipment-order-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.equipment-order-content h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #fff;
  font-family: "Muller", sans-serif;
}

.equipment-order-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Akrobat", sans-serif;
}

/* ===== ABOUT US SECTION ===== */
.about-us {
  padding: 0 40px;
  color: white;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

/* FIXED: Фиксированный размер */
.about-intro p {
  font-family: "Akrobat", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  color: #e0e0e0;
}

.about-features {
  margin-bottom: 80px;
}

/* FIXED: Фиксированный размер */
.about-subtitle {
  font-family: "Muller", sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  line-height: 1.3;
}

.features-title {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(136, 29, 242, 0.1) 0%,
    rgba(136, 29, 242, 0.05) 100%
  );
  border: 1px solid rgba(136, 29, 242, 0.3);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(136, 29, 242, 0.15) 0%,
    rgba(136, 29, 242, 0.08) 100%
  );
  border-color: rgba(136, 29, 242, 0.5);
  box-shadow: 0 12px 40px rgba(136, 29, 242, 0.2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

/* FIXED: Фиксированный размер */
.feature-card h4 {
  font-family: "Muller", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
}

/* FIXED: Фиксированный размер */
.feature-card p {
  font-family: "Akrobat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #ccc;
}

.about-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.mission-card {
  background: linear-gradient(135deg, #881df273 0%, #6c16c76c 100%);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(136, 29, 242, 0.3);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(136, 29, 242, 0.4);
}

/* FIXED: Фиксированный размер */
.mission-card h3 {
  font-family: "Muller", sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.3;
}

/* FIXED: Фиксированный размер */
.mission-card p {
  font-family: "Akrobat", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #f0f0f0;
  font-weight: 300;
}

.icon-about {
  width: 48px;
  height: 48px;
  margin-right: 10px;
  vertical-align: middle;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 120px 40px;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* FIXED: Фиксированный размер */
.contact-info h2 {
  font-family: "Muller", sans-serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

/* FIXED: Фиксированный размер */
.contact-info p {
  font-family: "Akrobat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.contact-item,
.contact-link {
  display: flex;
  gap: 20px;
  color: #ccc;
  text-decoration: none;
  font-family: "Akrobat", sans-serif;
  font-size: 16px;
  align-items: center;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: #881df2;
  flex-shrink: 0;
}

.contact-form {
  padding: 40px;
  border-radius: 8px;
}

/* FIXED: Фиксированный размер */
.contact-form-title {
  font-family: "Muller", sans-serif;
  margin-bottom: 24px;
  color: white;
  font-size: 24px;
  line-height: 1.3;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 14px;
  font-family: "Muller", sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #222;
  color: white;
  transition: border-color 0.2s ease;
  font-size: 16px;
  font-family: "Akrobat", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #881df2;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

/* Specifications Section */
.specifications {
  padding: 0 40px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Анимация появления слева (фото слева, текст справа) */
.spec-grid[data-animation="left"] {
  transform: translateX(-100px);
}

.spec-grid[data-animation="left"].animate {
  opacity: 1;
  transform: translateX(0);
}

/* Анимация появления справа (текст слева, фото справа) */
.spec-grid[data-animation="right"] {
  transform: translateX(100px);
}

.spec-grid[data-animation="right"].animate {
  opacity: 1;
  transform: translateX(0);
}

.spec-content h3 {
  font-family: "Muller", sans-serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #ffffff;
}

.spec-content p {
  font-family: "Akrobat", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #999;
}

.spec-list {
  list-style: none;
  margin: 32px 0;
}

.spec-list li {
  padding: 12px 10px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;

  background: linear-gradient(135deg, #881df273 0%, #6c16c76c 100%);
  border-radius: 12px;
  margin-bottom: 10px;
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-label {
  font-family: "Akrobat", sans-serif;
  color: #cbc1c1;
  font-size: 16px;
}

.spec-value {
  font-weight: 500;
  color: #cbc1c1;
}

.spec-highlight {
  color: #881df2;
}

.spec-visual,
.spec-visual-services {
  border-radius: 8px;
  height: 400px;
  width: 660px;
  padding: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  overflow: hidden;
  border: 1px solid #881df2;
  background: linear-gradient(135deg, #881df273 0%, #6c16c76c 100%);
}

.spec-visual-services {
  padding: 0;
}

/* Breadcrumbs */

.breadcrumbs {
  max-width: 1400px;
  margin: 100px auto 0;
  padding: 0 20px;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  color: #881df2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-family: "Muller", sans-serif;
}

.breadcrumb-link:hover {
  color: #5a0dbf;
}

.breadcrumb-separator {
  margin: 0 5px;
  color: #999;
}

.breadcrumb-item.active span {
  color: #9180805e;
  font-weight: 600;
  font-family: "Akrobat", sans-serif;
}

.seo-text {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  color: #333;
}

/* Clients Section */
.clients {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.clients-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.clients-title {
  font-family: "Muller", sans-serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

.clients-subtitle {
  font-family: "Akrobat", sans-serif;
  font-size: 16px;
  color: #ccc;
  font-weight: 300;
  line-height: 1.5;
}

/* Marquee Container */
.marquee {
  /* position: relative; */
  width: 100%;
  overflow: hidden;
  /* background: linear-gradient(
    135deg,
    rgba(136, 29, 242, 0.1) 0%,
    rgba(136, 29, 242, 0.05) 100%
  ); */
  padding: 30px 0;
}

/* Gradient Overlays
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
} */

/* .marquee::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
} */

/* Marquee Track */
.marquee-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Logo Items */
.client-logo {
  flex-shrink: 0;
  width: 160px;
  height: 70px;
  margin: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(136, 29, 242, 0.1) 0%,
    rgba(136, 29, 242, 0.05) 100%
  );
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(136, 29, 242, 0.2);
}

.client-logo:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #881df273 0%, #6c16c76c 100%);
  border-color: rgba(136, 29, 242, 0.5);
  box-shadow: 0 8px 32px rgba(136, 29, 242, 0.3);
}

.client-logo img,
.client-logo svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-logo:hover img,
.client-logo:hover svg {
  opacity: 1;
}

/* Placeholder styling */
.client-logo-placeholder {
  width: 110px;
  height: 45px;
  background: white;
  box-shadow: 0 8px 32px rgba(136, 29, 242, 0.3);
  transition: all 0.3s ease;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Akrobat", sans-serif;
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  padding: 5px;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1600px) {
  .spec-grid[data-animation="left"],
  .spec-grid[data-animation="right"] {
    transform: translateY(50px);
  }

  .spec-grid[data-animation="left"].animate,
  .spec-grid[data-animation="right"].animate {
    opacity: 1;
    transform: translateY(0);
  }

  .spec-visual {
    width: 560px;
    padding: 8 %;
  }

  .spec-visual-services {
    width: 560px;
  }
}

@media (max-width: 1300px) {
  .spec-visual {
    width: 465px;
    padding: 15%;
  }

  .spec-visual-services {
    width: 465px;
  }
}

/* Планшеты (до 1024px) */
@media (max-width: 1024px) {
  /* Фон */
  body {
    background-image: url(./media/bg-body-mini.jpg);
    overflow-x: hidden;
  }

  /* Навигация */
  .nav {
    padding: 10px 20px;
    position: relative;
  }

  .burger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(136, 29, 242, 0.2);
    padding-bottom: 16px;
  }

  .nav-menu a {
    font-size: 18px;
    display: block;
  }

  .nav-contact {
    gap: 12px;
  }

  /* Hero секция */
  .hero {
    height: auto;
    /* min-height: 100vh; */
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-logo-service {
    width: 230px;
  }

  /* Секции */
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  /* Процесс производства */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Портфолио */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-image {
    height: 240px;
  }

  .spec-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #881df2;
  }

  /* Убираем линию у последней карточки */
  .spec-grid:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .spec-grid[data-animation="left"],
  .spec-grid[data-animation="right"] {
    transform: translateY(50px);
  }

  .spec-grid[data-animation="left"].animate,
  .spec-grid[data-animation="right"].animate {
    transform: translateY(0);
  }

  .spec-content h3 {
    font-size: 28px;
  }

  .spec-visual,
  .spec-visual-services {
    height: 300px;
    width: auto;
    padding: 0;
  }

  /* Оборудование */
  .equipment-slide {
    height: 400px;
  }

  /* О нас */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-mission {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Контакты */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 36px;
  }

  .contact-form {
    padding: 30px 20px;
  }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
  /* Навигация */
  .logo-img {
    width: 50px;
  }

  .burger-menu {
    width: 28px;
    height: 22px;
  }

  .nav-menu {
    width: 280px;
    padding: 80px 30px 30px;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .nav-contact {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .phone {
    font-size: 12px;
  }

  .cta-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  /* Hero */
  .hero {
    padding: 0 20px 40px;
    margin: 0;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .cta-btn {
    width: 100%;
    text-align: center;
  }

  .hero-logo-service {
    width: 200px;
  }

  /* Секции */
  .section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* Процесс */
  .process-card {
    border-width: 4px;
  }

  .process-video {
    height: 200px;
  }

  .process-content {
    padding: 24px;
  }

  .process-title {
    font-size: 20px;
  }

  .process-description {
    font-size: 14px;
  }

  /* Портфолио */
  .portfolio-image {
    height: 200px;
  }

  .portfolio-info h4 {
    font-size: 16px;
  }

  .portfolio-info p {
    font-size: 12px;
  }

  /* Спецификации */
  .spec-content h3 {
    font-size: 24px;
  }

  .spec-content p {
    font-size: 18px;
  }

  .spec-list li {
    flex-direction: row;
    gap: 8px;
  }

  .spec-label {
    font-size: 14px;
  }

  .spec-visual {
    height: 250px;
    padding: 7%;
  }

  .spec-visual-services {
    height: 250px;
  }

  /* Оборудование */
  .equipment {
    padding: 80px 20px;
  }

  .equipment-slide {
    height: 300px;
  }

  .equipment-slide div {
    bottom: 15px;
    left: 15px;
    padding: 10px 15px;
  }

  .equipment-slide h3 {
    font-size: 16px;
  }

  .equipment-slide p {
    font-size: 12px;
  }

  /* О нас */
  .about-intro p {
    font-size: 16px;
  }

  .about-subtitle {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-icon {
    font-size: 36px;
  }

  .feature-card h4 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .mission-card {
    padding: 30px 20px;
  }

  .mission-card h3 {
    font-size: 24px;
  }

  .mission-card p {
    font-size: 16px;
  }

  /* Контакты */
  .contact {
    padding: 80px 20px;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .contact-item {
    font-size: 14px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  /* Модальные окна */
  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -40px;
    font-size: 28px;
  }

  .portfolio-modal-content {
    max-width: 95%;
    padding: 15px;
  }
}

/* Очень маленькие экраны (до 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .process-video {
    height: 180px;
  }

  .portfolio-image {
    height: 180px;
  }

  .spec-visual,
  .spec-visual-services {
    height: 200px;
  }

  .equipment-slide {
    height: 250px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }
}
