/* === SECTION: Why Choose Us === */

/* ----------------------------------------
   Reset scope
---------------------------------------- */
.why *,
.why *::before,
.why *::after {
  box-sizing: border-box;
}

/* ----------------------------------------
   .why — outer section
   Light off-white background
---------------------------------------- */
.why {
  width: 100%;
  background-color: var(--color-bg-light);
  padding: 100px 0;
}

/* ----------------------------------------
   .why__inner — two-column flex layout
   Left: content  |  Right: image
---------------------------------------- */
.why__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ----------------------------------------
   .why__content — left column
---------------------------------------- */
.why__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ----------------------------------------
   .why__heading — main section heading
---------------------------------------- */
.why__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: var(--ls-snug);
  color: var(--color-navy);
  margin: 0 0 20px 0;
}

/* ----------------------------------------
   .why__subhead — descriptive subtitle
---------------------------------------- */
.why__subhead {
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-xl);
  color: var(--color-gray-mid);
  margin: 0 0 44px 0;
}

/* ----------------------------------------
   .why__features — feature list (no bullets)
---------------------------------------- */
.why__features {
  list-style: none;
  margin: 0 0 44px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ----------------------------------------
   .why__feature — single feature row
---------------------------------------- */
.why__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* ----------------------------------------
   .why__feature-icon — red circle checkmark
---------------------------------------- */
.why__feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.why__feature-icon svg {
  display: block;
}

/* ----------------------------------------
   .why__feature-text — title + desc wrapper
---------------------------------------- */
.why__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ----------------------------------------
   .why__feature-title
---------------------------------------- */
.why__feature-title {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-md);
  color: var(--color-dark);
  margin: 0;
}

/* ----------------------------------------
   .why__feature-desc
---------------------------------------- */
.why__feature-desc {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-md);
  color: var(--color-gray-mid);
  margin: 0;
}

/* ----------------------------------------
   .why__cta — "Learn More" button
   Red pill button matching brand style
---------------------------------------- */
.why__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 14px 36px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 90px;
  transition: background-color 160ms ease, transform 140ms ease;
}

.why__cta:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.why__cta:active {
  transform: translateY(0);
}

/* ----------------------------------------
   .why__image-wrap — right column image
---------------------------------------- */
.why__image-wrap {
  flex: 0 0 520px;
  width: 520px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.why__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----------------------------------------
   RESPONSIVE: Tablet — 1280px
---------------------------------------- */
@media (max-width: 1280px) {
  .why__inner {
    padding: 0 40px;
    gap: 48px;
  }

  .why__image-wrap {
    flex: 0 0 420px;
    width: 420px;
  }

  .why__heading {
    font-size: var(--fs-4xl);
  }
}

/* ----------------------------------------
   RESPONSIVE: Mobile — 768px
   Stack vertically, image below content
---------------------------------------- */
@media (max-width: 768px) {
  .why {
    padding: 64px 0;
  }

  .why__inner {
    padding: 0 20px;
    flex-direction: column;
    gap: 40px;
  }

  .why__image-wrap {
    flex: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .why__heading {
    font-size: var(--fs-3xl);
  }

  .why__subhead {
    font-size: var(--fs-base);
    margin-bottom: 32px;
  }

  .why__features {
    gap: 22px;
    margin-bottom: 36px;
  }

  .why__cta {
    align-self: stretch;
    text-align: center;
  }
}

/* ----------------------------------------
   RESPONSIVE: Small — 375px
---------------------------------------- */
@media (max-width: 375px) {
  .why__heading {
    font-size: var(--fs-2xl);
  }
}

/* === END SECTION: Why Choose Us === */
