:root {
  --bg: #03040a;
  --card: rgba(10, 12, 24, 0.68);
  --card-strong: rgba(14, 17, 32, 0.88);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --blue: #00d5ff;
  --pink: #ff22d3;
  --green: #83ff00;
  --yellow: #ffd400;
  --orange: #ff8a00;
  --radius: 28px;
  --shadow: 0 0 40px rgba(0, 213, 255, 0.12), 0 0 80px rgba(255, 34, 211, 0.08);
  --gradient: linear-gradient(100deg, #006bff 0%, #bf22ff 26%, #ff236d 52%, #ffb700 74%, #58ff00 100%);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.45;
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

mark {
  color: #ff32dd;
  background: transparent;
  font-weight: 800;
}

mark.blue { color: var(--blue); }
mark.green { color: var(--green); }
mark.yellow { color: var(--yellow); }
mark.pink { color: var(--pink); }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 213, 255, 0.12), transparent 32%),
    radial-gradient(circle at 75% 20%, rgba(255, 34, 211, 0.10), transparent 34%),
    radial-gradient(circle at 55% 75%, rgba(131, 255, 0, 0.07), transparent 36%),
    #03040a;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 72%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    repeating-radial-gradient(ellipse at 12% 58%, rgba(0,213,255,.22) 0 1px, transparent 1px 24px),
    repeating-radial-gradient(ellipse at 92% 72%, rgba(255,34,211,.22) 0 1px, transparent 1px 28px);
  opacity: .22;
  filter: blur(.3px);
}

