:root {
  --green-900: #20371a;
  --green-800: #31521f;
  --green-700: #4f772d;
  --green-100: #eef4e4;
  --brown-800: #7b4f22;
  --brown-600: #9b6a31;
  --gold-500: #f3ba1e;
  --cream-50: #fffdf6;
  --cream-100: #f7f2e6;
  --ink: #1c2418;
  --muted: #68705f;
  --line: rgba(32, 55, 26, 0.16);
  --shadow: 0 24px 80px rgba(32, 55, 26, 0.16);
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(170px, 260px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 246, 0.9);
  border-bottom: 1px solid rgba(32, 55, 26, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 246, 0.96);
  box-shadow: 0 12px 40px rgba(32, 55, 26, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: min(250px, 44vw);
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 180ms ease;
}

.nav a:hover::after {
  width: 100%;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switcher select {
  min-width: 82px;
  min-height: 42px;
  padding: 0 30px 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--cream-50);
  background: var(--green-700);
  cursor: pointer;
  font-weight: 900;
}

.language-switcher select:focus {
  outline: 2px solid rgba(243, 186, 30, 0.55);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  overflow: hidden;
  padding: calc(var(--header-height) + 74px) clamp(18px, 5vw, 80px) 42px;
  color: var(--cream-50);
  background:
    linear-gradient(135deg, rgba(32, 55, 26, 0.98), rgba(49, 82, 31, 0.96) 52%, rgba(123, 79, 34, 0.92)),
    var(--green-900);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-bottom: 92px;
}

.hero__visual {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  gap: 18px;
  width: min(100%, 460px);
  margin-left: auto;
  padding: 14px;
  color: var(--green-900);
  background: rgba(255, 253, 246, 0.92);
  border: 1px solid rgba(255, 253, 246, 0.32);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(14, 26, 12, 0.24);
}

.hero__photo {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.hero__visual-card {
  padding: 20px;
  border: 1px solid rgba(32, 55, 26, 0.12);
  border-radius: 8px;
  background: var(--cream-50);
}

.hero__visual-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--brown-800);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__visual-card strong {
  display: block;
  color: var(--green-900);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.color-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.color-strip span {
  height: 10px;
  border-radius: 999px;
}

.color-strip span:nth-child(1) {
  background: var(--green-700);
}

.color-strip span:nth-child(2) {
  background: var(--gold-500);
}

.color-strip span:nth-child(3) {
  background: var(--brown-800);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 253, 246, 0.88);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--green-900);
  background: var(--gold-500);
  box-shadow: 0 16px 36px rgba(243, 186, 30, 0.24);
}

.button--ghost {
  color: var(--cream-50);
  border: 1px solid rgba(255, 253, 246, 0.48);
  background: rgba(255, 253, 246, 0.08);
}

.hero__stats {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  background: rgba(255, 253, 246, 0.18);
  border: 1px solid rgba(255, 253, 246, 0.2);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero__stats div {
  min-height: 108px;
  padding: 20px;
  background: rgba(255, 253, 246, 0.12);
}

.hero__stats strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.hero__stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 253, 246, 0.84);
  font-weight: 650;
}

.section {
  padding: clamp(78px, 10vw, 128px) clamp(18px, 5vw, 80px);
}

.section--light {
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
}

.section--green {
  color: var(--cream-50);
  background:
    linear-gradient(135deg, rgba(32, 55, 26, 0.98), rgba(49, 82, 31, 0.96)),
    var(--green-900);
}

.section__head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section__head--wide {
  max-width: 980px;
}

.section__head h2,
.split-copy h2,
.contact-card h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section--green .section__head h2,
.section--green .section__head p {
  color: var(--cream-50);
}

.section__head p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 253, 246, 0.78);
  font-size: 1.08rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.about-copy {
  display: grid;
  gap: 22px;
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.about-copy p {
  margin: 0;
}

.proof-panel {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 28px;
  color: var(--cream-50);
  background: linear-gradient(145deg, var(--green-800), var(--brown-800));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-panel__mark {
  width: fit-content;
  margin-bottom: 24px;
  padding: 10px 14px;
  color: var(--green-900);
  background: var(--gold-500);
  border-radius: 999px;
  font-weight: 900;
}

.proof-panel p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
}

.about-side {
  display: grid;
  gap: 16px;
}

.about-side > img {
  width: 100%;
  min-height: 240px;
  max-height: 310px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefit-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.product-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.benefit-card__icon,
.product-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  color: var(--green-900);
  background: var(--gold-500);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.product-grid .product-card-top span {
  width: 76px;
  height: 76px;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1;
}

.benefit-card h3,
.product-grid h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 1.34rem;
  line-height: 1.12;
}

.benefit-card p,
.product-grid p {
  margin: 0;
  color: var(--muted);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 38px);
  align-items: center;
  max-width: 980px;
  margin: 0 0 28px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 253, 246, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.08);
}

