.cl-landing {
  --cl-green-900: #123b24;
  --cl-green-800: #1f5e36;
  --cl-green-700: #267444;
  --cl-green-500: #4f9d45;
  --cl-lime: #d7ec63;
  --cl-ink: #142019;
  --cl-text: #435145;
  --cl-muted: #f3f8ef;
  --cl-line: #dfead9;
  --cl-sky: #e7f2f6;
  color: var(--cl-text);
  background: #f7faf4;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.cl-landing h1,
.cl-landing h2,
.cl-landing h3 {
  color: var(--cl-ink);
  line-height: 1.08;
  margin: 0;
}

.cl-landing p {
  margin: 0;
}

.cl-hero {
  position: relative;
  padding: clamp(62px, 7vw, 98px) 0 clamp(78px, 8vw, 118px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 20%, rgba(183, 227, 109, 0.22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(46, 135, 82, 0.14), transparent 30%),
    linear-gradient(180deg, #f4faf0 0%, #ffffff 100%);
}

.cl-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -240px;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31, 106, 64, 0.1);
}

.cl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.cl-hero__content {
  width: min(720px, 100%);
}

.cl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(46, 135, 82, 0.22);
  border-radius: 999px;
  color: var(--cl-green-800);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 59, 36, 0.08);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cl-hero h1 {
  color: var(--cl-ink);
  max-width: 740px;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 800;
}

.cl-hero h1 span {
  color: var(--cl-green-700);
}

.cl-hero__lead {
  max-width: 660px;
  margin-top: 22px;
  color: #405348;
  font-size: 1.2rem;
  line-height: 1.75;
}

.cl-hero__visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(31, 106, 64, 0.12), rgba(183, 227, 109, 0.2)),
    #ffffff;
  box-shadow: 0 30px 70px rgba(7, 35, 22, 0.14);
}

.cl-hero__visual::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(31, 106, 64, 0.12);
  border-radius: 24px;
}

.cl-hero__visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(118%, 700px);
  max-width: none;
  border-radius: 24px;
  box-shadow: 0 28px 58px rgba(7, 35, 22, 0.18);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.cl-hero__note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(7, 35, 22, 0.14);
  backdrop-filter: blur(10px);
}

.cl-hero__note strong {
  color: var(--cl-green-800);
  font-size: 1.08rem;
}

.cl-hero__note span {
  color: var(--cl-text);
  font-size: 0.9rem;
}

.cl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--cl-green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cl-final .cl-eyebrow {
  color: var(--cl-lime);
}

.cl-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.cl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.cl-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.cl-btn:focus-visible,
.cl-link:focus-visible,
.cl-product a:focus-visible,
.cl-faq summary:focus-visible {
  outline: 3px solid rgba(215, 236, 99, 0.75);
  outline-offset: 3px;
}

.cl-btn--primary {
  color: #ffffff;
  background: var(--cl-green-700);
  box-shadow: 0 16px 34px rgba(18, 59, 36, 0.2);
}

.cl-btn--primary:hover {
  color: #ffffff;
  background: var(--cl-green-800);
}

.cl-btn--ghost {
  color: var(--cl-green-900);
  border-color: rgba(31, 106, 64, 0.24);
  background: #ffffff;
}

.cl-btn--ghost:hover {
  color: var(--cl-green-900);
  background: #edf7e7;
}

.cl-btn--light {
  color: var(--cl-green-900);
  background: #ffffff;
}

.cl-btn--light:hover {
  color: var(--cl-green-900);
  background: #eff7e9;
}

.cl-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 46px 0 0;
}

.cl-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cl-metrics dt {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
}

.cl-metrics dd {
  margin: 4px 0 0;
  color: #dcebd3;
  font-size: 0.92rem;
}

.cl-main {
  background: #f7faf4;
}

.cl-trust-band {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 0 clamp(56px, 7vw, 88px);
}

.cl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--cl-line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(7, 35, 22, 0.1);
}

.cl-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border-radius: 16px;
  background: #f8fbf5;
}

.cl-trust-item span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--cl-green-700);
  box-shadow: 0 12px 24px rgba(31, 106, 64, 0.22);
}

.cl-trust-item h2 {
  font-size: 1rem;
  font-weight: 900;
}

