/* ===== WHY SECTION — Editorial Split ===== */

.why-section {
  padding: 70px 0 160px;
  background: #fff9f8;
  --side-padding: max(6vw, calc((100vw - 1400px) / 2 + 40px));
  position: relative;
  z-index: 3;
}

.why-section__container {
  padding: 0 var(--side-padding);
}

/* ===== ZONE 1 — The Statement (split layout) ===== */
.why-section__statement {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.why-section__statement-left {
  /* Label + Headline stack vertically on the left */
}

.why-section__statement-right {
  /* Lead paragraph on the right, vertically centred with headline */
  display: flex;
  align-items: center;
  min-height: 100%;
}

/* ===== LABEL ===== */
.why-section__label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #751560;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

/* ===== HEADLINE ===== */
.why-section__headline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 300;
  color: var(--theme, #32013a);
  line-height: 1.45;
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
}

/* ===== LEAD PARAGRAPH ===== */
.why-section__lead {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--theme, #32013a);
  margin: 0;
  opacity: 0;
  transform: translateX(20px);
}

/* ===== GRADIENT DIVIDER ===== */
.why-section__divider {
  height: 2px;
  max-width: 1200px;
  margin: 3.5rem auto;
  background: linear-gradient(90deg, #751560 0%, #32013a 100%);
  transform: scaleX(0);
  transform-origin: center center;
}

/* ===== ZONE 2 — The Evidence (two-column grid) ===== */
.why-section__evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

/* ===== INDIVIDUAL PILLAR ===== */
.why-section__pillar {
  opacity: 0;
  transform: translateY(20px);
}

/* ===== ACCENT BAR ===== */
.why-section__accent-bar {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #751560 0%, #32013a 100%);
  transform: scaleX(0);
  transform-origin: left center;
}

/* ===== PILLAR CONTENT ===== */
.why-section__number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #751560;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.why-section__pillar-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--theme, #32013a);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.why-section__pillar-body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--theme, #32013a);
  margin: 0;
  opacity: 0.8;
}

.why-section__pillar-body + .why-section__pillar-body {
  margin-top: 0.75rem;
}

/* ===== CTA ===== */
.why-section__cta {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}

.why-section__btn {
  display: inline-block;
  background-color: var(--theme, #32013a);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 1em 2em;
  border-radius: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.why-section__btn:hover {
  opacity: 0.85;
}

/* ===== ANIMATION STATES ===== */

/* --- Zone 1: Statement (triggered by statement-in-view) --- */
.why-section.statement-in-view .why-section__label {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-section.statement-in-view .why-section__headline {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}

.why-section.statement-in-view .why-section__lead {
  opacity: 0.8;
  transform: translateX(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

/* --- Zone 2: Evidence (triggered by evidence-in-view) --- */
/* Divider grows from center first */
.why-section.evidence-in-view .why-section__divider {
  transform: scaleX(1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-section.evidence-in-view .why-section__pillar:first-child .why-section__accent-bar {
  transform: scaleX(1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}

.why-section.evidence-in-view .why-section__pillar:first-child {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.4s;
}

.why-section.evidence-in-view .why-section__pillar:last-child .why-section__accent-bar {
  transform: scaleX(1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.45s;
}

.why-section.evidence-in-view .why-section__pillar:last-child {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.55s;
}

.why-section.evidence-in-view .why-section__cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.8s;
}

/* ===== RESPONSIVE ===== */

/* Large Desktop */
@media (min-width: 1600px) {
  .why-section {
    padding: 80px 0 180px;
    --side-padding: max(11vw, 250px);
  }

  .why-section__statement {
    gap: 80px;
    max-width: 1300px;
  }

  .why-section__headline {
    font-size: 2rem;
  }

  .why-section__lead {
    font-size: 18px;
  }

  .why-section__divider {
    max-width: 1300px;
  }

  .why-section__evidence {
    gap: 100px;
    max-width: 1300px;
  }

  .why-section__pillar-title {
    font-size: 28px;
  }

  .why-section__pillar-body {
    font-size: 17px;
  }
}

/* Very Large */
@media (min-width: 1800px) {
  .why-section {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-section__container {
    padding-left: calc(3vw + 5vw);
    padding-right: calc(3vw + 5vw);
  }
}

/* Desktop */
@media (max-width: 1400px) {
  .why-section__statement {
    gap: 50px;
  }

  .why-section__evidence {
    gap: 60px;
  }
}

/* Small Desktop */
@media (max-width: 1200px) {
  .why-section {
    padding: 60px 0 140px;
  }

  .why-section__statement {
    gap: 40px;
  }

  .why-section__evidence {
    gap: 50px;
  }
}

/* Tablet — statement stacks, evidence stays two-column */
@media (max-width: 991px) {
  .why-section {
    padding: 50px 0 120px;
  }

  .why-section__statement {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 700px;
  }

  .why-section__headline {
    margin-bottom: 1.5rem;
  }

  .why-section__lead {
    transform: translateY(20px);
  }

  .why-section.statement-in-view .why-section__lead {
    transform: translateY(0);
  }

  .why-section__divider {
    max-width: 700px;
  }

  .why-section__evidence {
    gap: 40px;
    max-width: 700px;
  }

  .why-section__pillar-title {
    font-size: 20px;
  }

  .why-section__pillar-body {
    font-size: 15px;
  }
}

/* Mobile — everything single column */
@media (max-width: 767px) {
  .why-section {
    padding: 40px 0 100px;
  }

  .why-section__label {
    margin-bottom: 1.25rem;
  }

  .why-section__lead {
    font-size: 16px;
  }

  .why-section__divider {
    margin: 2.5rem auto;
  }

  .why-section__evidence {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .why-section__pillar-title {
    font-size: 20px;
  }

  .why-section__pillar-body {
    font-size: 15px;
  }

  .why-section__btn {
    font-size: 15px;
    padding: 0.9em 1.8em;
  }
}

/* Small Mobile */
@media (max-width: 479px) {
  .why-section {
    padding: 35px 0 85px;
  }

  .why-section__lead {
    font-size: 15px;
  }

  .why-section__divider {
    margin: 2rem auto;
  }

  .why-section__number {
    font-size: 0.78rem;
  }

  .why-section__pillar-title {
    font-size: 18px;
  }

  .why-section__pillar-body {
    font-size: 14.5px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .why-section__label,
  .why-section__headline,
  .why-section__lead,
  .why-section__pillar,
  .why-section__divider,
  .why-section__accent-bar,
  .why-section__cta {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .why-section__divider {
    transform: scaleX(1) !important;
  }

  .why-section__accent-bar {
    transform: scaleX(1) !important;
  }

  .why-section__lead {
    opacity: 0.8 !important;
  }

  .why-section__pillar-body {
    opacity: 0.8;
  }
}
