/* WHY SECTION */
.why-section {
  width: 100%;
  padding: var(--section-padding-y) var(--section-padding-x);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.why-container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 48px;
  color: var(--text-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-title span {
  color: var(--sunlife-marigold);
}

/* REASONS */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 56px;
}

.reason-card {
  padding: 0;
  background: transparent;
  border: 0;
}

.reason-card p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
}

/* DEEP SECTION */
.deep-section {
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 40px;
  background: var(--white);
  border: 1px solid rgba(30, 58, 138, 0.08);
  border-radius: 8px;
  text-align: center;
}

.deep-section h3 {
  margin-bottom: 24px;
  color: var(--text-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.deep-section .reason-list {
  margin-bottom: 0;
}

.deep-section .reason-card:last-child {
  margin-top: 10px;
  padding: 18px 22px;
  background: rgba(234, 179, 8, 0.12);
  border-radius: 8px;
}

.deep-section .reason-card:last-child p {
  color: var(--text-primary);
  font-weight: 700;
}

.divider-line {
  width: 90px;
  height: 2px;
  margin: 32px auto 24px;
  background: var(--sunlife-marigold);
}

.mini-points {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mini-points span {
  padding: 9px 14px;
  color: #334155;
  font-size: 0.95rem;
  background: #f8fafc;
  border: 1px solid rgba(30, 58, 138, 0.08);
  border-radius: 8px;
}

/* STRATEGY */
.strategy-card {
  padding-top: 56px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.small-label {
  margin-bottom: 10px;
  color: var(--sunlife-rich-black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.card-header {
  text-align: center;
}

.card-header h3 {
  color: var(--text-primary);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.2;
}

.card-header h3 span {
  color: var(--sunlife-marigold);
}

.header-description {
  max-width: 620px;
  margin: 20px auto 0;
  color: #475569;
  line-height: 1.8;
}

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

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(30, 58, 138, 0.08);
  border-radius: 8px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: var(--sunlife-dark);
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--sunlife-marigold);
  border-radius: 8px;
}

.step-content h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.step-content p {
  color: #475569;
  line-height: 1.7;
}

.why-cta-btn {
  display: block;
  margin: 44px auto 0;
  padding: 16px 28px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  background: var(--sunlife-rich-black);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.why-cta-btn:hover {
  background: var(--sunlife-dark);
  transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
  .why-section {
    padding: var(--section-padding-y-tablet) 6%;
  }

  .deep-section {
    padding: 32px;
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .why-section {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile);
  }

  .section-title {
    font-size: 2.2rem;
  }

  .deep-section {
    padding: 26px;
  }

  .mini-points {
    flex-direction: column;
  }

  .step-card {
    flex-direction: column;
    padding: 22px;
  }
}
