:root {
  --ink: #10151c;
  --muted: #5c6675;
  --soft: #eef2f5;
  --paper: #f8fafb;
  --white: #ffffff;
  --dark: #070a0f;
  --panel: #0d1219;
  --panel-2: #121a23;
  --steel: #b9c4cf;
  --line: rgba(16, 21, 28, .1);
  --line-dark: rgba(255, 255, 255, .12);
  --accent: #d8a85f;
  --accent-2: #42d7ef;
  --success: #64d28f;
  --shadow: 0 22px 70px rgba(7, 10, 15, .12);
  --shadow-strong: 0 30px 90px rgba(7, 10, 15, .28);
  --radius: 8px;
  --radius-lg: 18px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f5f7f8 0%, #ffffff 42%, #eef2f5 100%);
  font-family: Nunito, "Segoe UI Rounded", "Arial Rounded MT Bold", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

section[id],
main[id] {
  scroll-margin-top: 104px;
}

.section--compact {
  padding: 82px 0;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

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

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(44px, 6.8vw, 86px);
  font-weight: 850;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 820;
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 780;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.lead--light {
  color: rgba(255, 255, 255, .72);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 760;
  line-height: 1;
  isolation: isolate;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

.btn::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, .25) 42%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .6s var(--ease);
  content: "";
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(130%);
}

.btn--primary {
  background: linear-gradient(135deg, #e4bd78, #b87c32);
  box-shadow: 0 16px 44px rgba(216, 168, 95, .28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 20px 54px rgba(216, 168, 95, .38);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(7, 10, 15, .18);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  z-index: 50;
  width: 100%;
  transition: top .28s var(--ease), transform .28s var(--ease);
}

.nav-shell {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(7, 10, 15, .62);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(24px);
}

.site-header.is-scrolled {
  top: 8px;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(7, 10, 15, .82);
  border-color: rgba(255, 255, 255, .16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
}

.brand__mark img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
}

.brand__meta {
  display: grid;
  gap: 4px;
}

.brand__sub {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 650;
  text-transform: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  transition: color .25s var(--ease), background .25s var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 780;
  transition: background .25s var(--ease);
}

.phone-link:hover,
.phone-link:focus-visible {
  background: rgba(255, 255, 255, .08);
}

.phone-link svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

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

.burger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}

.burger span {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: background .2s var(--ease);
}

.burger span::before,
.burger span::after {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .24s var(--ease), top .24s var(--ease);
  content: "";
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

body.menu-open .burger span {
  background: transparent;
}

body.menu-open .burger span::before {
  top: 0;
  transform: rotate(45deg);
}

body.menu-open .burger span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 34px;
  color: var(--white);
  background: #070a0f;
  overflow: hidden;
}

.hero > .container {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: calc(100svh - 166px);
  flex-direction: column;
  justify-content: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 24%, rgba(66, 215, 239, .12), transparent 36%),
    radial-gradient(circle at 18% 76%, rgba(216, 168, 95, .13), transparent 32%),
    linear-gradient(90deg, rgba(7, 10, 15, .55) 0%, rgba(7, 10, 15, .26) 48%, rgba(7, 10, 15, .12) 100%),
    linear-gradient(180deg, rgba(7, 10, 15, .32), rgba(7, 10, 15, .42));
  pointer-events: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .014) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .42) 54%, transparent 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: -20%;
  right: -18%;
  z-index: 2;
  width: 70%;
  height: 76%;
  background:
    linear-gradient(120deg, transparent 10%, rgba(66, 215, 239, .2), transparent 62%),
    linear-gradient(40deg, transparent 20%, rgba(216, 168, 95, .22), transparent 64%);
  filter: blur(28px);
  opacity: .55;
  transform: rotate(-12deg);
  content: "";
  pointer-events: none;
}

.hero__line {
  position: absolute;
  z-index: 2;
  left: 8vw;
  bottom: 14%;
  width: 36vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 168, 95, .75), transparent);
  animation: lineDrift 8s ease-in-out infinite;
}

