:root {
  --ink: #1c2118;
  --ink-soft: #3c4533;
  --field: #eef1e8;
  --paper: #f5f3ea;
  --paper-strong: #fffdf5;
  --olive: #4f5d39;
  --olive-dark: #252c20;
  --olive-deep: #151912;
  --gold: #c0a35a;
  --gold-dark: #9b7d36;
  --line: rgba(42, 50, 34, 0.18);
  --white: #ffffff;
  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Roboto Condensed", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 18px 44px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 12, 9, 0.82), rgba(8, 12, 9, 0.42) 72%, rgba(8, 12, 9, 0));
}

.site-header.is-solid {
  background: rgba(20, 25, 17, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
}

.brand__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.brand__mark img {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand__text {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a,
.mobile-panel a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.mobile-panel a:hover {
  color: var(--gold);
}

.header-contact {
  display: grid;
  justify-items: end;
  gap: 2px;
  min-width: 158px;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  transition: color 160ms ease;
}

.header-contact a img {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.header-contact a:hover {
  color: var(--gold);
}

.header-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(192, 163, 90, 0.42);
  border-radius: 10px;
  background: rgba(192, 163, 90, 0.12);
  color: var(--gold);
  transition: background 160ms ease, border-color 160ms ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  border-color: var(--gold);
  background: rgba(192, 163, 90, 0.22);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.mobile-panel {
  position: fixed;
  z-index: 35;
  top: 72px;
  left: 14px;
  right: 14px;
  display: none;
  padding: 18px;
  border: 1px solid rgba(192, 163, 90, 0.22);
  border-radius: 10px;
  background: #1c2217;
  color: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.mobile-panel.is-open {
  display: grid;
  gap: 14px;
}

.mobile-panel__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 22px;
}

.mobile-panel__phone img {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 64% 47%, rgba(92, 103, 71, 0.54), rgba(27, 34, 23, 0.08) 28%, rgba(10, 14, 10, 0) 49%),
    linear-gradient(110deg, #11160f 0%, #1c2418 34%, #2f3929 56%, #0d120c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 9, 0.96) 0%, rgba(18, 25, 15, 0.82) 37%, rgba(18, 24, 16, 0.42) 62%, rgba(11, 14, 10, 0.86) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -58px;
  height: 150px;
  background: var(--paper);
  transform: skewY(-3deg);
  transform-origin: 100% 0;
}

.hero__bg {
  position: absolute;
  z-index: 0;
  top: 82px;
  right: 25%;
  width: 420px;
  height: 820px;
  background: url("assets/hero-person.png") center / cover no-repeat;
  filter: saturate(0.82) contrast(1.06);
  opacity: 0.84;
  -webkit-mask-image: radial-gradient(ellipse at 55% 46%, #000 0 44%, rgba(0, 0, 0, 0.82) 58%, transparent 79%);
  mask-image: radial-gradient(ellipse at 55% 46%, #000 0 44%, rgba(0, 0, 0, 0.82) 58%, transparent 79%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__bg::before {
  background:
    linear-gradient(90deg, rgba(18, 24, 15, 0.92), rgba(18, 24, 15, 0.08) 36%, rgba(18, 24, 15, 0.4) 100%),
    linear-gradient(0deg, rgba(18, 24, 15, 0.72), rgba(18, 24, 15, 0.02) 45%, rgba(18, 24, 15, 0.5));
}

.hero__bg::after {
  box-shadow: inset 0 0 80px 62px rgba(18, 24, 15, 0.82);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 690px) 400px;
  gap: 72px;
  align-items: center;
  width: min(100% - 88px, 1360px);
  min-height: 840px;
  margin: 0 auto;
  padding: 118px 0 116px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-kicker span,
.divider span,
.final-star {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
}

.section-kicker span img,
.divider span img,
.final-star img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero h1,
.section-title,
.request-card h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: 70px;
}

.hero__lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 24px;
  line-height: 1.32;
}

.hero-pay {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-points {
  display: grid;
  gap: 14px;
  max-width: 600px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
}

@media (min-width: 941px) {
  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 700px;
  }

  .hero-points li {
    align-items: flex-start;
    gap: 14px;
    font-size: 18px;
    line-height: 1.25;
  }

  .point-icon {
    width: 42px;
    height: 42px;
  }
}

.point-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: url("assets/ico-check.svg") center / contain no-repeat;
}

.hero-note {
  max-width: 600px;
  margin: 34px 0 0;
  padding: 17px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.34;
}

.request-card {
  position: relative;
  align-self: center;
  width: 100%;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(246, 244, 234, 0.95);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.request-card h2 {
  color: var(--ink);
  font-size: 31px;
}

.request-card p {
  margin: 13px 0 22px;
  color: #65705b;
  font-size: 18px;
  line-height: 1.28;
}

.request-card label:not(.agreement) {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.request-card label:not(.agreement) span {
  color: #65705b;
  font-size: 15px;
}

.request-card input[type="text"],
.request-card input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #d8dbcf;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.request-card input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(192, 163, 90, 0.18);
}

.agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 5px 0 18px;
  color: #65705b;
  font-size: 14px;
  line-height: 1.25;
}

.agreement input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--olive);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 22px;
  border: 0;
  border-radius: 7px;
  background: var(--olive);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.primary-btn:hover {
  background: #3f4b2d;
  transform: translateY(-1px);
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: #717a69;
  font-size: 14px;
}

.privacy-note span {
  width: 15px;
  height: 15px;
  background: url("assets/ico-lock.svg") center / contain no-repeat;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 8, 0.74);
  animation: modal-fade 180ms ease;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  margin: auto;
  animation: modal-rise 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal__overlay,
  .modal__dialog {
    animation: none;
  }
}

.modal__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(60, 69, 51, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.modal__close:hover {
  border-color: rgba(60, 69, 51, 0.4);
  background: var(--white);
}

.modal__close img {
  width: 16px;
  height: 16px;
}

.modal .request-card {
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

.modal .request-card h2 {
  padding-right: 44px;
}

.request-card p.request-card__direction {
  margin: 0 0 18px;
  padding: 11px 14px;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  background: rgba(192, 163, 90, 0.14);
  color: var(--olive);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.request-card__direction[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.section {
  position: relative;
  padding: 94px 0 98px;
}

.section__inner {
  width: min(100% - 72px, 1280px);
  margin: 0 auto;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(100%, 820px);
  margin: 0 auto 20px;
  color: var(--gold);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.divider--light::before,
.divider--light::after {
  background: var(--line);
}

.section-title {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 46px;
  text-align: center;
}

.benefits {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  margin-top: 62px;
}

.benefit-item {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 220px;
  text-align: center;
}

.benefit-icon,
.step-icon {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--olive);
}

.benefit-icon img,
.step-icon img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.benefit-item h3 {
  min-height: 50px;
  margin: 0 0 13px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
}

.benefit-item p {
  margin: 0;
  color: #68715e;
  font-size: 18px;
  line-height: 1.34;
}

.directions {
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf7 0%, #f5f1e7 100%);
  color: var(--ink);
}

.directions::before,
.directions::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  height: 118px;
  display: none;
  background: var(--paper);
  transform: skewY(-3deg);
}

.directions::before {
  top: -78px;
}

.directions::after {
  bottom: -78px;
}

.directions .section__inner {
  position: relative;
  z-index: 1;
}

.directions .section-title {
  color: var(--ink);
}

.direction-pay-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: #596251;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
  margin-top: 44px;
}

.direction-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--olive-dark);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(28, 33, 24, 0.24);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.direction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 56px rgba(28, 33, 24, 0.34);
}

.direction-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #2a3220 center top / cover no-repeat;
  transition: transform 400ms ease;
}

