

.eco-info-hero {
  --eco-green: #005322;
  --eco-green-dark: #003d19;
  --eco-green-light: #eaf6ed;
  --eco-text: #263029;
  --eco-muted: #647068;

  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background: #123c22;
}

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

.eco-info-hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.eco-info-hero__background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.eco-info-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(7, 39, 20, 0.88) 0%,
      rgba(7, 39, 20, 0.72) 42%,
      rgba(7, 39, 20, 0.42) 70%,
      rgba(7, 39, 20, 0.28) 100%
    );
}

.eco-info-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 70px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0;
}

.eco-info-hero__content {
  max-width: 650px;
}

.eco-info-hero__label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: #dff8e6;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.eco-info-hero__title {
  max-width: 680px;
  margin: 24px 0 20px;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.eco-info-hero__text {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.65;
}

.eco-info-hero__secondary {
  max-width: 590px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.eco-info-hero__actions {
  margin-top: 30px;
}

.eco-info-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 25px;
  color: var(--eco-green-dark);
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.eco-info-hero__button:hover,
.eco-info-hero__button:focus-visible {
  color: var(--eco-green-dark);
  background: var(--eco-green-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.19);
  outline: none;
}

.eco-info-hero__tracker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eco-live-card {
  position: relative;
  width: min(100%, 390px);
  padding: 30px;
  color: var(--eco-text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.24),
    0 4px 14px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  animation: eco-live-card-entry 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes eco-live-card-entry {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eco-live-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
}

.eco-live-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border-radius: 14px;
}

.eco-live-card__icon svg {
  display: block;
  width: 27px;
  height: 27px;
}

.eco-live-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--eco-green);
  background: #f0f8f2;
  border: 1px solid #dceee1;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.eco-live-card__pulse {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
}

.eco-live-card__pulse span {
  position: absolute;
  inset: 0;
  background: #22c55e;
  border-radius: inherit;
  animation: eco-live-pulse 1.8s infinite;
}

