@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --accent: #6f912d;
  --accent-dark: #5f7e22;
  --ink: #11151f;
  --text: #50545b;
  --surface: #ffffff;
  --warm: #faf9f7;
  --shadow: 0 12px 34px rgba(31, 39, 23, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Onest", Arial, sans-serif;
  font-size: 16px;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(111, 145, 45, 0.33);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-heading h2,
.about h2 {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #678727 0%, #79982d 100%);
  box-shadow: 0 9px 22px rgba(94, 125, 33, 0.24);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(94, 125, 33, 0.28);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  border: 1px solid #7d9d3d;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #6d8d2e;
  font-size: 11px;
  font-weight: 550;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.outline-button:hover {
  background: var(--accent);
  color: #fff;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

.header-inner {
  display: flex;
  align-items: center;
  width: calc(100% - 96px);
  height: 80px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.brand strong {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.brand span {
  padding-left: 9px;
  border-left: 1px solid rgba(17, 21, 31, 0.32);
  color: #3e4248;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(23px, 2.45vw, 39px);
  margin: 0 auto;
  transform: translateX(-20px);
}

.main-nav a {
  position: relative;
  color: #252931;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  transform: translateX(17px);
}

.phone-mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}

.phone-mark svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.9;
}

.header-phone {
  display: grid;
  gap: 2px;
  min-width: 142px;
}

.header-phone strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-phone span {
  color: #555960;
  font-size: 8px;
  line-height: 1.1;
  white-space: nowrap;
}

.button-small {
  width: 146px;
  min-height: 42px;
  border-radius: 7px;
  box-shadow: none;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.86);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 3px;
  background: var(--ink);
}

.hero {
  position: relative;
  height: 680px;
  overflow: hidden;
  background-color: #f6f4f1;
  background-image: url("assets/production/hero-background.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 247, 245, 0.08) 0%, transparent 47%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: 144px;
  left: 48px;
  width: 470px;
}

.hero-eyebrow {
  font-size: 15px;
  font-weight: 650;
}

.hero h1 {
  display: grid;
  margin-top: 20px;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
}

.hero-title-dark {
  font-size: 60px;
  font-weight: 800;
  line-height: 0.96;
}

.hero-title-accent {
  color: var(--accent);
  font-size: 38.5px;
  font-weight: 720;
  line-height: 1.05;
}

.hero-text {
  width: 360px;
  margin-top: 16px;
  color: #50545a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.hero-button {
  width: 250px;
  min-height: 56px;
  gap: 16px;
  border-radius: 13px;
  font-size: 13px;
}

.hero-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.video-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 167px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.video-play {
  display: grid;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(17, 21, 31, 0.46);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(4px);
  transition: background 180ms ease, transform 180ms ease;
}

.video-button:hover .video-play {
  background: #fff;
  transform: scale(1.04);
}

.video-play svg {
  width: 21px;
  height: 21px;
  margin-left: 2px;
  fill: var(--ink);
  stroke: none;
}

.video-button b,
.video-button small {
  display: block;
  white-space: nowrap;
}

.video-button b {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.video-button small {
  margin-top: 4px;
  color: #555960;
  font-size: 9px;
  line-height: 1.2;
}

.hero-mascot {
  position: absolute;
  z-index: 4;
  top: 79px;
  left: 238px;
  width: 880px;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.mascot-badge {
  position: absolute;
  z-index: 5;
  top: 358px;
  left: 700px;
  color: #343936;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  transform: rotate(2deg);
}

.hero-plant {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

.hero-plant-sill {
  top: 439px;
  right: 135px;
  width: 141px;
  height: 150px;
  object-fit: fill;
}

.hero-plant-foreground {
  right: -81px;
  bottom: -205px;
  width: 335px;
  opacity: 0.92;
  filter: blur(2.4px);
  transform: rotate(-11deg);
}

.hero-trust {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 500px;
  height: 118px;
  padding: 18px 15px 12px;
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 -8px 24px rgba(53, 49, 42, 0.025);
  backdrop-filter: blur(9px);
}

.hero-trust article {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #262a30;
  text-align: center;
}

.hero-trust svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
}

.hero-trust span {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
}

.section-shell-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  column-gap: 32px;
  padding-right: 68px;
  padding-left: 68px;
}

.benefits {
  position: relative;
  z-index: 2;
  height: 212px;
  padding-top: 30px;
  background: #fff;
}

.benefits-heading {
  padding-top: 17px;
}

.benefit-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 156px;
  padding: 15px 8px 12px;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.benefit-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--accent);
  stroke-width: 1.35;
}

.benefit-card strong {
  max-width: 145px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.15;
}

.benefit-card span {
  margin-top: 6px;
  color: #4f5359;
  font-size: 11px;
  font-weight: 450;
  line-height: 1.25;
}

.products {
  position: relative;
  height: 388px;
  padding-top: 19px;
  overflow: hidden;
  background-color: #f5f2ed;
  background-image: url("assets/production/products-background.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.products-heading {
  padding-top: 11px;
}

.product-area {
  position: relative;
  height: 351px;
}

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

.product-card {
  height: 304px;
  overflow: hidden;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(47, 50, 42, 0.075);
}

.product-card img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover img {
  transform: scale(1.02);
}

.product-card > div {
  position: relative;
  height: 130px;
  padding: 13px 16px 12px;
}

.product-card h3 {
  font-size: 16px;
  font-weight: 650;
  line-height: 1.15;
}

.product-card p {
  width: 93%;
  margin-top: 7px;
  color: #5a5e64;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.product-card strong {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.products-more {
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 250px;
  transform: translateX(-50%);
}

.about {
  position: relative;
  height: 288px;
  overflow: hidden;
  background: #fff;
}

.about-title,
.about-copy,
.about-stats {
  position: absolute;
}

.about-title {
  top: 38px;
  left: 68px;
  width: 305px;
}

.about-copy {
  top: 39px;
  left: 400px;
  width: 365px;
}

.about-lead {
  width: 305px;
  color: #666a70;
  font-size: 13px;
  line-height: 1.45;
}

.about-copy ul {
  display: grid;
  gap: 8px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.about-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5a5e64;
  font-size: 11px;
  line-height: 1.2;
}

.about-copy li span {
  display: grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #eef4e5;
  color: var(--accent);
}

.about-copy li svg {
  width: 12px;
  height: 12px;
  stroke-width: 2;
}

.about-copy li b {
  font-weight: 430;
}

.about-stats {
  top: 39px;
  left: 795px;
  display: grid;
  gap: 16px;
  width: 190px;
  padding-left: 25px;
  border-left: 1px solid #e9e9e4;
}

.about-stats p {
  display: grid;
  gap: 4px;
}

.about-stats strong {
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 670;
  line-height: 1;
}

.about-stats span {
  color: #60646a;
  font-size: 9px;
  line-height: 1.2;
}

.about-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 288px;
  object-fit: cover;
  object-position: left 55%;
}

.process {
  height: 172px;
  padding-top: 28px;
  background: var(--warm);
}

.process-heading {
  padding-top: 3px;
}

.process-list {
  position: relative;
  left: -20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-width: 0;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: -22px;
  width: 30px;
  border-top: 1px dashed #676b69;
  content: "";
}

.process-list li:not(:last-child)::before {
  position: absolute;
  z-index: 1;
  top: 21px;
  right: -23px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #676b69;
  border-right: 1px solid #676b69;
  content: "";
  transform: rotate(45deg);
}

.step-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-top span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.step-top svg {
  width: 31px;
  height: 31px;
  color: #31353a;
  stroke-width: 1.35;
}

.process-list strong {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.15;
}

.process-list p {
  margin-top: 6px;
  color: #575b61;
  font-size: 11px;
  line-height: 1.35;
}

.works {
  height: 270px;
  grid-template-columns: 200px minmax(0, 1fr);
  column-gap: 15px;
  padding-top: 20px;
  background: #fff;
}

.works-heading {
  padding-top: 13px;
}

.works-area {
  position: relative;
  height: 246px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1.01fr 1fr 1.13fr;
  gap: 26px;
}

.works-grid article {
  min-width: 0;
}

.works-grid img {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  object-fit: fill;
  box-shadow: 0 5px 14px rgba(35, 36, 32, 0.06);
  transition: transform 260ms ease;
}

.works-grid article:hover img {
  transform: scale(1.012);
}

.works-grid h3 {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 580;
  line-height: 1.2;
  white-space: nowrap;
}

.works-more {
  position: absolute;
  bottom: 24px;
  left: 35%;
  width: 250px;
  transform: translateX(-50%);
}

.reviews {
  position: relative;
  height: 195px;
  grid-template-columns: 230px minmax(0, 1fr);
  column-gap: 15px;
  padding-top: 17px;
  overflow: hidden;
  background: #fff;
}

.reviews-heading {
  padding-top: 9px;
}

.reviews-stage {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 88px);
  height: 146px;
  padding-right: 0;
}

.review-track {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 20px;
  min-width: 0;
}

.review-card {
  height: 142px;
  padding: 16px 18px;
  border: 1px solid #f0f0ed;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 7px 24px rgba(42, 46, 37, 0.045);
}

.review-card header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: grayscale(1);
  object-fit: cover;
}

