@import url('https://fonts.googleapis.com/css2?family=Changa:wght@300;400;500;600;700;800&display=swap');

.eco-why {
  --eco-navy: #0d2d58;
  --eco-navy-2: #174c78;
  --eco-green: #08733f;
  --eco-green-2: #17915a;
  --eco-blue: #1578a8;
  --eco-gold: #d9a73f;
  --eco-earth: #bd643d;
  --eco-text: #16263b;
  --eco-muted: #677588;
  --eco-white: #ffffff;
  --eco-line: rgba(13, 45, 88, 0.09);

  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--eco-text);
  font-family: "Changa", sans-serif;
  background:
    radial-gradient(circle at 88% 12%, rgba(8, 115, 63, 0.08), transparent 24%),
    radial-gradient(circle at 10% 88%, rgba(21, 120, 168, 0.09), transparent 25%),
    linear-gradient(180deg, #f8fbf9 0%, #ffffff 56%, #f6fafc 100%);
  isolation: isolate;
}

.eco-why,
.eco-why *,
.eco-why *::before,
.eco-why *::after {
  box-sizing: border-box;
}

.eco-why a {
  text-decoration: none;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.eco-why-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(13, 45, 88, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 45, 88, 0.028) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 94%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 94%);
}

.eco-why-glow {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.eco-why-glow.one {
  top: -150px;
  right: -100px;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(8,115,63,.09), transparent 70%);
}

.eco-why-glow.two {
  bottom: -170px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(21,120,168,.09), transparent 70%);
}

.eco-why-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.eco-why-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .68fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: end;
  margin-bottom: 46px;
}

.eco-why-kicker {
  width: fit-content;
  max-width: 100%;
  min-height: 56px;
  margin-bottom: 17px;
  padding: 7px 9px 7px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--eco-green);
  border: 1px solid rgba(8, 115, 63, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 13px 34px rgba(13, 45, 88, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.eco-why-kicker-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, var(--eco-green), var(--eco-blue) 75%, var(--eco-navy));
  border: 4px solid #ffffff;
  box-shadow:
    0 0 0 1px rgba(8, 115, 63, 0.18),
    0 9px 22px rgba(13, 45, 88, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.eco-why-kicker-icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(8, 115, 63, 0.13);
  pointer-events: none;
}

.eco-why-kicker-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.eco-why-title {
  margin: 0;
  color: var(--eco-navy);
  font-size: clamp(31px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -1px;
}

.eco-why-title span {
  position: relative;
  display: inline-block;
  color: var(--eco-green);
  z-index: 1;
}

.eco-why-title span::after {
  content: "";
  position: absolute;
  right: -4px;
  left: -4px;
  bottom: 5px;
  z-index: -1;
  height: 12px;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(217,167,63,.34), rgba(8,115,63,.1));
}

.eco-why-intro {
  margin: 0;
  color: var(--eco-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.eco-why-intro strong {
  color: var(--eco-navy);
  font-weight: 700;
}

.eco-why-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

/* LTR Switch Handling overrides */
.eco-why-ltr .eco-why-head {
  grid-template-columns: minmax(360px, .68fr) minmax(0, .92fr);
}

/* Decision rail */
.eco-why-rail {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(13,45,88,.08);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(248,252,249,.93));
  box-shadow: 0 26px 70px rgba(13,45,88,.09);
}

.eco-why-rail::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(to bottom, var(--eco-green), var(--eco-blue), var(--eco-gold), var(--eco-earth));
  opacity: .9;
}

.eco-why-ltr .eco-why-rail::before {
  right: auto;
  left: 0;
}

.eco-why-rail::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(21,120,168,.12);
  box-shadow: 0 0 0 34px rgba(21,120,168,.025), 0 0 0 68px rgba(8,115,63,.018);
  pointer-events: none;
}

.eco-why-rail-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(13,45,88,.08);
}

.eco-why-rail-title {
  margin: 0;
  color: var(--eco-navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.eco-why-rail-caption {
  color: var(--eco-muted);
  font-size: 12px;
  line-height: 1.7;
  white-space: nowrap;
}

.eco-why-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 21px 0;
}

.eco-why-row + .eco-why-row {
  border-top: 1px solid rgba(13,45,88,.075);
}

.eco-why-row-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(13,45,88,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}

.eco-why-row-icon svg {
  width: 26px;
  height: 26px;
}

.eco-why-row h3 {
  margin: 0 0 5px;
  color: var(--eco-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.eco-why-row p {
  margin: 0;
  color: var(--eco-muted);
  font-size: 13px;
  line-height: 1.85;
}

.eco-why-row-tag {
  min-width: 94px;
  padding: 8px 11px;
  border-radius: 999px;
  text-align: center;
  color: var(--eco-navy);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(13,45,88,.08);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

/* Compass visual */
.eco-why-compass {
  position: relative;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.11), transparent 36%),
    linear-gradient(150deg, #0d2d58 0%, #0f4d68 52%, #08733f 100%);
  box-shadow: 0 28px 72px rgba(13,45,88,.2);
  color: #fff;
}

.eco-why-compass::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 27px;
  pointer-events: none;
}

.eco-why-compass::after {
  content: "";
  position: absolute;
  top: -110px;
  left: -80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 35px rgba(255,255,255,.018), 0 0 0 70px rgba(255,255,255,.012);
  pointer-events: none;
}

.eco-why-compass-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.eco-why-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eco-why-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
}

.eco-why-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.eco-why-brand strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.eco-why-brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.66);
  font-size: 10px;
  line-height: 1.55;
}