.hero__beam {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 8%;
  width: 46vw;
  height: 170px;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .09), transparent);
  transform: skewY(-8deg);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.hero__copy {
  padding-top: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(52px, 7.6vw, 96px);
  line-height: .92;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .5);
}

.hero__copy .lead {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__actions .btn {
  min-width: 190px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  font-weight: 700;
}

.hero__checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
}

.hero__checks svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero-order {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .055));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.hero-order::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .18), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(216, 168, 95, .24), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero-order > * {
  position: relative;
  z-index: 1;
}

.hero-order__badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(216, 168, 95, .34);
  border-radius: 8px;
  background: rgba(216, 168, 95, .14);
  color: #ffdca0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-order h2 {
  max-width: 340px;
  color: var(--white);
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1;
  font-weight: 900;
}

.hero-order p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-weight: 650;
  line-height: 1.48;
}

.hero-socials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(8, 12, 18, .42);
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 900;
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.social-btn:hover,
.social-btn:focus-visible {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
  transform: translateY(-3px);
}

.social-btn__icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.social-btn__icon svg {
  width: 18px;
  height: 18px;
}

.social-btn--telegram .social-btn__icon {
  background: linear-gradient(135deg, #39a9ff, #1677c8);
}

.social-btn--whatsapp .social-btn__icon {
  background: linear-gradient(135deg, #54d66a, #189d4a);
}

.social-btn--max .social-btn__icon {
  background: transparent;
  color: inherit;
  overflow: hidden;
}

.social-btn--max .social-btn__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-btn--phone .social-btn__icon {
  background: linear-gradient(135deg, #e4bd78, #b87c32);
}

.social-btn--mail {
  grid-column: 1 / -1;
}

.social-btn--mail .social-btn__icon {
  background: linear-gradient(135deg, #758092, #303946);
}

.hero-order__meta {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-order__meta span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 800;
}

.hero-order__meta span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(216, 168, 95, .65);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1000px;
}

.hero-visual__frame {
  position: absolute;
  inset: 22px 0 0 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform: rotateX(4deg) rotateY(-8deg);
  transform-style: preserve-3d;
}

.hero-visual__frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 10, 15, .26) 100%),
    linear-gradient(120deg, rgba(216, 168, 95, .22), transparent 42%);
  content: "";
}

.hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.08);
  transform: scale(1.05);
}

.spec-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 5px;
  min-width: 178px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 8px;
  background: rgba(10, 15, 22, .74);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.spec-card strong {
  font-size: 28px;
  line-height: 1;
}

.spec-card span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  font-weight: 700;
}

.spec-card--top {
  top: 2px;
  left: 0;
}

.spec-card--bottom {
  right: 14px;
  bottom: 12px;
}

.hero-panel {
  position: absolute;
  right: 42px;
  bottom: 116px;
  z-index: 4;
  width: min(270px, 70%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
}

.hero-panel__title {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 820;
}

.hero-panel p {
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.45;
}

.hero-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.hero-stat {
  position: relative;
  min-height: 148px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, .2), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06) 52%, rgba(7, 10, 15, .2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06),
    0 26px 64px rgba(0, 0, 0, .28);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform .32s var(--ease), border-color .32s var(--ease), background .32s var(--ease), box-shadow .32s var(--ease);
}

.hero-stat:nth-child(2),
.hero-stat:nth-child(4) {
  transform: translateY(4px);
}

.hero-stat:hover {
  border-color: rgba(216, 168, 95, .48);
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, .28), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, .23), rgba(255, 255, 255, .08) 52%, rgba(7, 10, 15, .16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    0 34px 76px rgba(0, 0, 0, .34);
  transform: translateY(-5px);
}

.hero-stat:nth-child(2):hover,
.hero-stat:nth-child(4):hover {
  transform: translateY(-2px);
}

.hero-stat::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(216, 168, 95, .15), rgba(216, 168, 95, .95), rgba(66, 215, 239, .32));
  content: "";
}

