 /* ================= PRODUCTS HERO ================= */
.products-hero {
  position: relative;
  min-height: 920px;
  display: flex;
  align-items: center;
  background-image: url("../images/products-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay */
.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(15,43,70,0.65),
      rgba(15,43,70,0.55)
    );
  z-index: 1;
}

/* Content */
.products-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #ffffff;
}


/* Pill */
.products-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.products-pill i {
  font-size: 15px;
}

/* Heading */
.products-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Paragraph */
.products-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d7e1eb;
  max-width: 640px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .products-hero {
    min-height: 480px;
  }

  .products-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .products-hero {
    min-height: 440px;
  }

  .products-hero h1 {
    font-size: 2rem;
  }

  .products-hero p {
    font-size: 0.95rem;
  }
}

/* ================= PRODUCT SEGMENTS ================= */
.product-segments {
  padding: 100px 0;
  background: #faf9f6;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2b46;
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto 70px;
  font-size: 16px;
  color: #6b7c8f;
}

/* Grid */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Card */
.segment-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 18px 40px rgba(15, 43, 70, 0.08);
  text-align: center;
}

/* Icon */
.segment-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #eaf5ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segment-icon i {
  font-size: 24px;
  color: #2f8f5b;
}

/* Title */
.segment-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f2b46;
  margin-bottom: 16px;
}

/* Progress bar */
.progress {
  height: 8px;
  background: #f1ede5;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress span {
  display: block;
  height: 100%;
  background: #2f8f5b;
  border-radius: 20px;
}

/* Percentage */
.segment-value {
  font-size: 22px;
  font-weight: 800;
  color: #0f2b46;
}

.segment-label {
  font-size: 13px;
  color: #6b7c8f;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .segments-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= AGE & CATEGORY GUIDE ================= */
.age-guide-section {
  padding: 100px 0;
  background: #faf9f6;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2b46;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: #6b7c8f;
}

/* Grid */
.age-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.age-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 18px 40px rgba(15, 43, 70, 0.08);
  border-top: 5px solid transparent;
}

/* Title */
.age-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f2b46;
  margin-bottom: 10px;
}

/* Age Range */
.age-range {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2f8f5b;
  margin-bottom: 12px;
}

.age-range i {
  font-size: 15px;
}

/* Description */
.age-card p {
  font-size: 15px;
  color: #6b7c8f;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .age-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .age-guide-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PRODUCT FEATURES STRIP ================= */
.product-features-strip {
  background: #16365d;
  padding: 48px 0;
  color: #ffffff;
}

.product-features-strip .feature-item h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-features-strip .feature-item p {
  font-size: 14px;
  color: #c7d6e6;
  margin: 0;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .product-features-strip .feature-item {
    margin-bottom: 24px;
  }
}

/* ================= REQUEST SAMPLES CTA ================= */
.request-samples-section {
  background: #faf9f6;
  padding: 100px 0 120px;
}

.request-samples-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2b46;
  margin-bottom: 16px;
}

.request-samples-section p {
  font-size: 17px;
  color: #6b7c8f;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* Buttons */
.request-btn {
  padding: 14px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  background: #173357;
  border: none;
}

.request-btn:hover {
  background: #2566a6;
}

.product-btn {
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  margin-top: 15px;
  color: #ffffff;
}

.btn-green{
  background:#2e8b57;
}

.btn-amber{
  background:#d89b2d;
}

.btn-blue{
  background:#173357;
}

.btn-green:hover {
background:#2e8b57;
opacity:.8;
color: #fff;
}

.btn-amber:hover {
background:#d89b2d;
opacity:.8;
color: #fff;
}

.btn-blue:hover {
background:#173357;
opacity:.8;
color: #fff;
}

.age-card.green {
  border-color: #2e8b57;
}

.age-card.amber {
  border-color: #d89b2d;
}

.age-card.blue {
  border-color: #173357;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 576px) {
  .request-samples-section h2 {
    font-size: 2.1rem;
  }
}