:root {
  --ink: #171a1f;
  --graphite: #252a31;
  --muted: #65707d;
  --line: rgba(23, 26, 31, 0.13);
  --paper: #f6f1e8;
  --white: #ffffff;
  --asphalt: #111418;
  --road: #30363f;
  --amber: #ff8a00;
  --amber-soft: #ffd08a;
  --green: #2f6f52;
  --blue: #1f5f8f;
  --shadow: 0 24px 80px rgba(20, 24, 30, 0.18);
  --container: 1180px;
  --transition: all .3s ease-in-out;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(31, 95, 143, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 95, 143, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.56;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 20, 24, 0.95);
  color: #fff;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-logo {
  width: 43px;
  height: 43px;
  object-fit: cover;
  object-position: center;
}

.brand > span:not(.brand-logo) > span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.menu a {
  transition: var(--transition);
  position: relative;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: #fff;
}


.menu a[aria-current="page"]:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--amber-soft);
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.nav-phone {
  text-align: right;
}

.nav-phone small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.nav-phone strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-primary {
  color: #161616;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  box-shadow: 0 14px 32px rgba(255, 138, 0, 0.28);
}

.btn-dark {
  color: #fff;
  background: var(--asphalt);
}

.btn-line {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--asphalt);
}

.hero:not(.hero-small) {
  height: max(690px, 100vh);
}

.hero.hero-small {
  min-height: 430px;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 24, 0.94), rgba(17, 20, 24, 0.62) 46%, rgba(17, 20, 24, 0.2)),
    linear-gradient(0deg, rgba(17, 20, 24, 0.92), transparent 56%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 92px 0 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--amber);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-small h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.fact {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.fact strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.fact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: 86px 0;
  overflow-x: clip;
}

.section.tight {
  padding: 58px 0;
}

.section.dark {
  color: #fff;
  background: var(--asphalt);
}

.section.white {
  background: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.price-card,
.doc-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 32px rgba(20, 24, 30, 0.06);
}

.card {
  min-height: 230px;
  padding: 26px;
}

.card h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.price-card h3 {
  min-height: 48px;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.15;
}

.card p,
.price-card p,
.doc-card p {
  color: var(--muted);
}

.link-card {
  display: block;
  color: inherit;
  cursor: pointer;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 0, 0.36);
  box-shadow: 0 26px 70px rgba(12, 16, 22, 0.14);
}

.link-card:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.65);
  outline-offset: 4px;
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  min-height: 32px;
  align-items: center;
  margin-bottom: 16px;
  border-radius: 7px;
  padding: 0 10px;
  color: #fff;
  background: var(--road);
  font-size: 13px;
  font-weight: 900;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price {
  display: block;
  margin: 0 0 16px;
  color: var(--asphalt);
  font-size: 34px;
  font-weight: 1000;
  line-height: 1;
}

.price-card p {
  flex: 1;
  margin-top: 0;
}

.price-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.notice {
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  padding: 20px 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 24, 30, 0.08);
}

.self-pickup-notice {
  margin-top: 28px;
}

.band {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(47, 111, 82, 0.16)),
    var(--asphalt);
}

.band h2,
.band h3 {
  margin-bottom: 12px;
}

.band p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
}

.product-grid {
  align-items: stretch;
}

.product-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 196px 26px 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -2;
  height: 170px;
  background: url("../img/product-asphalt-mix-russia.webp") center / cover no-repeat;
  transition: filter 0.25s ease;
}

.product-card::after {
  z-index: -1;
  height: 170px;
  background:
    linear-gradient(180deg, rgba(17, 20, 24, 0.08), rgba(17, 20, 24, 0.58)),
    linear-gradient(90deg, rgba(255, 122, 0, 0.38), transparent 58%);
}

.product-card:nth-child(2)::before {
  background-image: url("../img/product-type-a-russia.webp");
}

.product-card:nth-child(3)::before {
  background-image: url("../img/product-type-b-russia.webp");
}

.product-card:nth-child(4)::before {
  background-image: url("../img/product-coarse-asphalt-russia.webp");
}

.product-card:nth-child(5)::before {
  background-image: url("../img/product-fine-asphalt-russia.webp");
}

.product-card:nth-child(6)::before {
  background-image: url("../img/product-sand-asphalt-russia.webp");
}

.product-card:nth-child(7)::before {
  background-image: url("../img/product-shma-russia.webp");
}

.product-card:hover {
  transform: none;
  border-color: rgba(255, 122, 0, 0.38);
  box-shadow: 0 30px 90px rgba(12, 16, 22, 0.16);
}