.product-showcase img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.86);
}

.product-showcase span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-showcase strong {
  display: block;
  color: var(--cream-50);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.product-showcase p {
  max-width: 610px;
  margin: 12px 0 0;
  color: rgba(255, 253, 246, 0.76);
}

.product-grid article {
  position: relative;
  overflow: hidden;
  color: var(--cream-50);
  background:
    linear-gradient(145deg, rgba(255, 253, 246, 0.12), rgba(255, 253, 246, 0.06)),
    rgba(255, 253, 246, 0.08);
  border-color: rgba(255, 253, 246, 0.18);
}

.product-grid article::after {
  content: "";
  position: absolute;
  inset: auto -18px -22px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(243, 186, 30, 0.1);
  pointer-events: none;
}

.product-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.product-card-top img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.product-grid article:hover .product-card-top img {
  transform: translateY(-4px) scale(1.04);
}

.product-card-top img {
  transition: transform 180ms ease;
}

.product-grid h3,
.product-grid p {
  position: relative;
  z-index: 1;
  color: var(--cream-50);
}

.product-grid p {
  opacity: 0.74;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
  background: var(--cream-100);
}

.split-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-column {
  display: grid;
  gap: 16px;
}

.process-column > img {
  width: 100%;
  height: clamp(220px, 26vw, 340px);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-50);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--cream-50);
  background: var(--green-700);
  border-radius: 50%;
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: var(--green-900);
  font-weight: 760;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.96), rgba(247, 242, 230, 0.92)),
    var(--cream-50);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  color: var(--cream-50);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--cream-50);
}

.contact-card p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 253, 246, 0.78);
  font-size: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list div {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 253, 246, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.1);
}

.contact-list span {
  color: rgba(255, 253, 246, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--cream-50);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 253, 246, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.1);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: rgba(255, 253, 246, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 246, 0.28);
  border-radius: 8px;
  color: var(--cream-50);
  background: rgba(255, 253, 246, 0.08);
  outline: 0;
}

.contact-form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 14px 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 246, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(243, 186, 30, 0.18);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: 0;
  color: rgba(255, 253, 246, 0.64);
  font-size: 0.88rem;
}

.form-note.is-success {
  color: #d9ffbe;
}

.form-note.is-error {
  color: #ffd0bf;
}

.form-website,
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--cream-50);
}

.site-footer img {
  width: 176px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.scroll-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 18px 44px rgba(32, 55, 26, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  box-shadow: 0 22px 52px rgba(32, 55, 26, 0.34);
}

.scroll-top span {
  width: 15px;
  height: 15px;
  border-top: 4px solid var(--green-900);
  border-left: 4px solid var(--green-900);
  transform: translateY(4px) rotate(45deg);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.94), rgba(247, 242, 230, 0.94)),
    var(--cream-50);
}

.error-card {
  width: min(100%, 900px);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.86);
  box-shadow: var(--shadow);
}

.error-card__logo {
  width: min(260px, 72vw);
  height: 64px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.error-code {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  margin: 0 0 18px;
  color: var(--green-900);
  background: var(--gold-500);
  border-radius: 999px;
  font-weight: 900;
}

.error-card h1 {
  max-width: 760px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2.35rem, 7vw, 5.2rem);
  line-height: 1;
}

.error-card p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.error-actions .button--ghost {
  color: var(--green-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 780px;
    padding-top: 150px;
  }

  .hero__visual {
    margin: 0;
    width: min(100%, 620px);
  }

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

  .section--split,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: min(210px, 52vw);
    height: 42px;
  }

  .language-switcher {
    padding: 0;
  }

  .language-switcher select {
    min-width: 72px;
    min-height: 38px;
    font-size: 0.78rem;
  }

  .nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 760px;
    padding-inline: 18px;
  }

  .hero__inner {
    padding-bottom: 36px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__stats div {
    min-height: auto;
    padding: 16px;
  }

  .benefit-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .product-grid article {
    min-height: 220px;
  }

  .section {
    padding-inline: 18px;
  }

  .contact-card {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}
