:root {
  --color-primary: #7FBF1F;
  --color-primary-bright: #A6D925;
  --color-primary-light: #C8EF4A;
  --color-primary-dark: #2F6B1F;
  --color-primary-deep: #174A24;
  --color-bg: #F8F7EF;
  --color-bg-soft: #F3EFE3;
  --color-card: #FFFFFF;
  --color-text: #173322;
  --color-text-muted: #5F6F63;
  --color-border: #DDE6C8;
  --radius-card: 28px;
  --radius-button: 999px;
  --shadow-soft: 0 18px 55px rgba(23, 74, 36, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 86px 0; }
.soft { background: var(--color-bg-soft); }
.section-head { max-width: 720px; margin-bottom: 30px; }
.eyebrow { display: inline-flex; color: var(--color-primary-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; margin-bottom: 10px; }
h1, h2, h3, p { margin-top: 0; overflow-wrap: break-word; }
h1 { font-size: clamp(38px, 5vw, 68px); line-height: 1.02; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.12; margin-bottom: 16px; }
h3 { font-size: 21px; line-height: 1.25; margin-bottom: 10px; }
p { color: var(--color-text-muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 247, 239, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 230, 200, .8);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.brand img { width: 89px; height: auto; }
.main-nav { display: flex; gap: 22px; margin-left: auto; font-weight: 700; font-size: 14px; color: var(--color-text-muted); }
.main-nav a:hover { color: var(--color-primary-dark); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-link {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--color-border); border-radius: 50%; background: #fff; padding: 11px; }
.burger span { display: block; height: 2px; background: var(--color-primary-deep); margin: 5px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: var(--radius-button);
  border: 1px solid var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-bright));
  color: var(--color-primary-deep);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(47, 107, 31, .18); }
.btn-ghost { background: #fff; border-color: var(--color-border); color: var(--color-primary-deep); }
.btn-small { min-height: 40px; padding: 9px 16px; font-size: 14px; }

.hero { padding: 58px 0 78px; background:
  radial-gradient(circle at 86% 12%, rgba(200, 239, 74, .35), transparent 32%),
  linear-gradient(180deg, #fbfaf4 0%, var(--color-bg) 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); align-items: center; gap: 50px; min-height: calc(100vh - 86px); }
.hero-copy p { max-width: 620px; font-size: 20px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.badges span {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  padding: 8px 13px;
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 13px;
}
.hero-actions, .card-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  background: linear-gradient(145deg, #eef8d5, #ffffff);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(127, 191, 31, .25);
  border-radius: 42% 58% 45% 55%;
}
.hero-machine { position: absolute; width: 74%; right: 6%; top: 7%; border-radius: 28px; box-shadow: 0 18px 50px rgba(23, 74, 36, .15); }
.hero-food { position: absolute; width: 48%; left: 6%; bottom: 7%; border-radius: 24px; box-shadow: 0 18px 45px rgba(23, 74, 36, .18); }

.card-grid { display: grid; gap: 18px; }
.card-grid.six { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-card, .plain-card, .kit-card, .product-card, .lead-form, .modal-panel, .faq details {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 32px rgba(23, 74, 36, .07);
}
.feature-card, .plain-card, .kit-card { padding: 24px; }
.feature-card { position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card::before, .dry-grid span::before {
  content: "";
  width: 34px; height: 34px;
  display: block;
  margin-bottom: 14px;
  border-radius: 50% 50% 50% 10%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { padding: 18px; display: flex; flex-direction: column; }
.product-card img { aspect-ratio: 4/3; object-fit: contain; background: #fbfbf6; border-radius: 22px; margin-bottom: 18px; }
.product-card ul { padding-left: 20px; margin: 0 0 20px; color: var(--color-text-muted); }
.product-card .card-actions { margin-top: auto; }

.quiz-section { background: linear-gradient(135deg, var(--color-primary-deep), var(--color-primary-dark)); color: #fff; }
.quiz-section p, .quiz-section .eyebrow { color: rgba(255,255,255,.76); }
.quiz-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: start; }
.quiz {
  background: #fff;
  color: var(--color-text);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.quiz-progress { height: 10px; background: var(--color-bg-soft); border-radius: 20px; overflow: hidden; margin-bottom: 26px; }
.quiz-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light)); border-radius: inherit; transition: width .25s ease; }
.quiz-step { display: none; }
.quiz-step.is-active { display: block; }
.quiz-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.quiz-option input { position: absolute; opacity: 0; }
.quiz-option span {
  display: block;
  min-height: 56px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}
.quiz-option input:checked + span { border-color: var(--color-primary); background: #f1fad8; }
.quiz-controls { display: flex; gap: 12px; justify-content: space-between; margin-top: 22px; }
.quiz-result { margin-top: 16px; padding: 16px; border-radius: 18px; background: #f1fad8; border: 1px solid var(--color-primary-light); }

label { display: grid; gap: 7px; color: var(--color-text); font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 13px 15px;
  color: var(--color-text);
  background: #fff;
}
textarea { resize: vertical; }
.lead-form { padding: 24px; display: grid; gap: 14px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-message { min-height: 24px; color: var(--color-primary-dark); font-weight: 800; }
.form-message.error { color: #a33; }

.dry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dry-grid span {
  display: flex; align-items: center; gap: 12px;
  min-height: 78px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-weight: 900;
}
.dry-grid span::before { flex: 0 0 30px; margin: 0; width: 30px; height: 30px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.info-list { display: grid; gap: 12px; }
.info-list p { margin: 0; padding: 16px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--color-border); color: var(--color-text); font-weight: 800; }
.faq { display: grid; gap: 12px; }
.faq details { padding: 0 22px; }
.faq summary { min-height: 64px; display: flex; align-items: center; cursor: pointer; font-weight: 900; }
.faq p { padding-bottom: 20px; }
.contact-band { background: linear-gradient(180deg, var(--color-bg-soft), var(--color-bg)); }

.site-footer { background: var(--color-primary-deep); color: #fff; padding: 46px 0; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
.footer-grid div { display: grid; gap: 8px; align-content: start; }
.footer-grid img { filter: drop-shadow(0 8px 18px rgba(0,0,0,.2)); }

.float-contact { position: fixed; right: 18px; bottom: 20px; z-index: 60; display: grid; gap: 8px; justify-items: end; }
.float-toggle { display: none; border: 0; border-radius: var(--radius-button); padding: 13px 18px; background: var(--color-primary); color: var(--color-primary-deep); font-weight: 900; box-shadow: var(--shadow-soft); }
.float-list { display: grid; gap: 8px; }
.float-list a { min-width: 126px; padding: 11px 16px; border-radius: var(--radius-button); background: #fff; border: 1px solid var(--color-border); box-shadow: 0 10px 30px rgba(23, 74, 36, .12); font-weight: 900; text-align: center; }

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 70;
  width: min(560px, calc(100% - 40px));
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.cookie-banner p { margin: 0; font-size: 14px; }
.cookie-banner a { color: var(--color-primary-dark); font-weight: 900; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(23, 51, 34, .55); }
.modal.is-open { display: flex; }
.modal-panel { width: min(520px, 100%); padding: 28px; position: relative; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; cursor: pointer; font-size: 24px; }

.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 80% 20%, rgba(166,217,37,.35), transparent 34%), var(--color-bg); }
.thanks-card { width: min(620px, 100%); padding: 44px; border-radius: 32px; background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); text-align: center; }
.thanks-card img { margin: 0 auto 24px; }

/* Original ECOLAND visual parity overrides */
:root {
  --primary: #7FBF1F;
  --primary-hover: #2F6B1F;
  --primary-light: #F1F8DE;
  --text: #173322;
  --muted: #5F6F63;
  --bg: #F8F7EF;
  --card: #fff;
  --cream: #FFFDF7;
  --border: #DDE6C8;
  --shadow: 0 18px 45px rgba(47, 107, 31, .10);
  --rose: #C0392B;
  --color-primary: var(--primary);
  --color-primary-bright: #A6D925;
  --color-primary-light: #C8EF4A;
  --color-primary-dark: var(--primary-hover);
  --color-primary-deep: var(--text);
  --color-bg: var(--bg);
  --color-bg-soft: #F3EFE3;
  --color-card: var(--card);
  --color-text: var(--text);
  --color-text-muted: var(--muted);
  --color-border: var(--border);
  --radius-card: 28px;
  --radius-button: 999px;
}

body {
  background: radial-gradient(circle at top left, rgba(234, 220, 199, .75), transparent 34rem), var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

.container {
  width: min(100% - 32px, 1280px);
}

.section {
  padding: 64px 0;
}

h1,
h2,
h3,
.brand,
.product-title,
.price,
.footer-brand {
  font-family: Manrope, sans-serif;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(232, 220, 200, .75);
  background: rgba(248, 244, 236, .92);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 80px;
  min-height: 80px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
}

.brand img {
  width: 89px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 700;
  color: rgba(31, 47, 36, .76);
}

.desktop-nav a {
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dealer-pill {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 9px 14px;
  max-width: 270px;
  overflow: hidden;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-btn,
.lang-link,
.mobile-head-icon,
.mobile-lang,
.mobile-menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
}

.icon-btn:hover,
.lang-link:hover,
.mobile-head-icon:hover,
.mobile-lang:hover,
.mobile-menu-toggle:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

.cart-link.icon-btn {
  background: var(--text);
  color: #fff;
}

.cart-badge {
  position: absolute;
  right: -5px;
  top: -5px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 0 5px;
}

.btn {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(47, 107, 31, .14);
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-ghost:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.hero {
  min-height: auto;
  padding: 64px 0;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: 44px;
  align-items: center;
  min-height: auto;
}

.hero h1 {
  max-width: 820px;
  margin: 24px 0 18px;
  font-size: clamp(32px, 4.35vw, 56px);
  line-height: 1.12;
}

.hero-copy p {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.8;
}

.badges {
  gap: 8px;
  margin-bottom: 0;
}

.badges span,
.hero .badges span {
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: rgba(31, 47, 36, .75);
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 800;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-visual {
  min-height: 0;
  aspect-ratio: 1.25 / 1;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  display: none;
}

.hero-machine {
  width: 74%;
  right: 5%;
  top: 6%;
  border-radius: 24px;
  box-shadow: none;
}

.hero-food {
  width: 43%;
  left: 24px;
  bottom: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section-head h2 {
  color: var(--text);
}

.feature-card,
.plain-card,
.kit-card,
.product-card,
.lead-form,
.modal-panel,
.faq details,
.quiz,
.dry-grid span,
.info-list p {
  border-color: var(--border);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.feature-card,
.plain-card,
.kit-card {
  padding: 24px;
}

.landing-price {
  margin: 18px 0;
  color: var(--primary-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.kit-card,
.product-card {
  display: flex;
  flex-direction: column;
}

.kit-card .btn,
.product-card .card-actions {
  margin-top: auto;
}

.feature-card,
.plain-card,
.kit-card,
.product-card,
.faq details,
.dry-grid span {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.feature-card:hover,
.plain-card:hover,
.kit-card:hover,
.product-card:hover,
.faq details:hover,
.dry-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 191, 31, .55);
  background: #fff;
  box-shadow: 0 24px 60px rgba(47, 107, 31, .16);
}

.feature-card::before,
.dry-grid span::before {
  background: var(--primary-light);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 8px #fff;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  border-radius: 0;
  background: #fff;
  margin: 0;
}

.product-card h3,
.product-card p,
.product-card ul,
.product-card .card-actions {
  margin-left: 20px;
  margin-right: 20px;
}

.product-card h3 {
  margin-top: 20px;
}

.product-card .card-actions {
  margin-bottom: 20px;
}

.quiz-section {
  background: #fff;
  color: var(--text);
}

.quiz-section p,
.quiz-section .eyebrow {
  color: var(--muted);
}

.quiz {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.quiz-progress {
  height: 10px;
  background: #fff;
  border: 1px solid var(--border);
}

.quiz-progress span {
  background: var(--primary);
}

.quiz-option span {
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.quiz-option span:hover,
.quiz-option input:checked + span {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-hover);
}

input,
textarea {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(127, 191, 31, .16);
  outline: none;
}

.form-message {
  color: var(--primary-hover);
}

.form-message.error {
  color: var(--rose);
}

.site-footer {
  margin-top: 40px;
  padding: 48px 0;
  background: #fff;
  color: var(--text);
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--primary-hover);
}

.footer-grid img {
  filter: none;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 60;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.floating-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
}

.floating-toggle:hover,
.floating-contact.open .floating-toggle {
  background: var(--primary-hover);
}

.floating-list {
  display: grid;
  min-width: 188px;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-list[hidden] {
  display: none !important;
}

.floating-list a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
  width: 100%;
  border-radius: 999px;
  background: var(--btn);
  color: #fff;
  padding: 12px 16px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(47, 107, 31, .14);
}

.floating-list a:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(.98);
}

.cookie-banner {
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  width: auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .14);
  padding: 16px 18px;
}

.cookie-banner:not([hidden]) {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--primary-hover);
  font-weight: 800;
}

.cookie-banner button {
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-shop-header,
.mobile-drawer,
.mobile-drawer-backdrop,
.mobile-nav {
  display: none;
}
