.products-hero {
  padding: 90px 0 60px;
  background: radial-gradient(circle at top, rgba(13, 90, 111, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(4, 36, 45, 0.95), rgba(4, 36, 45, 0.98));
  color: #f2faf8;
  position: relative;
  overflow: hidden;
}

.products-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(117, 183, 152, 0.28), transparent 70%);
  opacity: 0.8;
}

.products-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.products-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(117, 183, 152, 0.2);
  color: #e2f3ea;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.products-hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.products-hero-copy p {
  color: rgba(242, 250, 248, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.products-hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.btn-primary-solid {
  background: #75b798;
  color: #0b2a22;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 70, 52, 0.25);
  color: #0b2a22;
}

.btn-secondary-outline {
  border: 1px solid #75b798;
  color: #75b798;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-secondary-outline:hover {
  border-color: #75b798;
  color: #75b798;
}

.products-hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.products-hero-highlights .highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8efe4;
  font-weight: 500;
}

.products-hero-highlights i {
  color: #75b798;
  font-size: 1.1rem;
}

.product-hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(117, 183, 152, 0.25);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 40px rgba(4, 36, 45, 0.4);
}

.product-hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-logo {
  height: 34px;
}

.product-tag {
  padding: 4px 10px;
  background: rgba(117, 183, 152, 0.2);
  color: #e2f3ea;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-hero-card h3 {
  margin-bottom: 12px;
}

.product-hero-card p {
  color: rgba(242, 250, 248, 0.75);
  line-height: 1.7;
}

.product-hero-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}

.product-hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2f3ea;
}

.product-hero-list i {
  color: #75b798;
}

.product-link {
  color: #75b798;
  font-weight: 600;
  text-decoration: none;
}

.product-link i {
  margin-left: 6px;
}

.products-grid-section {
  padding: 70px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.products-grid-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/triangle-bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  /* background-size: clamp(240px, 30vw, 420px); */
  opacity: 0.28;
  pointer-events: none;
}

.products-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 90, 111, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 90, 111, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
  pointer-events: none;
}

.products-grid-section .container {
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(4, 36, 45, 0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(4, 36, 45, 0.08);
}

.product-card-muted {
  background: linear-gradient(135deg, rgba(4, 36, 45, 0.05), rgba(117, 183, 152, 0.08));
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-card-header .product-tag {
  color: #0d5a6f;
}

.product-card-header i {
  font-size: 1.6rem;
  color: #0d5a6f;
}

.product-card-actions {
  margin-top: 18px;
}

.products-features-section {
  padding: 70px 0 80px;
  background: #f4f9f8;
  position: relative;
  overflow: hidden;
}

.products-features-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/right-triangle-bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  /* background-size: clamp(240px, 30vw, 420px); */
  opacity: 0.25;
  pointer-events: none;
}

.products-features-section .container {
  position: relative;
  z-index: 1;
}

.products-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  border: 1px solid rgba(4, 36, 45, 0.08);
  border-radius: 16px;
  padding: 22px;
  background: #f8fbfa;
}

.feature-card i {
  color: #0d5a6f;
  font-size: 1.4rem;
}

.feature-card h4 {
  margin-top: 12px;
  font-size: 1.1rem;
}

.feature-card p {
  color: #5e6a73;
}

@media (max-width: 992px) {
  .products-hero-grid {
    grid-template-columns: 1fr;
  }

  .products-hero-highlights {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding: 70px 0 50px;
  }

  .products-features-grid {
    grid-template-columns: 1fr;
  }
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  margin-top: 0.8rem;
}