:root {
  --red: #d6241b;
  --red-bright: #ed2d22;
  --red-dark: #9f1711;
  --ink: #111412;
  --ink-2: #1b1f1c;
  --ink-3: #2a2e2b;
  --paper: #f3f1eb;
  --paper-warm: #e8e4da;
  --white: #ffffff;
  --muted: #686d68;
  --line: rgba(17, 20, 18, .14);
  --radius: 4px;
  --container: 1240px;
  --shadow: 0 28px 80px rgba(5, 8, 6, .16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--red);
}

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

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

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

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

:focus-visible {
  outline: 3px solid #ffba33;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #ff5a4f;
}

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

h1, h2, h3 {
  text-wrap: balance;
}

h1, h2 {
  margin-bottom: 24px;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .98;
}

h2 {
  font-size: clamp(42px, 5.3vw, 76px);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 24px;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 30px rgba(214, 36, 27, .22);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button:hover {
  border-color: var(--red-bright);
  background: var(--red-bright);
  transform: translateY(-2px);
}

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

.button--small {
  min-height: 43px;
  padding: 12px 18px;
  font-size: 11px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(13, 16, 14, .12);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}

.button--dark:hover {
  border-color: var(--red);
  background: var(--red);
}

.button--wide {
  width: 100%;
}

.topbar {
  position: absolute;
  z-index: 32;
  top: 0;
  right: 0;
  left: 0;
  height: 36px;
  color: rgba(255, 255, 255, .72);
  background: rgba(8, 10, 9, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.topbar__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.topbar p span {
  margin-inline: 7px;
  color: var(--red-bright);
}

.topbar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.topbar__link svg {
  width: 13px;
  fill: none;
  stroke: var(--red-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 36px;
  right: 0;
  left: 0;
  height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  transition: top .25s ease, height .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  top: 0;
  height: 78px;
  border-color: rgba(255, 255, 255, .08);
  background: rgba(14, 17, 15, .94);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.brand img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand__text small {
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.main-nav > a:not(.button) {
  position: relative;
  padding: 15px 0;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: min(960px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero__media, .hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/hero-agrartechnik.webp");
  background-position: center center;
  background-size: cover;
  transform: scale(1.015);
  animation: hero-in 1.4s cubic-bezier(.2, .7, .2, 1) both;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 11, 9, .92) 0%, rgba(8, 11, 9, .78) 32%, rgba(8, 11, 9, .18) 72%, rgba(8, 11, 9, .22) 100%),
    linear-gradient(0deg, rgba(8, 11, 9, .68) 0%, transparent 32%, rgba(8, 11, 9, .15) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(960px, 100svh);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 50px;
  padding-top: 150px;
  padding-bottom: 86px;
}

.hero__content {
  max-width: 800px;
  padding-top: 28px;
  animation: content-in .85s .15s cubic-bezier(.2, .7, .2, 1) both;
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.7vw, 96px);
  line-height: .94;
}

.hero h1 em {
  color: #ff4034;
  font-style: normal;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  color: #ff5147;
  font-size: 11px;
}

.hero-card {
  align-self: end;
  margin-bottom: 32px;
  padding: 28px;
  border-top: 3px solid var(--red);
  color: var(--white);
  background: rgba(16, 20, 17, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: content-in .85s .35s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
}

.hero-card__icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-card__label {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 24px;
  font-size: 22px;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.hero-card a, .service-card a, .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff564c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card a span, .service-card a span, .text-link span {
  transition: transform .25s ease;
}

.hero-card a:hover span, .service-card a:hover span, .text-link:hover span {
  transform: translate(3px, -2px);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  display: grid;
  width: 52px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 0;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: relative;
  width: 1px;
  height: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, .3);
}

.hero__scroll span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

.service-overview {
  overflow: hidden;
  background: var(--paper);
}

.service-overview::before {
  position: absolute;
  top: -100px;
  right: -60px;
  color: rgba(17, 20, 18, .025);
  content: "BT";
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 380px;
  font-weight: 900;
  letter-spacing: -.12em;
  line-height: 1;
}

.section-head {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr .72fr;
  gap: 72px;
  margin-bottom: 62px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head > p {
  max-width: 560px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(17, 20, 18, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .7);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  border-color: transparent;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(17, 20, 18, .1);
  transform: translateY(-6px);
}

.service-card--featured {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.service-card--featured:hover {
  border-color: var(--ink);
  background: var(--ink-2);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: auto;
}

.service-card__number {
  color: #9a9e9b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.service-card:hover .service-card__icon {
  color: var(--white);
  background: var(--red);
  transform: rotate(-7deg);
}

.service-card--featured .service-card__icon {
  border-color: rgba(255, 255, 255, .14);
  color: var(--white);
  background: var(--red);
}

.service-card__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-card h3 {
  margin: 42px 0 14px;
  font-size: 23px;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card--featured p {
  color: rgba(255, 255, 255, .62);
}

.service-card a {
  margin-top: auto;
  color: var(--red);
}

.section--dark {
  color: var(--white);
  background: var(--ink);
}

.about {
  overflow: hidden;
}

.about::after {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .012), 0 0 0 160px rgba(255, 255, 255, .01);
  content: "";
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(72px, 9vw, 140px);
}

.about__visual {
  position: relative;
}

.about__image {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 34%, rgba(214, 36, 27, .23), transparent 45%),
    linear-gradient(135deg, #282d29, #151816);
}

.about__image::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.about__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  border-radius: 50%;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .4);
  transform: translate(-50%, -50%);
}

.about__badge {
  position: absolute;
  right: -30px;
  bottom: 35px;
  display: flex;
  width: 220px;
  height: 150px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  background: var(--red);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .28);
}

.about__badge > span {
  color: rgba(255, 255, 255, .24);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .75;
}

.about__badge p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.about__content h2 {
  margin-bottom: 28px;
}

.about__lead {
  max-width: 630px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, .64);
  font-size: 17px;
}

.feature-list {
  margin-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.feature-list article > span {
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 800;
}

.feature-list h3 {
  margin-bottom: 5px;
  font-size: 17px;
  letter-spacing: -.025em;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.values {
  background: var(--paper-warm);
}

.values__intro {
  margin-bottom: 60px;
}

.values__intro h2 {
  margin-bottom: 0;
}

.values__grid {
  display: grid;
  min-height: 480px;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.value-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius);
}

.value-card--wide {
  display: flex;
  flex-direction: column;
  grid-row: 1 / 3;
  background: var(--white);
}

.value-card__tag {
  display: block;
  margin-bottom: auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.value-card h3 {
  margin: 40px 0 18px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.value-card--wide p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.value-card__line {
  position: absolute;
  top: 40px;
  right: 36px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.value-card--red {
  display: grid;
  grid-template-columns: 1fr auto;
  color: var(--white);
  background: var(--red);
}

.value-card--red .value-card__tag {
  color: rgba(255, 255, 255, .62);
}

.value-card--red svg {
  width: 36px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.value-card--red h3 {
  grid-column: 1 / 3;
  margin: 30px 0 0;
  font-size: clamp(25px, 2.5vw, 38px);
}

.value-card--image {
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 12, 10, .82), rgba(9, 12, 10, .18)),
    url("assets/hero-agrartechnik.webp") center 58% / cover;
}

.value-card--image .value-card__tag {
  color: rgba(255, 255, 255, .66);
}

.value-card--image h3 {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: clamp(25px, 2.6vw, 40px);
}

.process {
  overflow: hidden;
  color: var(--white);
  background: #181c19;
}

.process::before {
  position: absolute;
  top: -210px;
  left: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 36, 27, .16), transparent 70%);
  content: "";
}

.process__head {
  position: relative;
  margin-bottom: 64px;
}

.process__head h2 {
  margin: 0;
}

.process__steps {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process__steps::before {
  position: absolute;
  top: 52px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: rgba(255, 255, 255, .14);
  content: "";
}

.process__steps li {
  position: relative;
  padding: 0 42px;
  text-align: center;
}

.process__number {
  position: absolute;
  top: 36px;
  left: calc(50% + 42px);
  color: rgba(255, 255, 255, .32);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.process__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 104px;
  height: 104px;
  margin: 0 auto 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  background: #181c19;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.process__steps li:hover .process__icon {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-5px);
}

.process__icon svg {
  width: 34px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.process__steps h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.process__steps p {
  max-width: 330px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.contact {
  overflow: hidden;
  color: var(--white);
  background: #0f1210;
}

.contact__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 14, 12, .93), rgba(11, 14, 12, .74)),
    url("assets/hero-agrartechnik.webp") center / cover;
  opacity: .74;
}

.contact__grid {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1fr);
  gap: clamp(60px, 8vw, 120px);
}

.contact__intro {
  padding-top: 34px;
}

.contact__intro h2 {
  margin-bottom: 28px;
}

.contact__intro > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
}

.contact__channels {
  display: grid;
  gap: 10px;
  margin-top: 44px;
}

.contact__channels > a {
  display: flex;
  max-width: 410px;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .04);
  transition: border-color .25s ease, background .25s ease;
}

.contact__channels > a:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
}

.contact__channels > a > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--red);
}

