:root {
  --text: #24302c;
  --muted: #66756e;
  --bg: #ffffff;
  --soft: #f3f7f5;
  --mint: #45b39a;
  --mint-dark: #2c8f79;
  --blue-shape: #d8e9f6;
  --peach-shape: #f4d4b8;
  --line: rgba(36, 48, 44, 0.1);
  --shadow: 0 18px 40px rgba(44, 143, 121, 0.12);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", system-ui, sans-serif;
  --w: min(1140px, calc(100% - 2rem));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
p { margin: 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Header — always readable on white */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mint-dark);
}

.nav {
  display: none;
  gap: 1.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.nav a:hover { color: var(--mint-dark); }

.header-phone {
  display: none;
  font-weight: 800;
  color: var(--mint-dark);
}

.burger {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  gap: 5px;
  place-content: center;
  cursor: pointer;
}

.burger span {
  width: 1rem;
  height: 1.5px;
  background: var(--text);
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: 4.2rem 1rem auto;
  z-index: 49;
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.84rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--mint-dark);
}

.btn-line {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(69, 179, 154, 0.45);
  color: var(--mint-dark);
  border-radius: 14px;
  text-transform: none;
}

.btn-line:hover { background: rgba(69, 179, 154, 0.08); }

.wrap {
  position: relative;
  z-index: 3;
  width: var(--w);
  margin: 0 auto;
}

/* One tall forest image for the whole scroll — no section seams */
.forest-band {
  position: relative;
  overflow: clip;
  background: #f7faf8;
}

.forest-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.forest-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.forest-band__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.78) 15%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.78) 85%,
    rgba(255, 255, 255, 0.12) 100%
  );
}

.forest-band > .hero,
.forest-band > .trust,
.forest-band > .section {
  position: relative;
  z-index: 2;
  background: transparent;
}

/* White bridge + soft fades only between catalog and steps */
.forest-band > .seam-white,
.seam-white {
  position: relative;
  z-index: 3;
  height: 56px;
  background: #fff;
}

.seam-fade-bottom {
  padding-bottom: clamp(4.5rem, 9vw, 7rem) !important;
}

.seam-fade-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 22vw, 220px);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 35%,
    rgba(255, 255, 255, 0.85) 70%,
    #ffffff 100%
  );
}

.seam-fade-top {
  padding-top: clamp(4.5rem, 9vw, 7rem) !important;
}

.seam-fade-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(120px, 22vw, 220px);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 30%,
    rgba(255, 255, 255, 0.45) 65%,
    rgba(255, 255, 255, 0) 100%
  );
}

.seam-fade-bottom > .wrap,
.seam-fade-top > .wrap {
  position: relative;
  z-index: 4;
}

/* Hero — split layout, NOT full viewport empty */
.hero {
  position: relative;
  padding: 1.5rem 0 2.2rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.badge {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(69, 179, 154, 0.12);
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.brand {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 0.95;
  color: var(--mint-dark);
  margin-bottom: 0.55rem;
}

.hero h1 {
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.lead {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 40ch;
}

.hero-points {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--mint);
}

.hero-form {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}

.hero-form label {
  display: grid;
  gap: 0.3rem;
}

.hero-form label span,
.form label span {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-form input,
.form input {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: #fff;
}

.hero-form input:focus,
.form input:focus { border-color: var(--mint); }

.note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.hero-contacts a {
  font-weight: 800;
  color: var(--mint-dark);
}

.hero-visual {
  position: relative;
  min-height: 300px;
  padding: 1.2rem 0.4rem 1.4rem;
}

.shape { position: absolute; z-index: 0; }

.shape-blue {
  top: 10%;
  right: 0;
  width: min(90%, 400px);
  height: 70%;
  background: var(--blue-shape);
  border-radius: 28px;
}

.shape-dots {
  top: 16%;
  right: 0.3rem;
  width: 64px;
  height: 110px;
  background-image: radial-gradient(circle, #c5ced6 1.6px, transparent 1.7px);
  background-size: 12px 12px;
}

.shape-peach {
  right: 8%;
  bottom: 6%;
  width: 140px;
  height: 100px;
  background: var(--peach-shape);
  border-radius: 48% 52% 60% 40% / 45% 50% 50% 55%;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(94%, 460px);
  margin-left: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 100%);
}

.hero-photo img {
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  object-fit: cover;
}

.hero-photo-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255,255,255,.94);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.hero-photo-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--mint-dark);
  line-height: 1;
}

.hero-photo-card span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* Trust */
.trust {
  background: transparent;
  border-block: 1px solid transparent;
  padding: 1.1rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  text-align: center;
}

.trust-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--mint-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-grid span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Sections — transparent over continuous forest */
.section {
  position: relative;
  padding: clamp(3.4rem, 7vw, 5.2rem) 0;
  overflow: hidden;
}

.tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-dark);
}