@keyframes eco-live-pulse {
  0% {
    opacity: 0.65;
    transform: scale(1);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

.eco-live-card__value {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.eco-live-card__value strong {
  color: #17201a;
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}

.eco-live-card__value span {
  color: var(--eco-green);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.eco-live-card__description {
  max-width: 280px;
  margin: 12px 0 0;
  color: #4e5c52;
  font-size: 17px;
  line-height: 1.45;
}

.eco-live-card__divider {
  width: 100%;
  height: 1px;
  margin: 24px 0 18px;
  background: linear-gradient(
    90deg,
    transparent,
    #d8e2da,
    transparent
  );
}

.eco-live-card__note {
  margin: 0;
  color: #6e7a71;
  font-size: 12px;
  line-height: 1.55;
}

.eco-live-card__powered {
  margin: 13px 0 0;
  color: #8a948c;
  font-size: 10px;
  line-height: 1.4;
}

.eco-info-hero__demo-note {
  display: inline-block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .eco-info-hero {
    min-height: auto;
  }

  .eco-info-hero__overlay {
    background: rgba(7, 39, 20, 0.76);
  }

  .eco-info-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(720px, calc(100% - 36px));
    padding: 70px 0;
  }

  .eco-info-hero__content {
    max-width: none;
    text-align: center;
  }

  .eco-info-hero__title,
  .eco-info-hero__text,
  .eco-info-hero__secondary {
    margin-left: auto;
    margin-right: auto;
  }

  .eco-info-hero__tracker {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .eco-info-hero__inner {
    width: min(100% - 28px, 520px);
    padding: 52px 0;
  }

  .eco-info-hero__title {
    margin-top: 20px;
    font-size: 38px;
    line-height: 1.08;
  }

  .eco-info-hero__text {
    font-size: 17px;
    line-height: 1.55;
  }

  .eco-info-hero__secondary {
    font-size: 14px;
  }

  .eco-live-card {
    padding: 23px;
    border-radius: 20px;
  }

  .eco-live-card__header {
    margin-bottom: 23px;
  }

  .eco-live-card__value strong {
    font-size: 44px;
  }

  .eco-live-card__description {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-live-card,
  .eco-live-card__pulse span {
    animation: none;
  }

  .eco-info-hero__button {
    transition: none;
  }
}




.eco-about {
  --eco-green: #005322;
  --eco-green-dark: #003d19;
  --eco-green-light: #eaf6ed;
  --eco-green-soft: #f4faf5;
  --eco-text: #263029;
  --eco-muted: #647068;
  --eco-border: #dce9df;

  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  color: var(--eco-text);
 
}

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

.eco-about::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -170px;
  width: 420px;
  height: 420px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.eco-about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 85px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eco-about__content {
  max-width: 650px;
}

.eco-about__label {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border: 1px solid #d6eadb;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eco-about__title {
  max-width: 680px;
  margin: 22px 0 24px;
  color: var(--eco-green-dark);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.eco-about__lead {
  margin: 0 0 17px;
  color: var(--eco-text);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
}

.eco-about__text {
  margin: 0 0 16px;
  color: var(--eco-muted);
  font-size: 16px;
  line-height: 1.75;
}

.eco-about__quote {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  padding: 20px 22px;
  background: var(--eco-green-soft);
  border: 1px solid var(--eco-border);
  border-left: 4px solid var(--eco-green);
  border-radius: 0 14px 14px 0;
}

.eco-about__quote-icon {
  flex: 0 0 auto;
  color: var(--eco-green);
  font-size: 38px;
  line-height: 0.8;
  font-family: Georgia, serif;
}

.eco-about__quote p {
  margin: 0;
  color: #4e5e53;
  font-size: 14px;
  line-height: 1.65;
}

.eco-about__panel {
  position: relative;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--eco-border);
  border-radius: 24px;
  box-shadow:
    0 24px 65px rgba(19, 63, 34, 0.1),
    0 4px 14px rgba(19, 63, 34, 0.04);
}

.eco-about__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--eco-green),
    #40bc6a
  );
  border-radius: 0 0 999px 999px;
}

.eco-about__panel-header {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 22px;
}

.eco-about__panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border-radius: 15px;
}

.eco-about__panel-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.eco-about__panel-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--eco-green);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eco-about__panel-title {
  margin: 0;
  color: var(--eco-green-dark);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
}

.eco-about__panel-text {
  margin: 0 0 25px;
  color: var(--eco-muted);
  font-size: 15px;
  line-height: 1.7;
}

.eco-about__features {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-about__features li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-about__features li::marker {
  content: "";
}

.eco-about__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  margin-top: 1px;
  color: #ffffff;
  background: var(--eco-green);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.eco-about__features strong {
  display: block;
  margin-bottom: 3px;
  color: var(--eco-text);
  font-size: 14px;
  line-height: 1.4;
}

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

.eco-about__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, 100%);
  margin: 75px auto 0;
}