.contact__channels svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact__channels div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact__channels small {
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact__channels strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .3);
}

.contact-form__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-form__head span {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.045em;
}

.contact-form__head small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.form-grid label {
  min-width: 0;
}

.form-grid label > span {
  display: block;
  margin-bottom: 7px;
  color: #3c413d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  border: 1px solid #d7dad6;
  border-radius: 0;
  outline: 0;
  background: #fafafa;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-grid input, .form-grid select {
  height: 50px;
  padding: 0 14px;
}

.form-grid textarea {
  min-height: 115px;
  padding: 13px 14px;
  resize: vertical;
}

.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(214, 36, 27, .1);
}

.form-grid ::placeholder {
  color: #969b97;
  opacity: 1;
}

.form-consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  margin: 20px 0;
  color: #737873;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.45;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--red);
}

.form-consent a {
  color: var(--ink);
  text-decoration: underline;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.footer {
  padding: 76px 0 26px;
  color: var(--white);
  background: #090b0a;
}

.footer__main {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr auto;
  gap: 60px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.brand--footer img {
  width: 64px;
  height: 64px;
}

.footer__main > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, .46);
  font-size: 13px;
}

.footer__top {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer__top span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  font-size: 17px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 760px;
  margin: 54px 0;
}

.footer__links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__links strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .92);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer__links a, .footer__links span {
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
  transition: color .2s ease;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .32);
  font-size: 10px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  gap: 26px;
}

