/* ============================================================
   The Data Section
   Figma node: 1:33 | Canvas: 1440×632px
   White bg, "Did you know?" eyebrow, 3 statistics, footnote
   Green decorative ellipse at bottom left
   ============================================================ */

.bs-data {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  /* Figma: 632px total */
  padding: clamp(30px, 4.2vw, 60px) 0 clamp(36px, 5vw, 72px);
}

/* Decorative green circle — Figma: x=-108, y=326, 435px circle, #b0f288 */
.bs-data::before {
  content: '';
  position: absolute;
  /* Align to bottom-left matching Figma y-offset from section bottom */
  bottom: clamp(-40px, -5vw, -60px);
  left: clamp(-80px, -7.5vw, -108px);
  width: clamp(220px, 30.2vw, 435px);
  height: clamp(220px, 30.2vw, 435px);
  border-radius: 50%;
  background: #b0f288;
  opacity: 0.55;
  pointer-events: none;
}

/* ── Container ── */
.bs-data__container {
  max-width: 1440px;
  margin: 0 auto;
  /* Figma: content starts at x=65–70 on 1440px = ~4.7vw */
  padding: 0 clamp(24px, 4.7vw, 70px);
  position: relative;
  z-index: 1;
}

/* ── Eyebrow: "DID YOU KNOW ?" ── */
/* Figma: Inter Black 900, 114px, navy #21254a, uppercase, y=18 */
.bs-data__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7.9vw, 114px);
  text-transform: uppercase;
  color: #21254a;
  line-height: 1;
  margin: 0 0 clamp(8px, 0.6vw, 10px) 0;
}

/* ── Sub-headline — mixed bold weights, uppercase ── */
/* "THIS IS NOT A" (bold 700, 44px) + "PERSONAL" (black 900, 50px) + rest (bold 700, 44px) */
.bs-data__headline {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  color: #21254a;
  line-height: 1.15;
  margin: 0 0 clamp(28px, 4.4vw, 64px) 0;
}

.bs-data__headline-bold {
  font-weight: 700;
  font-size: clamp(18px, 3.1vw, 44px);
}

.bs-data__headline-black {
  font-weight: 900;
  font-size: clamp(20px, 3.5vw, 50px);
}

/* ── Stats row — 3 equal columns ── */
/* Figma: x=118, w=1204, gap=191px between each 274px box */
.bs-data__stats {
  display: flex;
  align-items: flex-start;
  /* Figma: 191px gap fluid */
  gap: clamp(24px, 13.3vw, 191px);
  text-align: center;
  margin: 0 0 clamp(28px, 3.5vw, 50px) 0;
  justify-content: flex-start;
}

.bs-data__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Figma: 274px wide */
  width: clamp(120px, 19vw, 274px);
  flex-shrink: 0;
}

/* Big percentage number — Inter Black 900, 71px, pure black */
.bs-data__stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.9vw, 71px);
  color: #000000;
  line-height: 1.1;
  margin: 0 0 clamp(6px, 0.6vw, 8px) 0;
}

/* Stat description — Inter SemiBold 600, 22px, navy */
.bs-data__stat-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.5vw, 22px);
  color: #21254a;
  line-height: 1.5;
  margin: 0;
}

/* ── Footnote paragraph — Inter Regular 400, 22px, navy ── */
.bs-data__footnote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.5vw, 22px);
  color: #21254a;
  line-height: 1.6;
  margin: 0;
  /* Figma: w=1287px out of 1440px — nearly full width */
  max-width: 1287px;
}

/* ── Tablet: 768px – 1023px ── */
@media (max-width: 1023px) {
  .bs-data__stats {
    gap: clamp(20px, 5vw, 60px);
    justify-content: space-around;
  }

  .bs-data__stat {
    width: auto;
    flex: 1;
  }
}

/* ── Mobile: < 600px ── */
@media (max-width: 599px) {
  .bs-data__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
  }

  .bs-data__stat {
    width: clamp(120px, 40vw, 180px);
    flex: none;
  }

  .bs-data__stat-number {
    font-size: clamp(32px, 8.5vw, 52px);
  }

  .bs-data__stat-text {
    font-size: clamp(12px, 3.5vw, 16px);
  }
}