.product-card:hover::before {
  transform: none;
  filter: saturate(1.08) contrast(1.04);
}

.product-card .tag {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.product-cta-section {
  padding-top: 58px;
}

.product-cta {
  min-height: 260px;
  display: grid;
  align-content: center;
  padding-right: min(430px, 34vw);
  background:
    linear-gradient(90deg, rgba(27, 19, 10, 0.96), rgba(12, 28, 24, 0.9) 58%, rgba(12, 28, 24, 0.26)),
    url("../img/road-machinery.webp") right center / min(430px, 38vw) 100% no-repeat,
    #111418;
  box-shadow: 0 28px 90px rgba(12, 16, 22, 0.18);
}

.product-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 122, 0, 0.22), transparent 32%),
    linear-gradient(rgba(117, 191, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 191, 240, 0.08) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.product-cta > * {
  position: relative;
  z-index: 1;
}

.media-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--asphalt);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 20, 24, 0.86), transparent 58%);
}

.media-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.media-card h3 {
  margin-bottom: 6px;
}

.media-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.list li {
  position: relative;
  padding: 14px 16px 14px 43px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.table-wrap table {
  table-layout: fixed;
}

.table-wrap th:nth-child(1),
.table-wrap td:nth-child(1) {
  width: 28%;
}

.table-wrap th:nth-child(2),
.table-wrap td:nth-child(2) {
  width: 130px;
  white-space: nowrap;
}

.table-wrap th:nth-child(3),
.table-wrap td:nth-child(3) {
  width: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #fff;
  background: var(--asphalt);
}

tr:last-child td {
  border-bottom: 0;
}

.form-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.14), rgba(31, 95, 143, 0.2)),
    var(--asphalt);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.form-lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.form-card {
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

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

label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 26, 31, 0.18);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 48px;
  padding-top: 11px;
  resize: vertical;
}

.check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--amber);
}