.hero-stat::after {
  position: absolute;
  right: -46px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 168, 95, .22), transparent 64%);
  content: "";
  pointer-events: none;
}

.hero-stat__icon {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .42), transparent 29%),
    linear-gradient(145deg, rgba(216, 168, 95, .28), rgba(255, 255, 255, .08));
  color: #ffe2ac;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 14px 32px rgba(0, 0, 0, .22);
}

.hero-stat__icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.9;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .32));
}

.hero-stat--diameter .hero-stat__icon {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .44), transparent 29%),
    linear-gradient(145deg, rgba(66, 215, 239, .28), rgba(255, 255, 255, .08));
  color: #aef3ff;
}

.hero-stat--cut .hero-stat__icon {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .44), transparent 29%),
    linear-gradient(145deg, rgba(100, 210, 143, .27), rgba(255, 255, 255, .08));
  color: #bdffd6;
}

.hero-stat--time .hero-stat__icon {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .44), transparent 29%),
    linear-gradient(145deg, rgba(228, 189, 120, .3), rgba(255, 255, 255, .08));
  color: #ffe4b7;
}

.hero-stat strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 8px 58px 12px 0;
  color: var(--white);
  font-size: clamp(36px, 3.55vw, 52px);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 10px 32px rgba(0, 0, 0, .42);
}

.hero-stat span {
  color: rgba(255, 255, 255, .78);
  font-size: 13.5px;
  font-weight: 850;
  line-height: 1.36;
}

.hero-stat strong span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.hero-stat__label {
  display: block;
  max-width: 190px;
}

.ticker {
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: var(--dark);
  color: rgba(255, 255, 255, .75);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.ticker__item::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.services {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-rows: 240px 1fr;
  border: 1px solid rgba(16, 21, 28, .08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 10, 15, .06);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(216, 168, 95, .45);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card__media {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(7, 10, 15, .62);
  color: var(--white);
  font-size: 12px;
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(16, 21, 28, .1);
  border-radius: 8px;
  background: #f5f7f8;
  color: #3f4854;
  font-size: 12px;
  font-weight: 760;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 26px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 820;
}

.service-card__link svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  transition: transform .25s var(--ease);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, #070a0f 0%, #111923 50%, #070a0f 100%);
  overflow: hidden;
}

.dark-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
}

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

.dark-section .lead {
  color: rgba(255, 255, 255, .68);
}

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

.work-card {
  position: relative;
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

.work-card:hover {
  border-color: rgba(216, 168, 95, .5);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-8px);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  opacity: .82;
  transition: transform .7s var(--ease), opacity .35s var(--ease);
}

.work-card:hover img {
  opacity: .98;
  transform: scale(1.06);
}

.work-card__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 54px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(7, 10, 15, .88));
  color: var(--white);
  font-weight: 790;
}

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

.advantage-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(16, 21, 28, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 32px rgba(7, 10, 15, .055);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.advantage-card:hover {
  border-color: rgba(66, 215, 239, .35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(216, 168, 95, .28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(216, 168, 95, .18), rgba(66, 215, 239, .08));
  color: #a9712a;
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.advantage-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.advantage-card p {
  color: var(--muted);
  font-size: 15px;
}

.trust-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.trust-board {
  display: grid;
  gap: 14px;
}

.trust-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
}

.trust-row__num {
  color: var(--accent);
  font-weight: 880;
  font-size: 22px;
  line-height: 1;
}

.trust-row h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.trust-row p {
  color: rgba(255, 255, 255, .66);
}

.process {
  background: var(--paper);
}

.process-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(16, 21, 28, .09);
  border-radius: 8px;
  background: rgba(16, 21, 28, .09);
  overflow: hidden;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 26px 22px;
  background: #ffffff;
  counter-increment: step;
}

.process-step::before {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  border-radius: 8px;
  background: #f2f5f6;
  color: var(--accent);
  font-weight: 850;
  content: counter(step, decimal-leading-zero);
}

.process-step::after {
  position: absolute;
  top: 48px;
  right: 22px;
  left: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 168, 95, .65), transparent);
  content: "";
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  gap: 54px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(16, 21, 28, .09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 10, 15, .045);
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 820;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform .25s var(--ease);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease);
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.form-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 10, 15, .94), rgba(13, 18, 25, .9)),
    url("../img/91eb8767-e50f-475c-8919-de630bebe294-15896685.jpeg") center / cover no-repeat;
  overflow: hidden;
}

