:root {
  --green: #4c7743;
  --green-dark: #264b2d;
  --green-deep: #173c24;
  --green-soft: #edf3e9;
  --gold: #a37645;
  --gold-light: #c5a274;
  --ink: #1e211d;
  --muted: #60655e;
  --cream: rgb(247, 244, 237);
  --paper: #ffffff;
  --line: rgba(38, 75, 45, 0.14);
  --shadow: 0 18px 42px rgba(31, 49, 31, 0.08), 0 2px 7px rgba(31, 49, 31, 0.05);
  --shell-wide: min(1500px, calc(100vw - 80px));
  --welcome-progress: 1;
  --header-progress: 0;
  --headline-progress: 0;
  --subline-progress: 0;
  --actions-progress: 0;
  --hero-exit-progress: 0;
  --light-progress: 0;
  --services-title-progress: 0;
  --services-lead-progress: 0;
  --services-exit-progress: 0;
  --services-slide-progress: 0;
  --machines-enter-progress: 0;
  --machines-visible-progress: 1;
  --machines-hold-offset: 0px;
  --team-hold-distance: 280px;
  --team-wash-progress: 0;
  --card-1-progress: 0;
  --card-2-progress: 0;
  --card-3-progress: 0;
  --card-4-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font-weight: 600;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #d8b785;
  outline-offset: 4px;
}

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

.shell-wide {
  width: var(--shell-wide);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  padding: 24px 0;
  color: #172018;
  background: transparent;
  opacity: var(--header-progress);
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc((1 - var(--header-progress)) * -16px));
  transition: padding 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-after-hero {
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 7px 22px rgba(28, 45, 29, 0.06);
}

.site-header.is-over-team {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 7px 22px rgba(28, 45, 29, 0.06);
}

.site-header.menu-visible {
  padding: 13px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 7px 26px rgba(25, 45, 26, 0.08);
}

.site-header.is-established,
.site-header.is-after-hero,
.site-header.menu-visible {
  visibility: visible;
  pointer-events: auto;
}

.site-header.is-after-hero,
.site-header.menu-visible {
  opacity: 1;
  transform: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  gap: 48px;
}

.brand {
  flex: 0 0 auto;
  width: clamp(230px, 17vw, 300px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.1vw, 38px);
}

.nav-link,
.footer-grid button {
  border: 0;
  padding: 10px 0;
  background: transparent;
  cursor: pointer;
}

.nav-link {
  position: relative;
  color: inherit;
  font-size: 1.03rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: none;
}

.site-header.is-after-hero .nav-link,
.site-header.menu-visible .nav-link {
  text-shadow: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 11px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.99rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(53, 94, 47, 0.2);
}

.button-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 14px 30px rgba(38, 75, 45, 0.24);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 9px 24px rgba(24, 36, 24, 0.12);
}

.button-light:hover {
  background: white;
  box-shadow: 0 13px 30px rgba(24, 36, 24, 0.16);
}