.glow {
  position: absolute;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .18;
}
.glow-blue { background: #00d5ff; left: -10vw; top: 10vh; }
.glow-pink { background: #ff22d3; right: -12vw; top: 48vh; }
.glow-green { background: #83ff00; left: 35vw; bottom: -18vw; opacity: .10; }

.container {
  width: min(1520px, calc(100% - 64px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(3, 4, 10, 0.72);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 92px;
}

.brand {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: auto;
  width: max-content;
}

.brand__logo {
  display: block;
  width: auto;
  height: 64px;
  max-width: 260px;
  object-fit: contain;
}
.brand__caption {
  position: relative;
  top: 15px;
  display: grid;
  justify-items: start;
  text-align: left;
  line-height: .95;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
}
.brand__caption span:first-child {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}
.brand__caption span:last-child {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .38em;
  color: rgba(255,255,255,.82);
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: rgba(255,255,255,.82);
}
.nav a {
  transition: .25s ease;
}
.nav a:hover {
  color: #fff;
  text-shadow: 0 0 18px var(--pink);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 14px;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

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

.about {
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 17, .78), rgba(5, 7, 17, .28) 48%, rgba(5, 7, 17, .82)),
    linear-gradient(180deg, rgba(5, 7, 17, .88), rgba(5, 7, 17, .14) 36%, rgba(5, 7, 17, .9)),
    url("./assets/back_4.png") calc(50%) calc(50%) / cover no-repeat;
  opacity: 1;
  transform: translate(150px) scale(0.8);
  filter: blur(1px);
  mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 88%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  pointer-events: none;
}
.about .container {
  position: relative;
  z-index: 1;
}

.hero {
  padding-top: 96px;
}

.hero__grid,
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(131,255,0,.55);
  border-radius: 12px;
  background: rgba(10, 12, 24, .62);
  box-shadow: 0 0 22px rgba(131,255,0,.12);
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 14px;
  margin-bottom: 34px;
}
.badge .bi { color: var(--pink); }

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

h1 {
  font-size: clamp(58px, 7vw, 116px);
  line-height: .96;
  margin-bottom: 28px;
  letter-spacing: -.055em;
}
h1 span {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

h2 {
  font-size: clamp(42px, 4.7vw, 82px);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin-bottom: 28px;
}

h3 {
  font-size: 25px;
  line-height: 1.16;
}

.hero__lead {
  max-width: 720px;
  font-size: clamp(20px, 2vw, 31px);
  color: rgba(255,255,255,.86);
  margin-bottom: 38px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 34px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--gradient {
  background: var(--gradient);
  box-shadow: 0 0 28px rgba(255,34,211,.22), 0 0 44px rgba(131,255,0,.15);
}
.btn--outline {
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(131,255,0,.85);
  box-shadow: inset 0 0 0 1px rgba(255,34,211,.25);
}
.btn--small {
  min-height: 54px;
  padding-inline: 24px;
}
.btn--wide {
  min-width: 270px;
}
.btn--full {
  width: 100%;
}
.btn span {
  font-size: 1.25em;
}

.hero__visual {
  min-height: 620px;
}

.person-card {
  position: relative;
  min-height: 620px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 70% 30%, rgba(0,213,255,.18), transparent 35%),
    radial-gradient(circle at 45% 75%, rgba(255,34,211,.16), transparent 34%);
}

.dashboard {
  position: absolute;
  background: rgba(10, 12, 24, .78);
  border: 1px solid rgba(0,213,255,.38);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.dashboard--main {
  left: 60px;
  top: 145px;
  width: 460px;
  padding: 24px;
  transform: rotate(-2deg);
}
.dashboard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dashboard__head b {
  color: var(--green);
  padding: 6px 10px;
  border: 1px solid rgba(131,255,0,.45);
  border-radius: 10px;
  background: rgba(131,255,0,.08);
}
.chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.chart span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: var(--gradient);
  box-shadow: 0 0 16px rgba(0,213,255,.35);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 16px;
}
.stats div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.stats small,
.stats em {
  display: block;
  color: var(--muted);
}
.stats strong {
  display: block;
  font-size: 21px;
}
.stats em { color: var(--green); font-style: normal; }

.worker-figure {
  position: absolute;
  right: 110px;
  top: 120px;
  width: 360px;
  height: 470px;
}
.worker-figure__head {
  position: absolute;
  right: 80px;
  top: 0;
  width: 150px;
  height: 150px;
  border-radius: 44% 56% 47% 53%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255,255,255,.85), transparent 12%),
    linear-gradient(145deg, #32205b, #111827 48%, #0a0d16);
  box-shadow: 0 0 45px rgba(255,34,211,.22);
}
.worker-figure__body {
  position: absolute;
  right: 26px;
  top: 135px;
  width: 250px;
  height: 230px;
  border-radius: 42px;
  background: linear-gradient(145deg, #111827, #05060c);
  box-shadow: inset 0 0 0 1px rgba(0,213,255,.22), 0 0 55px rgba(0,213,255,.12);
}
.worker-figure__laptop {
  position: absolute;
  right: 120px;
  bottom: 0;
  width: 310px;
  height: 105px;
  border-radius: 14px;
  background: linear-gradient(160deg, #1b2335, #090b11);
  transform: skew(-18deg);
  box-shadow: 0 18px 60px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.13);
}

.order-card {
  position: absolute;
  right: 30px;
  width: 260px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(10, 12, 24, .82);
  border: 1px solid currentColor;
  box-shadow: 0 0 28px currentColor;
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: center;
}
.order-card i {
  grid-row: span 3;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid currentColor;
  background: rgba(255,255,255,.06);
  font-size: 24px;
}
.order-card b,
.order-card span,
.order-card small {
  display: block;
}
.order-card b { font-size: 19px; }
.order-card span { color: #fff; margin: 3px 0; }
.order-card small { color: var(--muted); }
.order-card--green { color: var(--green); top: 120px; }
.order-card--blue { color: var(--blue); top: 255px; }
.order-card--pink { color: var(--pink); top: 392px; }

.hero__metrics {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(10, 12, 24, .72);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.metric {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  align-content: center;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
}
.metric:last-child { border-right: 0; }
.metric__icon {
  grid-row: span 2;
  color: var(--green);
  font-size: 42px;
  filter: drop-shadow(0 0 12px currentColor);
}
.metric strong {
  font-size: 28px;
  line-height: 1.1;
}
.metric small {
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  width: fit-content;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin-top: 14px;
  background: var(--gradient);
  border-radius: 999px;
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.center.eyebrow::after { margin-left: auto; margin-right: auto; }

.text-card {
  max-width: 780px;
  color: rgba(255,255,255,.86);
  font-size: 21px;
}
.text-card p {
  margin-bottom: 22px;
}

.earnings-calculator {
  margin-top: 450px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 24, .65);
  box-shadow: var(--shadow);
}
.earnings-calculator__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}
.earnings-calculator h3 {
  margin-bottom: 0;
}
.earnings-calculator__result {
  display: grid;
  justify-items: end;
  min-width: 210px;
}
.earnings-calculator__result small,
.earnings-calculator__meta span {
  color: var(--muted);
}
.earnings-calculator__result strong {
  margin-top: 6px;
  color: var(--green);
  font-size: 34px;
  line-height: 1.1;
  filter: drop-shadow(0 0 14px rgba(131,255,0,.25));
}
.earnings-calculator__slider {
  display: grid;
  gap: 18px;
  color: rgba(255,255,255,.86);
}
.earnings-calculator__slider span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
}
.earnings-calculator__slider b {
  color: var(--blue);
  font-size: 22px;
}
.earnings-calculator__slider input {
  width: 100%;
  accent-color: var(--green);
  cursor: pointer;
}
.earnings-calculator__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255,212,0,.55);
  border-radius: 20px;
  background: rgba(255,212,0,.05);
}
.earnings-calculator__meta strong {
  color: var(--yellow);
  font-size: 28px;
  white-space: nowrap;
}

.offer-grid,
.advantages-grid,
.contacts-grid {
  display: grid;
  gap: 28px;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
}

.offer-card,
.advantage-card,
.contact-card,
.step-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.offer-card::before,
.advantage-card::before,
.contact-card::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.11), transparent 34%);
  opacity: .7;
  pointer-events: none;
}

