/* Комплектация - Dark Section with White Tiles */
.dy-kit-section {
  background: #1a1a1a;
  padding: 80px 0;
}

.dy-kit-header {
  text-align: center;
  margin-bottom: 60px;
}

.dy-kit-header h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.dy-kit-header p {
  color: #cccccc;
  font-size: 1.1rem;
  font-weight: 300;
}

.dy-kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.dy-kit-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dy-kit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.dy-kit-image {
  text-align: center;
  margin-bottom: 20px;
}

.dy-kit-image img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  border-radius: 8px;
}

.dy-kit-content h3 {
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.dy-kit-short {
  color: #666666;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.4;
}

.dy-kit-description {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.dy-kit-specs {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 6px;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 4px solid #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .dy-kit-section {
    padding: 60px 0;
  }
  
  .dy-kit-header h2 {
    font-size: 2rem;
  }
  
  .dy-kit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .dy-kit-item {
    padding: 25px;
  }
  
  .dy-kit-image img {
    max-width: 100px;
    max-height: 100px;
  }
}

/* Особенности - Light Section with Vertical News Cards */
.dy-features-section {
  
  background: #f8f9fa;
  padding: 80px 0;
  border-top: 1px solid #e9ecef;
}

.dy-features-header {
  text-align: center;
  margin-bottom: 60px;
}

.dy-features-header h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.dy-features-header p {
  color: #666666;
  font-size: 1.1rem;
  font-weight: 300;
}

.dy-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.dy-feature-item {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dy-feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: #007bff;
}

.dy-feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.dy-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dy-feature-item:hover .dy-feature-image img {
  transform: scale(1.05);
}

.dy-feature-content {
  padding: 25px;
}

.dy-feature-content h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.dy-feature-short {
  color: #cccccc;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.4;
  font-style: italic;
}

.dy-feature-description {
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive для особенностей */
@media (max-width: 768px) {
  .dy-features-section {
    padding: 60px 0;
  }
  
  .dy-features-header h2 {
    font-size: 2rem;
  }
  
  .dy-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .dy-feature-image {
    height: 180px;
  }
  
  .dy-feature-content {
    padding: 20px;
  }
}

/* ===== ВОПРОСЫ И ОТВЕТЫ (АККОРДЕОН) ===== */
.dy-qa-section {
  padding: 80px 0;
  background: #fff;
}

.dy-qa-header {
  text-align: center;
  margin-bottom: 50px;
}

.dy-qa-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.dy-qa-header p {
  font-size: 1.1rem;
  color: #666666;
  margin: 0;
}

.dy-qa-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.dy-qa-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dy-qa-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: all 0.3s ease;
  border: none;
}

.dy-qa-question:hover {
  background: #f8f9fa;
}

.dy-qa-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  flex: 1;
  margin-right: 20px;
}

.dy-qa-icon {
  font-size: 1.8rem;
  color: #333333;
  transition: all 0.3s ease;
  width: 30px;
  text-align: center;
  font-weight: 300;
}

.dy-qa-question[aria-expanded="true"] .dy-qa-icon {
  transform: rotate(45deg);
  color: #28a745;
}

.dy-qa-answer {
  background: #f8f9fa;
}

.dy-qa-answer-content {
  padding: 25px 30px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  border-top: 1px solid #e9ecef;
}

/* Responsive для вопросов и ответов */
@media (max-width: 768px) {
  .dy-qa-section {
    padding: 60px 0;
  }
  
  .dy-qa-header h2 {
    font-size: 2rem;
  }
  
  .dy-qa-question {
    padding: 20px;
  }
  
  .dy-qa-question-text {
    font-size: 1rem;
  }
  
  .dy-qa-answer-content {
    padding: 20px;
  }
}

/* ===== ТЕХНОЛОГИИ (СЛАЙДЕР) ===== */
.dy-tech-section {
  padding: 80px 0;
  background: #ffffff;
}

.dy-tech-header {
  text-align: center;
  margin-bottom: 50px;
}

.dy-tech-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.dy-tech-header p {
  font-size: 1.1rem;
  color: #666666;
  margin: 0;
}

.dy-tech-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.dy-tech-slider-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dy-tech-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.dy-tech-slide {
  min-width: 100%;
  position: relative;
}

.dy-tech-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.dy-tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dy-tech-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.dy-tech-placeholder i {
  font-size: 4rem;
}

.dy-tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding: 30px;
}

.dy-tech-slide:hover .dy-tech-overlay {
  opacity: 1;
}

.dy-tech-slide:hover .dy-tech-image img {
  transform: scale(1.05);
}

.dy-tech-content {
  color: #ffffff;
  width: 100%;
}

.dy-tech-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.dy-tech-short {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.9;
}

.dy-tech-description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.8;
}

.dy-tech-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.dy-tech-prev,
.dy-tech-next {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dy-tech-prev:hover,
.dy-tech-next:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.dy-tech-prev {
  margin-left: 20px;
}

.dy-tech-next {
  margin-right: 20px;
}

.dy-tech-prev i,
.dy-tech-next i {
  font-size: 1.2rem;
  color: #333333;
}

.dy-tech-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dy-tech-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dy-tech-dot.active {
  background: #28a745;
  transform: scale(1.2);
}

.dy-tech-dot:hover {
  background: #28a745;
}

/* Responsive для технологий */
@media (max-width: 768px) {
  .dy-tech-section {
    padding: 60px 0;
  }
  
  .dy-tech-header h2 {
    font-size: 2rem;
  }
  
  .dy-tech-image {
    height: 300px;
  }
  
  .dy-tech-overlay {
    padding: 20px;
  }
  
  .dy-tech-content h3 {
    font-size: 1.3rem;
  }
  
  .dy-tech-prev,
  .dy-tech-next {
    width: 40px;
    height: 40px;
  }
  
  .dy-tech-prev {
    margin-left: 10px;
  }
  
  .dy-tech-next {
    margin-right: 10px;
  }
}