.nav-cta {
  min-height: 46px;
  padding: 11px 18px;
  font-weight: 600;
  text-shadow: none;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  color: var(--green-dark);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-phone svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-phone:hover {
  color: var(--green);
}

.menu-toggle {
  position: relative;
  z-index: 4;
  display: none;
  width: 48px;
  height: 48px;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(38, 75, 45, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 16px rgba(26, 43, 26, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero-scroll {
  position: relative;
  height: 650svh;
  min-height: 4700px;
  background: var(--cream);
}

.hero-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: #d7c4a4;
}

.hero-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #d7c4a4 url("assets/hero-poster.jpg") center / cover no-repeat;
}

.hero-light-transition {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgb(247, 244, 237);
  opacity: var(--light-progress);
  pointer-events: none;
}

.hero-welcome {
  position: absolute;
  z-index: 2;
  inset: 0;
  color: #182019;
  text-align: left;
  opacity: var(--welcome-progress);
  transform: translateY(calc((1 - var(--welcome-progress)) * -18px));
  pointer-events: none;
}

.hero-welcome[aria-hidden="true"] {
  visibility: hidden;
}

.hero-welcome-inner {
  position: absolute;
  top: clamp(145px, 18vh, 205px);
  left: 0;
  width: min(1050px, 60vw);
  animation: welcome-arrival 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.welcome-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.08rem, 3.97vw, 4.95rem);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: none;
}

.welcome-title span {
  display: block;
  white-space: nowrap;
}

.welcome-lead {
  max-width: 950px;
  margin: 28px 0 0;
  font-size: clamp(1.24rem, 1.36vw, 1.43rem);
  font-weight: 500;
  line-height: 1.35;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 12px;
  margin-top: 40px;
  padding: 13px 21px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 5px;
  font-size: 0.99rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 8px 20px rgba(38, 75, 45, 0.18);
  animation: scroll-button-bob 3.6s infinite;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scroll-cue span {
  display: inline-block;
}

.cue-label-mobile {
  display: none !important;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 11px 24px rgba(38, 75, 45, 0.22);
}

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

@keyframes scroll-button-bob {
  0%, 18% {
    transform: translateY(0);
    opacity: 1;
    animation-timing-function: ease-in;
  }
  58% {
    transform: translateY(16px);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.3, 0.7, 0.4, 1);
  }
  80%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.hero-copy-inner {
  position: absolute;
  top: clamp(215px, 29vh, 335px);
  left: 0;
  width: min(800px, 47vw);
  pointer-events: auto;
}

.hero-copy-inner::before {
  content: none;
}

.hero-copy h1,
.section-heading h2,
.platform-copy h3,
.advice-title,
.contact-inner h2,
.service-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 {
  visibility: hidden;
  margin: 0;
  font-size: clamp(3.1rem, 3vw, 3.8rem);
  line-height: 1.1;
  text-wrap: balance;
  text-shadow: none;
  opacity: max(0, calc(var(--headline-progress) - var(--hero-exit-progress)));
  transform: translateY(calc((1 - var(--headline-progress)) * 24px - var(--hero-exit-progress) * 20px));
}

.hero-lead {
  visibility: hidden;
  max-width: 620px;
  margin: 23px 0 0;
  color: #292e29;
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  line-height: 1.65;
  opacity: max(0, calc(var(--subline-progress) - var(--hero-exit-progress)));
  transform: translateY(calc((1 - var(--subline-progress)) * 19px - var(--hero-exit-progress) * 18px));
}

.hero-actions {
  visibility: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 40px;
  opacity: max(0, calc(var(--actions-progress) - var(--hero-exit-progress)));
  transform: translateY(calc((1 - var(--actions-progress)) * 17px - var(--hero-exit-progress) * 16px));
}

.hero-actions .button {
  font-weight: 600;
}

.hero-copy h1.is-shown,
.hero-lead.is-shown,
.hero-actions.is-shown {
  visibility: visible;
}

.services-stage {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  gap: clamp(44px, 5.5vh, 62px);
  transform: translate(-50%, -50%) translateX(calc(var(--services-slide-progress) * -105vw));
  pointer-events: none;
}

.services-intro {
  color: var(--ink);
  text-align: center;
}

.services-intro h2 {
  visibility: hidden;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 1.16;
  opacity: max(0, calc(var(--services-title-progress) - var(--services-exit-progress)));
  transform: translateY(calc((1 - var(--services-title-progress)) * 24px - var(--services-exit-progress) * 22px));
}

.services-intro p {
  visibility: hidden;
  max-width: 880px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  line-height: 1.65;
  opacity: max(0, calc(var(--services-lead-progress) - var(--services-exit-progress)));
  transform: translateY(calc((1 - var(--services-lead-progress)) * 18px - var(--services-exit-progress) * 18px));
}

.services-intro h2.is-shown,
.services-intro p.is-shown {
  visibility: visible;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.25vw, 22px);
}

.service-card {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 32vh, 340px);
  padding: 30px clamp(22px, 2vw, 36px);
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(113, 99, 73, 0.18);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(31, 42, 28, 0.07), 0 1px 3px rgba(31, 42, 28, 0.04);
  pointer-events: auto;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.service-card[data-service-card="1"] { opacity: max(0, calc(var(--card-1-progress) - var(--services-exit-progress))); transform: translateY(calc((1 - var(--card-1-progress)) * 28px - var(--services-exit-progress) * 24px)); }
.service-card[data-service-card="2"] { opacity: max(0, calc(var(--card-2-progress) - var(--services-exit-progress))); transform: translateY(calc((1 - var(--card-2-progress)) * 28px - var(--services-exit-progress) * 24px)); }
.service-card[data-service-card="3"] { opacity: max(0, calc(var(--card-3-progress) - var(--services-exit-progress))); transform: translateY(calc((1 - var(--card-3-progress)) * 28px - var(--services-exit-progress) * 24px)); }
.service-card[data-service-card="4"] { opacity: max(0, calc(var(--card-4-progress) - var(--services-exit-progress))); transform: translateY(calc((1 - var(--card-4-progress)) * 28px - var(--services-exit-progress) * 24px)); }

.service-card.is-shown {
  visibility: visible;
}

.service-card:hover {
  border-color: rgba(163, 118, 69, 0.34);
  box-shadow: 0 12px 24px rgba(31, 42, 28, 0.09), 0 2px 5px rgba(31, 42, 28, 0.05);
}

.line-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  color: var(--gold);
}