.form-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
}

.form-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 520px);
  gap: 58px;
  align-items: center;
}

.form-copy h2 {
  color: var(--white);
  margin-bottom: 22px;
}

.form-copy .lead {
  max-width: 570px;
  color: rgba(255, 255, 255, .72);
}

.form-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.form-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .76);
  font-weight: 720;
}

.form-points svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(22px);
}

.lead-form__title {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 25px;
  font-weight: 850;
  line-height: 1.1;
}

.lead-form__note {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.sb-input,
.sb-textarea {
  display: grid;
  gap: 7px;
}

.sb-input__wrapper,
.sb-textarea__wrapper {
  position: relative;
}

.sb-input__field,
.sb-textarea__field {
  width: 100%;
  min-height: 58px;
  padding: 22px 16px 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.sb-textarea__field {
  min-height: 122px;
  resize: vertical;
}

.sb-input__placeholder,
.sb-textarea__placeholder {
  position: absolute;
  top: 8px;
  left: 16px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 760;
  pointer-events: none;
}

.sb-input__field:focus,
.sb-textarea__field:focus {
  border-color: rgba(216, 168, 95, .72);
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 4px rgba(216, 168, 95, .12);
}

.sb-input__field::placeholder,
.sb-textarea__field::placeholder {
  color: transparent;
}

.sb-input__error,
.sb-textarea__error {
  min-height: 18px;
  color: #ffb7a7;
  font-size: 12px;
  font-weight: 700;
}

.s-form-type-5__agreement {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 2px;
}

.sb-custom-checkbox {
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  appearance: none;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.sb-custom-checkbox:checked {
  border-color: rgba(216, 168, 95, .8);
  background:
    linear-gradient(135deg, rgba(216, 168, 95, 1), rgba(184, 124, 50, 1));
  box-shadow: inset 0 0 0 5px rgba(7, 10, 15, .34);
}

.s-form-type-5__agreement-text {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.45;
}

.s-form-type-5__button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #e4bd78, #b87c32);
  color: var(--white);
  font-weight: 830;
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  box-shadow: 0 16px 44px rgba(216, 168, 95, .28);
}

.s-form-type-5__button:hover,
.s-form-type-5__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(216, 168, 95, .36);
}

.sb-notification {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 740;
}

.sb-notification_success {
  background: rgba(100, 210, 143, .14);
  color: #baf5cd;
}

.sb-notification_error {
  background: rgba(255, 120, 100, .14);
  color: #ffd0c8;
}

.contacts {
  padding-bottom: 0;
  background: #ffffff;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.contact-card {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(16, 21, 28, .1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(247, 250, 252, .92)),
    radial-gradient(circle at 100% 0%, rgba(216, 168, 95, .18), transparent 34%);
  box-shadow: 0 18px 48px rgba(14, 21, 30, .07);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.contact-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #e4bd78, rgba(216, 168, 95, 0), #8fb7ff);
  content: "";
  opacity: .88;
}

.contact-card::after {
  position: absolute;
  top: -80px;
  right: -84px;
  z-index: -1;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(216, 168, 95, .12);
  filter: blur(8px);
  content: "";
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 168, 95, .34);
  box-shadow: 0 24px 64px rgba(14, 21, 30, .12);
}

.contact-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-card__icon {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 189, 120, .98), rgba(184, 124, 50, .96)),
    #c89045;
  color: #111821;
  box-shadow: 0 16px 32px rgba(184, 124, 50, .24);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.1;
}

