:root {
  --green: #2f7d58;
  --deep: #173f32;
  --mint: #dff4ea;
  --mint-2: #f2fbf6;
  --cream: #fffaf0;
  --warm: #d88b43;
  --ink: #24352f;
  --muted: #65766f;
  --line: #d7e7df;
  --shadow: 0 24px 70px rgba(23, 63, 50, 0.14);
  font-family: Inter, Arial, sans-serif;
  color: #24352f;
  background: #f8fcf8;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #f8fcf8 0%, #fffaf0 100%);
  color: var(--ink);
  line-height: 1.6;
}
a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.eh-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(248, 252, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 125, 88, 0.12);
}
.eh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  min-width: 230px;
}
.eh-brand:hover {
  text-decoration: none;
}
.eh-brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), #70b98f);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.eh-brand strong,
.eh-brand small {
  display: block;
}
.eh-brand small {
  font-size: 12px;
  color: var(--muted);
}
.eh-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.eh-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--deep);
  font-size: 15px;
}
.eh-nav a.is-active,
.eh-nav a:hover {
  background: var(--mint);
  text-decoration: none;
}
.eh-menu {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 9px 14px;
  color: var(--deep);
  font-weight: 700;
}
.eh-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: center;
  padding: clamp(54px, 7vw, 110px) clamp(18px, 6vw, 86px);
}
.eh-hero-copy h1,
.eh-page-intro h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  margin: 8px 0 24px;
  color: var(--deep);
  letter-spacing: -0.05em;
}
.eh-hero-copy p,
.eh-page-intro p {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 760px;
  color: #3d514a;
}
.eh-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--warm);
  font-size: 13px;
  margin: 0 0 12px;
}
.eh-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.eh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}
.eh-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.eh-btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(47, 125, 88, 0.24);
}
.eh-btn-secondary {
  background: #fff;
  color: var(--deep);
  border-color: var(--line);
}
.eh-hero-card {
  position: relative;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 15%, #ffffff 0 18%, transparent 19%),
    linear-gradient(145deg, var(--mint), #ffffff 56%, var(--cream));
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 125, 88, 0.13);
  overflow: hidden;
}
.eh-hero-card:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 60px;
  background: rgba(47, 125, 88, 0.08);
  right: -80px;
  bottom: -90px;
  transform: rotate(24deg);
}
.eh-hero-card span {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  color: var(--green);
}
.eh-hero-card strong {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.12;
  margin: 22px 0;
  color: var(--deep);
}
.eh-hero-card ul,
.eh-card ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.eh-hero-card li,
.eh-card li {
  margin: 10px 0;
  padding-left: 22px;
}
.eh-hero-card li:before,
.eh-card li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--warm);
  margin-left: -20px;
  margin-top: 9px;
}
.eh-section {
  padding: clamp(42px, 5vw, 76px) clamp(18px, 6vw, 86px);
}
.eh-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.eh-section h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  color: var(--deep);
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}
.eh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.eh-card,
.eh-steps article,
.eh-pricing article,
.eh-info-list article,
.eh-form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 42px rgba(23, 63, 50, 0.08);
}
.eh-card h3,
.eh-card h2,
.eh-steps h2,
.eh-steps h3,
.eh-info-list h2 {
  color: var(--deep);
  line-height: 1.18;
  margin: 12px 0;
}
.eh-price {
  display: inline-flex;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
  padding: 8px 12px;
}
.eh-link {
  font-weight: 900;
  color: var(--green);
}
.eh-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--deep), #2f7d58);
  color: #fff;
  margin: 20px clamp(18px, 6vw, 86px);
  border-radius: 34px;
}
.eh-band h2,
.eh-band p,
.eh-band .eh-kicker {
  color: #fff;
}
.eh-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.eh-stats span {
  display: block;
  min-width: 130px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 16px;
}
.eh-stats strong {
  display: block;
  font-size: 34px;
}
.eh-steps article span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}
.eh-page-intro {
  padding: clamp(54px, 7vw, 94px) clamp(18px, 6vw, 86px) 34px;
  background: linear-gradient(135deg, var(--mint-2), #fff);
}
.eh-products {
  align-items: stretch;
}
.eh-set-card {
  background: linear-gradient(180deg, #fff, var(--mint-2));
}
.eh-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.eh-pricing strong {
  font-size: 30px;
  color: var(--green);
}
.eh-info-list {
  display: grid;
  gap: 18px;
}
.eh-review p {
  font-size: 19px;
  color: #344941;
}
.eh-contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}
.eh-form {
  display: grid;
  gap: 16px;
}
.eh-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--deep);
}
.eh-form input,
.eh-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.eh-form input:focus,
.eh-form textarea:focus {
  outline: 3px solid rgba(47, 125, 88, 0.18);
  border-color: var(--green);
}
.eh-form-note {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}
.eh-legal {
  max-width: 940px;
}
.eh-legal h2 {
  margin-top: 32px;
}
.eh-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--mint-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.eh-cta p {
  max-width: 760px;
}
.eh-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 6vw, 86px);
  background: var(--deep);
  color: #e9fff4;
}
.eh-footer a {
  color: #fff;
}
.eh-footer p {
  color: #d8eee3;
}
.eh-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 18px;
}
.eh-cookie p {
  margin: 4px 0 0;
}
.eh-cookie.is-hidden {
  display: none;
}
@media (max-width: 980px) {
  .eh-menu {
    display: inline-flex;
  }
  .eh-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 14px;
    justify-content: flex-start;
  }
  .eh-nav.is-open {
    display: flex;
  }
  .eh-hero,
  .eh-contact {
    grid-template-columns: 1fr;
  }
  .eh-grid,
  .eh-pricing,
  .eh-footer {
    grid-template-columns: 1fr 1fr;
  }
  .eh-band,
  .eh-cta {
    grid-template-columns: 1fr;
  }
  .eh-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .eh-topbar {
    padding: 12px 16px;
  }
  .eh-brand small {
    display: none;
  }
  .eh-brand {
    min-width: auto;
  }
  .eh-hero,
  .eh-section,
  .eh-page-intro {
    padding-left: 16px;
    padding-right: 16px;
  }
  .eh-hero-copy h1,
  .eh-page-intro h1 {
    font-size: 39px;
  }
  .eh-grid,
  .eh-pricing,
  .eh-footer,
  .eh-stats {
    grid-template-columns: 1fr;
  }
  .eh-band {
    margin-left: 16px;
    margin-right: 16px;
  }
  .eh-cookie {
    display: grid;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .eh-actions {
    display: grid;
  }
  .eh-btn {
    width: 100%;
  }
}