.line-icon svg,
.platform-graphic svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 1.55vw, 1.65rem);
}

.service-card p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.94rem, 0.95vw, 1.05rem);
  line-height: 1.58;
}

.hero-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section {
  padding: 112px 0;
}

#maschinen,
#beratung,
#kontakt {
  scroll-margin-top: 88px;
}

.machines-section {
  position: relative;
  height: auto;
  padding: clamp(180px, calc(50vh - 245px), 265px) 0 0;
  background: var(--cream);
}

.machines-stage {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
  background: var(--cream);
  opacity: var(--machines-visible-progress);
  will-change: opacity;
}

.machines-stage.is-team-hold {
  z-index: 1;
  transform: translateY(var(--machines-hold-offset));
  will-change: transform;
}

.machines-stage > .shell-wide {
  position: relative;
}

.machines-section .section-heading {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.machines-section .section-heading > p:last-child {
  margin-inline: auto;
}

.machines-section .section-kicker {
  display: none;
}

.machines-section.is-dissolved .machines-stage {
  pointer-events: none;
}

.machines-section.is-hero-transition {
  position: fixed;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100svh;
  padding: 0;
  overflow: hidden;
  transform: translateX(calc((1 - var(--machines-enter-progress)) * 105vw));
  will-change: transform;
}

.machines-section.is-hero-transition .machines-stage {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  opacity: 1;
}

.machines-section.is-hero-transition .machines-stage > .shell-wide {
  position: absolute;
  top: clamp(180px, calc(50vh - 245px), 265px);
  left: 50%;
  transform: translateX(-50%);
}

.machines-section.is-hero-transition .traktorpool-offers {
  pointer-events: none;
}

.machines-section.is-hero-transition .team-transition {
  visibility: hidden;
  pointer-events: none;
}

.machines-section.is-hero-transition .section-heading {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.machines-section .section-heading h2 {
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1.16;
}

.machines-section.is-hero-transition .reveal,
.js .machines-section.is-hero-transition .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 45px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker,
.platform-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #ccd9c4;
}

.section-heading h2,
.advice-title {
  margin: 0;
  font-size: clamp(2.4rem, 3.7vw, 4rem);
  line-height: 1.16;
}

.section-heading > p:last-child {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.68;
}

.platform-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(1260px, 100%);
  margin-inline: auto;
}

.platform-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(36px, 2.8vw, 48px);
  min-height: clamp(145px, 15svh, 175px);
  padding: 20px clamp(24px, 2.2vw, 30px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.platform-graphic {
  width: 200px;
  height: auto;
}

.platform-graphic img {
  width: 100%;
  height: auto;
}

.platform-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
  line-height: 1.1;
  white-space: nowrap;
}