.contact-card h3 {
  font-size: 21px;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-weight: 650;
}

.contact-list {
  display: grid;
  gap: 9px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--ink);
  transform: translateX(3px);
}

.contact-link svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: #b87c32;
  stroke-width: 2.2;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.messenger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(16, 21, 28, .1);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.messenger:hover,
.messenger:focus-visible {
  border-color: rgba(216, 168, 95, .42);
  transform: translateY(-2px);
}

.messenger svg,
.messenger img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.messenger--max img {
  width: 20px;
  height: 20px;
}

.map-frame {
  position: relative;
  height: 430px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: var(--soft);
}

.map-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(7, 10, 15, .9), rgba(18, 26, 35, .82)),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  color: rgba(255, 255, 255, .82);
  text-align: center;
  font-size: 18px;
  font-weight: 780;
  line-height: 1.45;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  content: "TURNERMET на карте: Котельники, промзона Силикат, 9/1";
}

.map-frame.is-loaded::before {
  opacity: 0;
  visibility: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.9) contrast(1.04);
  opacity: 1;
  transition: opacity .35s var(--ease);
}

.map-frame:not(.is-loaded) iframe {
  opacity: 0;
}

.route-gallery {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(16, 21, 28, .1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff, #f5f7fa),
    radial-gradient(circle at 0% 0%, rgba(216, 168, 95, .18), transparent 34%);
  box-shadow: 0 20px 58px rgba(14, 21, 30, .08);
  overflow: hidden;
}

.route-gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.route-gallery__head h3 {
  margin-top: 4px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.route-gallery__head p {
  margin-top: 8px;
  max-width: 560px;
  color: var(--muted);
  font-weight: 650;
}

.route-gallery__controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.route-gallery__nav,
.route-lightbox__close,
.route-lightbox__nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 21, 28, .12);
  border-radius: 8px;
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.route-gallery__nav {
  width: 46px;
  height: 46px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(14, 21, 30, .08);
}

.route-gallery__nav:hover,
.route-gallery__nav:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 168, 95, .46);
  background: #fff8ec;
}

.route-gallery__nav svg,
.route-lightbox__close svg,
.route-lightbox__nav svg {
  width: 20px;
  height: 20px;
}

.route-gallery__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.route-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.route-gallery__track {
  display: flex;
  gap: 16px;
}

.route-photo {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #10151c;
  box-shadow: 0 16px 38px rgba(14, 21, 30, .13);
  cursor: zoom-in;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.route-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(3, 5, 8, .68), transparent);
  content: "";
  pointer-events: none;
}

.route-photo:hover,
.route-photo:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(14, 21, 30, .18);
  outline: none;
}

.route-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .45s var(--ease), filter .45s var(--ease);
}

.route-photo:hover img,
.route-photo:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.07) contrast(1.04);
}

.route-photo__caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  text-align: left;
}

.route-photo__zoom {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}

.route-photo__zoom svg {
  width: 16px;
  height: 16px;
}

.route-lightbox {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}

.route-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.route-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, .84);
  backdrop-filter: blur(16px);
}

.route-lightbox__dialog {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1120px, 100%);
  color: #ffffff;
}

.route-lightbox__image-wrap {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .44);
  overflow: hidden;
}

.route-lightbox__image-wrap img {
  width: 100%;
  max-height: min(78svh, 760px);
  object-fit: contain;
  background: #05070a;
}

.route-lightbox__close {
  position: absolute;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.route-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.route-lightbox__nav:hover,
.route-lightbox__nav:focus-visible,
.route-lightbox__close:hover,
.route-lightbox__close:focus-visible {
  border-color: rgba(228, 189, 120, .52);
  background: rgba(228, 189, 120, .22);
}

.route-lightbox__nav--prev {
  left: 14px;
}

.route-lightbox__nav--next {
  right: 14px;
}

.route-lightbox__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, .82);
  font-weight: 780;
}