.direction-card:hover .direction-card__media {
  transform: scale(1.04);
}

.direction-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 32, 20, 0.1) 0%,
    rgba(28, 34, 21, 0.34) 26%,
    rgba(32, 39, 24, 0.74) 44%,
    rgba(40, 48, 30, 0.94) 56%,
    #2c3421 68%
  );
}

.direction-card--transport .direction-card__media {
  background-image:
    url("assets/dir-transport.jpg"),
    linear-gradient(160deg, #3f4a2e 0%, #2b3320 55%, #222819 100%);
}

.direction-card--comms .direction-card__media {
  background-image: url("assets/dir-comms.jpg");
}

.direction-card--supply .direction-card__media {
  background-image: url("assets/dir-supply.jpg");
}

.direction-card--medical .direction-card__media {
  background-image: url("assets/dir-medical.jpg");
}

.direction-card--it .direction-card__media {
  background-image: url("assets/dir-it.jpg");
}

.direction-card--build .direction-card__media {
  background-image: url("assets/dir-build.jpg");
}

.direction-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  height: 100%;
  padding: 30px 28px 26px;
}

.direction-card__icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.direction-card__icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.direction-card__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.direction-card__text {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.42;
}

.direction-card__pay {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.direction-card__pay-icon {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: rgba(192, 163, 90, 0.18);
}

.direction-card__pay-icon img {
  width: 27px;
  height: 27px;
}

.direction-card__pay-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.direction-card__pay-text small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direction-card__pay-text b {
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.05;
}

.direction-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  min-height: 56px;
  padding: 12px 18px;
  border: 1px solid rgba(192, 163, 90, 0.42);
  border-radius: 999px;
  background: rgba(192, 163, 90, 0.14);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.direction-card__btn img {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  transition: filter 180ms ease;
}

.direction-card:hover .direction-card__btn {
  border-color: var(--gold);
  background: var(--gold);
  color: #22271d;
}

.direction-card:hover .direction-card__btn img {
  filter: brightness(0) saturate(0);
}

.steps {
  background: var(--paper);
}

.step-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-list li {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 204px;
  padding: 0 8px;
  text-align: center;
}

.step-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 70px;
  right: -28px;
  width: 44px;
  height: 20px;
  background: url("assets/ico-arrow.svg") center / contain no-repeat;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
}