.platform-copy > p:last-child {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.09rem;
  line-height: 1.7;
  white-space: nowrap;
}

.platform-card .platform-label {
  margin-bottom: 7px;
  font-size: 0.76rem;
}

.platform-link {
  grid-column: 3;
  justify-self: start;
  min-width: 220px;
  min-height: 50px;
  padding: 13px 21px;
  font-size: 0.99rem;
}

.platform-link:hover svg {
  transform: translate(2px, -2px);
}

.traktorpool-offers {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(50, 54, 43, 0.08);
}

.traktorpool-widget {
  min-height: 640px;
  background: #fff;
}

.traktorpool-widget .tp-sis {
  display: block;
  width: 100% !important;
  min-height: 640px;
  border: 0;
  background: #fff;
  pointer-events: none;
}

.traktorpool-fallback {
  margin: 0;
  padding: 48px;
  color: var(--muted);
  text-align: center;
}

.traktorpool-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 56px;
  padding: 14px 24px;
  color: var(--green-deep);
  border-top: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.traktorpool-source svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.traktorpool-source:hover,
.traktorpool-source:focus-visible {
  color: #fff;
  background: var(--green);
}

.team-transition {
  position: relative;
  height: calc(100svh + var(--team-hold-distance));
  min-height: 720px;
  background: var(--cream);
}

.team-transition__wash {
  position: fixed;
  z-index: 80;
  inset: 0;
  visibility: hidden;
  background: var(--cream);
  opacity: var(--team-wash-progress);
  pointer-events: none;
  will-change: opacity;
}

.team-transition__wash.is-active {
  visibility: visible;
}

.team-section {
  position: relative;
  z-index: 0;
  padding: 160px 0 132px;
  background: var(--cream);
}

.team-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
}

.team-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(31, 47, 30, 0.08);
}

.team-photo img {
  width: 100%;
  height: auto;
}

.team-copy {
  order: -1;
  max-width: 900px;
  text-align: center;
}

.team-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 3.7vw, 4rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.team-copy > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.advice-section {
  padding-top: 160px;
  background: white;
}

.advice-shell {
  position: relative;
}

.advice-title {
  margin: 0 0 30px;
  padding-left: min(520px, 34vw);
}

.advice-panel {
  position: relative;
  min-height: 395px;
  margin-top: 55px;
  padding: 55px 65px 55px min(560px, 38vw);
  overflow: visible;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 15px 36px rgba(32, 47, 31, 0.07);
}