.check a {
  color: var(--blue);
  font-weight: 900;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.success {
  display: none;
  margin-top: 14px;
  border-radius: 8px;
  padding: 12px 14px;
  background: #e8f6ef;
  color: #15583b;
  font-weight: 800;
}

.success.is-error {
  background: #fff0ed;
  color: #8b1e12;
}

.asphalt-calculator {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  background: #f5f7f9;
}

.asphalt-calculator label {
  font-size: 15px;
  font-weight: 400;
}

.calculator-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.calculator-range-head,
.calculator-range-scale {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.calculator-range-head label {
  margin-bottom: 7px;
}

.calculator-range-head output {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.calculator-thickness-field input[type="range"] {
  width: 100%;
  min-height: 24px;
  padding: 0;
  accent-color: var(--amber);
  cursor: pointer;
}

.calculator-range-scale {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.calculator-result {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  border-left: 5px solid var(--amber);
  padding: 18px 20px;
  background: #fff;
}

.calculator-result > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.calculator-result strong {
  color: var(--asphalt);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}

.calculator-result small {
  color: var(--muted);
  font-size: 14px;
}

.calculator-result.is-error {
  border-left-color: #b3261e;
}

.docs .calculator-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.docs {
  max-width: 920px;
}

.docs h2 {
  margin-top: 34px;
  font-size: 28px;
}

.docs h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.docs ul {
  margin: 12px 0 22px;
  padding-left: 24px;
}

.docs li + li {
  margin-top: 8px;
}

.docs p,
.docs li {
  color: #3d4650;
}

.docs a {
  color: var(--blue);
  font-weight: 900;
}

.seo-copy {
  padding-top: 64px;
  padding-bottom: 64px;
}

.seo-copy .container {
  max-width: 980px;
}

.seo-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
}

.seo-copy p {
  margin-bottom: 0;
  color: #3f4852;
  font-size: 18px;
}

.seo-copy.dark-copy {
  color: #fff;
  background:
    linear-gradient(rgba(117, 191, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 191, 240, 0.08) 1px, transparent 1px),
    var(--asphalt);
  background-size: 42px 42px;
}

.seo-copy.dark-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.requisites {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.req-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.req-list li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.req-list li:last-child {
  border-bottom: 0;
}

.req-list span {
  color: var(--muted);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 14px;
  background: #fff;
}

.faq h2 {
  margin-bottom: 34px;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 0.98;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  cursor: pointer;
  padding: 16px 64px 16px 22px;
  font-weight: 950;
  font-size: 19px;
  line-height: 1.25;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "-";
  font-size: 30px;
}

.faq details p {
  margin: 0;
  padding: 0 56px 25px 22px;
  color: var(--muted);
  font-size: 16px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 52px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 122, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #080b0f, #111820 54%, #0c1014);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-soft), transparent 72%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-grid > div {
  min-height: 112px;
  padding: 4px 28px 4px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.62;
}

.footer-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.footer b,
.footer strong {
  display: inline-block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.footer a {
  color: #fff;
  font-weight: 850;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.footer a:hover {
  color: var(--amber-soft);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-box {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  background: rgba(17, 20, 24, 0.96);
  box-shadow: var(--shadow);
}

.cookie-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.cookie-box a {
  color: var(--amber-soft);
  font-weight: 900;
}

.mobile-cta {
  display: none !important;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 16px 22px;
    background: rgba(17, 20, 24, 0.98);
  }

  body.menu-open .menu {
    display: grid;
  }

  .menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .menu a[aria-current="page"] {
    border-color: var(--amber-soft) !important;
  }

  .menu a[aria-current="page"]:after {
    content: none;
  }

  .nav-phone {
    display: none;
  }

  .facts,
  .order-steps,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .section-head,
  .form-layout,
  .requisites,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 0;
  }

  .footer-grid > div {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-grid > div:first-child {
    padding-top: 0;
  }

  .footer-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav {
    min-height: 66px;
  }

  .brand span,
  .nav-actions .btn {
    display: none;
  }

  .hero,
  .hero.hero-small {
    min-height: 610px;
    height: auto;
  }

  .hero-inner {
    padding: 70px 0 44px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 17px;
  }

  .facts,
  .grid-2,
  .grid-3,
  .order-steps,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .card {
    min-height: auto;
  }

  .req-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cookie-box {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    display: block;
  }

  .mobile-cta .btn {
    width: 100%;
  }
}

/* Visual direction: industrial landing, not generic corporate blocks. */
:root {
  --ink: #20242a;
  --graphite: #2a3038;
  --muted: #69727d;
  --paper: #f3efe7;
  --asphalt: #111418;
  --road: #1c2128;
  --amber: #ff7a00;
  --amber-soft: #ffb04a;
  --blue: #164a75;
  --blue-soft: #75bff0;
  --line: rgba(32, 36, 42, 0.12);
  --shadow: 0 26px 90px rgba(12, 16, 22, 0.22);
}

body {
  background:
    linear-gradient(rgba(22, 74, 117, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 74, 117, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 10% 0%, rgba(255, 122, 0, 0.12), transparent 34%),
    var(--paper);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  min-height: 68px;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(12, 15, 19, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.btn {
  border-radius: 999px;
  min-height: 50px;
  padding: 0 21px;
}

.btn-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    var(--asphalt);
}

.hero {
  min-height: 820px;
}

.hero:not(.hero-small) {
  height: max(820px, 100vh);
}

.hero.hero-small {
  min-height: 510px;
}

.hero-media::after {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 122, 0, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(10, 12, 16, 0.96), rgba(14, 18, 24, 0.74) 45%, rgba(14, 18, 24, 0.24)),
    linear-gradient(0deg, rgba(12, 15, 19, 0.98) 0%, rgba(12, 15, 19, 0.82) 34%, rgba(12, 15, 19, 0.12) 78%);
}

.hero-road-lines {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 260px;
  opacity: 0.42;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 0 38%, rgba(255, 255, 255, 0.8) 38.4% 39.1%, transparent 39.4%),
    linear-gradient(104deg, transparent 0 49%, rgba(255, 122, 0, 0.88) 49.4% 50%, transparent 50.4%),
    linear-gradient(99deg, transparent 0 58%, rgba(255, 255, 255, 0.46) 58.4% 58.8%, transparent 59.2%);
  transform: skewY(-4deg);
  transform-origin: bottom left;
}

.hero-inner {
  padding: 140px 0 78px;
}

h1 {
  max-width: 910px;
  text-wrap: balance;
}

.lead {
  max-width: 790px;
}

.fact {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.quick {
  position: relative;
  z-index: 3;
  margin-top: -20px;
  margin-bottom: 0;
  padding-top: 28px;
  padding-bottom: 24px;
  background: #fff;
}

.quick-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.22fr 1fr 1fr;
  gap: 16px;
}

.photo-card {
  position: relative;
  min-height: 332px;
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: var(--asphalt);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 332px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.photo-card:hover img {
  transform: scale(1.045);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 20, 24, 0.02), rgba(17, 20, 24, 0.86)),
    linear-gradient(90deg, rgba(255, 122, 0, 0.22), transparent 54%);
}

.photo-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  z-index: 1;
}

.photo-card-content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 1.1;
}

.photo-card-content span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.section {
  position: relative;
}

.section.white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.9)),
    #fff;
}

