/* Why The Fertilife — page styles */

:root {
  --wfl-pink: #e05699;
  --wfl-pink-light: #fdf2f6;
  --wfl-pink-band: #fcf2f5;
  --wfl-pink-cta: #fff4f7;
  --wfl-navy: #0b1a40;
  --wfl-dark: #1b1b36;
  --wfl-text: #666666;
  --wfl-text-muted: #555555;
  --wfl-shadow: 0 10px 30px rgba(11, 26, 64, 0.06);
  --wfl-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* --- Hero Banner Override moved to sections.css --- */

.wfl-heart-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  margin-bottom: 22px;
}

.wfl-heart-divider .line {
  height: 2px;
  width: 50px;
  background-color: var(--wfl-pink);
}

.wfl-heart-divider svg {
  color: var(--wfl-pink);
  width: 18px;
  height: 18px;
}

.wfl-heart-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Section shared ───────────────────────────────────────────────────── */

.wfl-section {
  padding: 70px 0;
}

main>.wfl-section:first-of-type {
  padding-top: 40px;
}

.wfl-section-title {
  font-family: var(--fl-font-family);
  color: var(--wfl-navy);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}

.wfl-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.wfl-section-header .wfl-heart-divider {
  margin-top: 18px;
}

/* ── What Makes Us Different — 6 columns ─────────────────────────────── */

.wfl-diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.wfl-diff-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 15px;
  border: 1px solid #ffe1eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
}

.wfl-diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(235, 77, 128, 0.08);
}

.wfl-diff-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--wfl-pink);
}

.wfl-diff-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--wfl-pink);
  stroke-width: 1.2;
  fill: none;
}

.wfl-diff-card h3 {
  font-family: inherit;
  color: var(--wfl-navy);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.wfl-diff-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--wfl-text);
  margin: 0;
}

/* ── Stats Bar (Light Pink Banner) ────────────────────────────────────────── */

.wfl-stats-section {
   padding: 20px 0; 
  background: #ffffff;
}

.wfl-stats-banner {
  background: #fff4f7;
  /* Very light pink background */
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wfl-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  position: relative;
  padding: 0 20px;
}

.wfl-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
    width: 2px;
    background-color: rgb(236 77 128);
  /* Very light pink divider */
}

.wfl-stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wfl-stat-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--wfl-pink);
  stroke-width: 1.2;
  fill: none;
}

.wfl-stat-text {
  display: flex;
  flex-direction: column;
}

.wfl-stat-num {
  font-family: inherit;
  color: var(--wfl-navy);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
}

.wfl-stat-desc {
  color: var(--wfl-text);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}

/* ── Our Commitment ───────────────────────────────────────────────────── */

.wfl-commitment-img-wrap {
  position: relative;
  padding-right: 20px;
}

.wfl-commitment-img-bg {
  position: absolute;
  top: -16px;
  left: -16px;
  bottom: 16px;
  right: 30px;
  background: var(--wfl-pink-light);
  border-radius: 24px;
  z-index: 0;
}

.wfl-commitment-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(11, 26, 64, 0.1);
}

.wfl-commitment-content .wfl-section-title {
  text-align: left;
}

.wfl-commitment-content .wfl-heart-divider {
  margin-bottom: 20px;
}

.wfl-commitment-lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--wfl-text);
  margin-bottom: 28px;
}

.wfl-commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wfl-commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--wfl-navy);
  font-weight: 500;
  line-height: 1.5;
}

.wfl-commitment-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--wfl-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 1px;
}

/* ── Cutting-Edge Technology (Banner Design) ────────────────────────── */

.wfl-tech-section {
  padding: 50px 0;
  background: #ffffff;
}

.wfl-tech-banner {
    border: 1px solid #ffe1eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fff4f7 100%);
    border-radius: 24px;
    /* padding: 60px; */
    margin-bottom: 20px;
    box-shadow: 0 20px 50px rgb(140 79 98 / 68%), 0 4px 10px rgb(0 0 0 / 78%);
    border: 1px solid #ffe1eb;
    position: relative;
    overflow: hidden;
}

.wfl-tech-left {
  padding: 20px;
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(235, 77, 128, 0.15);
}

.wfl-tech-left .wfl-section-title {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.wfl-tech-left .wfl-heart-divider {
  margin-bottom: 20px;
}

.wfl-tech-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--wfl-text);
  margin-bottom: 24px;
}

.wfl-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--wfl-pink);
  border: 1px solid var(--wfl-pink);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
}

.wfl-btn-outline:hover {
  background: var(--wfl-pink-cta);
  color: var(--wfl-pink);
}

.wfl-tech-right {
  display: flex;
  flex: 1;
}

.wfl-tech-card {
  flex: 1;
  padding: 20px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.wfl-tech-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background-color: rgba(235, 77, 128, 0.15);
}

.wfl-tech-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.wfl-tech-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--wfl-pink);
  stroke-width: 1.2;
  fill: none;
}

.wfl-tech-card h4 {
  font-family: inherit;
  color: var(--wfl-navy);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.wfl-tech-card p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--wfl-text);
  margin: 0;
}

/* ── Testimonials override for this page ──────────────────────────────── */

.wfl-testimonials-section {
  background: #ffffff;
  padding: 20px 0 20px;
}

.wfl-testimonials-section .fl-testimonials-header {
  margin-bottom: 2.5rem;
}

