.why-we-exist-section {
  --wwe-deep: #0f2e2f;
  --wwe-ink: #0c1f21;
  --wwe-muted: #596a6b;
  --wwe-line: #d7ddda;
  --wwe-sand: #f4f2ee;
  --wwe-mist: #e4ebe8;
  --wwe-accent: #d77b2c;
  padding: 80px 0;
  background: #fff;
  color: var(--wwe-ink);
}

.why-we-exist-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-we-exist-section__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.why-we-exist-section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wwe-muted);
  margin: 0 0 16px;
}

.why-we-exist-section__heading {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.why-we-exist-section__subheading {
  font-size: 18px;
  color: var(--wwe-ink);
  margin: 0 0 16px;
}

.why-we-exist-section__description {
  font-size: 16px;
  color: var(--wwe-muted);
  margin: 0 0 20px;
}

.why-we-exist-section__description p {
  margin: 0 0 12px;
}

.why-we-exist-section__highlight {
  font-size: 14px;
  font-style: italic;
  border-left: 3px solid var(--wwe-accent);
  padding-left: 12px;
  margin: 0;
  color: var(--wwe-ink);
}

.why-we-exist-section__hero-media {
  position: relative;
}

.why-we-exist-section__media-frame {
  position: relative;
  background: linear-gradient(135deg, var(--wwe-mist), #f6f7f4);
  border-radius: 18px;
  /* padding: 28px;
  min-height: 360px; */
  box-shadow: 0 12px 30px rgba(12, 31, 33, 0.08);
}

.why-we-exist-section__media-embed,
.why-we-exist-section__media-video,
.why-we-exist-section__media-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: #cfd6d3;
}

.why-we-exist-section__media-embed iframe,
.why-we-exist-section__media-embed embed,
.why-we-exist-section__media-embed object {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 14px;
  display: block;
}

.why-we-exist-section__insight {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(12, 31, 33, 0.12);
  padding: 16px 18px;
  max-width: 220px;
}

.why-we-exist-section__insight-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wwe-muted);
  margin: 0 0 8px;
}

.why-we-exist-section__insight-text {
  font-size: 13px;
  color: var(--wwe-ink);
  margin: 0;
}

.why-we-exist-section__comparison {
  margin-top: 56px;
  border: 1px solid var(--wwe-line);
  border-radius: 12px;
  overflow: hidden;
}

.why-we-exist-section__comparison-header {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  /* background: var(--wwe-deep); */
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-we-exist-section__comparison-header > div {
  padding: 16px 18px;
}

.why-we-exist-section__comparison-body {
  background: #fff;
}

.why-we-exist-section__comparison-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  border-top: 1px solid var(--wwe-line);
}

.why-we-exist-section__row-label {
  padding: 20px 18px;
  background: #f6f7f5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-we-exist-section__row-label-small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wwe-muted);
}

.why-we-exist-section__row-label-main {
  font-size: 15px;
  font-weight: 600;
  color: var(--wwe-ink);
}

.why-we-exist-section__cell {
  padding: 20px 18px;
  border-left: 1px solid var(--wwe-line);
  font-size: 14px;
  color: var(--wwe-muted);
}

.why-we-exist-section__cell-text {
  margin: 0 0 8px;
}

.why-we-exist-section__cell-highlight {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--wwe-accent);
}

.why-we-exist-section__cell-subtext {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--wwe-muted);
}

.why-we-exist-section__cell-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.why-we-exist-section__cell-points li {
  position: relative;
  padding-left: 14px;
}

.why-we-exist-section__cell-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--wwe-accent);
}

.why-we-exist-section__cta {
  margin-top: 40px;
  /* background: var(--wwe-deep); */
  color: #fff;
  padding: 28px 32px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.why-we-exist-section__cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #c8d2d0;
}

.why-we-exist-section__cta-heading {
  font-size: 22px;
  margin: 0;
}

.why-we-exist-section__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--wwe-accent);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-we-exist-section__cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(215, 123, 44, 0.35);
}

.why-we-exist-section__bottom {
  margin-top: 44px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.why-we-exist-section__bottom-heading {
  margin: 0 0 10px;
  font-size: 20px;
}

.why-we-exist-section__bottom-description {
  margin: 0;
  color: var(--wwe-muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .why-we-exist-section__hero {
    grid-template-columns: 1fr;
  }

  .why-we-exist-section__media-frame {
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  .why-we-exist-section__comparison-header {
    display: none;
  }

  .why-we-exist-section__comparison-row {
    grid-template-columns: 1fr;
  }

  .why-we-exist-section__cell {
    border-left: none;
    border-top: 1px solid var(--wwe-line);
  }

  .why-we-exist-section__cell:first-of-type {
    border-top: none;
  }

  .why-we-exist-section__row-label {
    border-bottom: 1px solid var(--wwe-line);
  }

  .why-we-exist-section__cell::before {
    content: attr(data-label);
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef2f1;
    border: 1px solid #d7ddda;
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wwe-ink);
  }

  .why-we-exist-section__cell[data-label=""]::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .why-we-exist-section {
    padding: 56px 0;
  }

  .why-we-exist-section__heading {
    font-size: 30px;
  }

  .why-we-exist-section__cta {
    padding: 22px 20px;
  }
}
