/* --- PAGE HERO --- */
.page-hero {
  position: relative;
  padding: 180px 5% 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #052266 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(7, 48, 136, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.page-hero::after {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

.page-hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 15px;
  display: block;
}

.page-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
}

.page-hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* --- PRODUCT BLOCKS --- */
.prod-block {
  padding: 100px 5%;
  background: var(--bg-light);
  scroll-margin-top: 130px;
}

.prod-block-alt {
  background: var(--bg-gray);
}

.prod-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.prod-block-alt .prod-block-grid {
  direction: rtl;
}

.prod-block-alt .prod-block-grid > * {
  direction: ltr;
}

.prod-block-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.prod-block-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(7, 48, 136, 0.08);
  pointer-events: none;
}

.prod-block-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  min-height: 440px;
}

.prod-block-content {
  padding: 0;
}

.prod-block-number {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(7, 48, 136, 0.08);
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}

.prod-block-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
}

.prod-block-intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.prod-block-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.prod-block-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
}

.prod-block-features li i {
  color: var(--primary-color);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .page-hero-title {
    font-size: 2.5rem;
  }

  .prod-block-grid {
    gap: 40px;
  }

  .prod-block-image img {
    min-height: 350px;
  }

  .prod-block-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 150px 5% 60px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-desc {
    font-size: 1rem;
  }

  .prod-block {
    padding: 70px 5%;
    scroll-margin-top: 120px;
  }

  .prod-block-alt {
    padding: 70px 5%;
  }

  .prod-block-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .prod-block-alt .prod-block-grid {
    direction: ltr;
  }

  .prod-block-image img {
    min-height: 260px;
  }

  .prod-block-number {
    font-size: 3rem;
  }

  .prod-block-content h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.7rem;
  }

  .prod-block-content h2 {
    font-size: 1.4rem;
  }

  .prod-block-number {
    font-size: 2.5rem;
  }

  .prod-block-image img {
    min-height: 220px;
  }
}
