@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --yellow: #ffd400;
  --ink: #1d1c19;
  --muted: #6e6a63;
  --paper: #f7f4ee;
  --warm: #e9dfd1;
  --line: rgba(29, 28, 25, .13);
  --white: #fff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(42, 32, 17, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100% - 36px));
  height: 66px;
  padding: 0 12px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 18px;
  background: rgba(248, 245, 239, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 38px rgba(25, 20, 12, .08);
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 22px; font-weight: 800; letter-spacing: -.7px; }
.brand__mark { width: 14px; height: 14px; display: inline-block; border-radius: 50% 50% 50% 2px; background: var(--yellow); transform: rotate(-45deg); }
.nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 650; }
.nav a { color: #4b4843; transition: color .2s ease; }
.nav a:hover { color: #000; }
.header-cta { padding: 14px 18px; color: #fff; background: var(--ink); border-radius: 12px; font-size: 13px; font-weight: 750; }

.hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 100svh);
  overflow: hidden;
  color: #fff;
  background: #d8cdbf;
}
.hero__image { position: absolute; inset: 0; background: url("../img/hero.webp") center 54% / cover no-repeat; transform: scale(1.015); }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,16,12,.76) 0%, rgba(19,16,12,.53) 39%, rgba(19,16,12,.07) 72%), linear-gradient(0deg, rgba(18,15,11,.3), transparent 42%); }
.hero__content { position: relative; z-index: 2; width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding-top: clamp(160px, 19vh, 195px); }
.eyebrow { margin: 0 0 20px; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; line-height: 1.2; font-weight: 850; }
.hero h1, .section h2, .simple-page h1 {
  margin: 0;
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(58px, 6.4vw, 90px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 680;
}
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero__lead { max-width: 600px; margin: 28px 0 0; color: rgba(255,255,255,.84); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.58; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 34px; }
.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--yellow);
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink);
  background: var(--yellow);
  cursor: pointer;
  font-weight: 760;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 26px rgba(0,0,0,.13); }
.button--dark { color: #fff; border-color: var(--ink); background: var(--ink); }
.button--small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button--wide { width: 100%; justify-content: space-between; }
.hero__link { padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.6); font-size: 14px; font-weight: 700; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 45px; }
.hero__tags span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.09); backdrop-filter: blur(8px); color: rgba(255,255,255,.87); font-size: 12px; font-weight: 650; }

.home-status { position: absolute; z-index: 2; right: max(28px, calc((100% - 1160px) / 2)); bottom: 40px; width: 310px; padding: 20px; border: 1px solid rgba(255,255,255,.23); border-radius: 18px; background: rgba(25,24,22,.62); backdrop-filter: blur(16px); }
.home-status__top { display: flex; align-items: center; gap: 12px; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 13px; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #8ee28d; box-shadow: 0 0 0 6px rgba(142,226,141,.12); }
.home-status__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 17px; }
.home-status__grid small, .home-status__grid b { display: block; }
.home-status__grid small { color: rgba(255,255,255,.55); font-size: 10px; }
.home-status__grid b { margin-top: 5px; font-size: 15px; }