.card,
.price-card,
.doc-card,
.notice,
.form-card,
.table-wrap,
.req-list,
.faq details {
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(12, 16, 22, 0.08);
}

.card,
.price-card {
  position: relative;
  overflow: hidden;
}

.card::after,
.price-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.card:not(.product-card):nth-of-type(2):after,
.price-card:nth-of-type(1)::after {
  background: linear-gradient(90deg, transparent, var(--amber));
}
.card:not(.product-card):nth-of-type(2):after,
.price-card:nth-of-type(2)::after {
  background: var(--amber);
}

.tag {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--road), #3a424d);
}

.price {
  color: #171717;
}

.media-card {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.media-card-tall,
.media-card-tall img {
  min-height: 520px;
}

.advantages-section {
  position: relative;
  overflow: hidden;
  padding-top: 54px;
}

.advantages-section::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 90px;
  width: min(760px, 44vw);
  height: 360px;
  opacity: 0.5;
  background:
    linear-gradient(rgba(22, 74, 117, 0.13) 3px, transparent 3px) 0 70px / 100% 74px no-repeat,
    linear-gradient(90deg, transparent 0 42%, rgba(22, 74, 117, 0.18) 42.2% 42.6%, transparent 43%),
    radial-gradient(ellipse at 54% 82%, transparent 0 44%, rgba(22, 74, 117, 0.17) 44.3% 44.9%, transparent 45.2%);
  pointer-events: none;
}

.advantages-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 34px;
}

.advantages-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 1.02;
}

.advantages-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.advantages-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advantage-card {
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background:
    linear-gradient(rgba(22, 74, 117, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 74, 117, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.9);
  background-size: 28px 28px;
  box-shadow: 0 20px 60px rgba(12, 16, 22, 0.08);
}

.advantage-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 46px;
  font-weight: 1000;
  line-height: 0.92;
}

.advantage-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.08;
}

.advantage-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.application-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 22, 30, 0.74)),
    linear-gradient(0deg, rgba(9, 12, 16, 0.96), rgba(9, 12, 16, 0.48)),
    url("../img/road-construction.webp") center / cover no-repeat;
}

.application-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(117, 191, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 191, 240, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.application-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background:
    radial-gradient(ellipse at 62% 72%, transparent 0 32%, rgba(117, 191, 240, 0.34) 32.3% 32.8%, transparent 33.2%),
    linear-gradient(142deg, transparent 0 72%, rgba(117, 191, 240, 0.32) 72.2% 72.6%, transparent 73%);
  pointer-events: none;
}

.application-section > .container {
  position: relative;
  z-index: 1;
}

.application-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 28px;
}

.application-head::before,
.application-head::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(117, 191, 240, 0.22);
  pointer-events: none;
}

.application-head::before {
  left: -84px;
  top: -34px;
  width: min(620px, 44vw);
  height: 330px;
}

.application-head::after {
  right: -36px;
  top: -10px;
  width: min(430px, 32vw);
  height: 290px;
}

.application-head h2 {
  width: min(100%, var(--container));
  max-width: 1180px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(46px, 5.65vw, 78px);
  line-height: 0.98;
}

.application-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

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

.application-card {
  position: relative;
  min-height: 408px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: var(--asphalt);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.3);
}

.application-card img {
  width: 100%;
  height: 100%;
  min-height: 408px;
  object-fit: cover;
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 20, 24, 0.04), rgba(17, 20, 24, 0.92)),
    linear-gradient(90deg, rgba(255, 122, 0, 0.16), transparent 56%);
}

.application-card-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  grid-template-rows: 30px 78px minmax(86px, auto);
  align-items: start;
}

.application-card-content span {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 13px;
  border-radius: 999px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 122, 0, 0.56);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.application-card-content h3 {
  margin: 13px 0 12px;
  color: #fff;
  font-size: 26px;
  line-height: 1.02;
}

.application-card-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.45;
}

.order-section {
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 58%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(22, 74, 117, 0.16), transparent);
  pointer-events: none;
}

.order-section > .container {
  position: relative;
  z-index: 1;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.order-step {
  min-height: 255px;
  display: grid;
  grid-template-rows: 72px 56px 1fr;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(12, 16, 22, 0.08);
}

.order-step span {
  display: block;
  color: var(--amber);
  font-size: 46px;
  font-weight: 1000;
  line-height: 0.92;
}

.order-step h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.12;
}

.order-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.delivery-blueprint-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.88), rgba(13, 22, 30, 0.72)),
    linear-gradient(0deg, rgba(9, 12, 16, 0.9), rgba(9, 12, 16, 0.48)),
    url("../img/road-machinery.webp") center / cover no-repeat;
}

