/* ================================================================
   SUANOVA New Design - Industrial Page Styles
   ================================================================ */

/* Hero Section */
.industrial-hero {
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.industrial-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/index/zh-new/industrial/hero-bg-industrial.jpg') center/cover no-repeat;
  z-index: 0;
}

.industrial-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,26,61,0.35) 0%, rgba(0,40,85,0.35) 50%, rgba(0,51,102,0.4) 100%);
  z-index: 1;
}

.industrial-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 40px;
}

.industrial-hero-content h1 {
  font-size: 84px;
  font-weight: 900;
  line-height: 92px;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1.68px;
}

.industrial-hero-content p {
  font-size: 24px;
  color: var(--white);
  line-height: 32px;
  font-weight: 400;
  opacity: 0.95;
  text-align: center;
}

/* Solutions Section */
.industrial-solutions {
  padding: 64px 103px;
}

.industrial-section-title {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 64px;
  border-bottom: 6px solid var(--teal);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.industrial-solutions .industrial-section-wrap {
  display: flex;
  justify-content: center;
}

.industrial-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--teal);
  line-height: 44px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1714px;
  margin: 0 auto;
}

.solution-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution-card .card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.solution-card .card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solution-card .card-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,40,85,0.7) 0%, rgba(0,40,85,0.2) 50%, rgba(0,40,85,0.6) 100%);
}

.solution-card.card-gradient-top .card-gradient {
  background: linear-gradient(to top, rgba(0,40,85,0) 0%, #002855 102.4%);
}

.solution-card.card-gradient-mid .card-gradient {
  background: linear-gradient(to bottom, rgba(0,40,85,0) 38%, #002855 100%);
}

.solution-card .card-content {
  position: relative;
  z-index: 3;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-card .card-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.solution-card .card-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 24px;
}

.solution-card .card-heading h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 36px;
  padding-top: 4px;
}

.solution-card .card-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 24px;
}

/* Bullet points */
.solution-card .card-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.solution-card .bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.solution-card .bullet-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.solution-card .bullet-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.solution-card .bullet-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 20px;
}

.solution-card .bullet-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 24px;
}

/* Other Solutions Section */
.industrial-other {
  background: var(--navy);
  padding: 64px 99px;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1722px;
  margin: 0 auto;
}

.other-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 397px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.other-card:hover {
  transform: translateY(-2px);
}

.other-card .card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.other-card .card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.other-card .card-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(6,21,45,0) 0%, rgba(6,21,45,0.6) 100%);
}

.other-card .card-content {
  position: relative;
  z-index: 3;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.other-card .card-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 16px;
  background: rgba(255,255,255,0.2);
  border: 1px solid var(--white);
  border-radius: 82px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 22px;
}

.other-card .card-heading h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 44px;
  padding-top: 8px;
}

.other-card .card-arrow {
  width: 42px;
  height: 42px;
  cursor: pointer;
  transition: transform 0.2s;
}

.other-card .card-arrow:hover {
  transform: scale(1.1);
}

.other-card .card-arrow svg {
  width: 42px;
  height: 42px;
}

/* Responsive - 1440px */
@media (max-width: 1440px) {
  .industrial-solutions {
    padding: 64px 80px;
  }

  .industrial-other {
    padding: 64px 80px;
  }

  .solution-card .card-content {
    padding: 36px 40px;
  }

  .other-card .card-content {
    padding: 40px;
  }

  .solution-card .card-heading h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .other-card .card-heading h3 {
    font-size: 28px;
    line-height: 36px;
  }
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
  .industrial-hero {
    height: 400px;
  }

  .industrial-hero-content h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .industrial-hero-content p {
    font-size: 18px;
    line-height: 28px;
  }

  .industrial-solutions {
    padding: 48px 20px;
  }

  .industrial-other {
    padding: 48px 20px;
  }

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

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

  .solution-card {
    min-height: 260px;
  }

  .other-card {
    height: 300px;
  }

  .solution-card .card-content {
    padding: 24px;
  }

  .other-card .card-content {
    padding: 24px;
  }

  .solution-card .card-heading h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .solution-card .card-text {
    font-size: 14px;
    line-height: 22px;
  }

  .other-card .card-heading h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .industrial-hero-content {
    padding: 0 20px;
  }
}