.tag.light { color: #d9f28b; }

.heading {
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

.heading h2,
.promo-copy h2,
.contacts-grid h2,
.modal-panel h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  margin-bottom: 0.7rem;
}

.heading p,
.contacts-grid > div > p {
  color: var(--muted);
}

.why-list,
.catalog,
.steps,
.reviews {
  display: grid;
  gap: 0.9rem;
}

.why-list article,
.steps li,
.reviews article {
  padding: 1.15rem;
  background: var(--soft);
  border-radius: 18px;
}

.why-list h3,
.steps h3,
.item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.why-list p,
.steps p {
  color: var(--muted);
  font-size: 0.93rem;
}

.item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.item > div { padding: 1.05rem; }

.item ul {
  list-style: none;
  margin: 0 0 0.95rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.item li {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.88rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.item li span { color: var(--muted); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
}

.steps span {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: #fff;
  font-weight: 800;
}

/* Promo selling block */
.promo-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.promo-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(22, 74, 62, 0.08);
  backdrop-filter: blur(6px);
}

.promo-visual {
  border-radius: 20px;
  overflow: hidden;
  background: #e8f0ea;
  min-height: 260px;
}

.promo-visual img {
  width: 100%;
  height: clamp(260px, 40vw, 380px);
  object-fit: cover;
}

.promo-copy h2 {
  max-width: 16ch;
  margin-bottom: 0.9rem;
}

.promo-copy h2 span {
  color: var(--mint-dark);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.75rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.promo-gift {
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 700;
}

.promo-points {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.promo-points li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 600;
  color: var(--muted);
}

.promo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mint);
}

.btn-orange {
  background: linear-gradient(135deg, #ff8a3d, #f06a1a);
  color: #fff;
  box-shadow: 0 12px 24px rgba(240, 106, 26, 0.28);
  margin-bottom: 1.2rem;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #ff7a24, #e05e12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  max-width: 360px;
}

.stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--mint-dark);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stats span { font-size: 0.78rem; color: var(--muted); }

.reviews p {
  font-size: 1.02rem;
  margin-bottom: 0.7rem;
}

.reviews footer {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

/* Contacts */
.contacts-section {
  background:
    radial-gradient(700px 280px at 90% 10%, rgba(217, 242, 139, 0.16), transparent 55%),
    linear-gradient(145deg, #1f6b5a 0%, #164a3e 55%, #123c33 100%);
  color: #fff;
  padding: clamp(3.6rem, 7vw, 5.5rem) 0;
}

.contacts-grid {
  display: grid;
  gap: 1.8rem;
  align-items: stretch;
}

.contacts-copy > p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 36ch;
}

.contacts-benefits {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.contacts-benefits li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contacts-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #d9f28b;
}

.phones {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.2rem;
}

.phones a {
  font-family: var(--display);
  font-size: 1.25rem;
  color: #d9f28b;
}

.address {
  margin-top: 0.9rem !important;
  font-size: 0.88rem;
  opacity: 0.85;
}

.form { display: grid; gap: 0.75rem; }

.lead-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.6rem 1.4rem 1.45rem;
  background: #fff;
  color: var(--text);
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.lead-card__head h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
  color: var(--mint-dark);
}

.lead-card__head p {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.lead-card .field {
  display: grid;
  gap: 0.35rem;
}

.lead-card .field span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-card .field input {
  min-height: 3.15rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(36, 48, 44, 0.12);
  border-radius: 14px;
  background: #f5f8f6;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.lead-card .field input:focus {
  border-color: var(--mint);
  background: #fff;
}

.btn-lead {
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.15rem;
  background: linear-gradient(135deg, #49c2a6, #2c8f79);
  box-shadow: 0 12px 24px rgba(44, 143, 121, 0.28);
}

.btn-lead:hover {
  background: linear-gradient(135deg, #3eb396, #247a67);
}

.lead-card__note {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--muted);
}

.messengers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.msg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}

.msg:hover { transform: translateY(-1px); }

.msg-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #128c4a;
  border-color: rgba(37, 211, 102, 0.28);
}

.msg-tg {
  background: rgba(42, 171, 238, 0.12);
  color: #1a8ec4;
  border-color: rgba(42, 171, 238, 0.28);
}

.footer {
  background: #163428;
  color: rgba(255,255,255,.8);
  padding: 2.2rem 0 1.2rem;
}

.footer-inner {
  display: grid;
  gap: 1.1rem;
}

.footer .logo { color: #fff; }
.footer p { color: rgba(255,255,255,.65); margin-top: 0.4rem; }

.copy {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.84rem;
}

.modal[hidden], .toast[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(22, 52, 40, 0.5);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 1.45rem 1.25rem;
  box-shadow: var(--shadow);
}

.modal-panel > p {
  color: var(--muted);
  margin: 0.45rem 0 1rem;
}

.modal-close {
  position: absolute;
  top: 0.45rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--mint-dark);
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

@media (min-width: 760px) {
  .nav, .header-phone { display: flex; }
  .burger, .mobile-nav { display: none !important; }

  .hero { padding: 2rem 0 2.8rem; }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

  .hero-form {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .why-list { grid-template-columns: repeat(2, 1fr); }
  .catalog { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }

  .promo-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    padding: 1.4rem;
  }

  .hero-visual { min-height: 420px; }

  .promo-copy {
    padding-right: 0.5rem;
  }

  .contacts-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }

  .copy { grid-column: 1 / -1; }
}

@media (min-width: 1100px) {
  .why-list { grid-template-columns: repeat(3, 1fr); }
  .catalog { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 700px) {
  .forest-band__veil {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.9) 20%,
      rgba(255, 255, 255, 0.96) 50%,
      rgba(255, 255, 255, 0.9) 80%,
      rgba(255, 255, 255, 0.28) 100%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