.eco-about__card {
  position: relative;
  min-height: 230px;
  padding: 29px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--eco-border);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(20, 61, 32, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.eco-about__card:hover {
  transform: translateY(-5px);
  border-color: #c5ddca;
  box-shadow: 0 18px 45px rgba(20, 61, 32, 0.1);
}

.eco-about__card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 39px;
  height: 27px;
  padding: 0 9px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.eco-about__card h3 {
  margin: 21px 0 11px;
  color: var(--eco-green-dark);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
}

.eco-about__card p {
  margin: 0;
  color: var(--eco-muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 950px) {
  .eco-about {
    padding: 85px 22px;
  }

  .eco-about__inner {
    grid-template-columns: 1fr;
    gap: 55px;
    width: min(720px, 100%);
  }

  .eco-about__content {
    max-width: none;
  }

  .eco-about__cards {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
    margin-top: 55px;
  }

  .eco-about__card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .eco-about {
    padding: 65px 16px;
  }

  .eco-about__title {
    margin-top: 19px;
    font-size: 36px;
  }

  .eco-about__lead {
    font-size: 18px;
  }

  .eco-about__text {
    font-size: 15px;
  }

  .eco-about__panel {
    padding: 27px 22px;
    border-radius: 20px;
  }

  .eco-about__panel-header {
    flex-direction: column;
  }

  .eco-about__panel-title {
    font-size: 21px;
  }

  .eco-about__quote {
    padding: 18px;
  }

  .eco-about__cards {
    gap: 15px;
  }

  .eco-about__card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-about__card {
    transition: none;
  }
}


.eco-method {
  --eco-green: #005322;
  --eco-green-dark: #003d19;
  --eco-green-light: #eaf6ed;
  --eco-green-soft: #f4faf5;
  --eco-text: #263029;
  --eco-muted: #647068;
  --eco-border: #dce9df;

  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  color: var(--eco-text);
  
}

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

.eco-method__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eco-method__heading {
  max-width: 790px;
  margin: 0 auto 62px;
  text-align: center;
}

.eco-method__label {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border: 1px solid #d6eadb;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eco-method__title {
  margin: 22px 0 20px;
  color: var(--eco-green-dark);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.eco-method__intro {
  margin: 0;
  color: var(--eco-muted);
  font-size: 18px;
  line-height: 1.7;
}

.eco-method__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: start;
  gap: 42px;
}

.eco-method__calculation {
  padding: 34px;
  background: var(--eco-green-soft);
  border: 1px solid var(--eco-border);
  border-radius: 25px;
}

.eco-method__steps {
  display: grid;
  gap: 12px;
}

.eco-method__step {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--eco-border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(20, 61, 32, 0.04);
}

.eco-method__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  flex: 0 0 42px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eco-method__step h3 {
  margin: 0 0 5px;
  color: var(--eco-green-dark);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.eco-method__step p {
  margin: 0;
  color: var(--eco-muted);
  font-size: 14px;
  line-height: 1.6;
}

.eco-method__operator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: -4px auto;
  color: var(--eco-green);
  background: #ffffff;
  border: 1px solid var(--eco-border);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.eco-method__result {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-top: 24px;
  padding: 25px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--eco-green-dark),
      var(--eco-green)
    );
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 83, 34, 0.2);
}

.eco-method__result-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--eco-green-dark);
  background: #ffffff;
  border-radius: 14px;
}

.eco-method__result-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.eco-method__result-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eco-method__result h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
}

.eco-method__result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.eco-method__transparency {
  position: sticky;
  top: 30px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--eco-border);
  border-radius: 25px;
  box-shadow:
    0 24px 65px rgba(19, 63, 34, 0.09),
    0 4px 14px rgba(19, 63, 34, 0.04);
}

.eco-method__transparency::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--eco-green),
      #40bc6a
    );
  border-radius: 0 0 999px 999px;
}

.eco-method__transparency-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.eco-method__transparency-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border-radius: 14px;
}

.eco-method__transparency-icon svg {
  display: block;
  width: 25px;
  height: 25px;
}

.eco-method__transparency-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--eco-green);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eco-method__transparency h3 {
  margin: 0;
  color: var(--eco-green-dark);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
}

.eco-method__transparency-lead {
  margin: 0 0 24px;
  color: var(--eco-muted);
  font-size: 15px;
  line-height: 1.7;
}

.eco-method__transparency-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-method__transparency-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-method__transparency-list li::marker {
  content: "";
}

.eco-method__transparency-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  margin-top: 1px;
  color: #ffffff;
  background: var(--eco-green);
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.eco-method__transparency-list p {
  margin: 0;
  color: var(--eco-muted);
  font-size: 13px;
  line-height: 1.6;
}

.eco-method__notice {
  margin-top: 26px;
  padding: 18px 19px;
  background: var(--eco-green-soft);
  border: 1px solid var(--eco-border);
  border-radius: 14px;
}

