.hero-header {
  position: relative;
  min-height: 100vh;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-header .container {
  position: relative;
  z-index: 2;
}
.hero-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    rgba(15, 20, 27, 0.85) 0%,
    rgba(28, 28, 29, 0.65) 100%
  );
  z-index: 1;
}
.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 0 80px;
  z-index: 3;
}
.hero-main h1 {
  font-size: 70px;
  font-weight: 750;
  line-height: 1.1;
  color: white;
  max-width: 900px;
}
.hero-gradient-text {
  background: linear-gradient(
    135deg,
    #ffffff 30%,
    #ffede3 50%,
    #ffb347 70%,
    #ffffff 90%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: slowGradientMove 6s ease-in-out infinite;
}
@keyframes slowGradientMove {
  0%,
  100% {
    background-position: 0% 50%;
    filter: brightness(1);
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.08);
  }
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 28px 0 32px;
}
.hero-buttons {
  margin-top: 40px;
}

.services-section {
  padding: 80px 0;
  background: linear-gradient(125deg, #fef9f5 0%, #ffffff 40%, #fff5ed 100%);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

a.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  padding: 32px 28px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s,
    box-shadow 0.4s,
    background 0.4s;
  border: 1px solid rgba(247, 89, 16, 0.15);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  background: #ffffff;
}
.service-icon {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.service-card h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.tabbed-products-section {
  padding: 80px 0;
  background: #ffffff;
}

.products-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.products-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.tabbed-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.tab-radio {
  display: none;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.tab-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.tab-btn:hover {
  background: #f1f5f9;
  color: var(--primary);
}

.tab-panels {
  position: relative;
  min-height: 280px;
}

.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.tab-excerpt {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.tab-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 89, 16, 0.3);
}

.feature-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
}

.tabbed-image-wrapper {
  width: 100%;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #0a0f16;
}

.tabbed-slider-track {
  display: flex;
  width: 400%;
  height: 100%;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-img {
  width: 25%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

#tab-1:checked ~ .tabbed-container .label-tab-1,
#tab-2:checked ~ .tabbed-container .label-tab-2,
#tab-3:checked ~ .tabbed-container .label-tab-3,
#tab-4:checked ~ .tabbed-container .label-tab-4 {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(247, 89, 16, 0.25);
}

#tab-1:checked ~ .tabbed-container .panel-1,
#tab-2:checked ~ .tabbed-container .panel-2,
#tab-3:checked ~ .tabbed-container .panel-3,
#tab-4:checked ~ .tabbed-container .panel-4 {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

#tab-1:checked ~ .tabbed-container .tabbed-slider-track {
  transform: translate3d(0%, 0, 0);
}

#tab-2:checked ~ .tabbed-container .tabbed-slider-track {
  transform: translate3d(-25%, 0, 0);
}

#tab-3:checked ~ .tabbed-container .tabbed-slider-track {
  transform: translate3d(-50%, 0, 0);
}

#tab-4:checked ~ .tabbed-container .tabbed-slider-track {
  transform: translate3d(-75%, 0, 0);
}


.industries-section {
  position: relative;
  background: var(--bg-light);
  padding: 80px 0;
  overflow: hidden;
}
.industries-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.industries-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}
.industries-coverflow-viewport {
  width: 100%;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  perspective: 1400px;
}
.industries-slider-stage {
  position: relative;
  height: 440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}
.industries-slider-stage .industry-card {
  position: absolute;
  width: 700px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #0a0f16;
  cursor: pointer;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.industries-slider-stage .industry-card.active-center {
  box-shadow:
    0 30px 60px rgba(10, 15, 22, 0.3),
    0 0 0 2px rgba(247, 89, 16, 0.3);
}
.industries-slider-stage .industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.industries-slider-stage .industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 60%
  );
  z-index: 1;
}
.industries-slider-stage .industry-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: #ffffff;
  background: rgba(10, 15, 22, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 20px;
  width: calc(100% - 40px);
  border-radius: 16px;
  padding: 24px;
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.industries-slider-stage .industry-card.active-center .industry-info {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.industries-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}
.nav-arrow-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    color 0.2s,
    transform 0.2s;
  padding: 10px;
}
.nav-arrow-btn:hover {
  color: var(--primary);
  transform: scale(1.15);
}
.indicator-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.dot.active {
  background: var(--primary) !important;
  width: 28px;
  border-radius: 6px;
}

.partners {
  padding: 40px 0;
}
.marquee {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 30px;
  align-items: center;
  width: max-content;
  animation: smoothMarqueeRun 100s linear infinite;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 60px;
  width: 150px;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 10px 20px;
}
.partner-logo {
  max-height: 35px;
  max-width: 100%;
  object-fit: contain;
}
@keyframes smoothMarqueeRun {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1160px) {
  .industries-slider-stage .industry-card {
    width: 580px;
    height: 340px;
  }
  .industries-slider-stage {
    height: 390px;
  }
}

@media (max-width: 992px) {
  .tabbed-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tabbed-image-wrapper {
    height: 360px;
  }
  .industries-slider-stage .industry-card {
    width: 460px;
    height: 280px;
  }
  .industries-slider-stage {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hero-main h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .industries-slider-stage .industry-card {
    width: 85vw;
    height: 240px;
  }
  .industries-slider-stage {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .tab-features {
    grid-template-columns: 1fr;
  }
  .tabbed-image-wrapper {
    height: 260px;
  }
}