.review-card header div {
  display: grid;
  gap: 3px;
}

.review-card header span {
  color: #686c72;
  font-size: 12px;
  line-height: 1.1;
  white-space: nowrap;
}

.review-card header b {
  color: #f39a13;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-card > p {
  margin-top: 6px;
  color: #4d5157;
  font-size: 14px;
  line-height: 1.5;
}

.review-arrow {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 58px;
  place-items: center;
  border: 1px solid #eeeeea;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(43, 46, 39, 0.06);
  color: #363a40;
  cursor: pointer;
}

.review-arrow svg {
  width: 14px;
  height: 14px;
}

.review-prev {
  margin-right: 13px;
}

.review-prev svg {
  transform: rotate(180deg);
}

.review-next {
  margin-left: 13px;
}

.reviews-plant {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 0;
  width: 117px;
  pointer-events: none;
}

.cta-section {
  height: 219px;
  padding: 0 40px;
  background: #fff;
}

.cta-panel {
  position: relative;
  height: 219px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background-color: #f3f1ee;
  background-image: url("assets/production/cta-background.png");
  background-position: center 52%;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-panel::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 245, 242, 0.98) 0%,
    rgba(247, 245, 242, 0.96) 54%,
    rgba(247, 245, 242, 0.72) 64%,
    rgba(247, 245, 242, 0) 76%
  );
  content: "";
  pointer-events: none;
}