.route-lightbox__counter {
  color: #ffdca0;
  white-space: nowrap;
}

.site-footer {
  color: rgba(255, 255, 255, .72);
  background: var(--dark);
  padding: 42px 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 16px 26px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 720;
}

.footer-nav a {
  transition: color .25s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-legal {
  display: grid;
  gap: 4px;
  grid-column: 3;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
}

.footer-credit {
  grid-column: 1 / -1;
  justify-self: end;
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
  font-weight: 750;
  transition: color .25s var(--ease);
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #ffdca0;
}

.utility-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 65;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(7, 10, 15, .78);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}

.utility-button.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.utility-button:hover,
.utility-button:focus-visible {
  background: linear-gradient(135deg, #e4bd78, #b87c32);
}

.utility-button svg {
  width: 21px;
  height: 21px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 70;
  display: grid;
  grid-template-columns: 210px minmax(560px, 700px) max-content;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 3vw, 46px);
  width: min(1180px, calc(100% - 48px));
  padding: 13px 18px 13px 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(7, 10, 15, .94);
  color: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  visibility: hidden;
  pointer-events: none;
}

.cookie-banner h3 {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.1;
  white-space: nowrap;
}

.cookie-banner p {
  width: 100%;
  min-width: 0;
  justify-self: start;
  font-size: 12.5px;
  line-height: 1.28;
  text-align: left;
}

.cookie-banner p span {
  display: block;
  white-space: nowrap;
}

.cookie-banner a,
.privacy-open {
  color: #ffdca0;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-open {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding-top: 0;
}

.cookie-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-weight: 850;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 168, 95, .46);
  background: rgba(255, 255, 255, .13);
}