.delivery-blueprint-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(117, 191, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 191, 240, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.delivery-blueprint-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(142deg, transparent 0 30%, rgba(255, 255, 255, 0.42) 30.2% 30.6%, transparent 31%),
    linear-gradient(122deg, transparent 0 70%, rgba(255, 122, 0, 0.34) 70.2% 70.7%, transparent 71.1%);
  pointer-events: none;
}

.delivery-blueprint-section > .container {
  position: relative;
  z-index: 1;
}

.delivery-blueprint-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.delivery-blueprint-intro::before,
.delivery-blueprint-intro::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(117, 191, 240, 0.22);
  pointer-events: none;
}

.delivery-blueprint-intro::before {
  left: max(0px, calc((100% - var(--container)) / 2 - 84px));
  top: -22px;
  width: min(520px, 44vw);
  height: 210px;
}

.delivery-blueprint-intro::after {
  right: max(0px, calc((100% - var(--container)) / 2 - 84px));
  top: -54px;
  width: min(430px, 34vw);
  height: 230px;
}

.delivery-blueprint-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.98;
}

.delivery-blueprint-intro p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.delivery-zone-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(44, 50, 58, 0.94), rgba(22, 25, 30, 0.96));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
}

.delivery-zone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: url("../img/road-construction.webp") center / cover no-repeat;
}

.delivery-zone-card::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.18);
  filter: blur(34px);
  pointer-events: none;
}

.delivery-zone-card > * {
  position: relative;
  z-index: 1;
}

.delivery-zone-card h2 {
  max-width: 440px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}