.advice-person {
  position: absolute;
  z-index: 2;
  left: 4px;
  bottom: 0;
  width: min(540px, 38vw);
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: translateY(1px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

.advice-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.advice-copy > p {
  margin: 0;
  color: #4f554f;
  font-size: 1.09rem;
  line-height: 1.7;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 14px 24px;
  margin: 28px 0 31px;
  padding: 0;
  list-style: none;
  color: #4e554e;
  font-size: 0.91rem;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.benefit-list svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.stat-card {
  min-height: 235px;
  padding: 28px 22px 26px;
  text-align: center;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(31, 47, 30, 0.04);
}

.stat-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--green);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-card strong.stat-word {
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
}

.stat-card span {
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
}

.stat-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.testimonials-section {
  padding-top: 134px;
  padding-bottom: 134px;
  background: linear-gradient(180deg, #f7f4ed, #fbfaf7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  position: relative;
  min-height: 275px;
  padding: 31px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(31, 47, 30, 0.05);
}

.customer-badge {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--green);
  border: 4px solid var(--green-soft);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.customer-badge.gold { background: var(--gold); }
.customer-badge.dark { background: #3b493d; }

.stars {
  position: absolute;
  top: 39px;
  left: 105px;
  color: #e1a400;
  font-size: 2.56rem;
  line-height: 1;
  letter-spacing: 0;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  color: #464c46;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07rem;
  line-height: 1.68;
}

.testimonial-card > p {
  margin: 0;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-band {
  padding: 115px 0;
  color: white;
  background: var(--green-deep);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  align-items: stretch;
  gap: clamp(60px, 7vw, 110px);
}

.contact-copy {
  align-self: stretch;
}

.contact-inner h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.9rem);
  line-height: 1.2;
}

.contact-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: 1.06rem;
  line-height: 1.72;
}

.contact-phone {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
}

.contact-phone a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.contact-phone a:hover,
.contact-phone a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 100%;
  padding: 0;
  color: white;
  background: transparent;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label:not(.form-consent) {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 0.94rem;
  font-weight: 600;
}

.contact-form small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 400;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #d8d8cf;
  border-radius: 5px;
  font: inherit;
  line-height: 1.45;
}

.contact-form textarea {
  min-height: 105px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(76, 119, 67, 0.18);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.form-consent input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.form-consent span {
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-consent a {
  color: inherit;
  font-weight: 600;
  text-underline-offset: 3px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 52px;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.4;
}

.site-footer {
  padding-top: 70px;
  background: #f4f2eb;
  border-top: 1px solid rgba(36, 63, 39, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(42px, 5vw, 85px);
  padding-bottom: 56px;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 380px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-grid h2 {
  margin: 2px 0 15px;
  font-size: 0.94rem;
}

.footer-grid > div:not(.footer-brand) p,
.footer-grid > div:not(.footer-brand) button,
.footer-grid > div:not(.footer-brand) .footer-nav-link {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.footer-nav-link {
  text-decoration: none;
}

.footer-grid > div:not(.footer-brand) button {
  padding: 0;
}

.footer-contact-details strong {
  color: var(--ink);
  font-weight: 700;
}

.footer-contact-details p:first-of-type,
.footer-contact-details p:nth-of-type(2) {
  line-height: 1.35;
}

.footer-contact-details a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-details a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-details .footer-contact-spacer {
  margin-top: 14px;
}

.footer-grid > div:not(.footer-brand) button:hover,
.footer-grid > div:not(.footer-brand) .footer-nav-link:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  color: #6d716b;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  background: var(--cream);
}

.legal-page .site-header {
  padding: 24px 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 7px 22px rgba(28, 45, 29, 0.06);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.legal-page .brand {
  display: block;
}

.legal-main {
  padding: 170px 0 112px;
}

.legal-article {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(38px, 5vw, 70px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(31, 47, 30, 0.07);
}

.legal-article > header {
  margin-bottom: 46px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-article h1,
.legal-article h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.legal-article h1 {
  font-size: clamp(2.7rem, 4.4vw, 4.5rem);
  line-height: 1.06;
}

.legal-article h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.legal-article h3 {
  margin: 26px 0 0;
  font-size: 1.08rem;
}

.legal-article p,
.legal-article li,
.legal-address {
  color: #4f554f;
  font-size: 1.04rem;
  line-height: 1.75;
}

.legal-article p {
  margin: 14px 0 0;
}

.legal-address {
  margin-top: 14px;
  font-style: normal;
}

.legal-article ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-article a {
  color: var(--green-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .advice-primary.reveal {
  transition-duration: 900ms;
}

.js .advice-primary.reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(42px);
}

@media (max-width: 1180px) {
  :root { --shell-wide: min(100% - 48px, 1080px); }

  .header-inner { gap: 26px; }
  .brand { width: 220px; }
  .main-nav { gap: 18px; }
  .nav-link { font-size: 0.94rem; }
  .nav-cta { padding-inline: 14px; }

  .hero-copy-inner { width: min(720px, 62vw); }
  .hero-welcome-inner { width: min(900px, 72vw); }
  .welcome-title { font-size: 4.15rem; }
  .welcome-lead { font-size: 1.24rem; }
  .hero-copy h1 { font-size: clamp(3rem, 4.5vw, 3.85rem); }

  .platform-card {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 22px;
    min-height: clamp(140px, 16svh, 165px);
    padding: 20px 22px;
  }
  .platform-graphic { width: 175px; height: auto; }
  .platform-copy h3 { font-size: clamp(1.45rem, 2.2vw, 1.8rem); white-space: normal; }
  .platform-copy > p:last-child { font-size: 0.94rem; line-height: 1.45; white-space: normal; }
  .platform-link { grid-column: 3; justify-self: start; min-width: 185px; }

  .advice-title { padding-left: 38vw; }
  .advice-panel { padding-left: 40vw; padding-right: 42px; }
  .advice-person { width: 42vw; }
  .benefit-list { grid-template-columns: repeat(2, auto); justify-content: start; }
}

@media (max-width: 920px) {
  :root { --shell-wide: calc(100vw - 38px); }

  .site-header { padding: 14px 0; }
  .site-header.is-after-hero { padding: 14px 0; }
  .site-header.menu-visible { padding: 10px 0; }
  .brand { width: 218px; }
  .menu-toggle { display: grid; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(390px, 88vw);
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 3px;
    padding: 100px 34px 40px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -18px 0 50px rgba(23, 40, 24, 0.14);
    transform: translateX(105%);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .main-nav.is-open { transform: translateX(0); }
  .nav-link { padding: 15px 0; font-size: 1rem; text-align: left; text-shadow: none; }
  .nav-link::after { inset: auto auto 7px 0; width: 36px; }
  .nav-cta { margin-top: 18px; }
  .nav-phone { margin-top: 14px; padding: 13px 0; font-size: 1rem; }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-scroll { height: 620svh; min-height: 4300px; }
  .hero-stage { min-height: 720px; }
  .hero-video { object-position: 35% center; }
  .hero-copy-inner { top: 150px; width: min(650px, 78vw); }
  .hero-welcome-inner { top: 112px; width: min(700px, 90vw); }
  .hero-copy h1 { font-size: clamp(3rem, 7vw, 4rem); line-height: 1.09; }
  .welcome-title { font-size: 3.8rem; }
  .welcome-lead { font-size: 1.2rem; }
  .services-intro h2,
  .machines-section .section-heading h2 { font-size: clamp(2.8rem, 6.2vw, 4rem); }
  .services-intro p { max-width: 720px; font-size: 1.06rem; }
  .services-stage { gap: 42px; }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    min-height: 190px;
    padding: 22px 25px;
    text-align: left;
  }
  .line-icon { width: 48px; height: 48px; margin: 0; }
  .service-card h2 { font-size: 1.3rem; }
  .service-card p { max-width: none; font-size: 0.92rem; }

  .section { padding: 90px 0; }
  .machines-section { padding-bottom: 0; }
  .platform-list { gap: 10px; }
  .platform-card { grid-template-columns: 115px minmax(0, 1fr) auto; gap: 26px; min-height: 118px; padding: 15px 18px; }
  .platform-graphic { width: 110px; height: auto; }
  .platform-copy h3 { font-size: 1.23rem; }
  .platform-copy > p:last-child { font-size: 1.09rem; line-height: 1.7; }
  .platform-link { min-width: 154px; min-height: 50px; padding: 13px 21px; font-size: 0.99rem; }

  .team-section { padding: 140px 0 112px; }
  .team-layout { gap: 48px; }
  .team-copy { max-width: 820px; }

  .advice-section { padding-top: 130px; }
  .advice-title { padding-left: 42vw; }
  .advice-panel { min-height: 440px; padding: 48px 38px 48px 45vw; }
  .advice-person { left: -18px; width: 49vw; }
  .benefit-list { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; }
  .testimonials-section { padding-top: 108px; padding-bottom: 108px; }

  .contact-inner { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 650px) {
  :root { --shell-wide: calc(100% - 48px); }

  .site-header,
  .site-header.is-after-hero,
  .site-header.is-over-team {
    padding: 9px 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 5px 18px rgba(28, 45, 29, 0.08);
  }
  .header-inner { min-height: 54px; }
  .brand { width: 182px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }
  .menu-toggle:focus,
  .menu-toggle:focus-visible {
    outline: 0;
  }
  .menu-toggle span {
    position: absolute;
    left: 50%;
    width: 25px;
    height: 3px;
    background: var(--green);
    transform: translateX(-50%);
  }
  .menu-toggle span:nth-child(1) { top: 12px; }
  .menu-toggle span:nth-child(2) { top: 20px; }
  .menu-toggle span:nth-child(3) { top: 28px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .main-nav {
    justify-content: flex-start;
    padding-top: 82px;
  }

  .hero-scroll { height: 360svh; min-height: 2600px; }
  .hero-stage { min-height: 720px; }
  .hero-stage::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0 0 auto;
    height: min(68svh, 610px);
    background: linear-gradient(
      to bottom,
      rgba(13, 23, 15, 0.5) 0%,
      rgba(13, 23, 15, 0.3) 48%,
      rgba(13, 23, 15, 0) 100%
    );
    opacity: max(0, calc(1 - var(--hero-exit-progress)));
    pointer-events: none;
    transition: opacity 80ms linear;
  }
  .hero-video {
    object-position: center center;
    background-image: url("assets/hero-poster-mobile.jpg");
  }
  .hero-copy-inner {
    top: clamp(118px, 15svh, 150px);
    width: 100%;
  }
  .hero-welcome-inner {
    top: 34%;
    left: 50%;
    width: min(100%, 520px);
    translate: -50% -50%;
    text-align: center;
  }
  .hero-welcome { width: calc(100% - 24px); }
  .hero-copy h1 { font-size: clamp(1.8rem, 8vw, 2.05rem); line-height: 1.14; }
  .hero-welcome,
  .hero-copy h1,
  .hero-lead {
    color: #fff;
    text-shadow: 0 2px 12px rgba(18, 29, 19, 0.42);
  }
  .hero-lead { max-width: 96%; margin-top: 18px; font-size: 1rem; line-height: 1.55; }
  .hero-actions { gap: 8px; margin-top: 30px; }
  .hero-actions .button { min-height: 46px; padding: 11px 15px; font-size: 0.9rem; }

  .welcome-title { font-size: clamp(2.1rem, 10vw, 2.45rem); line-height: 1.08; }
  .welcome-lead { margin-top: 20px; font-size: 1rem; line-height: 1.55; }
  .scroll-cue {
    min-height: 46px;
    gap: 11px;
    margin-top: 30px;
    padding: 11px 15px;
    font-size: 0.9rem;
  }
  .cue-label-desktop { display: none !important; }
  .cue-label-mobile { display: inline-block !important; }

  .services-stage.mobile-flow {
    position: relative;
    z-index: auto;
    top: auto;
    left: auto;
    width: 100%;
    gap: 34px;
    padding: 84px 0;
    background: var(--cream);
    transform: none;
    pointer-events: auto;
  }
  .services-stage.mobile-flow .services-intro,
  .services-stage.mobile-flow .service-grid {
    width: var(--shell-wide);
    margin-inline: auto;
  }
  .services-stage.mobile-flow .services-intro h2,
  .services-stage.mobile-flow .services-intro p,
  .services-stage.mobile-flow .service-card {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .machines-section,
  .machines-section.is-hero-transition {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    padding: 96px 0 50px;
    overflow: visible;
    transform: none;
  }
  .machines-stage,
  .machines-section.is-hero-transition .machines-stage {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    opacity: 1;
  }
  .machines-stage > .shell-wide {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .services-stage.mobile-flow *,
  main > :not(.hero-scroll) .reveal {
    transition-delay: 0ms !important;
  }
  .services-stage.mobile-flow .reveal,
  main > :not(.hero-scroll) .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .services-intro h2,
  .machines-section .section-heading h2 { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
  .services-intro p { margin-top: 22px; font-size: 0.94rem; line-height: 1.52; }
  .services-stage { gap: 30px; }

  .service-grid { grid-template-columns: 1fr; gap: 7px; }
  .service-card {
    grid-template-columns: 48px 1fr;
    min-height: 120px;
    padding: 13px 17px;
    border-radius: 5px;
  }
  .line-icon { width: 39px; height: 39px; }
  .service-card h2 { margin-bottom: 5px; font-size: 1.04rem; }
  .service-card p { font-size: 0.84rem; line-height: 1.38; }

  .section { padding: 76px 0; }
  .machines-section,
  .machines-section.is-hero-transition { padding: 84px 0 0; }
  .section-heading { margin-bottom: 28px; }
  .machines-section .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .advice-title { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
  .section-heading > p:last-child { font-size: 1rem; }

  .machines-stage > .shell-wide { top: auto; }
  .traktorpool-widget,
  .traktorpool-widget .tp-sis {
    height: 1400px !important;
    min-height: 1400px;
    max-height: 1400px;
  }
  .traktorpool-source { justify-content: flex-start; min-height: 54px; padding-inline: 20px; }

  .team-transition { display: none; height: 0; min-height: 0; }
  .team-section { padding: 120px 0 82px; }
  .team-layout { gap: 30px; }
  .team-copy h2 { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
  .team-copy > p:last-child { margin-top: 18px; font-size: 1rem; }

  .advice-section { padding-top: 105px; }
  .advice-title { padding: 0; text-align: center; }
  .advice-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 340px;
    padding: 32px 24px 36px;
  }
  .advice-person {
    top: auto;
    left: 50%;
    bottom: 100%;
    width: min(360px, calc(100vw - 48px));
    transform: translateX(-50%);
    -webkit-mask-image: none;
    mask-image: none;
  }
  .advice-copy > p { font-size: 1rem; }
  .benefit-list { grid-template-columns: 1fr 1fr; gap: 13px 10px; }
  .benefit-list li { white-space: normal; font-size: 0.84rem; }

  .stats-grid { grid-template-columns: 1fr; gap: 8px; margin-top: 12px; }
  .stat-card { min-height: 220px; padding: 22px 13px; }
  .stat-icon { width: 42px; height: 42px; margin-bottom: 15px; }
  .stat-card strong { font-size: 2.1rem; }
  .stat-card span { font-size: 0.89rem; }

  .testimonial-card { padding: 27px; }
  .stars { top: 35px; left: 99px; }

  .testimonials-section { padding-top: 91px; padding-bottom: 91px; }
  .contact-band { padding: 78px 0; }
  .contact-inner h2 { font-size: clamp(2rem, 8vw, 2.55rem); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { min-height: 0; }
  .form-footer { grid-template-columns: 1fr; gap: 18px; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }

  .site-footer { padding-top: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-bottom div { gap: 12px 22px; }
  .footer-bottom div span { flex-basis: 100%; }

  .legal-page .site-header { padding: 9px 0; }
  .legal-main { padding: 112px 0 70px; }
  .legal-article {
    width: calc(100% - 48px);
    padding: 30px 24px 38px;
  }
  .legal-article > header { margin-bottom: 34px; padding-bottom: 22px; }
  .legal-article h1 {
    font-size: clamp(1.75rem, 7.2vw, 2.1rem);
    overflow-wrap: anywhere;
  }
  .legal-article h2 { margin-top: 34px; font-size: 1.42rem; }
  .legal-article p,
  .legal-article li,
  .legal-address { font-size: 0.98rem; line-height: 1.68; }
}

@media (max-height: 760px) and (min-width: 651px) {
  .hero-copy-inner { top: 140px; }
  .hero-welcome-inner { top: 100px; }
  .hero-copy h1 { font-size: clamp(2.9rem, 4vw, 4rem); }
  .service-card { min-height: 210px; padding-block: 20px; }
  .line-icon { width: 45px; height: 45px; margin-bottom: 8px; }
}

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

  .machines-section {
    height: auto;
  }

  .machines-stage {
    position: relative;
    min-height: 0;
    opacity: 1;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .hero-scroll { height: auto; min-height: 100svh; }
  .hero-stage { position: relative; }
  .reveal,
  .js .reveal { opacity: 1; transform: none; }
}