.eco-why-compass-label {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.eco-why-dial {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  aspect-ratio: 1 / 1;
  margin: 30px auto 24px;
  display: grid;
  place-items: center;
}

.eco-why-ring,
.eco-why-ring::before,
.eco-why-ring::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
}

.eco-why-ring::before {
  inset: 38px;
  border-style: dashed;
  border-color: rgba(255,255,255,.16);
  animation: ecoWhySpin 22s linear infinite;
}

.eco-why-ring::after {
  inset: 78px;
  border-color: rgba(255,255,255,.1);
}

.eco-why-dial-center {
  position: relative;
  z-index: 4;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 22px 50px rgba(0,0,0,.16), inset 0 0 0 10px rgba(255,255,255,.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.eco-why-dial-center svg {
  width: 42px;
  height: 42px;
  margin-bottom: 11px;
  color: #68d79f;
}

.eco-why-dial-center strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.eco-why-dial-center span {
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  line-height: 1.6;
}

.eco-why-dial-node {
  position: absolute;
  z-index: 5;
  width: 88px;
  min-height: 70px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.eco-why-dial-node svg {
  width: 19px;
  height: 19px;
  margin-bottom: 6px;
}

.eco-why-dial-node span {
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.55;
}

.eco-why-dial-node.one {
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: #69d69f;
}

.eco-why-dial-node.two {
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  color: #7cc9eb;
}

.eco-why-dial-node.three {
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: #f0c867;
}

.eco-why-dial-node.four {
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  color: #e69a78;
}

.eco-why-note {
  position: relative;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.09);
}

.eco-why-note p {
  margin: 0;
  color: rgba(255,255,255,.79);
  font-size: 13px;
  line-height: 1.95;
}

.eco-why-note strong {
  color: #fff;
  font-weight: 700;
}

.eco-why-cta {
  margin-top: 34px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(13,45,88,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 20px 50px rgba(13,45,88,.07);
}

.eco-why-cta-copy h3 {
  margin: 0 0 6px;
  color: var(--eco-navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.eco-why-cta-copy p {
  margin: 0;
  color: var(--eco-muted);
  font-size: 13px;
  line-height: 1.8;
}

.eco-why-btn {
  min-height: 54px;
  padding: 0 22px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--eco-green), var(--eco-green-2) 55%, var(--eco-blue));
  box-shadow: 0 15px 34px rgba(8,115,63,.2);
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.eco-why-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(8,115,63,.27);
}

.eco-why-btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.eco-why-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.eco-why-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ecoWhySpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1060px) {
  .eco-why-head,
  .eco-why-stage {
    grid-template-columns: 1fr !important;
  }

  .eco-why-head {
    align-items: start;
  }

  .eco-why-compass {
    min-height: 610px;
  }
}

@media (max-width: 760px) {
  .eco-why-inner {
    width: min(100% - 28px, 1240px);
  }

  .eco-why-head {
    margin-bottom: 34px;
  }

  .eco-why-title {
    font-size: 32px;
    line-height: 1.35;
  }

  .eco-why-intro {
    font-size: 14px;
    line-height: 1.95;
  }

  .eco-why-rail,
  .eco-why-compass {
    padding: 22px;
    border-radius: 28px;
  }

  .eco-why-rail-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .eco-why-rail-caption {
    white-space: normal;
  }

  .eco-why-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .eco-why-row-tag {
    grid-column: 2;
    justify-self: start;
  }

  .eco-why-compass {
    min-height: auto;
  }

  .eco-why-dial {
    width: min(360px, 100%);
  }

  .eco-why-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .eco-why-btn {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .eco-why-kicker {
    min-height: 52px;
    padding: 6px 8px 6px 15px;
    gap: 10px;
    font-size: 13px;
  }

  .eco-why-kicker-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

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

  .eco-why-kicker {
    font-size: 11px;
    padding: 8px 14px;
  }

  .eco-why-row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .eco-why-row-tag {
    grid-column: auto;
    justify-self: center;
  }

  .eco-why-compass-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .eco-why-dial {
    width: 100%;
    margin-top: 24px;
  }

  .eco-why-dial-center {
    width: 146px;
    height: 146px;
  }

  .eco-why-dial-node {
    width: 76px;
    min-height: 64px;
  }

  .eco-why-dial-node span {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-why *,
  .eco-why *::before,
  .eco-why *::after {
    animation: none !important;
    transition: none !important;
  }
}