.control-strip { width: min(1160px, calc(100% - 48px)); min-height: 92px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-bottom: 1px solid var(--line); }
.control-strip span { padding: 10px 28px; border-right: 1px solid var(--line); font-size: 14px; font-weight: 750; }
.control-strip span:first-child { padding-left: 0; }
.control-strip span:last-child { border-right: 0; }
.control-strip b { margin-right: 12px; color: #a8793e; font-size: 10px; }

.section { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 120px 0; }
.section-heading--split { display: grid; grid-template-columns: 1fr 370px; gap: 90px; align-items: end; }
.section h2 { font-size: clamp(48px, 5vw, 72px); }
.section h2 em { color: #a8793e; }
.section-heading--split > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.65; }

.solution-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 14px; }
.solution-card { position: relative; min-width: 0; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.solution-card__number { color: #9a7040; font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.solution-card h3 { margin: 68px 0 12px; font-size: 25px; letter-spacing: -.04em; }
.solution-card p { max-width: 370px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.solution-card__icon { position: absolute; top: 25px; right: 27px; min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 14px; font-weight: 800; }
.solution-card--featured { grid-column: span 2; grid-row: span 2; display: grid; grid-template-columns: .86fr 1.14fr; padding: 0; background: #e4ddd3; }
.solution-card--featured .solution-card__copy { z-index: 2; padding: 36px 0 32px 36px; }
.solution-card--featured h3 { margin-top: 90px; font-size: clamp(34px, 3.4vw, 50px); }
.solution-card--featured p { font-size: 16px; }
.solution-card__product { min-width: 0; height: 100%; overflow: hidden; }
.solution-card__product img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; mix-blend-mode: multiply; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 27px; }
.feature-tags span { padding: 7px 9px; border-radius: 7px; background: rgba(255,255,255,.62); font-size: 10px; font-weight: 800; }
.solution-card--yellow { background: var(--yellow); border-color: var(--yellow); }
.solution-card--warm { background: #e8d7c0; border-color: #e8d7c0; }
.solution-card--dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.solution-card--dark p { color: rgba(255,255,255,.62); }
.solution-card--dark .solution-card__number { color: var(--yellow); }
.solution-card--dark .solution-card__icon { border-color: rgba(255,255,255,.2); }

.scenario { width: min(1360px, calc(100% - 32px)); min-height: 680px; padding: 0; display: grid; grid-template-columns: 1.04fr .96fr; overflow: hidden; border-radius: var(--radius); color: #fff; background: #24211d; }
.scenario__image { min-height: 680px; overflow: hidden; }
.scenario__image img { width: 100%; height: 100%; object-fit: cover; }
.scenario__copy { padding: clamp(58px, 6.5vw, 92px); align-self: center; }
.scenario__copy h2 { font-size: clamp(48px, 5vw, 70px); }
.scenario__intro { margin: 24px 0 38px; color: rgba(255,255,255,.62); line-height: 1.6; }
.scenario-list article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); }
.scenario-list time { padding-top: 4px; color: var(--yellow); font-size: 11px; font-weight: 800; }
.scenario-list h3 { margin: 0 0 6px; font-size: 16px; }
.scenario-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.5; }
.inline-link { display: inline-flex; gap: 24px; margin-top: 30px; padding-bottom: 6px; border-bottom: 1px solid; font-weight: 750; }
.inline-link span { color: var(--yellow); }

.steps { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.steps__heading h2 { max-width: 470px; font-size: clamp(44px, 4.6vw, 66px); }
.steps__list { border-top: 1px solid var(--line); }
.steps__list article { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.steps__list article > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-size: 12px; font-weight: 850; }
.steps__list h3 { margin: 3px 0 8px; font-size: 19px; }
.steps__list p { margin: 0; color: var(--muted); line-height: 1.55; }

.request { margin-bottom: 0; width: min(1360px, calc(100% - 32px)); display: grid; grid-template-columns: 1fr 480px; gap: 80px; padding: clamp(70px, 7vw, 105px); color: #fff; border-radius: var(--radius); background: #1d1b18; }
.request__copy h2 { font-size: clamp(48px, 5.1vw, 74px); }
.request__copy > p:not(.eyebrow) { max-width: 550px; margin-top: 28px; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.65; }
.request__points { margin-top: 45px; display: flex; flex-wrap: wrap; gap: 18px; }
.request__points span { position: relative; padding-left: 17px; color: rgba(255,255,255,.76); font-size: 12px; }
.request__points span::before { content: ""; position: absolute; left: 0; top: 5px; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.lead-form { align-self: center; padding: 32px; color: var(--ink); border-radius: 22px; background: var(--paper); }
.lead-form label:not(.consent) { margin-bottom: 18px; display: block; font-size: 11px; font-weight: 820; }
.lead-form input[type="text"], .lead-form textarea { width: 100%; margin-top: 7px; padding: 13px 0; border: 0; border-bottom: 1px solid #cfc8be; border-radius: 0; outline: 0; background: transparent; font-size: 15px; resize: vertical; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--ink); }
.lead-form label small, .field-error { display: block; margin-top: 6px; color: #a82c1f; font-size: 11px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 22px 0 18px; color: #68635c; line-height: 1.4; font-size: 11px; }
.consent input { margin: 2px 0 0; accent-color: var(--ink); }
.consent a { color: var(--ink); border-bottom: 1px solid; }
.form-note { margin: 12px 0 0; text-align: center; color: var(--muted); font-size: 10px; }
.form-alert { padding: 12px; border-radius: 8px; color: #7b2218; background: #f6dcd7; font-size: 13px; }

.footer { width: min(1160px, calc(100% - 48px)); min-height: 190px; margin: 0 auto; padding: 58px 0; display: grid; grid-template-columns: 1fr 1fr auto; align-items: start; gap: 30px; }
.footer > p { margin: 5px 0; color: var(--muted); }
.footer > div { display: flex; flex-direction: column; gap: 11px; text-align: right; font-size: 12px; }
.footer > div span { color: var(--muted); }

.cookie { position: fixed; z-index: 50; left: 20px; bottom: 20px; width: min(570px, calc(100% - 40px)); padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.cookie[hidden] { display: none; }
.cookie strong { font-size: 14px; }
.cookie p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.cookie__actions { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.text-button { padding: 0; border: 0; border-bottom: 1px solid; background: none; cursor: pointer; font-size: 11px; }

.simple-page { min-height: 100vh; padding: 40px max(24px, calc((100% - 1100px) / 2)); background: var(--paper); }
.simple-page--thanks { background: linear-gradient(135deg, #f7f4ee 0 62%, var(--yellow) 62%); }
.simple-page__card { width: min(680px, 100%); margin-top: 15vh; }
.simple-page__card h1 { margin-bottom: 28px; font-size: clamp(55px, 7vw, 92px); }
.simple-page__card > p:not(.eyebrow) { max-width: 480px; color: var(--muted); font-size: 19px; line-height: 1.6; }
.success-mark { width: 52px; height: 52px; margin-bottom: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-size: 23px; font-weight: 900; }
.legal { max-width: 760px; margin: 100px auto; }
.legal h1 { margin: 0 0 40px; font-size: clamp(45px, 6vw, 75px); line-height: .98; letter-spacing: -.05em; }
.legal h2 { margin-top: 40px; font-size: 24px; }
.legal p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.legal .inline-link { color: var(--ink); }

@media (max-width: 1000px) {
  .nav { display: none; }
  .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
  .section-heading--split > p { max-width: 600px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .solution-card--featured { grid-row: span 2; grid-column: span 2; }
  .scenario { grid-template-columns: 1fr; }
  .scenario__image { min-height: 540px; height: 540px; }
  .steps { grid-template-columns: 1fr; gap: 55px; }
  .request { grid-template-columns: 1fr; }
  .request__copy { max-width: 720px; }
  .lead-form { width: min(600px, 100%); }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 76px; }
  .site-header { top: 10px; width: calc(100% - 20px); height: 58px; padding: 0 9px 0 15px; }
  .brand { font-size: 20px; }
  .header-cta { padding: 11px 13px; font-size: 11px; }
  .hero { min-height: 720px; height: 100svh; }
  .hero__image { background-position: 63% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(19,16,12,.82), rgba(19,16,12,.35)), linear-gradient(0deg, rgba(18,15,11,.4), transparent); }
  .hero__content { width: calc(100% - 36px); padding-top: 125px; }
  .hero h1 { font-size: clamp(48px, 14.2vw, 65px); }
  .hero__lead { max-width: 96%; margin-top: 23px; font-size: 15px; line-height: 1.5; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 27px; }
  .hero__tags { margin-top: 28px; }
  .home-status { right: 18px; bottom: 18px; width: calc(100% - 36px); padding: 16px; }
  .control-strip { width: calc(100% - 36px); grid-template-columns: 1fr 1fr; padding: 13px 0; }
  .control-strip span { padding: 10px 8px 10px 0; border-right: 0; font-size: 12px; }
  .section { width: calc(100% - 36px); padding: 88px 0; }
  .section h2, .scenario__copy h2, .request__copy h2 { font-size: 43px; }
  .solution-grid { grid-template-columns: 1fr; grid-auto-rows: auto; margin-top: 42px; }
  .solution-card { min-height: 225px; }
  .solution-card--featured { grid-column: auto; grid-row: auto; min-height: 510px; grid-template-columns: 1fr; grid-template-rows: .8fr 1.2fr; }
  .solution-card--featured .solution-card__copy { padding: 28px 28px 5px; }
  .solution-card--featured h3 { margin-top: 40px; font-size: 35px; }
  .solution-card h3 { margin-top: 60px; }
  .scenario, .request { width: calc(100% - 20px); border-radius: 20px; }
  .scenario__image { min-height: 390px; height: 390px; }
  .scenario__copy { padding: 48px 27px; }
  .scenario-list article { grid-template-columns: 50px 1fr; gap: 10px; }
  .steps__list article { grid-template-columns: 40px 1fr; gap: 12px; }
  .request { padding: 48px 18px; gap: 42px; }
  .request__copy { padding: 0 9px; }
  .request__points { gap: 11px; }
  .lead-form { padding: 25px 20px; }
  .footer { width: calc(100% - 36px); grid-template-columns: 1fr; padding: 45px 0; }
  .footer > div { text-align: left; }
  .cookie { align-items: flex-start; flex-direction: column; }
  .simple-page--thanks { background: var(--paper); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