.cl-trust-item p {
  margin-top: 3px;
  color: var(--cl-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cl-section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.cl-section--products {
  padding-top: clamp(52px, 6vw, 82px);
}

.cl-section--muted {
  background: var(--cl-muted);
}

.cl-section--intro {
  padding-top: clamp(56px, 7vw, 88px);
}

.cl-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.cl-split h2,
.cl-section__header h2,
.cl-feature__content h2,
.cl-final h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
}

.cl-copy {
  display: grid;
  gap: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cl-section__header {
  max-width: 720px;
  margin-bottom: 34px;
}

.cl-section__header--inline {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.cl-link {
  color: var(--cl-green-700);
  font-weight: 800;
  text-decoration: none;
}

.cl-link:hover {
  color: var(--cl-green-900);
}

.cl-card-grid,
.cl-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cl-card,
.cl-product,
.cl-placeholder,
.cl-faq details {
  border: 1px solid var(--cl-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(37, 68, 41, 0.08);
}

.cl-card {
  min-height: 240px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cl-card:hover,
.cl-product:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 157, 69, 0.5);
  box-shadow: 0 24px 44px rgba(37, 68, 41, 0.12);
}

.cl-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--cl-green-800);
  background: #e8f3df;
  font-size: 1.25rem;
}

.cl-card h3,
.cl-step h3,
.cl-product h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.cl-card p,
.cl-step p,
.cl-product p,
.cl-feature__content p,
.cl-faq p {
  margin-top: 12px;
  line-height: 1.7;
}

.cl-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.cl-step {
  position: relative;
  padding: 26px 24px;
  border-left: 3px solid var(--cl-green-500);
  background: #ffffff;
}

.cl-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--cl-green-700);
  font-weight: 900;
}

.cl-product {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cl-product__image {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--cl-sky);
  overflow: hidden;
}

.cl-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.cl-product:hover .cl-product__image img {
  transform: scale(1.04);
}

.cl-product__body {
  padding: 20px;
}

.cl-product h3 a {
  color: var(--cl-ink);
  text-decoration: none;
}

.cl-product p {
  color: var(--cl-green-700);
  font-weight: 900;
}

.cl-product__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.cl-product__actions form {
  display: grid;
}

.cl-product__actions .cl-btn {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.cl-product__actions button.cl-btn {
  cursor: pointer;
}

.cl-placeholder {
  padding: 24px;
  color: var(--cl-text);
}

.cl-feature {
  background: #ffffff;
}

.cl-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.cl-feature__media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cl-muted);
}

.cl-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl-feature__content p {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.06rem;
}

.cl-faq {
  display: grid;
  gap: 14px;
}

.cl-faq details {
  padding: 20px 22px;
}

.cl-faq summary {
  cursor: pointer;
  color: var(--cl-ink);
  font-weight: 800;
}

.cl-section--modules {
  padding-top: 32px;
}

.cl-final {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--cl-green-900);
}

.cl-final__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cl-final h2 {
  max-width: 760px;
  color: #ffffff;
}

@media (max-width: 991px) {
  .cl-hero__grid {
    grid-template-columns: 1fr;
  }

  .cl-split,
  .cl-feature__grid {
    grid-template-columns: 1fr;
  }

  .cl-trust-grid,
  .cl-card-grid,
  .cl-product-grid,
  .cl-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cl-hero__visual {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .cl-hero {
    padding: 48px 0 78px;
  }

  .cl-hero h1 {
    font-size: 38px;
  }

  .cl-hero__lead {
    font-size: 1.04rem;
  }

  .cl-hero__visual {
    min-height: 300px;
    border-radius: 18px;
  }

  .cl-hero__visual img {
    width: 112%;
    border-radius: 16px;
  }

  .cl-hero__note {
    right: 14px;
    bottom: 14px;
    max-width: 220px;
    padding: 14px;
  }

  .cl-trust-band {
    margin-top: 0;
  }

  .cl-trust-grid {
    padding: 12px;
  }

  .cl-actions,
  .cl-product__actions,
  .cl-final__box,
  .cl-section__header--inline {
    align-items: stretch;
    flex-direction: column;
  }

  .cl-product__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cl-btn {
    width: 100%;
  }

  .cl-metrics,
  .cl-trust-grid,
  .cl-card-grid,
  .cl-product-grid,
  .cl-steps {
    grid-template-columns: 1fr;
  }

  .cl-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cl-btn,
  .cl-card,
  .cl-product,
  .cl-product__image img {
    transition: none;
  }

  .cl-btn:hover,
  .cl-card:hover,
  .cl-product:hover,
  .cl-product:hover .cl-product__image img {
    transform: none;
  }
}