.cta-copy {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 68px;
  width: 300px;
}

.cta-copy h2 {
  font-size: 28px;
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.cta-copy p {
  margin-top: 8px;
  color: #5d6167;
  font-size: 15.5px;
  line-height: 1.55;
}

.inline-form {
  position: absolute;
  z-index: 3;
  top: 47px;
  left: 438px;
  display: grid;
  width: 432px;
  min-height: 125px;
  padding: 13px 14px 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(34, 38, 29, 0.13);
  backdrop-filter: blur(7px);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.inline-form input {
  width: 100%;
  height: 38px;
  padding: 0 13px;
  border: 1px solid #efefec;
  border-radius: 5px;
  background: #f5f4f3;
  color: var(--ink);
  font-size: 12px;
}

.inline-form .button {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  border-radius: 5px;
  background: linear-gradient(90deg, #77952a, #759329);
  box-shadow: none;
  font-size: 14px;
}

.inline-form small {
  position: absolute;
  top: 137px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin: 0;
  color: #7a7e84;
  font-size: 12px;
  line-height: 1;
}

.inline-form small svg {
  width: 16px;
  height: 16px;
}

.form-status {
  min-height: 0;
  color: #55741d;
  font-size: 10px;
  line-height: 1.25;
}

.inline-form .form-status:not(:empty) {
  margin-top: 6px;
}

.cta-plant {
  position: absolute;
  z-index: 2;
  right: 221px;
  bottom: -17px;
  display: none;
  width: 86px;
  pointer-events: none;
}

.site-footer {
  height: 168px;
  overflow: hidden;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 228px 200px 218px 194px 1fr;
  gap: 38px;
  width: calc(100% - 128px);
  height: 100%;
  margin: 0 auto;
  padding-top: 29px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  height: 80px;
}

.footer-brand .brand strong {
  font-size: 29px;
}

.footer-brand small {
  color: #96999d;
  font-size: 9px;
}

.footer-column,
.footer-contacts {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-column h3,
.footer-contacts h3 {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 650;
}

.footer-column a,
.footer-contacts > p,
.footer-contacts > a:not(.footer-phone) {
  margin-bottom: 6px;
  color: #666a70;
  font-size: 9px;
  line-height: 1.1;
}

.footer-column a:hover,
.footer-contacts a:hover {
  color: var(--accent);
}

.footer-phone {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 8px;
}

.footer-phone > svg {
  width: 15px;
  height: 15px;
  color: #6b7076;
}

.footer-phone span {
  display: grid;
  gap: 3px;
}

.footer-phone b {
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.footer-phone small {
  color: #8b8e93;
  font-size: 7px;
  line-height: 1;
}

.socials {
  display: flex;
  gap: 7px;
  margin-top: 0;
}

.socials a {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid #dedfdc;
  border-radius: 50%;
  color: #74787e;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.socials svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 18, 20, 0.64);
  backdrop-filter: blur(6px);
}

.modal-dialog,
.video-dialog,
.gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(450px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.modal-dialog {
  padding: 34px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f0f1ed;
  color: #30343a;
  font-size: 24px;
  cursor: pointer;
}

.modal-dialog h2,
.video-dialog h2,
.gallery-dialog h2 {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.12;
}

.modal-dialog > p:not(.eyebrow),
.video-dialog > p {
  margin-top: 12px;
  color: #686c72;
  font-size: 13px;
  line-height: 1.5;
}

.modal-dialog form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.modal-dialog label {
  display: grid;
  gap: 6px;
  color: #555960;
  font-size: 12px;
  font-weight: 600;
}

.modal-dialog input {
  height: 46px;
  padding: 0 13px;
  border: 1px solid #dbddd7;
  border-radius: 8px;
}

.video-dialog {
  width: min(720px, 100%);
  padding: 24px 24px 28px;
}

.video-window {
  display: grid;
  height: 350px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #e8eadf, #c7d2b5);
  color: var(--accent);
}

.video-window svg {
  width: 66px;
  height: 66px;
  fill: currentColor;
  stroke: none;
}

.video-window video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #11151f;
  object-fit: cover;
}

.gallery-dialog {
  width: min(860px, 100%);
  padding: 28px;
}

.gallery-dialog h2 {
  margin-top: 7px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.gallery-grid figure {
  overflow: hidden;
  border: 1px solid #eceee8;
  border-radius: 12px;
  background: #fff;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 10px 12px 12px;
  font-size: 12px;
  font-weight: 600;
}

.gallery-cta {
  margin-top: 20px;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 13px 17px;
  border-radius: 10px;
  background: #1d241a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  animation: section-rise 560ms ease both;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  animation: hero-copy-in 620ms ease both;
}

.hero-mascot {
  animation: hero-mascot-in 720ms 80ms ease both;
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-mascot-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1260px) {
  .header-inner {
    width: calc(100% - 56px);
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .button-small {
    width: 125px;
  }

  .section-shell-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    column-gap: 28px;
    padding-right: 42px;
    padding-left: 42px;
  }

  .about-title {
    left: 42px;
  }

  .about-copy {
    left: 340px;
  }

  .about-stats {
    left: 720px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    position: absolute;
    height: 72px;
  }

  .header-inner {
    position: relative;
    justify-content: space-between;
    width: calc(100% - 40px);
    height: 72px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    right: 0;
    display: none;
    width: min(340px, calc(100vw - 40px));
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(31, 36, 28, 0.14);
    transform: none;
  }

  .site-header.menu-open .main-nav {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    min-height: 44px;
    padding: 14px 10px;
    border-bottom: 1px solid #efefe9;
    font-size: 13px;
  }

  .header-contact {
    margin-left: auto;
    margin-right: 13px;
    transform: none;
  }

  .button-small {
    display: none;
  }

  .hero {
    height: 690px;
    background-position: 57% top;
    background-size: auto 690px;
  }

  .hero-copy {
    left: 40px;
  }

  .hero-mascot {
    left: 230px;
  }

  .hero-plant-foreground {
    display: none;
  }

  .hero-trust {
    left: 24px;
  }

  .section-shell-layout {
    display: block;
    height: auto;
    padding: 64px 40px;
  }

  .section-heading h2,
  .about h2 {
    font-size: 34px;
  }

  .benefits-heading,
  .products-heading,
  .process-heading,
  .works-heading,
  .reviews-heading {
    padding-top: 0;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
  }

  .benefit-card {
    height: 150px;
  }

  .products {
    background-size: auto 100%;
  }

  .product-area {
    height: auto;
    margin-top: 28px;
    padding-bottom: 54px;
  }

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

  .products-more,
  .works-more {
    bottom: 0;
  }

  .about {
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    padding: 64px 40px 0;
  }

  .about-title,
  .about-copy,
  .about-stats,
  .about-image {
    position: static;
    width: auto;
  }

  .about-copy {
    grid-column: 2;
  }

  .about-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 24px 0 0;
    border-top: 1px solid #e8e9e4;
    border-left: 0;
  }

  .about-image {
    grid-column: 1 / -1;
    width: calc(100% + 80px);
    height: 360px;
    margin-left: -40px;
  }

  .process-list {
    left: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 28px;
  }

  .process-list li::after,
  .process-list li::before {
    display: none;
  }

  .works-area {
    height: auto;
    margin-top: 28px;
    padding-bottom: 58px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .works-grid img {
    height: auto;
    aspect-ratio: 1.72;
  }

  .reviews {
    overflow: hidden;
  }

  .reviews-stage {
    width: auto;
    height: auto;
    margin-top: 28px;
    padding-right: 0;
  }

  .review-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-card {
    flex: 0 0 calc(50% - 10px);
    scroll-snap-align: start;
  }

  .reviews-plant {
    display: none;
  }

  .cta-section {
    height: auto;
    padding: 0 24px;
  }

  .cta-panel {
    display: grid;
    height: auto;
    min-height: 380px;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 64px;
    border-radius: 18px;
  }

  .cta-copy,
  .inline-form {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }

  .inline-form {
    align-self: center;
  }

  .cta-plant {
    display: none;
  }

  .site-footer {
    height: auto;
  }

  .footer-inner {
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 35px;
    width: calc(100% - 80px);
    padding: 48px 0;
  }

  .footer-contacts {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: calc(100% - 28px);
  }

  .brand strong {
    font-size: 25px;
  }

  .brand span {
    font-size: 7px;
  }

  .header-contact {
    margin-right: 8px;
  }

  .phone-mark {
    display: none;
  }

  .header-phone {
    min-width: 0;
  }

  .header-phone strong {
    font-size: 12px;
  }

  .header-phone span {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 990px;
    padding-top: 640px;
    background-position: 64% top;
    background-size: auto 520px;
  }

  .hero::after {
    background: linear-gradient(180deg, transparent 0, transparent 350px, #f7f6f3 520px, #f7f6f3 100%);
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 0 22px 260px;
  }

  .hero-eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    margin-top: 14px;
  }

  .hero-title-dark {
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero-title-accent {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-text {
    width: auto;
    max-width: 360px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }

  .video-button {
    min-height: 56px;
  }

  .hero-mascot {
    top: 62px;
    left: 50%;
    width: 480px;
    transform: translateX(-45%);
  }

  .mascot-badge,
  .hero-plant {
    display: none;
  }

  .hero-trust {
    right: 16px;
    bottom: 0;
    left: 16px;
    width: auto;
    height: 232px;
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }

  .section-shell-layout {
    padding: 50px 20px;
  }

  .section-heading h2,
  .about h2 {
    font-size: 30px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .benefit-card {
    height: 145px;
  }

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

  .product-card {
    height: auto;
  }

  .product-card img {
    height: auto;
    aspect-ratio: 1.5;
  }

  .product-card > div {
    min-height: 132px;
  }

  .about {
    display: block;
    padding: 50px 20px 0;
  }

  .about-copy {
    margin-top: 28px;
  }

  .about-lead {
    width: auto;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .about-image {
    width: calc(100% + 40px);
    height: 280px;
    margin-top: 36px;
    margin-left: -20px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 108px;
    padding-left: 54px;
  }

  .step-top {
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
  }

  .process-list strong,
  .process-list p {
    margin-top: 0;
  }

  .process-list p {
    margin-top: 8px;
    font-size: 11px;
  }

  .works-grid h3 {
    white-space: normal;
  }

  .reviews-stage {
    margin-right: -20px;
    margin-left: -8px;
  }

  .review-card {
    flex-basis: 82%;
    height: 145px;
  }

  .review-arrow {
    display: none;
  }

  .cta-section {
    padding: 0;
  }

  .cta-panel {
    display: block;
    min-height: 535px;
    padding: 50px 20px;
    border-radius: 0;
    background-position: 68% center;
  }

  .cta-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 280px;
  }

  .inline-form {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 32px;
  }

  .inline-form small {
    position: static;
    width: auto;
    margin-top: 7px;
    font-size: 8px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
    width: calc(100% - 40px);
    padding: 40px 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
    height: 76px;
  }

  .footer-contacts {
    grid-column: 1 / -1;
  }

  .video-window {
    height: 220px;
  }

  .gallery-dialog {
    padding: 22px;
  }

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

@media (max-width: 380px) {
  .header-phone {
    display: none;
  }

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

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

  .footer-brand,
  .footer-contacts {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