.wfl-testimonials-section .fl-testimonials-label,
.wfl-testimonials-section .fl-testimonials-desc,
.wfl-testimonials-section .fl-testimonials-rating-pill {
  display: none;
}

.wfl-testimonials-section .fl-testimonials-title {
  font-family: var(--fl-font-family);
  color: var(--wfl-navy);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}

.wfl-testimonials-section .fl-testimonial-author-city {
  color: var(--wfl-pink);
  font-weight: 600;
  font-size: 0.8rem;
}

.wfl-testimonials-section .fl-testimonials-nav {
  opacity: 1;
  pointer-events: auto;
  border-color: var(--wfl-pink);
  color: var(--wfl-pink);
}

.wfl-testimonials-section .fl-testimonials-nav:hover {
  background: var(--wfl-pink);
  color: #fff;
}

.wfl-testimonials-section .fl-testimonials-dots {
  display: flex;
}

.wfl-testimonials-section .fl-testimonials-dot.is-active {
  background-color: var(--wfl-pink);
}

.wfl-testimonials-heart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.wfl-testimonials-heart .line {
  height: 2px;
  width: 50px;
  background: var(--wfl-pink);
}

.wfl-testimonials-heart i {
  color: var(--wfl-pink);
  font-size: 1rem;
}

/* ── CTA Banner ───────────────────────────────────────────────────────── */

.wfl-cta-banner {
  background: var(--wfl-pink-cta);
  border-radius: 16px;
  padding: 0 40px;
  margin: 0 0 80px;
  min-height: 140px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: visible;
}

.wfl-cta-img-col {
  width: 180px;
  margin-right: 30px;
  align-self: flex-end;
  flex-shrink: 0;
}

.wfl-cta-illustration {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  bottom: -5px;
}

.wfl-cta-text-col {
  padding: 40px 0;
  flex: 1;
}

.wfl-cta-title {
  font-family: var(--fl-font-family);
  color: var(--wfl-dark);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.wfl-cta-subtitle {
  color: var(--wfl-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.wfl-cta-btn-col {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.wfl-btn-primary {
  background: var(--wfl-pink);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  white-space: nowrap;
}

.wfl-btn-primary:hover {
  background: #d13d6a;
  color: #fff;
}

.wfl-btn-call {
  background: #ffffff;
  color: var(--wfl-pink);
  border: 1px solid var(--wfl-pink);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  white-space: nowrap;
}

.wfl-btn-call:hover {
  background: #ffffff;
  color: var(--wfl-pink);
}

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 1199px) {
  .wfl-tech-banner {
    flex-wrap: wrap;
  }

  .wfl-tech-left {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid rgba(235, 77, 128, 0.15);
    text-align: center;
  }

  .wfl-tech-left .wfl-section-title {
    text-align: center;
  }

  .wfl-tech-left .wfl-heart-divider {
    margin: 0 auto 20px;
  }

  .wfl-btn-outline {
    align-self: center !important;
  }

  .wfl-tech-right {
    flex-wrap: wrap;
    width: 100%;
  }

  .wfl-tech-card {
    flex: 0 0 50%;
  }

  .wfl-tech-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .wfl-diff-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .wfl-stats-banner {
    flex-wrap: wrap;
    gap: 30px 0;
  }

  .wfl-stat-item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .wfl-stat-item:nth-child(2n)::after {
    display: none;
  }

  .wfl-commitment-img-wrap {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .wfl-commitment-content .wfl-section-title {
    text-align: center;
  }

  .wfl-commitment-content .wfl-heart-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .wfl-commitment-lead {
    text-align: center;
  }

  .wfl-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px 0;
  }

  .wfl-cta-img-col {
    width: 140px;
    margin-right: 0;
  }

  .wfl-cta-text-col,
  .wfl-cta-btn-col {
    padding: 20px 0;
  }

  .wfl-cta-btn-col {
    justify-content: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .wfl-section {
    padding: 50px 0;
  }

  .wfl-diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wfl-tech-card {
    flex: 0 0 100%;
  }

  .wfl-tech-card::after {
    display: none !important;
  }

  .wfl-tech-card:not(:last-child) {
    border-bottom: 1px solid rgba(235, 77, 128, 0.15);
  }

  .wfl-commitment-img {
    height: 300px;
  }

  .wfl-cta-btn-col {
    flex-direction: column;
    width: 100%;
  }

  .wfl-btn-primary,
  .wfl-btn-call {
    justify-content: center;
    width: 100%;
  }

  /* Stats Banner mobile 2x2 layout */
  .wfl-stats-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 15px;
    padding: 25px 15px;
  }

  .wfl-stat-item {
    flex: none;
    max-width: 100%;
    padding: 0;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .wfl-stat-item::after {
    display: none !important;
  }

  .wfl-stat-icon {
    width: 40px;
    height: 40px;
  }

  .wfl-stat-icon i {
    font-size: 32px !important;
  }

  .wfl-stat-num {
    font-size: 1.45rem;
  }

  .wfl-stat-desc {
    font-size: 0.75rem;
  }
}

@media (max-width: 479px) {
  .wfl-diff-grid {
    grid-template-columns: 1fr;
  }

  .wfl-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  /* removed overriding stat-item style to inherit 2x2 grid */
}

.wfl-diff-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.wfl-diff-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
background-image: linear-gradient(rgb(255 255 255 / 76%), rgba(255, 255, 255, 0.85)), url(../../anotherchild.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*transform: scaleX(-1);*/
}