.technology-section {
  padding: 8rem 4rem;
  background: #ffffff;
}

.technology-container {
  max-width: 1400px;
  margin: 0 auto;
}

.technology-header {
  text-align: center;
  margin-bottom: 6rem;
}

.technology-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.technology-subtitle {
  font-size: 2rem;
  color: #666666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.technology-tabs {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.tab-navigation {
  display: flex;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.tech-tab {
  flex: 1;
  padding: 2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tech-tab:hover {
  background: #ffffff;
  color: #000000;
}

.tech-tab.active {
  background: #ffffff;
  color: #000000;
  border-bottom-color: #000000;
}

.tab-content {
  padding: 4rem;
}

.tech-content {
  display: none;
}

.tech-content.active {
  display: block;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tech-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  display: block;
  min-height: 400px;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

.tech-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 15px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.tech-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tech-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
  text-align: center;
}

.tech-description {
  font-size: 1.4rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tech-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-specs li {
  font-size: 1.3rem;
  color: #333333;
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
}

.tech-specs li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.software-category {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 4px solid #000000;
}

.software-category h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2rem;
}

.software-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.software-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.software-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.software-item i {
  font-size: 2rem;
  color: #000000;
  width: 30px;
  text-align: center;
}

.software-item span {
  font-size: 1.6rem;
  color: #333333;
  font-weight: 500;
}

.integration-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.integration-step {
  flex: 1;
  text-align: center;
  background: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 15px;
  border-left: 4px solid #000000;
  min-width: 250px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.step-icon i {
  font-size: 3rem;
  color: #ffffff;
}

.integration-step h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.integration-step p {
  font-size: 1.6rem;
  color: #666666;
  line-height: 1.5;
}

.flow-arrow {
  font-size: 2.4rem;
  color: #000000;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .technology-section {
    padding: 6rem 2rem;
  }
  
  .technology-title {
    font-size: 3.2rem;
  }
  
  .technology-subtitle {
    font-size: 1.8rem;
  }
  
  .tab-navigation {
    flex-direction: column;
  }
  
  .tech-tab {
    border-bottom: none;
    border-right: 3px solid transparent;
  }
  
  .tech-tab.active {
    border-bottom: none;
    border-right-color: #000000;
  }
  
  .tab-content {
    padding: 2rem;
  }
  
  .integration-flow {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .technology-section {
    padding: 4rem 1.5rem;
  }
  
  .technology-title {
    font-size: 2.8rem;
  }
  
  .technology-subtitle {
    font-size: 1.6rem;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tech-item {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .tech-name {
    font-size: 1.6rem;
  }
  
  .tech-description {
    font-size: 1.4rem;
  }
  
  .tech-specs li {
    font-size: 1.3rem;
  }
  
  .software-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .software-category {
    padding: 2rem;
  }
  
  .software-category h3 {
    font-size: 1.8rem;
  }
  
  .software-item span {
    font-size: 1.6rem;
  }
  
  .integration-step {
    padding: 2rem 1.5rem;
  }
  
  .integration-step h3 {
    font-size: 1.8rem;
  }
  
  .integration-step p {
    font-size: 1.6rem;
  }
} 