.footer__bottom a:hover {
  color: var(--white);
}

.mobile-cta {
  display: none;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: 390px;
  padding: 16px 20px;
  border-left: 4px solid var(--red);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

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

.services-grid .reveal:nth-child(2), .process__steps .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3), .process__steps .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .04s; }
.services-grid .reveal:nth-child(5) { transition-delay: .12s; }
.services-grid .reveal:nth-child(6) { transition-delay: .2s; }

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-header {
  position: static;
  height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: var(--ink);
}

.legal-header .header__inner {
  height: 100%;
}

.legal-header__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}

.legal-main {
  padding: 100px 0 130px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 7vw, 90px);
}

.legal-content h2 {
  margin: 54px 0 16px;
  font-size: 28px;
  letter-spacing: -.04em;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: 18px;
}

.legal-content p, .legal-content li {
  color: #555b56;
}

.legal-content a {
  color: var(--red-dark);
  text-decoration: underline;
}

.legal-note {
  margin-bottom: 44px;
  padding: 20px 22px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.legal-note strong {
  display: block;
  margin-bottom: 4px;
}

.legal-note p {
  margin: 0;
}

.placeholder-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.placeholder-list li {
  padding: 12px 14px;
  border: 1px dashed rgba(214, 36, 27, .45);
  background: rgba(255, 255, 255, .55);
}

@keyframes hero-in {
  from { opacity: .2; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes content-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .hero-card {
    padding: 24px;
  }

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

  .about__grid {
    gap: 70px;
  }

  .contact__grid {
    grid-template-columns: minmax(0, .8fr) minmax(500px, 1fr);
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 100px 0;
  }

  .topbar {
    display: none;
  }

  .site-header, .site-header.is-scrolled {
    top: 0;
    height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 38px 24px;
    background: rgba(13, 16, 14, .98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 19px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 20px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 28px;
  }

  .hero, .hero__inner {
    min-height: 860px;
  }

  .hero__inner {
    display: flex;
    align-items: center;
    padding-top: 125px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(8, 11, 9, .9), rgba(8, 11, 9, .34)), linear-gradient(0deg, rgba(8, 11, 9, .78), transparent 48%);
  }

  .hero-card {
    display: none;
  }

  .hero__content {
    max-width: 720px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .about__visual {
    width: min(600px, 86%);
  }

  .values__grid {
    min-height: 660px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.15fr .85fr;
  }

  .value-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .process__steps li {
    padding-inline: 20px;
  }

  .process__number {
    left: calc(50% + 30px);
  }

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

  .contact__intro {
    padding-top: 0;
  }

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

  .contact__channels > a {
    max-width: none;
  }

  .footer__main {
    grid-template-columns: 1fr auto;
  }

  .footer__main > p {
    display: none;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    font-size: 15px;
  }

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

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .brand img {
    width: 49px;
    height: 49px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text small {
    font-size: 7px;
  }

  .hero, .hero__inner {
    min-height: 790px;
  }

  .hero__media {
    background-position: 63% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(8, 11, 9, .9), rgba(8, 11, 9, .56)), linear-gradient(0deg, rgba(8, 11, 9, .76), transparent 45%);
  }

  .hero__inner {
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .hero__content {
    padding-top: 0;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(46px, 13.4vw, 68px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    gap: 9px;
  }

  .hero__scroll {
    display: none;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head > p {
    font-size: 15px;
  }

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

  .service-card {
    min-height: 340px;
    padding: 28px;
  }

  .service-overview::before {
    font-size: 220px;
  }

  .about__grid {
    gap: 74px;
  }

  .about__visual {
    width: calc(100% - 22px);
  }

  .about__badge {
    right: -22px;
    bottom: -28px;
    width: 184px;
    height: 122px;
    padding: 18px;
  }

  .about__badge > span {
    font-size: 46px;
  }

  .about__badge p {
    font-size: 10px;
  }

  .feature-list article {
    grid-template-columns: 36px 1fr;
  }

  .values__grid {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .value-card {
    min-height: 300px;
    padding: 28px;
  }

  .value-card--wide {
    grid-column: auto;
  }

  .value-card__line {
    top: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .process__steps::before {
    top: 52px;
    bottom: 52px;
    left: 52px;
    width: 1px;
    height: auto;
  }

  .process__steps li {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 0 22px;
    padding: 0;
    text-align: left;
  }

  .process__icon {
    grid-row: 1 / 4;
    margin: 0;
  }

  .process__number {
    top: 35px;
    left: 76px;
    z-index: 2;
  }

  .process__steps h3 {
    align-self: end;
    margin-top: 15px;
  }

  .process__steps p {
    max-width: none;
    margin: 0;
  }

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

  .contact-form {
    padding: 28px 20px;
  }

  .contact-form__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .footer {
    padding-bottom: 92px;
  }

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

  .footer__top {
    display: none;
  }

  .footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer__links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 20;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    border-radius: 99px;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .mobile-cta svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .toast {
    right: 14px;
    bottom: 76px;
    left: 14px;
  }

  .legal-main {
    padding: 72px 0 100px;
  }
}

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

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