.offer-card {
  min-height: 560px;
  padding: 54px 52px;
  background:
    linear-gradient(180deg, rgba(6, 9, 21, .32), rgba(6, 9, 21, .9)),
    linear-gradient(90deg, rgba(6, 9, 21, .82), rgba(6, 9, 21, .24)),
    var(--offer-bg) center / cover no-repeat;
}
.offer-card--pink {
  --offer-bg: url("./assets/back_3.png");
  border-color: rgba(255,34,211, 0.295);
}
.offer-card--green {
  --offer-bg: url("./assets/back_2.png");
  border-color: rgba(131,255,0, 0.295);
}
.offer-card--blue {
  --offer-bg: url("./assets/back_1.png");
  border-color: rgba(0, 213, 255, 0.295);
}
.offer-card > * {
  position: relative;
  z-index: 1;
}
.offer-card__icon {
  display: inline-grid;
  place-items: center;
  width: 108px;
  height: 108px;
  margin-bottom: 42px;
  border-radius: 24px;
  color: var(--pink);
  border: 1px solid currentColor;
  background: rgba(255,255,255,.06);
  opacity: .96;
  filter: drop-shadow(0 0 26px rgba(255,34,211,.35));
  font-size: 50px;
}
.offer-card__icon.appliances {
  color: var(--pink);
}
.offer-card__icon.digital {
  color: var(--green);
  filter: drop-shadow(0 0 26px rgba(131,255,0,.28));
}
.offer-card__icon.tools {
  color: var(--blue);
  filter: drop-shadow(0 0 26px rgba(0,213,255,.28));
}
.offer-card ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 21px;
}
.offer-card li::marker {
  color: var(--pink);
}

.advantages-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}
.advantage-card {
  min-height: 190px;
  padding: 32px 34px;
}
.advantage-card .card-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--blue);
  border: 1px solid currentColor;
  box-shadow: 0 0 20px currentColor;
  font-size: 30px;
}
.advantage-card:nth-child(3n+1) .card-icon { color: var(--pink); }
.advantage-card:nth-child(3n+2) .card-icon { color: var(--green); }
.advantage-card:nth-child(3n) .card-icon { color: var(--yellow); }
.advantage-card h3 {
  margin-bottom: 12px;
}
.advantage-card p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 58px;
}
.step-card {
  min-height: 310px;
  padding: 36px;
  border-color: rgba(0,213,255,.45);
}
.step-card b {
  display: block;
  font-size: 40px;
  color: var(--pink);
  margin-bottom: 26px;
}
.step-card .step-icon {
  display: block;
  color: var(--pink);
  font-size: 54px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 12px currentColor);
}
.step-card p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 0;
}
.step-card:nth-child(2) b,
.step-card:nth-child(2) .step-icon { color: var(--blue); }
.step-card:nth-child(3) b,
.step-card:nth-child(3) .step-icon { color: var(--green); }
.step-card:nth-child(4) b,
.step-card:nth-child(4) .step-icon { color: var(--orange); }