.step-icon {
  margin-bottom: 18px;
}

.step-list p {
  max-width: 194px;
  margin: 0;
  color: #596251;
  font-size: 18px;
  line-height: 1.26;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 44px 0 54px;
  background: var(--paper);
  color: var(--white);
  text-align: left;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: start;
  gap: 28px;
  width: min(100% - 72px, 1280px);
  margin: 0 auto;
  padding: 36px 54px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(32, 39, 26, 0.94), rgba(32, 39, 26, 0.94)),
    linear-gradient(135deg, #161c13 0%, #4c5738 100%);
}

.final-star {
  position: absolute;
  top: -26px;
  left: -26px;
  width: 148px;
  height: 148px;
  margin-bottom: 0;
  color: var(--gold);
  opacity: 0.12;
}

.final-cta h2 {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  font-size: 36px;
}

.final-cta p {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.final-actions {
  display: inline-flex;
  align-items: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  gap: 28px;
  position: relative;
}

.primary-btn--light {
  width: auto;
  min-width: 190px;
  background: var(--gold);
  color: #22271d;
}

.primary-btn--light:hover {
  background: #d0b369;
}

.final-actions div {
  display: grid;
  justify-items: start;
  gap: 3px;
  text-align: left;
}

.final-actions div a {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
}

.final-actions div span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

@media (min-width: 1440px) {
  .hero {
    min-height: 920px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 860px) 420px;
    gap: 64px;
  }

  .hero h1 {
    max-width: 850px;
    font-size: 72px;
  }

  .hero__lead {
    max-width: 650px;
    font-size: 26px;
  }

  .hero-pay {
    max-width: 650px;
    font-size: 34px;
  }

  .hero-points {
    max-width: 760px;
  }

  .request-card {
    padding: 40px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
    padding-inline: 28px;
  }

  .main-nav {
    gap: 16px;
    font-size: 15px;
  }

  .hero {
    min-height: 800px;
  }

  .hero__bg {
    right: 31%;
    width: 360px;
    height: 720px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 610px) 300px;
    gap: 36px;
    width: min(100% - 54px, 1024px);
    min-height: 770px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: 52px;
  }

  .hero__lead {
    font-size: 22px;
  }

  .hero-pay {
    font-size: 28px;
  }

  .request-card {
    padding: 26px 22px 22px;
  }

  .request-card h2 {
    font-size: 25px;
  }

  .request-card input[type="text"],
  .request-card input[type="tel"] {
    height: 50px;
    padding: 0 15px;
  }

  .section-title {
    font-size: 42px;
  }

  .benefit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .benefit-item h3 {
    font-size: 19px;
  }

  .direction-grid {
    gap: 18px;
  }

  .direction-card,
  .direction-card__body {
    min-height: 520px;
  }

  .direction-card__body {
    padding: 24px 20px 20px;
  }

  .direction-card__title {
    font-size: 25px;
  }

  .direction-card__text {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 15px;
  }

  .direction-card__pay {
    margin-top: 18px;
    gap: 12px;
  }

  .direction-card__pay-icon {
    width: 44px;
    height: 44px;
  }

  .direction-card__pay-text b {
    font-size: 23px;
  }

  .direction-card__btn {
    margin-top: 18px;
    min-height: 50px;
    font-size: 17px;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
    padding: 14px 22px;
  }

  .main-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__mark img {
    width: 40px;
    height: 40px;
  }

  .brand__text {
    font-size: 14px;
  }

  .hero {
    min-height: 0;
  }

  .hero::after {
    height: 74px;
    bottom: -45px;
  }

  .hero__bg {
    top: 86px;
    right: -34px;
    width: 310px;
    height: 650px;
    opacity: 0.68;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 34px, 620px);
    min-height: 0;
    padding: 104px 0 72px;
  }

  .hero h1 {
    max-width: 500px;
    font-size: 38px;
  }

  .section-kicker {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .hero__lead {
    max-width: 430px;
    margin-top: 18px;
    font-size: 20px;
  }

  .hero-points {
    gap: 11px;
    margin-top: 26px;
  }

  .hero-points li {
    font-size: 18px;
  }

  .hero-note {
    margin-top: 25px;
    font-size: 18px;
  }

  .request-card {
    width: min(100%, 450px);
    margin: 0 auto;
  }

  .section {
    padding: 72px 0 76px;
  }

  .section__inner {
    width: min(100% - 32px, 620px);
  }

  .section-title {
    font-size: 34px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
  }

  .benefit-item {
    grid-template-columns: 78px 1fr;
    justify-items: start;
    column-gap: 18px;
    min-height: 0;
    text-align: left;
  }

  .benefit-icon {
    grid-row: span 2;
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .benefit-item h3 {
    min-height: 0;
    margin-top: 3px;
    margin-bottom: 7px;
    font-size: 23px;
  }

  .benefit-item p {
    font-size: 18px;
  }

  .directions {
    padding-top: 82px;
    background:
      linear-gradient(rgba(29, 36, 23, 0.94), rgba(29, 36, 23, 0.94)),
      linear-gradient(135deg, #1f271a, #566044);
    color: var(--white);
  }

  .directions::before,
  .directions::after {
    display: block;
  }

  .directions .section-title {
    color: var(--white);
  }

  .directions .direction-pay-note {
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
  }

  .directions .divider--light::before,
  .directions .divider--light::after {
    background: rgba(255, 255, 255, 0.18);
  }

  .direction-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .direction-card,
  .direction-card__body {
    min-height: 560px;
  }

  .direction-card {
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  }

  .direction-card:hover {
    transform: none;
  }

  .direction-card:hover .direction-card__media {
    transform: none;
  }

  .direction-card__body {
    padding: 26px 22px 22px;
  }

  .direction-card__title {
    font-size: 27px;
  }

  .direction-card__text {
    font-size: 16px;
  }

  .step-list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 42px;
  }

  .step-list li {
    grid-template-columns: 42px 74px 1fr;
    align-items: center;
    justify-items: start;
    gap: 14px;
    min-height: 94px;
    padding: 0;
    text-align: left;
  }

  .step-list li:not(:last-child)::after {
    top: 62px;
    left: 0;
    right: auto;
    width: 34px;
    height: 30px;
    background: url("assets/ico-arrow.svg") center / contain no-repeat;
    transform: rotate(90deg);
  }

  .step-number {
    margin: 0;
  }

  .step-icon {
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .step-list p {
    max-width: none;
    font-size: 19px;
  }

  .final-cta {
    padding: 92px 0;
    background:
      linear-gradient(rgba(32, 39, 26, 0.94), rgba(32, 39, 26, 0.94)),
      linear-gradient(135deg, #161c13 0%, #4c5738 100%);
    text-align: center;
  }

  .final-cta::before {
    display: block;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    width: min(100% - 48px, 780px);
    padding: 0;
    background: none;
  }

  .final-star {
    position: static;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    opacity: 1;
  }

  .final-cta h2 {
    font-size: 52px;
  }

  .final-cta p {
    margin: 15px 0 32px;
    font-size: 23px;
  }

  .final-cta h2,
  .final-cta p,
  .final-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .final-actions {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 16px;
  }

  .hero__bg {
    top: 76px;
    right: -86px;
    width: 285px;
    height: 575px;
  }

  .hero__inner {
    width: min(100% - 26px, 420px);
    padding-top: 92px;
  }

  .hero h1 {
    max-width: 380px;
    font-size: 33px;
  }

  .hero__lead {
    max-width: 330px;
    font-size: 18px;
  }

  .hero-pay {
    max-width: 330px;
    font-size: 22px;
  }

  .hero-points li {
    align-items: flex-start;
    font-size: 16px;
  }

  .point-icon {
    width: 27px;
    height: 27px;
  }

  .hero-note {
    padding: 14px 16px;
    font-size: 16px;
  }

  .request-card {
    padding: 22px;
  }

  .request-card h2 {
    font-size: 25px;
  }

  .request-card p {
    font-size: 16px;
  }

  .section-title {
    font-size: 30px;
  }

  .direction-pay-note {
    font-size: 17px;
  }

  .divider {
    gap: 13px;
    margin-bottom: 16px;
  }

  .benefit-item {
    grid-template-columns: 64px 1fr;
    column-gap: 14px;
  }

  .benefit-icon {
    width: 58px;
    height: 58px;
  }

  .benefit-item h3 {
    font-size: 20px;
  }

  .benefit-item p {
    font-size: 16px;
  }

  .direction-card,
  .direction-card__body {
    min-height: 520px;
  }

  .direction-card__body {
    padding: 22px 18px 18px;
  }

  .direction-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .direction-card__title {
    font-size: 23px;
  }

  .direction-card__text {
    margin-top: 14px;
    padding-top: 14px;
    font-size: 15px;
  }

  .direction-card__pay {
    margin-top: 18px;
    gap: 12px;
  }

  .direction-card__pay-icon {
    width: 44px;
    height: 44px;
  }

  .direction-card__pay-icon img {
    width: 24px;
    height: 24px;
  }

  .direction-card__pay-text b {
    font-size: 23px;
  }

  .direction-card__btn {
    margin-top: 18px;
    min-height: 50px;
    font-size: 17px;
  }

  .step-list li {
    grid-template-columns: 36px 58px 1fr;
    gap: 11px;
  }

  .step-icon {
    width: 58px;
    height: 58px;
  }

  .step-list p {
    font-size: 17px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .final-cta p {
    font-size: 18px;
  }

  .final-actions {
    display: grid;
    justify-items: center;
    gap: 18px;
  }

  .final-actions div {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 30px;
  }

  .request-card h2 {
    font-size: 23px;
  }

  .primary-btn {
    font-size: 18px;
  }
}
