/*!
Theme Name: Walder Spec Auto
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: walder
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Walder Spec Auto is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --dark-950: #08090a;
  --dark-900: #111315;
  --dark-850: #181a1d;
  --dark-800: #202327;
  --dark-700: #2d3136;
  --red: #98001b;
  --red-600: #b40624;
  --white: #ffffff;
  --muted: #a8adb5;
  --gray: #f3f4f6;
  --gray-200: #e0e3e7;
  --ink: #15171a;
  --container: 1760px;
  --gutter: clamp(18px, 3vw, 80px);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  --icon-red-filter: brightness(0) saturate(100%) invert(14%) sepia(68%) saturate(4872%) hue-rotate(336deg) brightness(78%) contrast(108%);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --admin-bar: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--gray);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

img {
	width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .3s;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - var(--gutter), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(58px, 6vw, 112px) 0;
}

.section--dark {
  color: var(--white);
  background: var(--dark-900);
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

.section-title {
  margin-bottom: clamp(28px, 3vw, 48px);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title--center {
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin: 16px 0 0;
  background: var(--red);
}
.section-title--center::after {
	margin-left: auto;
	margin-right: auto;
}

.section-lead {
  max-width: 560px;
  margin: 0;
  color: #5d646e;
}

.section--dark .section-lead {
  color: var(--muted);
}

.btn {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 30px;
  border: 1px solid transparent;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease-out);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--red-600);
}

.btn:hover::after {
  left: 118%;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.btn--outline:hover {
  color: var(--dark-900);
  background: var(--white);
}

.btn--dark-outline {
  color: var(--dark-900);
  background: transparent;
  border-color: var(--dark-900);
}

.btn--dark-outline:hover {
  color: var(--white);
  background: var(--dark-900);
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  max-width: 480px;
  margin: 1.75rem auto;
  pointer-events: none;
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  border: 1px solid var(--gray-200);
  background-color: #fbfbfc;
  background-clip: padding-box;
  outline: 0;
  padding: 48px 24px 24px;
  overflow: hidden;
  z-index: 1;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: var(--dark-900);
  opacity: 0;
  z-index: -1;
}
.modal-backdrop.show {
  opacity: .8;
  z-index: 1049;
}
.modal-title {
  font-size: 20px;
  color: var(--dark-900);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-description {
  text-align: center;
  color: var(--dark-700);
}
.modal-close {
  position: absolute;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/close.svg);
  mask-image: url(images/close.svg);
  background-color: var(--dark-700);
  width: 32px;
  height: 32px;
  top: 12px;
  right: 12px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: .5s;
  z-index: 9;
}
.modal-close:hover {
  background-color: var(--dark-900);
}



.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--white);
  transition: background 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}
.admin-bar .site-header {
	top: var(--admin-bar);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(17, 19, 21, 0.92);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 88px);
}

.brand {
	width: clamp(176px, 13vw, 245px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: transform 0.22s ease;
}
.brand:hover {
  transform: translateY(-2px);
}
.brand img {
	max-height: 52px;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 54px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] {
  color: var(--white);
}

.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-phone {
  display: grid;
  text-align: right;
  font-weight: 800;
  white-space: nowrap;
}
.header-phone a:hover {
	opacity: .7;
}

.header-phone .header-button {
  color: var(--red);
  font-size: 13px;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: var(--white);
}

.burger span,
.burger span::before,
.burger span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.burger span::before {
  transform: translateY(-8px);
}

.burger span::after {
  transform: translateY(6px);
}

.nav-open .burger span {
  background: transparent;
}

.nav-open .burger span::before {
  background: var(--white);
  transform: rotate(45deg);
}

.nav-open .burger span::after {
  background: var(--white);
  transform: translateY(-2px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.98) 0%, rgba(8, 9, 10, 0.9) 32%, rgba(8, 9, 10, 0.46) 62%, rgba(8, 9, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.2), rgba(8, 9, 10, 0.72));
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  filter: saturate(0.92) contrast(1.08);
}

.hero__content > * {
  animation: heroReveal 0.72s var(--ease-out) both;
}

.hero__content > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero__content > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero__content > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero__content > *:nth-child(5) {
  animation-delay: 0.32s;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.98), transparent);
  pointer-events: none;
}

.hero__inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  padding-top: 88px;
  position: relative;
  z-index: 2;
}

.hero__content {
  min-width: 0;
  padding: 80px 0 220px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(54px, 6vw, 104px);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero__lead {
  max-width: 580px;
  margin-bottom: 22px;
  font-size: clamp(21px, 2.1vw, 32px);
  line-height: 1.22;
  font-weight: 800;
}

.hero__text {
  max-width: 540px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-bottom: 42px;
}

.hero__badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 19, 21, 0.62);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.hero__badges span:hover {
  transform: translateY(-2px);
  border-color: rgba(152, 0, 27, 0.72);
  background: rgba(152, 0, 27, 0.22);
}

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

.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -148px;
  color: var(--white);
  background: rgba(17, 19, 21, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  min-height: 146px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 52px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.24s ease;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.035);
}

.stat:first-child {
  border-left: 0;
}

.stat__icon,
.line-icon {
  --icon: url("../icons/settings.svg");
  --icon-size: 32px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 2px solid currentColor;
  flex: 0 0 auto;
  position: relative;
}

.stat__icon {
  color: #98001b;
  border-color: #98001b;
  background: rgba(152, 0, 27, 0.08);
  transition: transform 0.24s var(--ease-out), background 0.24s ease;
}

.stat:hover .stat__icon {
  transform: scale(1.06);
  background: rgba(152, 0, 27, 0.16);
}

.stat__icon::before,
.line-icon::before {
  content: "";
  width: var(--icon-size);
  height: var(--icon-size);
  background: var(--icon) center / contain no-repeat;
  filter: var(--icon-red-filter);
}
.stat strong {
  display: block;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 0.95;
  font-weight: 800;
}

.stat > div > span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.company-profile {
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff, #f3f4f6);
}

.company-profile__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 19, 21, 0.08);
}

.company-profile__intro,
.company-profile article {
  min-height: 250px;
  padding: clamp(28px, 3vw, 48px);
  background: var(--white);
}

.company-profile__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-profile .eyebrow {
  margin-bottom: 18px;
}

.company-profile h2 {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: clamp(24px, 1.9vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
}

.company-profile article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-left: 1px solid var(--gray-200);
  transition: background 0.24s ease, transform 0.24s var(--ease-out), box-shadow 0.24s ease;
}

.company-profile article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.company-profile article:hover {
  transform: translateY(-4px);
  background: #fbfbfc;
  box-shadow: 0 18px 36px rgba(17, 19, 21, 0.08);
}

.company-profile article:hover::after {
  transform: scaleX(1);
}

.company-profile article span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.company-profile h3 {
  margin: auto 0 12px;
  font-size: 20px;
  text-transform: uppercase;
}

.company-profile p {
  margin: 0;
  color: #5d646e;
  font-size: 14px;
}

.standards {
  background: var(--white);
}

.standards-title.section-title {
	margin-bottom: 0;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

.standards-grid article {
  min-height: 250px;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: #fbfbfc;
  transition: background 0.22s ease, transform 0.22s var(--ease-out);
}

.standards-grid article:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.standards-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.standards-grid h3 {
  margin-bottom: 14px;
  font-size: 20px;
  text-transform: uppercase;
}

.standards-grid p {
  margin: 0;
  color: #5d646e;
}

.solutions {
  background:
    radial-gradient(circle at 50% 0, rgba(152, 0, 27, 0.08), transparent 34%),
    var(--gray);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.solution-card {
  display: grid;
  min-height: 380px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.solution-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(17, 19, 21, 0.16);
}

.solution-card__image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.38s var(--ease-out), filter 0.38s ease;
}

.solution-card:hover .solution-card__image {
  transform: scale(1.055);
  filter: contrast(1.05) saturate(1.02);
}

.solution-card__body {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.solution-card .line-icon {
  --icon-size: 34px;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-width: 0;
}

.icon-engineering {
  --icon: url("../icons/bulldozer.svg");
}

.icon-special {
  --icon: url("../icons/excavator.svg");
}

.icon-municipal {
  --icon: url("../icons/factory.svg");
}

.icon-recovery {
  --icon: url("../icons/wrench.svg");
}

.solution-card h3,
.tech-card h3,
.benefit h3,
.sector-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-card p,
.tech-card p,
.benefit p,
.sector-card p {
  margin-bottom: 4px;
  color: #626973;
}

.arrow-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--red);
  font-size: 24px;
  transition: transform 0.22s ease;
}

.solution-card:hover .arrow-link,
.tech-card:hover .arrow-link {
  transform: translateX(5px);
}

.popular {
  background:
    radial-gradient(circle at 50% 0, rgba(152, 0, 27, 0.12), transparent 34%),
    linear-gradient(180deg, #111315, #08090a);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.tech-card {
  min-height: 368px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(152, 0, 27, 0.9);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.tech-card img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  transition: transform 0.38s var(--ease-out), filter 0.38s ease;
}

.tech-card:hover img {
  transform: scale(1.055);
  filter: contrast(1.06) saturate(1.04);
}

.tech-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.tech-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.tech-card .details {
  margin-top: auto;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.why {
  padding: 0;
  color: var(--white);
  background: var(--dark-900);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.why__media {
  min-height: 540px;
}

.why__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 96px);
  background: linear-gradient(90deg, rgba(17, 19, 21, 0.72), #111315 34%);
}

.benefit-list {
  display: grid;
  gap: 26px;
}

.benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: start;
  transition: transform 0.22s var(--ease-out);
}

.benefit:hover {
  transform: translateX(6px);
}

.benefit .line-icon {
  --icon-size: 34px;
  width: 48px;
  height: 48px;
  border-width: 0;
}

.icon-supply {
  --icon: url("../icons/briefcase.svg");
}

.icon-service {
  --icon: url("../icons/wrench.svg");
}

.icon-logistics {
  --icon: url("../icons/truck.svg");
}

.icon-custom {
  --icon: url("../icons/settings.svg");
}

.icon-building {
  --icon: url("../icons/building.svg");
}

.icon-energy {
  --icon: url("../icons/lightning.svg");
}

.icon-road {
  --icon: url("../icons/road.svg");
}

.icon-people {
  --icon: url("../icons/people.svg");
}

.benefit p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 244, 246, 0.98)),
    var(--gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(156px, 11vw, 232px);
  grid-auto-flow: dense;
  gap: clamp(12px, 1.2vw, 22px);
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark-800);
  box-shadow: 0 18px 46px rgba(17, 19, 21, 0.12);
}

.gallery-item:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(8),
.gallery-item:nth-child(9) {
  grid-column: span 3;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(10) {
  grid-column: span 6;
}

.gallery-item:nth-child(7) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 9, 10, 0.78));
  opacity: 0.72;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  transform: translateY(4px);
  transition: transform 0.28s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.08);
}

.gallery-item:hover::after {
  opacity: 0.9;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.brands {
  padding: 56px 0;
  color: var(--white);
  background: linear-gradient(90deg, #08090a, #181a1d, #08090a);
}

.brands__title {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.brand-logo {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
  padding: 10px;
}

.brand-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(152, 0, 27, 0.8);
}

.brand-logo img {
	width: auto;
	max-height: 76px;
}

.cycle {
  background: var(--gray);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.step {
  position: relative;
  text-align: center;
  transition: transform 0.22s var(--ease-out);
}

.step:hover {
  transform: translateY(-5px);
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: -22px;
  color: var(--dark-900);
  font-size: 28px;
}

.step__num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--dark-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.step .line-icon {
  --icon-size: 34px;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-color: rgba(152, 0, 27, 0.42);
}

.step h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.25;
  text-transform: uppercase;
}

.step p {
  max-width: 210px;
  margin-inline: auto;
  color: #606772;
  font-size: 14px;
}

.sectors {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.sectors__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: end;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 24px;
}

.sector-card {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 19, 21, 0.52);
  backdrop-filter: blur(6px);
  transition: transform 0.22s var(--ease-out), border-color 0.22s ease, background 0.22s ease;
}

.sector-card:hover {
  transform: translateY(-5px);
  border-color: rgba(152, 0, 27, 0.74);
  background: rgba(152, 0, 27, 0.18);
}

.sector-card .line-icon {
  --icon-size: 30px;
  width: 38px;
  height: 38px;
  border-width: 0;
}

.sector-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.site-footer {
  color: var(--white);
  background: var(--dark-900);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1.1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  padding: 70px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__grid .brand {
	margin-bottom: 16px;
}

.footer__grid h3 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  text-transform: uppercase;
}

.footer__grid p,
.footer__grid li,
.footer-bottom {
  color: rgba(255, 255, 255, 0.66);
}
.footer__grid li a:hover {
	color: rgba(255, 255, 255, .95);
}

.footer__grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__grid li {
  margin-bottom: 10px;
}
.footer-caption {
	margin-top: 16px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark-800);
  color: var(--white);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: var(--red);
}

.socials a:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.subpage .site-header {
  position: sticky;
  top: 0;
  color: var(--white);
  background: rgba(17, 19, 21, 0.96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.page-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.96), rgba(8, 9, 10, 0.78) 46%, rgba(8, 9, 10, 0.32)),
    var(--page-hero-image) center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.9), transparent);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(96px, 10vw, 156px) 0 clamp(58px, 7vw, 96px);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 600;
}

.page-split {
  background: var(--white);
}

.page-split__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 5vw, 88px);
  align-items: center;
}

.page-split__grid > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-split p {
  color: #5d646e;
  font-size: 17px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--dark-900);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 16px;
  height: 3px;
  background: var(--red);
}

.page-band {
  background:
    radial-gradient(circle at 50% 0, rgba(152, 0, 27, 0.07), transparent 34%),
    var(--gray);
}
.page-band-title.section-title {
  margin-bottom: 0;
}

.page-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

.page-feature-grid article {
  min-height: 250px;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease, background 0.22s ease;
}

.page-feature-grid article:hover {
  transform: translateY(-4px);
  background: #fbfbfc;
  box-shadow: 0 18px 40px rgba(17, 19, 21, 0.08);
}

.page-feature-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.page-feature-grid h3 {
  margin-bottom: 14px;
  font-size: 20px;
  text-transform: uppercase;
}

.page-feature-grid p {
  margin: 0;
  color: #5d646e;
}

.page-cta {
  color: var(--white);
}

.page-cta__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}

.page-cta p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.contact-page {
  background: var(--white);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 5vw, 88px);
  align-items: start;
}

.contact-card,
.contact-form,
.page-text__inner {
  background: #fbfbfc;
  border: 1px solid var(--gray-200);
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.08);
}

.contact-form {
  padding: clamp(28px, 3vw, 44px);
}

.contact-card {
  padding: clamp(28px, 3vw, 44px);
}

.contact-card h2 {
  margin-bottom: 24px;
  font-size: 28px;
  text-transform: uppercase;
}

.contact-card ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #5d646e;
}

.contact-card strong {
  color: var(--dark-900);
}

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

.form-consultation {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 22px;
}

.request-form label,
.form-consultation label {
  display: grid;
  gap: 8px;
  color: var(--dark-900);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-form label:has(textarea),
.request-form .btn,
.form-consultation label:has(textarea),
.form-consultation .btn {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea,
.form-consultation input {
  width: 100%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--dark-900);
  padding: 15px 16px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-form textarea {
  resize: vertical;
  height: 140px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus,
.form-consultation input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(152, 0, 27, 0.1);
}

.wpcf7-not-valid-tip {
  text-transform: none;
}

.page-text {
  background: var(--white);
}

.page-text__inner {
  max-width: 920px;
  padding: clamp(28px, 4vw, 58px);
}

.page-text__inner h2 {
  margin: 30px 0 12px;
  font-size: 24px;
  text-transform: uppercase;
}

.page-text__inner h2:first-child {
  margin-top: 0;
}

.page-text__inner p {
  color: #5d646e;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    background-position: 0 0, right center;
  }

  to {
    background-position: 0 0, 86% center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: heroDrift 18s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .hero__video {
    display: none;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 14px;
}



.error-404-number {
  text-align: center;
  font-size: 280px;
  font-weight: 700;
  color: #cecece;
  line-height: 1;
  margin-bottom: 30px;
}
.error-404-button {
  text-align: center;
}









@media (max-width: 1440px) {
  :root {
    --container: 1280px;
    --gutter: 48px;
  }

  .header__inner {
    gap: 36px;
  }

  .nav {
    gap: 24px;
  }

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

  .stat {
    padding-inline: 34px;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 32px;
  }

  .header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .burger {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 100;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(152, 0, 27, 0.92);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
  }

  .burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }



  .nav,
  .header-actions {
    position: fixed;
    left: 0;
    right: 0;
    display: none;
    background: rgba(17, 19, 21, 0.98);
  }

  .nav {
    top: 88px;
    padding: 28px var(--gutter);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header-actions {
    top: 370px;
    padding: 0 var(--gutter) 28px;
    align-items: flex-start;
  }

  .nav-open .nav,
  .nav-open .header-actions {
    display: flex;
  }

  .header-phone {
    text-align: left;
  }

  .hero {
    min-height: 780px;
  }

  .hero__video {
    object-position: 62% center;
  }

  .stats-grid,
  .solution-grid,
  .brand-grid,
  .standards-grid,
  .page-feature-grid,
  .sector-list,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    min-height: auto;
  }

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

  .company-profile__intro {
    grid-column: 1 / -1;
  }

  .stat {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-top: 0;
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

  .why__grid,
  .sectors__grid,
  .page-split__grid,
  .page-cta__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  .why__content {
    background: var(--dark-900);
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 210px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 3;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(3),
  .gallery-item:nth-child(10) {
    grid-column: span 6;
  }

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

  .step::after {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --admin-bar: 46px;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 24px;
  }

  .brand__mark {
    width: 42px;
  }

  .brand__logo {
    width: 168px;
  }

  .brand__name {
    font-size: 17px;
    letter-spacing: 0.08em;
  }

  .brand__sub {
    font-size: 7px;
    letter-spacing: 0.34em;
  }

  .header-actions {
    flex-direction: column;
  }

  .hero {
    min-height: 760px;

  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.98), rgba(8, 9, 10, 0.78) 48%, rgba(8, 9, 10, 0.92)),
      linear-gradient(90deg, rgba(8, 9, 10, 0.5), rgba(8, 9, 10, 0.2));
  }

  .hero__video {
    object-position: center bottom;
  }

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

  .hero__content {
    padding: 108px 0 154px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 44px);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero__lead {
    max-width: min(100%, 340px);
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero__text {
    max-width: min(100%, 340px);
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero__badges {
    margin-bottom: 32px;
  }

  .hero__badges span {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    text-align: center;
  }

  .section-title {
    font-size: 25px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .hero__actions,
  .section__header,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stats-bar {
    margin-top: 0;
  }

  .stats-grid,
  .company-profile__grid,
  .solution-grid,
  .tech-grid,
  .brand-grid,
  .standards-grid,
  .page-feature-grid,
  .steps,
  .sector-list,
  .footer__grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-left: 0;
    padding: 24px;
  }

  .stat strong {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .stat:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .company-profile__intro {
    grid-column: auto;
  }

  .company-profile__intro,
  .company-profile article {
    min-height: 0;
    padding: 30px 24px;
  }

  .company-profile article {
    border-left: 0;
    border-top: 1px solid var(--gray-200);
  }

  .company-profile h2 {
    font-size: 25px;
  }

  .standards-grid article {
    min-height: 0;
    padding: 30px 24px;
  }

  .page-feature-grid article {
    min-height: 0;
    padding: 30px 24px;
  }

  .page-feature-grid span {
    margin-bottom: 24px;
  }

  .standards-grid span {
    margin-bottom: 24px;
  }

  .page-hero {
    min-height: 430px;
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.98), rgba(8, 9, 10, 0.78) 48%, rgba(8, 9, 10, 0.92)),
      var(--page-hero-image) center / cover no-repeat;
  }

  .page-hero__inner {
    padding: 82px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .page-split__grid > img {
    min-height: 260px;
  }

  .page-cta__grid {
    gap: 28px;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .solution-card {
    min-height: 0;
  }

  .tech-card {
    min-height: 0;
  }

  .why__media {
    min-height: 310px;
  }

  .why__content {
    padding: 48px 24px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 12px;
  }

  .sectors {
    background:
      linear-gradient(180deg, rgba(17, 19, 21, 0.98), rgba(17, 19, 21, 0.84)),
      url("../img/armored-truck.jpg") center / cover no-repeat;
  }
}


@media(max-width: 575px) {
  :root {
    --admin-bar: 0px;
  }
  .modal-dialog {
    max-width: calc(100% - 40px);
  }
}