.delivery-zone-card p {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.delivery-zone-card .chips {
  margin-bottom: 28px;
}

.delivery-zone-card .chip {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.blueprint-board {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(rgba(117, 191, 240, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 191, 240, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 100% 0%, rgba(255, 122, 0, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(8, 42, 70, 0.98), rgba(8, 28, 48, 0.98) 54%, rgba(7, 12, 18, 0.99));
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blueprint-board::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 70px;
  width: 320px;
  height: 190px;
  border: 2px solid rgba(117, 191, 240, 0.45);
  border-left: 0;
  border-radius: 0 160px 160px 0;
  transform: rotate(-18deg);
}

.blueprint-board h2,
.blueprint-board .eyebrow,
.blueprint-board .list {
  position: relative;
  z-index: 1;
}

.blueprint-board h2 {
  color: #fff;
}

.blueprint-board .list li {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.blueprint-board .list li::before {
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.12);
}

.section.dark {
  overflow: hidden;
  background:
    linear-gradient(rgba(117, 191, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 191, 240, 0.08) 1px, transparent 1px),
    var(--asphalt);
  background-size: 44px 44px;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(112deg, transparent 0 44%, #fff 44.4% 44.8%, transparent 45.2%),
    linear-gradient(102deg, transparent 0 60%, var(--amber) 60.4% 60.9%, transparent 61.3%);
  pointer-events: none;
}

.section.dark > .container {
  position: relative;
  z-index: 1;
}

.delivery-map-widget {
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.delivery-radius-map {
  width: 100%;
  height: 430px;
  background: #111820;
}

.delivery-radius-map.is-loading,
.delivery-radius-map.is-error {
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.delivery-radius-map.is-loading::before {
  content: "Загружаем Яндекс.Карту с радиусом 75 км...";
}

.delivery-radius-map.is-error::before {
  content: "Карта не загрузилась. Проверьте подключение к интернету или откройте страницу позже.";
}

.delivery-map-note {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(12, 15, 19, 0.88);
}

.delivery-map-note strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.form-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(117, 191, 240, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 191, 240, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 11, 15, 0.92), rgba(8, 11, 15, 0.72)),
    linear-gradient(0deg, rgba(8, 11, 15, 0.94), rgba(8, 11, 15, 0.28)),
    url("../img/road-machinery.webp") center / cover no-repeat;
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%, cover;
  background-position: 0 0, 0 0, center, center, center;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
}

.form-section::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 420px;
  height: 220px;
  border: 1px solid rgba(117, 191, 240, 0.32);
  transform: rotate(-12deg);
}

.form-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.form-layout h2 {
  max-width: 560px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 0.98;
}

.form-layout .form-lead {
  max-width: 540px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
}

.form-section .form-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(32, 35, 40, 0.84);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.form-section label {
  color: rgba(255, 255, 255, 0.92);
}

.form-section input,
.form-section select,
.form-section textarea {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.form-section input::placeholder,
.form-section textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-section select option {
  color: #111418;
}

.form-section .check {
  color: rgba(255, 255, 255, 0.72);
}

.form-section .check a {
  color: #fff;
}

.form-section .form-note {
  color: rgba(255, 255, 255, 0.62);
}

.form-section .form-card .btn {
  width: 100%;
}

.form-section .success {
  background: rgba(232, 246, 239, 0.94);
}

.form-section .success.is-error {
  background: rgba(255, 240, 237, 0.96);
}

@media (max-width: 980px) {
  .topbar {
    top: 0;
    pointer-events: auto;
  }

  .nav {
    width: 100%;
    min-height: 66px;
    border-radius: 0;
  }

  .menu {
    inset: 66px 0 auto 0;
  }

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

  .quick {
    margin-top: 0;
    padding-top: 24px;
  }

  .delivery-blueprint-intro {
    grid-template-columns: 1fr;
  }

  .application-head {
    grid-template-columns: 1fr;
  }

  .advantages-head {
    grid-template-columns: 1fr;
  }

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

  .order-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .delivery-blueprint-intro::before,
  .delivery-blueprint-intro::after,
  .application-head::before,
  .application-head::after {
    display: none;
  }

}

@media (max-width: 680px) {
  .hero,
  .hero.hero-small {
    min-height: 660px;
    height: auto;
  }

  .hero-inner {
    padding: 112px 0 46px;
  }

  .photo-card,
  .photo-card img {
    min-height: 220px;
  }

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

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

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

  .application-card,
  .application-card img {
    min-height: 340px;
  }

  .delivery-zone-card,
  .blueprint-board,
  .media-card-tall,
  .media-card-tall img {
    min-height: auto;
  }

  .delivery-zone-card,
  .blueprint-board {
    padding: 24px;
  }

  .delivery-blueprint-section {
    padding: 68px 0;
  }

  .delivery-radius-map {
    height: 320px;
  }

  .delivery-map-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero:not(.hero-small) {
    height: max(920px, 100vh);
  }
}

/* Keep blueprint grids, remove decorative background strokes and frames. */
.hero-road-lines,
.advantages-section::before,
.application-section::after,
.application-head::before,
.application-head::after,
.delivery-blueprint-section::after,
.delivery-blueprint-intro::before,
.delivery-blueprint-intro::after,
.blueprint-board::before,
.section.dark::before,
.form-section::before,
.order-section::before {
  display: none;
}

.section-head > p,
.advantages-head > p,
.application-head > p,
.delivery-blueprint-intro > p {
  align-self: center;
  max-width: 560px;
  margin: 0;
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--amber);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.dark .section-head > p,
.application-head > p,
.delivery-blueprint-intro > p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 760px) {
  .section-head > p,
  .advantages-head > p,
  .application-head > p,
  .delivery-blueprint-intro > p {
    padding: 14px 0 0;
    border-left: 0;
    border-top: 3px solid var(--amber);
  }
}

.faq.section.white {
  position: relative;
  padding-bottom: clamp(120px, 10vw, 170px);
  background:
    linear-gradient(180deg, #fff 0%, #fff 48%, rgba(255, 250, 241, 0.96) 78%, #fff 100%);
}

.faq.section.white::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -90px;
  z-index: 0;
  height: 190px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 70%, #fff 100%);
}

.faq.section.white > .container {
  position: relative;
  z-index: 1;
}

.faq + .seo-copy {
  margin-top: -90px;
  background: #fff;
}

/* Final refinements for current production pages */
.form-layout {
  grid-template-columns: minmax(420px, 0.78fr) minmax(640px, 1.22fr);
  gap: clamp(44px, 5vw, 76px);
}

.form-layout h2 {
  max-width: 690px;
  font-size: clamp(40px, 4.35vw, 62px);
  line-height: 1.02;
}

.form-layout .form-lead {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.55;
}

.form-section .form-card {
  width: 100%;
}

.product-grid {
  align-items: stretch;
}

.product-card p {
  margin-bottom: 0;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 170px;
  background: url("../img/product-asphalt-mix-russia.webp") center / cover no-repeat;
  transition: filter 0.25s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 170px;
  background:
    linear-gradient(180deg, rgba(17, 20, 24, 0.05), rgba(17, 20, 24, 0.64)),
    linear-gradient(90deg, rgba(255, 122, 0, 0.36), transparent 58%);
}

.product-card > * {
  position: relative;
  z-index: 2;
}

.product-card:nth-child(2)::before {
  background-image: url("../img/product-type-a-russia.webp");
}

.product-card:nth-child(3)::before {
  background-image: url("../img/product-type-b-russia.webp");
}

.product-card:nth-child(4)::before {
  background-image: url("../img/product-coarse-asphalt-russia.webp");
}

.product-card:nth-child(5)::before {
  background-image: url("../img/product-fine-asphalt-russia.webp");
}

.product-card:nth-child(6)::before {
  background-image: url("../img/product-sand-asphalt-russia.webp");
}

.product-card:nth-child(7)::before {
  background-image: url("../img/product-shma-russia.webp");
}

.product-card:hover::before {
  transform: none;
  filter: saturate(1.08) contrast(1.04);
}

.product-card:hover {
  transform: none;
  border-color: rgba(255, 122, 0, 0.38);
  box-shadow: 0 30px 90px rgba(12, 16, 22, 0.16);
}

.product-cta {
  min-height: 270px;
  padding-right: min(470px, 36vw);
  background:
    linear-gradient(90deg, rgba(28, 20, 10, 0.96), rgba(12, 28, 24, 0.9) 56%, rgba(12, 28, 24, 0.24)),
    url("../img/road-machinery.webp") right center / min(470px, 39vw) 100% no-repeat,
    #111418;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 100px rgba(12, 16, 22, 0.22);
}

.product-cta .btn {
  width: max-content;
}

.table-wrap table {
  table-layout: fixed;
}

.table-wrap th:first-child,
.table-wrap td:first-child {
  width: 28%;
}

.table-wrap th:nth-child(2),
.table-wrap td:nth-child(2) {
  width: 130px;
  white-space: nowrap;
}

.table-wrap th,
.table-wrap td {
  vertical-align: middle;
  line-height: 1.45;
}

.table-wrap td:nth-child(2) {
  font-size: 17px;
}

@media (max-width: 1180px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .product-cta {
    padding-right: 36px;
    background:
      linear-gradient(90deg, rgba(28, 20, 10, 0.94), rgba(12, 28, 24, 0.74)),
      url("../img/road-machinery.webp") center / cover no-repeat,
      #111418;
  }
}

@media (max-width: 760px) {
  .table-wrap table {
    min-width: 720px;
  }
}

/* Horizontal request block */
.form-section {
  padding: clamp(78px, 6vw, 112px) 0;
}

.form-section .container {
  width: min(1500px, calc(100% - 64px));
}

.form-layout {
  grid-template-columns: minmax(500px, 0.82fr) minmax(780px, 1.18fr);
  gap: clamp(46px, 4vw, 72px);
  align-items: center;
}

.form-layout h2 {
  max-width: 760px;
  font-size: clamp(42px, 3.7vw, 64px);
  line-height: 1.02;
}

.form-layout .form-lead {
  max-width: 700px;
  font-size: 20px;
}

.form-section .form-card {
  padding: 28px;
}

.form-section .form-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.form-section .field {
  grid-column: span 2;
}

.form-section .field.full {
  grid-column: span 4;
}

.form-section .field.no-full {
  grid-column: span 6;
}

.form-section .field.full:has(.check) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.form-section .field.no-full:has(.check) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 1320px) {
  .form-section .container {
    width: min(1280px, calc(100% - 40px));
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-section .form-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .form-section .field.full,
  .form-section .field.no-full {
    grid-column: 1 / -1;
  }
  
  .form-section .field {
    grid-column: span 2;
  }
  
  .form-section .field.full {
    grid-column: span 4;
  }

  .form-section .field.no-full {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  .form-section .container {
    width: min(100% - 32px, var(--container));
  }
  

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

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

  .form-section .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Footer redesign */
.footer {
  padding: 52px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 0 0, rgba(255, 122, 0, 0.12), transparent 22%),
    #080d15;
}

.footer::before {
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent 38%);
}

.footer-grid {
  grid-template-columns: 1.35fr 1fr 1.15fr 1fr;
  gap: clamp(34px, 5vw, 76px);
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-grid > div {
  min-height: auto;
  padding: 0;
  border-right: 0;
  line-height: 1.36;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.footer-mark {
  width: 43px;
  height: 43px;
  object-fit: cover;
  object-position: center;
}

.footer-brand-col p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer b,
.footer strong {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}

.footer-col p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .footer-grid > div {
    padding: 0;
    border: 0;
  }
}

@media (max-width: 640px) {
  .footer {
    padding-top: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* Product request banner */
.product-cta-section {
  padding: 42px 0 76px;
}

.product-cta {
  isolation: isolate;
  min-height: 310px;
  display: grid;
  align-content: center;
  padding: clamp(34px, 4vw, 58px);
  padding-right: min(560px, 46%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 11% 15%, rgba(255, 138, 0, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(22, 28, 24, 0.98), rgba(7, 21, 18, 0.98) 58%, rgba(7, 12, 17, 0.98)),
    #0b1112;
  box-shadow:
    0 32px 90px rgba(12, 16, 22, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-cta::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 0;
  width: min(430px, 36%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(8, 14, 17, 0.38), rgba(8, 14, 17, 0.08)),
    linear-gradient(180deg, rgba(8, 14, 17, 0.02), rgba(8, 14, 17, 0.46)),
    url("../img/product-sand-asphalt-russia.webp") center / cover no-repeat;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    -18px 0 40px rgba(255, 138, 0, 0.08);
}

.product-cta::after {
  z-index: 0;
  opacity: 0.58;
  background:
    linear-gradient(rgba(117, 191, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 191, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.18), transparent 34%);
  background-size: 44px 44px, 44px 44px, auto;
}

.product-cta h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.08;
}

.product-cta p {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.product-cta .btn {
  width: max-content;
  box-shadow: 0 18px 38px rgba(255, 138, 0, 0.24);
}

.product-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 38px 100px rgba(12, 16, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 980px) {
  .product-cta {
    padding-right: clamp(34px, 4vw, 58px);
    padding-bottom: 260px;
  }

  .product-cta::before {
    top: auto;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
    height: 210px;
  }
}

@media (max-width: 640px) {
  .product-cta-section {
    padding: 34px 0 58px;
  }

  .product-cta {
    border-radius: 18px;
    padding: 28px;
    padding-bottom: 220px;
  }

  .product-cta::before {
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 174px;
    border-radius: 14px;
  }
}

/* Media cards polish */
.media-card {
  isolation: isolate;
  min-height: 420px;
  border: 1px solid rgba(12, 16, 22, 0.08);
  border-radius: 26px;
  background: #101418;
  box-shadow:
    0 28px 90px rgba(12, 16, 22, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.media-card img {
  min-height: 420px;
  transform: scale(1.015);
  transition: transform 0.45s ease, filter 0.3s ease;
}

.media-card::after {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 138, 0, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(8, 12, 16, 0.02) 0%, rgba(8, 12, 16, 0.14) 42%, rgba(8, 12, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 12, 16, 0.38), transparent 46%);
}

.media-card div {
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  width: calc(100% - (26px * 2));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(12, 16, 20, 0.68);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.media-card h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
}

.media-card h3::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--amber-soft));
}

.media-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.45;
}

.media-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}

@media (max-width: 680px) {
  .media-card,
  .media-card img {
    min-height: 360px;
  }

  .media-card div {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    border-radius: 16px;
    width: calc(100% - (18px * 2));
  }
}

/* Cookie consent controls */
.cookie-box {
  width: min(1180px, 100%);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
  align-items: center;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.cookie-modal-open {
  overflow: hidden;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 20px;
  place-items: center;
}

.cookie-modal.is-visible {
  display: grid;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 15, 0.72);
  backdrop-filter: blur(8px);
}

.cookie-modal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 1px solid rgba(23, 26, 31, 0.12);
  border-radius: 22px;
  padding: 30px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cookie-modal-card h2 {
  margin: 0 44px 12px 0;
  font-size: 30px;
  line-height: 1.12;
}

.cookie-modal-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
}

.cookie-option input {
  width: 20px;
  min-height: 20px;
  margin: 3px 0 0;
  accent-color: var(--amber);
}

.cookie-option input:disabled {
  cursor: not-allowed;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
}

.cookie-option small {
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cookie-modal-actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  white-space: normal;
  text-align: center;
}

.cookie-modal-actions [data-cookie-reject] {
  grid-column: 1 / -1;
}

.cookie-modal .btn-line {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

@media (max-width: 1080px) {
  .cookie-box {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .cookie-banner {
    bottom: 86px;
  }
  
  .form-section .form-grid {
    grid-template-columns: 1fr;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .asphalt-calculator {
    padding: 20px 16px;
  }

  .cookie-actions,
  .cookie-modal-actions {
    grid-template-columns: 1fr;
  }

  .cookie-modal-actions [data-cookie-reject] {
    grid-column: auto;
  }

  .cookie-modal-card {
    padding: 24px 18px 18px;
  }
}

@media (max-width: 560px) {
  .hero:not(.hero-small) {
    height: max(1020px, 100vh);
  }
}

@media (max-width: 420px) {
  .hero:not(.hero-small) {
    height: max(1120px, 100vh);
  }
}

@media (max-width: 374px) {
  .hero:not(.hero-small) {
    height: max(1220px, 100vh);
  }
}