.eco-method__notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--eco-green-dark);
  font-size: 13px;
  line-height: 1.4;
}

.eco-method__notice p {
  margin: 0;
  color: var(--eco-muted);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 950px) {
  .eco-method {
    padding: 85px 22px;
  }

  .eco-method__heading {
    margin-bottom: 48px;
  }

  .eco-method__layout {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .eco-method__transparency {
    position: relative;
    top: auto;
  }
}

@media (max-width: 600px) {
  .eco-method {
    padding: 65px 16px;
  }

  .eco-method__title {
    font-size: 36px;
  }

  .eco-method__intro {
    font-size: 16px;
  }

  .eco-method__calculation,
  .eco-method__transparency {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .eco-method__step {
    padding: 17px;
  }

  .eco-method__step-number {
    width: 37px;
    flex-basis: 37px;
  }

  .eco-method__result {
    padding: 21px;
  }

  .eco-method__transparency-header {
    flex-direction: column;
  }

  .eco-method__transparency h3 {
    font-size: 21px;
  }
}



.eco-benefits {
  --eco-green: #005322;
  --eco-green-dark: #003d19;
  --eco-green-light: #eaf6ed;
  --eco-green-soft: #f4faf5;
  --eco-text: #263029;
  --eco-muted: #647068;
  --eco-border: #dce9df;

  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  color: var(--eco-text);
  background:
    radial-gradient(
      circle at 95% 15%,
      rgba(34, 197, 94, 0.1),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #f6faf7 0%,
      #ffffff 100%
    );
}

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

.eco-benefits__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eco-benefits__heading {
  max-width: 810px;
  margin: 0 auto 58px;
  text-align: center;
}

.eco-benefits__label {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border: 1px solid #d6eadb;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eco-benefits__title {
  margin: 22px 0 20px;
  color: var(--eco-green-dark);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.eco-benefits__intro {
  margin: 0;
  color: var(--eco-muted);
  font-size: 18px;
  line-height: 1.7;
}

.eco-benefits__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.eco-benefits__card {
  min-height: 295px;
  padding: 27px;
  background: #ffffff;
  border: 1px solid var(--eco-border);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(20, 61, 32, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.eco-benefits__card:hover {
  transform: translateY(-5px);
  border-color: #c5ddca;
  box-shadow: 0 20px 48px rgba(20, 61, 32, 0.11);
}

.eco-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  color: var(--eco-green);
  background: var(--eco-green-light);
  border-radius: 14px;
}

.eco-benefits__icon svg {
  display: block;
  width: 25px;
  height: 25px;
}

.eco-benefits__card h3 {
  margin: 23px 0 11px;
  color: var(--eco-green-dark);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.eco-benefits__card p {
  margin: 0;
  color: var(--eco-muted);
  font-size: 14px;
  line-height: 1.68;
}

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

.eco-benefits__audience {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border-radius: 24px;
}

.eco-benefits__audience--guest {
  color: var(--eco-text);
  background: #ffffff;
  border: 1px solid var(--eco-border);
  box-shadow: 0 18px 48px rgba(20, 61, 32, 0.07);
}

.eco-benefits__audience--structure {
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--eco-green-dark),
      var(--eco-green)
    );
  box-shadow: 0 22px 55px rgba(0, 83, 34, 0.19);
}

.eco-benefits__audience::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border: 35px solid rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.eco-benefits__audience--structure::after {
  border-color: rgba(255, 255, 255, 0.07);
}

.eco-benefits__audience-label {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--eco-green);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eco-benefits__audience--structure
.eco-benefits__audience-label {
  color: rgba(255, 255, 255, 0.72);
}

.eco-benefits__audience h3 {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 0 14px;
  color: var(--eco-green-dark);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.eco-benefits__audience--structure h3 {
  color: #ffffff;
}

.eco-benefits__audience > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--eco-muted);
  font-size: 15px;
  line-height: 1.7;
}

.eco-benefits__audience--structure > p {
  color: rgba(255, 255, 255, 0.79);
}

.eco-benefits__audience ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.eco-benefits__audience li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #4f5d53;
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}

.eco-benefits__audience li::marker {
  content: "";
}

.eco-benefits__audience--structure li {
  color: rgba(255, 255, 255, 0.88);
}

.eco-benefits__audience li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #ffffff;
  background: var(--eco-green);
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.eco-benefits__audience--structure li span {
  color: var(--eco-green-dark);
  background: #ffffff;
}


/* Conclusione */

.eco-conclusion {
  --eco-green: #005322;
  --eco-green-dark: #003d19;

  position: relative;
  padding: 105px 24px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(74, 225, 118, 0.18),
      transparent 27%
    ),
    radial-gradient(
      circle at 85% 90%,
      rgba(74, 225, 118, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #002e13,
      var(--eco-green)
    );
}

.eco-conclusion::before,
.eco-conclusion::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.eco-conclusion::before {
  top: -180px;
  left: -130px;
  width: 430px;
  height: 430px;
}

.eco-conclusion::after {
  right: -180px;
  bottom: -230px;
  width: 520px;
  height: 520px;
}

.eco-conclusion__inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.eco-conclusion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  color: var(--eco-green);
  background: #ffffff;
  border-radius: 19px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.17);
}