.cookie-btn--accept {
  border-color: transparent;
  background: linear-gradient(135deg, #e4bd78, #b87c32);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, .74);
  backdrop-filter: blur(14px);
}

.modal__dialog {
  position: relative;
  display: grid;
  width: min(980px, 100%);
  max-height: min(86svh, 860px);
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
  overflow: hidden;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(16, 21, 28, .09);
  background: #f7f9fa;
}

.modal__header h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.modal__close {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(16, 21, 28, .1);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__content {
  padding: 28px;
  overflow: auto;
  color: #25303d;
}

.modal__content h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.modal__content h3:first-child {
  margin-top: 0;
}

.modal__content p,
.modal__content li {
  color: #4d5866;
  line-height: 1.6;
}

.modal__content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.modal__content li + li {
  margin-top: 6px;
}

.policy-table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.policy-table th,
.policy-table td {
  padding: 12px;
  border: 1px solid rgba(16, 21, 28, .1);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.policy-table th {
  background: #f1f4f6;
  color: var(--ink);
  font-weight: 900;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: .08s;
}

[data-reveal-delay="2"] {
  transition-delay: .16s;
}

[data-reveal-delay="3"] {
  transition-delay: .24s;
}

@keyframes lineDrift {
  0%,
  100% {
    opacity: .35;
    transform: translateX(0);
  }
  50% {
    opacity: .9;
    transform: translateX(80px);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .cookie-banner {
    grid-template-columns: 180px minmax(420px, 1fr) max-content;
    gap: 18px;
    padding-left: 22px;
  }

  .cookie-banner p {
    font-size: 12px;
  }

  .nav-menu {
    gap: 0;
    font-size: 13px;
  }

  .phone-link span {
    display: none;
  }

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

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

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

  .route-photo {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 920px) {
  .cookie-banner {
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
  }

  .cookie-banner p {
    grid-column: 1;
  }

  .cookie-banner p span {
    white-space: normal;
  }

  .cookie-actions {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .section {
    padding: 84px 0;
  }

  .section__head,
  .hero__layout,
  .trust-layout,
  .faq-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding: 116px 0 32px;
  }

  .hero > .container {
    min-height: calc(100svh - 148px);
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero-order {
    max-width: 540px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .nav-menu {
    position: fixed;
    top: 92px;
    right: 20px;
    left: 20px;
    display: grid;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(7, 10, 15, .94);
    box-shadow: var(--shadow-strong);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(24px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

  body.menu-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    justify-content: center;
    min-height: 50px;
  }

  .header-actions .btn {
    display: none;
  }

  .burger {
    display: grid;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 62px;
    padding: 8px 8px 8px 10px;
  }

  section[id],
  main[id] {
    scroll-margin-top: 86px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__sub {
    display: none;
  }

  .phone-link {
    display: none;
  }

  .hero {
    padding: 104px 0 28px;
  }

  .hero > .container {
    min-height: calc(100svh - 132px);
  }

  h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .hero__layout {
    gap: 16px;
  }

  .hero__actions,
  .hero__checks {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__checks {
    gap: 8px;
    margin-top: 18px;
  }

  .hero__copy .lead {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-order {
    padding: 18px;
  }

  .hero-socials {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
  }

  .hero-order__badge,
  .hero-order h2,
  .hero-order p,
  .hero-order__meta {
    display: none;
  }

  .social-btn {
    min-height: 54px;
    justify-content: center;
    padding: 8px;
  }

  .social-btn__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .social-btn--mail {
    grid-column: auto;
  }

  .hero-strip,
  .services-grid,
  .portfolio-grid,
  .advantages-grid,
  .process-grid,
  .contacts-grid,
  .route-gallery {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-stat {
    min-height: 112px;
    padding: 16px;
  }

  .hero-stat:nth-child(2),
  .hero-stat:nth-child(4) {
    transform: none;
  }

  .hero-stat::after {
    top: auto;
    right: -34px;
    bottom: -42px;
    width: 112px;
    height: 112px;
  }

  .hero-stat__icon {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .hero-stat__icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-stat strong {
    font-size: 30px;
    margin: 4px 42px 8px 0;
  }

  .hero-stat span {
    font-size: 12px;
  }

  .service-card {
    min-height: auto;
    grid-template-rows: 220px 1fr;
  }

  .portfolio-grid {
    gap: 12px;
  }

  .work-card,
  .work-card img {
    min-height: 260px;
  }

  .process-step {
    min-height: 230px;
  }

  .lead-form {
    padding: 18px;
  }

  .map-frame {
    height: 360px;
  }

  .contact-card {
    min-height: auto;
    padding: 20px;
  }

  .contact-card__icon {
    width: 46px;
    height: 46px;
  }

  .route-gallery {
    padding: 14px;
  }

  .route-gallery__head {
    display: grid;
    gap: 14px;
  }

  .route-gallery__controls {
    width: 100%;
  }

  .route-gallery__nav {
    flex: 1 1 0;
  }

  .route-photo {
    flex-basis: 100%;
  }

  .route-photo img {
    aspect-ratio: 4 / 3;
  }

  .route-lightbox {
    padding: 14px;
  }

  .route-lightbox__close {
    top: 10px;
    right: 10px;
    z-index: 3;
  }

  .route-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .route-lightbox__nav--prev {
    left: 8px;
  }

  .route-lightbox__nav--next {
    right: 8px;
  }

  .route-lightbox__meta {
    display: grid;
    gap: 6px;
  }

  .utility-button {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 8px;
    width: calc(100% - 24px);
    padding: 12px 14px;
    border-radius: 12px;
  }

  .cookie-banner h3 {
    margin: 0;
  }

  .cookie-banner p {
    width: 100%;
    text-align: left;
  }

  .cookie-banner p span {
    white-space: normal;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-btn--accept {
    margin-top: 0;
  }

  .modal {
    padding: 12px;
  }

  .modal__header,
  .modal__content {
    padding: 18px;
  }

  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table th,
  .policy-table td {
    display: block;
    width: 100%;
  }

  .policy-table th {
    border-bottom: 0;
  }

  .footer-layout {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-legal {
    text-align: left;
  }

  .footer-credit {
    justify-self: start;
  }
}

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