:root {
  --ink: #081417;
  --ink-2: #102428;
  --paper: #f4f1e8;
  --paper-2: #ebe5d5;
  --white: #ffffff;
  --muted: #6c766f;
  --line: rgba(8, 20, 23, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --green: #21a67a;
  --gold: #f2b84b;
  --orange: #dc7a32;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

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

.topbar,
.hero,
.trust-strip,
.section,
.request,
.footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  color: var(--paper);
}

.topbar,
.hero {
  position: relative;
  z-index: 0;
}

.topbar::before,
.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  content: "";
  background:
    radial-gradient(circle at 82% 12%, rgba(242, 184, 75, 0.18), transparent 260px),
    linear-gradient(135deg, #061013 0%, var(--ink-2) 100%);
  transform: translateX(-50%);
}

.brand,
.nav,
.hero-actions,
.dispatch-head,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  width: max-content;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-symbol {
  width: 12px;
  height: 24px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(var(--gold), var(--green));
}

.nav {
  gap: 34px;
  justify-content: center;
  color: rgba(244, 241, 232, 0.72);
  font-size: 20px;
  font-weight: 800;
}

.nav a {
  padding: 10px 0;
}

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

.top-cta {
  justify-self: end;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--paper);
  font-size: 18px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 56px;
  min-height: 590px;
  padding: 58px 0 76px;
  color: var(--paper);
  align-items: center;
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.5vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lead,
.request-copy p,
.proof-card p {
  max-width: 670px;
  color: rgba(244, 241, 232, 0.72);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 21px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.primary {
  color: #061013;
  background: var(--gold);
}

.primary:hover {
  background: #ffd06b;
}

.secondary {
  border: 1px solid var(--line-dark);
  color: var(--paper);
  background: transparent;
}

.dispatch-card {
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
}

.dispatch-head {
  justify-content: space-between;
  margin-bottom: 26px;
  color: rgba(244, 241, 232, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dispatch-head strong {
  color: var(--green);
}

.gauge {
  position: relative;
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #081417 0 48%, transparent 49%),
    conic-gradient(var(--gold) 0 68%, rgba(255, 255, 255, 0.14) 68% 100%);
}

.gauge::before {
  content: "готовность\A 68%";
  white-space: pre;
  color: var(--paper);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.05em;
}

.gauge span {
  position: absolute;
  right: 18%;
  bottom: 19%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 28px var(--gold);
}

.dispatch-list {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.dispatch-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-dark);
  padding-top: 12px;
}

.dispatch-list dt {
  color: rgba(244, 241, 232, 0.62);
}

.dispatch-list dd {
  margin-bottom: 0;
  color: var(--paper);
  font-weight: 700;
  text-align: right;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(8, 20, 23, 0.08);
}

.trust-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 31px;
  letter-spacing: -0.05em;
}

.trust-strip span,
.service-list p,
.steps p,
.form-note,
.footer {
  color: var(--muted);
  line-height: 1.55;
}

.section,
.request {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  padding: 98px 0;
  border-bottom: 1px solid var(--line);
}

.section .kicker,
.request .kicker {
  color: var(--green);
}

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

article,
.proof-card,
.steps div,
.form {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

article {
  min-height: 236px;
  padding: 24px;
}

article span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--green);
  font-weight: 800;
}

article p {
  margin-bottom: 0;
}

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

.proof-card {
  padding: 30px;
  color: var(--paper);
  background: var(--ink);
}

.proof-card p {
  margin-top: 22px;
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.steps span {
  display: grid;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-weight: 800;
  background: var(--gold);
}

.steps strong {
  display: block;
  grid-column: 2;
  margin-bottom: 6px;
  font-size: 19px;
}

.steps p {
  grid-column: 2;
  margin-bottom: 0;
}

.request {
  align-items: start;
  border-bottom: 0;
}

.request-copy p {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 11px;
  padding: 24px;
  background: var(--white);
}

label {
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(33, 166, 122, 0.14);
}

.form .button {
  width: 100%;
  margin-top: 6px;
}

.form-note,
.status {
  margin: 0;
  font-size: 13px;
}

.status {
  min-height: 20px;
  font-weight: 800;
}

.status.success {
  color: var(--green);
}

.status.error {
  color: var(--orange);
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 40px;
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar,
  .hero,
  .section,
  .request,
  .proof {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: flex;
  }

  .top-cta {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .trust-strip,
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .trust-strip,
  .section,
  .request,
  .footer {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    display: none;
  }

  .hero {
    padding-bottom: 66px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .dispatch-card {
    border-radius: 24px;
    padding: 18px;
  }

  .gauge::before {
    font-size: 29px;
  }

  .trust-strip,
  .service-list {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .request {
    padding: 70px 0;
  }

  .steps div {
    grid-template-columns: 1fr;
  }

  .steps span,
  .steps strong,
  .steps p {
    grid-column: auto;
    grid-row: auto;
  }

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