.eco-conclusion__icon svg {
  display: block;
  width: 34px;
  height: 34px;
}

.eco-conclusion__label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eco-conclusion__title {
  margin: 20px 0;
  color: #ffffff;
  font-size: clamp(37px, 5vw, 59px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.eco-conclusion__text {
  max-width: 730px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.79);
  font-size: 17px;
  line-height: 1.75;
}

.eco-conclusion__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  margin-top: 32px;
  padding: 16px 28px;
  color: var(--eco-green-dark);
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.18);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.eco-conclusion__button:hover,
.eco-conclusion__button:focus-visible {
  color: var(--eco-green-dark);
  background: #eaf6ed;
  transform: translateY(-2px);
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.23);
  outline: none;
}

.eco-conclusion__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}


/* Responsive */

@media (max-width: 1000px) {
  .eco-benefits {
    padding: 85px 22px;
  }

  .eco-benefits__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eco-benefits__card {
    min-height: 270px;
  }
}

@media (max-width: 760px) {
  .eco-benefits__audiences {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .eco-benefits__audience {
    padding: 30px;
  }

  .eco-conclusion {
    padding: 80px 20px;
  }
}

@media (max-width: 600px) {
  .eco-benefits {
    padding: 65px 16px;
  }

  .eco-benefits__heading {
    margin-bottom: 42px;
  }

  .eco-benefits__title {
    font-size: 36px;
  }

  .eco-benefits__intro {
    font-size: 16px;
  }

  .eco-benefits__cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .eco-benefits__card {
    min-height: auto;
    padding: 24px;
  }

  .eco-benefits__audience {
    padding: 27px 22px;
    border-radius: 20px;
  }

  .eco-benefits__audience h3 {
    font-size: 24px;
  }

  .eco-conclusion {
    padding: 68px 16px;
  }

  .eco-conclusion__title {
    font-size: 37px;
  }

  .eco-conclusion__text {
    font-size: 15px;
  }

  .eco-conclusion__button {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-benefits__card,
  .eco-conclusion__button {
    transition: none;
  }
}





/* 1. Testi sopra sfondi verde scuro sempre bianchi */

.eco-info-hero__content .eco-info-hero__text,
.eco-info-hero__content .eco-info-hero__secondary {
  color: #ffffff !important;
}

.eco-info-hero__secondary,
.eco-method__result p,
.eco-benefits__audience--structure > p,
.eco-conclusion__text {
  opacity: 0.85;
}


/* 2. Riduzione consistente dello spazio tra le sezioni */

.eco-about,
.eco-method,
.eco-benefits {
  margin: 0 !important;
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

.eco-info-hero {
  margin-bottom: 0 !important;
}

.eco-conclusion {
  margin-top: 0 !important;
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}


/* Riduzione degli spazi interni più ampi */

.eco-about__cards {
  margin-top: 42px !important;
}

.eco-method__heading,
.eco-benefits__heading {
  margin-bottom: 40px !important;
}

.eco-benefits__audiences {
  margin-top: 42px !important;
}


/* 3. Sfondo bianco per tutte le sezioni centrali */

.eco-about,
.eco-method,
.eco-benefits {
  background: #ffffff !important;
}


/* Rimozione delle decorazioni verdi di sfondo */

.eco-about::before,
.eco-method::before,
.eco-method::after,
.eco-benefits::before,
.eco-benefits::after {
  display: none !important;
}


/* Separazione leggera tra le sezioni, senza sfondi colorati */

.eco-about,
.eco-method,
.eco-benefits {
  border-bottom: 1px solid #edf1ee;
}


/* Mobile */

@media (max-width: 600px) {
  .eco-about,
  .eco-method,
  .eco-benefits {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .eco-conclusion {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .eco-about__cards,
  .eco-benefits__audiences {
    margin-top: 32px !important;
  }

  .eco-method__heading,
  .eco-benefits__heading {
    margin-bottom: 32px !important;
  }
}




/* Ripristino colori del contatore Live Impact nel primo blocco */

.eco-info-hero .eco-live-card {
  color: #263029 !important;
}

.eco-info-hero .eco-live-card__value strong {
  color: #17201a !important;
  opacity: 1 !important;
}

.eco-info-hero .eco-live-card__value span {
  color: #005322 !important;
  opacity: 1 !important;
}

.eco-info-hero .eco-live-card__description {
  color: #4e5c52 !important;
  opacity: 1 !important;
}

.eco-info-hero .eco-live-card__note {
  color: #6e7a71 !important;
  opacity: 1 !important;
}

.eco-info-hero .eco-live-card__powered {
  color: #8a948c !important;
  opacity: 1 !important;
}

.eco-info-hero .eco-live-card__status {
  color: #005322 !important;
}

.eco-info-hero .eco-live-card__icon {
  color: #005322 !important;
}




/* Testo bianco nel risultato della metodologia */

.eco-method .eco-method__result,
.eco-method .eco-method__result h3,
.eco-method .eco-method__result p,
.eco-method .eco-method__result-label {
  color: #ffffff !important;
  opacity: 1 !important;
}

.eco-method .eco-method__result p {
  color: rgba(255, 255, 255, 0.82) !important;
}


/* Testi bianchi nel blocco conclusivo */

.eco-conclusion,
.eco-conclusion .eco-conclusion__label,
.eco-conclusion .eco-conclusion__title,
.eco-conclusion .eco-conclusion__text,
.eco-conclusion .eco-conclusion__note {
  color: #ffffff !important;
}

.eco-conclusion .eco-conclusion__text {
  color: rgba(255, 255, 255, 0.84) !important;
  opacity: 1 !important;
}

.eco-conclusion .eco-conclusion__label,
.eco-conclusion .eco-conclusion__note {
  color: rgba(255, 255, 255, 0.68) !important;
  opacity: 1 !important;
}


/* Pulsante conclusivo */

.eco-conclusion a.eco-conclusion__button,
.eco-conclusion a.eco-conclusion__button:link,
.eco-conclusion a.eco-conclusion__button:visited {
  color: #003d19 !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

.eco-conclusion a.eco-conclusion__button:hover,
.eco-conclusion a.eco-conclusion__button:focus {
  color: #003d19 !important;
  background-color: #eaf6ed !important;
}



/* Testo bianco nel riquadro verde "Per la struttura" */

.eco-benefits .eco-benefits__audience--structure > p,
.eco-benefits .eco-benefits__audience--structure p {
  color: rgba(255, 255, 255, 0.84) !important;
  opacity: 1 !important;
}