.mt-40 { margin-top: 40px; }

.contacts-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
}
.contact-card {
  min-height: 260px;
  padding: 40px 32px;
  text-align: center;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
a.contact-card:hover {
  transform: translateY(-4px);
  border-color: currentColor;
}
.contact-card .contact-icon {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: var(--blue);
  border: 1px solid currentColor;
  box-shadow: 0 0 22px currentColor;
  font-size: 38px;
  margin-bottom: 26px;
}
.contact-card .contact-icon img {
  display: block;
  max-width: 46px;
  max-height: 46px;
  object-fit: contain;
}
.contact-card .contact-icon--vk {
  color: #2787f5;
  border-color: #2787f5;
}
.contact-card .contact-icon--vk img {
  width: 52px;
  height: 52px;
  filter: invert(43%) sepia(97%) saturate(2607%) hue-rotate(195deg) brightness(98%) contrast(96%);
}
.contact-card .contact-icon--max img {
  width: 52px;
  height: 52px;
}
.contact-card:nth-child(2) .contact-icon { color: var(--pink); }
.contact-card:nth-child(3) .contact-icon { color: #1055a3; }
.contact-card:nth-child(4) .contact-icon { color: var(--green); }
.contact-card:nth-child(2) .contact-icon--vk {
  color: #2787f5;
}
.contact-card h3 {
  color: #fff;
}
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.04);
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.footer__socials img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.footer__socials .footer__social--vk img {
  filter: brightness(0) invert(1);
}
.footer__socials .footer__social--max img {
  width: 24px;
  height: 24px;
}
.footer__socials a:hover {
  color: var(--green);
  border-color: currentColor;
  transform: translateY(-2px);
}
.footer__socials span {
  font-size: 11px;
  font-weight: 800;
}
.footer__link {
  color: #fff;
  border: 0;
  background: transparent;
  text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
}
.modal__content {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(0,213,255,.38);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,34,211,.18), transparent 42%),
    rgba(8,10,18,.96);
  box-shadow: 0 0 80px rgba(0,213,255,.18), 0 0 120px rgba(255,34,211,.14);
}
.modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 30px;
}
.modal__content h2 {
  font-size: 40px;
  margin-bottom: 12px;
}
.modal__content p {
  color: var(--muted);
}
.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.78);
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 16px 18px;
  outline: 0;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,213,255,.12);
}
.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  color: var(--green);
  background: rgba(131,255,0,.08);
  border: 1px solid rgba(131,255,0,.35);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay {
  transition-delay: .15s;
}

@media (max-width: 1180px) {
  .nav { display: none; }
  .burger { display: block; }
  .hero__grid,
  .split {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 560px;
  }
  .offer-grid,
  .advantages-grid,
  .contacts-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric:nth-child(2) {
    border-right: 0;
  }
  .metric:nth-child(1),
  .metric:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1520px);
  }
  .header__inner {
    min-height: 76px;
  }
  .brand__logo {
    height: 48px;
    max-width: 190px;
  }
  .brand {
    width: max-content;
  }
  .brand__caption {
    bottom: 2px;
  }
  .brand__caption span:first-child {
    font-size: 14px;
  }
  .brand__caption span:last-child {
    font-size: 9px;
    letter-spacing: .3em;
  }
  .header .btn { display: none; }

  .section {
    padding: 78px 0;
  }
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 42px;
  }
  .hero__lead,
  .text-card {
    font-size: 18px;
  }
  .hero__actions,
  .earnings-calculator__head {
    display: grid;
  }
  .footer__inner {
    flex-wrap: wrap;
  }
  .earnings-calculator__head {
    grid-template-columns: 1fr;
  }
  .earnings-calculator__result {
    justify-items: start;
  }
  .hero__visual {
    min-height: 520px;
    overflow: hidden;
  }
  .dashboard--main {
    left: 0;
    width: min(100%, 390px);
  }
  .worker-figure {
    right: -120px;
    opacity: .75;
  }
  .order-card {
    right: 0;
    width: 220px;
  }
  .offer-grid,
  .advantages-grid,
  .contacts-grid,
  .steps,
  .hero__metrics {
    grid-template-columns: 1fr;
  }
  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .metric:last-child {
    border-bottom: 0;
  }
}
