/* ═══════════════════════════════════════════════
   Solution Page — Industry Sub-page
   ═══════════════════════════════════════════════ */

.solution-page {
  padding-top: 72px;
  background: #F8FAFC;
  min-height: 100vh;
  position: relative;
}

/* Mesh gradient orbs */
.solution-page::before,
.solution-page::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.solution-page::before {
  width: 600px;
  height: 600px;
  top: 20%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
}
.solution-page::after {
  width: 500px;
  height: 500px;
  bottom: 10%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.04) 0%, transparent 70%);
}

/* ═══ Hero Section ═══ */
.sol-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 60px 0 48px;
}

.sol-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroBgZoom 3s ease-out forwards;
}

.sol-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 43, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 1;
}

@keyframes heroBgZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.sol-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

.sol-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.sol-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.sol-hero__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.sol-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.sol-hero__breadcrumb--active {
  color: #00E5FF;
  font-weight: 600;
}

.sol-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  max-width: 700px;
}

/* ═══ Body / Card ═══ */
.sol-body {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: -40px auto 0;
  padding: 0 40px 80px;
}

.sol-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.4s ease;
}

.sol-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.1), 0 12px 16px -6px rgba(0, 0, 0, 0.04);
}

.sol-card--visible:hover {
  transform: translateY(-6px);
}

/* Header Image */
.sol-card__header {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
}

.sol-card__header-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  position: relative;
}

.sol-card__header-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.sol-card:hover .sol-card__header-img {
  transform: scale(1.02);
}

/* Unique visual themes per industry */
.sol-card__header-img--smart-manufacturing {
  background: linear-gradient(135deg, #0F172A, #1E3A5F, #0F172A);
}
.sol-card__header-img--industrial-robotics {
  background: linear-gradient(135deg, #1A1A2E, #16213E, #0F3460);
}
.sol-card__header-img--data-center {
  background: linear-gradient(135deg, #0A192F, #112240, #0A192F);
}
.sol-card__header-img--energy-oil-gas {
  background: linear-gradient(135deg, #1B1B2F, #2D132C, #1B1B2F);
}
.sol-card__header-img--industrial-iot {
  background: linear-gradient(135deg, #0D1117, #161B22, #0D1117);
}
.sol-card__header-img--maritime-satellite {
  background: linear-gradient(135deg, #0C1929, #1A3A5C, #0C1929);
}
.sol-card__header-img--healthcare {
  background: linear-gradient(135deg, #1A1A2E, #0F3460, #162447);
}

.sol-card__header-title {
  position: absolute;
  bottom: 24px;
  left: 32px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Body Split */
.sol-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 32px;
}

.sol-card__pain,
.sol-card__scene {
  padding: 0 24px;
}

.sol-card__pain {
  border-right: 1px solid #F1F5F9;
}

.sol-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.sol-card__badge--pain {
  background: #FEE2E2;
  color: #991B1B;
}

.sol-card__badge--scene {
  background: #CCFBF1;
  color: #0F766E;
}

.sol-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
}

/* Divider */
.sol-card__divider {
  margin: 0 32px;
  border-top: 1px dashed #E2E8F0;
}

/* Features */
.sol-card__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 32px 36px;
}

.sol-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sol-card__feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #ECFEFF;
  color: #0891B2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sol-card__feature:hover .sol-card__feature-icon {
  transform: scale(1.1);
}

.sol-card__feature-icon svg {
  width: 18px;
  height: 18px;
}

.sol-card__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sol-card__feature-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
}

.sol-card__feature-text span {
  font-size: 13px;
  line-height: 1.5;
  color: #64748B;
}

/* ═══ CTA Section ═══ */
.sol-cta {
  position: relative;
  z-index: 1;
  min-height: 30vh;
  background: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-cta__container {
  text-align: center;
  padding: 60px 40px;
}

.sol-cta__text {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.6;
}

.sol-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 12px;
  background: #0A66C2;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sol-cta__btn:hover {
  background: #0B76E0;
  transform: scale(1.05);
}

.sol-cta__btn svg {
  flex-shrink: 0;
}

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
  .sol-hero {
    min-height: 240px;
    padding: 40px 0 32px;
  }

  .sol-hero__content {
    padding: 0 20px;
  }

  .sol-body {
    padding: 0 16px 60px;
    margin-top: -24px;
  }

  .sol-card__body {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .sol-card__pain {
    border-right: none;
    border-bottom: 1px solid #F1F5F9;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
  }

  .sol-card__scene {
    padding: 0;
  }

  .sol-card__divider {
    margin: 0 24px;
  }

  .sol-card__features {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }

  .sol-card__header-title {
    left: 20px;
    bottom: 16px;
    font-size: 18px;
  }
}
