@font-face
{
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* UTS LOG client edits prototype */
:root {
  --bg: #f7f6f2;
  --paper: #ffffff;
  --text: #151515;
  --muted: rgba(21,21,21,.68);
  --muted-2: rgba(21,21,21,.50);
  --line: rgba(21,21,21,.12);
  --line-soft: rgba(21,21,21,.08);
  --orange: #f07822;
  --orange-dark: #d95d11;
  --shadow: 0 24px 70px rgba(21,21,21,.10);
  --header: 76px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 520px at 6% 8%, rgba(240,120,34,.12), transparent 60%), radial-gradient(760px 420px at 84% 10%, rgba(21,21,21,.07), transparent 62%), linear-gradient(180deg, var(--bg), #fbfaf7);
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }
.container { width: 100%; padding-left: clamp(20px, 5vw, 92px); padding-right: clamp(20px, 5vw, 92px); margin: 0 auto; }
.header { position: fixed; top: 0; left: 0; right: 0; height: var(--header); z-index: 80; background: rgba(247,246,242,.84); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(21,21,21,.08); }
.header__inner { height: 100%; display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 168px; }
.brand__mark { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: var(--orange); color: #fff; font-weight: 900; letter-spacing: -.8px; }
.brand__text { display: grid; line-height: 1.1; }
.brand__name { font-weight: 900; font-size: 18px; letter-spacing: .4px; }
.brand__caption { margin-top: 3px; color: var(--muted-2); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav__link { padding: 10px 8px; color: rgba(21,21,21,.74); font-size: 14px; font-weight: 700; transition: color .16s ease; }
.nav__link:hover { color: var(--orange-dark); }
.header__contacts { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.header__contact { color: rgba(21,21,21,.76); font-size: 14px; font-weight: 700; white-space: nowrap; }
.header__contact:hover { color: var(--orange-dark); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 0; border-radius: 999px; background: linear-gradient(180deg,#ff8a3b,var(--orange)); color: #fff; font-size: 14px; font-weight: 900; cursor: pointer; box-shadow: 0 14px 34px rgba(240,120,34,.25); transition: transform .16s ease, box-shadow .16s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 18px 42px rgba(240,120,34,.30); }
.btn--small { min-height: 40px; padding: 0 16px; font-size: 13px; }
.burger { width: 44px; height: 44px; border: 0; background: transparent; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--text); }
main { padding-top: var(--header); }
.section-screen { min-height: calc(100vh - var(--header)); display: flex; align-items: center; }
.section { padding: clamp(64px, 8vw, 108px) 0; scroll-margin-top: var(--header); }
.section--warm { background: radial-gradient(700px 360px at 92% 20%, rgba(240,120,34,.12), transparent 64%), rgba(255,255,255,.36); }
.hero { position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(21,21,21,.12) 1px, transparent 0); background-size: 22px 22px; opacity: .18; pointer-events: none; }
.hero__inner { width: 100%; display: grid; grid-template-columns: minmax(0,.92fr) minmax(360px,1.08fr); gap: clamp(30px,6vw,88px); align-items: center; position: relative; z-index: 2; }
.eyebrow, .section-label { margin: 0 0 14px; color: var(--orange-dark); font-size: 12px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; }
.hero__title { margin: 0; font-size: clamp(40px,5.4vw,82px); line-height: .98; letter-spacing: -2.2px; font-weight: 900; }
.hero__lead { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: clamp(16px,1.4vw,21px); line-height: 1.7; font-weight: 500; }
.hero__actions { margin-top: 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.link-more { color: var(--text); font-size: 14px; font-weight: 900; border-bottom: 2px solid var(--orange); }
.hero__visual { min-height: 520px; position: relative; }
.logistics-art { width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(21,21,21,.08)); }
.art-line { stroke: rgba(21,21,21,.42); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 9 11; }
.art-line--soft { stroke: rgba(21,21,21,.18); }
.art-line--orange { stroke: rgba(240,120,34,.92); stroke-width: 3; }
.art-dot { fill: var(--orange); }
.art-dot--dark { fill: var(--text); }
.art-plane path, .art-truck rect, .art-truck path, .art-ship path, .art-container rect, .art-container path { stroke: var(--text); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; fill: rgba(255,255,255,.72); }
.art-plane path { fill: rgba(240,120,34,.12); stroke: var(--orange-dark); }
.section-head { margin-bottom: clamp(28px,4vw,52px); }
.section-head--row { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr); gap: 26px; align-items: end; }
.section-title { margin: 0; font-size: clamp(30px,3.4vw,54px); line-height: 1.08; letter-spacing: -1.1px; font-weight: 900; }
.section-note { margin: 14px 0 0; color: var(--muted); font-size: clamp(15px,1.2vw,18px); line-height: 1.7; }
.about { width: 100%; }
.about__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.86fr); gap: clamp(24px,5vw,80px); align-items: center; }
.about__text p { margin: 0; color: rgba(21,21,21,.78); font-size: clamp(16px,1.25vw,20px); line-height: 1.8; font-weight: 500; }
.about__text p + p { margin-top: 18px; }
.network-art { width: 100%; }
.net-line { stroke: rgba(21,21,21,.28); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 8 10; }
.net-line--orange { stroke: rgba(240,120,34,.82); stroke-width: 3; }
.net-dot { fill: var(--text); }
.net-dot--orange { fill: var(--orange); }
.net-ring { stroke: rgba(240,120,34,.24); stroke-width: 2; }
.net-ring--big { stroke: rgba(21,21,21,.10); }
.benefits { margin-top: clamp(38px,5vw,70px); display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 26px; }
.benefit { padding-top: 18px; border-top: 2px solid rgba(21,21,21,.14); }
.benefit h3 { margin: 0; font-size: 16px; line-height: 1.35; font-weight: 900; }
.benefit p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-list { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; background: rgba(21,21,21,.12); border-radius: 28px; overflow: hidden; }
.service-item { min-height: 260px; padding: 28px; background: rgba(255,255,255,.74); }
.service-item span { display: block; color: var(--orange-dark); font-weight: 900; font-size: 13px; }
.service-item h3 { margin: 50px 0 0; font-size: 18px; line-height: 1.35; font-weight: 900; }
.service-item p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.transport { margin-top: 28px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.transport__item { padding: 26px 0 0; border-top: 2px solid var(--orange); }
.transport__icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; color: var(--orange-dark); font-size: 30px; font-weight: 900; }
.transport__item h3 { margin: 0; font-size: 22px; font-weight: 900; }
.transport__item p { margin: 10px 0 0; color: var(--muted); line-height: 1.7; }
.process { width: 100%; }
.process__grid { position: relative; min-height: 430px; display: grid; grid-template-columns: repeat(5,1fr); align-items: center; gap: 18px; }
.process-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.process-lines path { stroke: rgba(240,120,34,.34); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 12 14; }
.process-step { position: relative; z-index: 2; padding: 18px 0; }
.process-step:nth-child(even) { transform: translateY(80px); }
.process-step span { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--text); color: #fff; font-weight: 900; font-size: 22px; }
.process-step h3 { margin: 18px 0 0; font-size: 22px; font-weight: 900; }
.process-step p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 270px; }
.process__bottom { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.process__bottom p { margin: 0; font-size: clamp(18px,2vw,28px); line-height: 1.35; font-weight: 900; }
.slider-controls { display: flex; align-items: center; gap: 10px; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(21,21,21,.14); background: rgba(255,255,255,.72); cursor: pointer; font-size: 20px; font-weight: 900; transition: transform .16s ease, background .16s ease; }
.slider-btn:hover { transform: translateY(-1px); background: #fff; }
.cases { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(360px,42vw); gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: thin; }
.case-card { min-height: 520px; background: rgba(255,255,255,.76); border-radius: 30px; overflow: hidden; scroll-snap-align: start; box-shadow: 0 24px 70px rgba(21,21,21,.08); }
.case-card__image { height: 280px; position: relative; background: linear-gradient(135deg, rgba(21,21,21,.10), rgba(240,120,34,.18)), radial-gradient(circle at 26% 30%, rgba(240,120,34,.26), transparent 34%), #efede6; }
.case-card__image::before { content: ''; position: absolute; inset: 24px; border-radius: 24px; border: 2px dashed rgba(21,21,21,.18); }
.case-card__image::after { position: absolute; left: 34px; bottom: 30px; color: rgba(21,21,21,.72); font-size: 44px; font-weight: 900; }
.case-card__image--one::after { content: 'CONTAINER'; }
.case-card__image--two::after { content: '16 TRUCKS'; }
.case-card__image--three::after { content: 'EQUIPMENT'; }
.case-card__image--four::after { content: 'MARKING'; }
.case-card__body { padding: 28px; }
.case-card__body h3 { margin: 0; font-size: clamp(20px,1.6vw,28px); line-height: 1.25; font-weight: 900; }
.case-card__body p { margin: 14px 0 0; color: var(--muted); line-height: 1.75; font-size: 15px; }
.contacts { width: 100%; }
.contacts__grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,.7fr) minmax(280px,.8fr); gap: 36px; align-items: start; }
.requisites h3 { margin: 0 0 18px; font-size: 24px; font-weight: 900; }
.requisites p { margin: 0; color: rgba(21,21,21,.78); font-size: 15px; line-height: 1.7; }
.requisites p + p { margin-top: 14px; }
.requisites span, .req-list span { color: var(--muted-2); font-weight: 800; }
.req-list { margin-top: 18px; display: grid; gap: 6px; }
.req-list p { margin: 0; }
.contact-side { display: grid; gap: 16px; }
.contact-line { font-size: clamp(20px,1.8vw,30px); line-height: 1.2; font-weight: 900; }
.contact-line:hover { color: var(--orange-dark); }
.contact-address { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; font-weight: 600; }
.map-box { aspect-ratio: 1/1; max-height: 330px; border-radius: 26px; overflow: hidden; background: #ece8dd; box-shadow: 0 18px 50px rgba(21,21,21,.08); }
.map-box iframe { display: block; }
.footer { padding: 34px 0; background: #151515; color: #fff; }
.footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.footer__brand-ru { font-size: 28px; font-weight: 900; }
.footer__left p { margin: 8px 0 0; color: rgba(255,255,255,.62); line-height: 1.5; }
.footer__logo-en img { width: 220px; }
.footer__links { justify-self: end; display: grid; gap: 8px; text-align: right; }
.footer__links a { color: rgba(255,255,255,.70); font-size: 13px; }
.footer__links a:hover { color: #fff; }
.modal { position: fixed; inset: 0; display: none; z-index: 100; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(21,21,21,.50); backdrop-filter: blur(5px); }
.modal__panel { position: absolute; top: 96px; right: clamp(18px,4vw,80px); width: min(620px, calc(100% - 36px)); max-height: calc(100vh - 120px); overflow: auto; padding: 28px; border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.modal__head h2 { margin: 0; font-size: 30px; line-height: 1.1; font-weight: 900; }
.modal__close { width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(21,21,21,.06); font-size: 24px; cursor: pointer; }
.request-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.field { display: grid; gap: 7px; }
.field span { font-size: 12px; font-weight: 900; color: rgba(21,21,21,.72); }
.field input, .field textarea, .field select { width: 100%; padding: 14px 15px; border: 1px solid rgba(21,21,21,.14); border-radius: 16px; background: rgba(247,246,242,.74); color: var(--text); font-size: 14px; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(240,120,34,.64); box-shadow: 0 0 0 3px rgba(240,120,34,.14); }
.field textarea { resize: vertical; }
.check { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: 12px; line-height: 1.55; }
.check input { margin-top: 2px; }
.check a { color: var(--orange-dark); font-weight: 800; }
.form-actions { margin-top: 4px; display: grid; gap: 10px; }
.form-actions p { margin: 0; color: var(--muted-2); font-size: 12px; line-height: 1.5; }
.cookie { position: fixed; left: clamp(18px,4vw,60px); right: clamp(18px,4vw,60px); bottom: 18px; z-index: 110; display: none; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 16px 18px; border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.cookie.is-open { display: grid; }
.cookie p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 13px; }
.cookie__actions { display: flex; align-items: center; gap: 12px; }
.cookie__actions a { color: var(--orange-dark); font-size: 13px; font-weight: 900; }
.page { min-height: 100vh; padding: calc(var(--header) + 56px) clamp(20px,5vw,92px) 70px; }
.page__inner { max-width: 900px; margin: 0 auto; background: rgba(255,255,255,.78); border-radius: 28px; padding: clamp(24px,4vw,48px); box-shadow: var(--shadow); }
.page h1 { margin: 0; font-size: clamp(30px,4vw,48px); line-height: 1.1; }
.page h2 { margin: 34px 0 10px; font-size: 24px; }
.page p, .page li { color: var(--muted); line-height: 1.75; }
.page a { color: var(--orange-dark); font-weight: 900; }
@media (max-width: 1180px) { .header__contacts { display: none; } .service-list { grid-template-columns: repeat(2,minmax(0,1fr)); } .benefits { grid-template-columns: repeat(2,minmax(0,1fr)); } .contacts__grid { grid-template-columns: 1fr 1fr; } .map-box { max-width: 360px; } }
@media (max-width: 920px) { .section-screen { min-height: auto; } .section { padding: 70px 0; } .hero__inner, .about__grid, .section-head--row, .contacts__grid { grid-template-columns: 1fr; } .hero__visual { min-height: auto; } .transport { grid-template-columns: repeat(2,minmax(0,1fr)); } .process__grid { display: grid; grid-template-columns: 1fr; min-height: auto; gap: 18px; } .process-step, .process-step:nth-child(even) { transform: none; padding: 0; display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; } .process-step h3 { margin-top: 0; } .process-lines { display: none; } .process__bottom { align-items: flex-start; flex-direction: column; } .footer__inner { grid-template-columns: 1fr; } .footer__links { justify-self: start; text-align: left; } }
@media (max-width: 760px) { :root { --header: 70px; } .brand__mark { width: 42px; height: 42px; } .brand__caption { display: none; } .nav { position: fixed; left: 0; right: 0; top: var(--header); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 18px; background: rgba(247,246,242,.98); border-bottom: 1px solid var(--line-soft); } .nav.is-open { display: flex; } .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line-soft); } .burger { display: flex; } .hero__title { font-size: 42px; letter-spacing: -1.2px; } .service-list, .transport, .benefits, .form-row { grid-template-columns: 1fr; } .service-item { min-height: auto; } .service-item h3 { margin-top: 28px; } .cases { grid-auto-columns: minmax(300px,88vw); } .case-card { min-height: auto; } .case-card__image { height: 220px; } .case-card__image::after { font-size: 32px; } .cookie { grid-template-columns: 1fr; } }


.hero__visual
{
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__imageWrap
{
  width: 100%;
  max-width: 860px;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  box-shadow: 0 28px 70px rgba(21, 21, 21, 0.10);
}

.hero__image
{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

@media (max-width: 920px)
{
  .hero__imageWrap
  {
    max-width: 100%;
    padding: 8px;
    border-radius: 24px;
  }

  .hero__image
  {
    border-radius: 18px;
  }
}


/* HERO IMAGE NO BACKGROUND OVERRIDE */

.hero__visual
{
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__imageWrap
{
  width: 100%;
  max-width: 1040px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero__image
{
  width: 116%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -4%;
  border-radius: 0;
  filter: drop-shadow(0 20px 38px rgba(21, 21, 21, 0.08));
}

@media (max-width: 920px)
{
  .hero__imageWrap
  {
    max-width: 100%;
    overflow: hidden;
  }

  .hero__image
  {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    filter: none;
  }
}


/* ABOUT IMAGE OVERRIDE */

.about__visual
{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.about__imageWrap
{
  width: 100%;
  max-width: 760px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.about__image
{
  width: 112%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -4%;
  border-radius: 0;
  filter: none;
}

@media (max-width: 920px)
{
  .about__imageWrap
  {
    max-width: 100%;
  }

  .about__image
  {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}


/* ABOUT IMAGE FINAL OVERRIDE */

.about__imageWrap
{
  width: 100%;
  max-width: 820px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.about__image
{
  width: 118%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: -8%;
  border-radius: 0;
  filter: none;
}

@media (max-width: 920px)
{
  .about__image
  {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}


/* TRANSPORT ICONS OVERRIDE */

.transport__icon
{
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.transport__icon img
{
  width: 92px;
  height: 92px;
  display: block;
  object-fit: contain;
}

@media (max-width: 760px)
{
  .transport__icon
  {
    width: 78px;
    height: 78px;
    margin-bottom: 14px;
  }

  .transport__icon img
  {
    width: 78px;
    height: 78px;
  }
}


/* PROCESS ARROWS OVERRIDE */

.process__grid
{
  display: none;
}

.process-flow
{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr) 84px minmax(0, 1fr) 84px minmax(0, 1fr) 84px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.process-card
{
  min-height: 240px;
  padding: 28px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 56px rgba(21, 21, 21, 0.08);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.process-card__num
{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--text);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.process-card h3
{
  margin: 18px 0 0 0;
  font-size: 22px;
  font-weight: 900;
}

.process-card p
{
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.process-arrow
{
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-arrow svg
{
  width: 84px;
  height: 28px;
}

.process-arrow path
{
  stroke: rgba(240, 120, 34, 0.85);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 1180px)
{
  .process-flow
  {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-arrow
  {
    min-height: 36px;
  }

  .process-arrow svg
  {
    width: 28px;
    height: 76px;
    transform: rotate(90deg);
  }

  .process-card
  {
    min-height: auto;
  }
}

@media (max-width: 920px)
{
  .process__bottom
  {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* PROCESS CREATIVE OVERRIDE */

.process-flow
{
  display: none;
}

.process-journey
{
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  padding: 36px 0 16px;
}

.process-journey__line
{
  position: absolute;
  left: 0;
  right: 0;
  top: 104px;
  width: 100%;
  height: 220px;
  z-index: 1;
  pointer-events: none;
}

.process-journey__line path
{
  stroke: rgba(240, 120, 34, 0.88);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.process-node
{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-node--1,
.process-node--3,
.process-node--5
{
  padding-top: 0;
}

.process-node--2,
.process-node--4
{
  padding-top: 138px;
}

.process-node__point
{
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ff8a3b, var(--orange));
  box-shadow: 0 16px 32px rgba(240, 120, 34, 0.26);
}

.process-node__point::before
{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 120, 34, 0.34);
}

.process-node__point span
{
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.process-node__card
{
  width: 100%;
  margin-top: 18px;
  padding: 22px 22px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 22px 56px rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(8px);
}

.process-node--2 .process-node__card,
.process-node--4 .process-node__card
{
  background: linear-gradient(180deg, rgba(255, 247, 241, 0.95), rgba(255, 255, 255, 0.76));
}

.process-node__eyebrow
{
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process-node__card h3
{
  margin: 10px 0 0 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.process-node__card p
{
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1180px)
{
  .process-journey
  {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    padding: 10px 0 0;
  }

  .process-journey__line
  {
    display: none;
  }

  .process-node,
  .process-node--2,
  .process-node--4
  {
    padding-top: 0;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    align-items: start;
  }

  .process-node__card
  {
    margin-top: 0;
  }
}

@media (max-width: 760px)
{
  .process-node,
  .process-node--2,
  .process-node--4
  {
    grid-template-columns: 1fr;
  }

  .process-node__point
  {
    width: 70px;
    height: 70px;
  }

  .process-node__point span
  {
    font-size: 26px;
  }
}


/* PROCESS BEAUTIFUL ARROWS OVERRIDE */

.process-journey
{
  position: relative;
  min-height: 450px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding: 30px 0 16px;
}

.process-node
{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-node--1,
.process-node--3,
.process-node--5
{
  padding-top: 0;
}

.process-node--2,
.process-node--4
{
  padding-top: 138px;
}

.process-node__point
{
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ff8a3b, var(--orange));
  box-shadow: 0 16px 32px rgba(240, 120, 34, 0.26);
}

.process-node__point::before
{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 120, 34, 0.34);
}

.process-node__point span
{
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.process-node__card
{
  width: 100%;
  margin-top: 18px;
  padding: 22px 22px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 22px 56px rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(8px);
}

.process-node--2 .process-node__card,
.process-node--4 .process-node__card
{
  background: linear-gradient(180deg, rgba(255, 247, 241, 0.95), rgba(255, 255, 255, 0.76));
}

.process-node__eyebrow
{
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process-node__card h3
{
  margin: 10px 0 0 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.process-node__card p
{
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.process-arrow
{
  position: absolute;
  z-index: 1;
  width: 180px;
  height: 120px;
  pointer-events: none;
}

.process-arrow svg
{
  width: 100%;
  height: 100%;
  display: block;
}

.process-arrow path
{
  stroke: rgba(240, 120, 34, 0.92);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.process-arrow--1
{
  top: 34px;
  left: calc(20% - 18px);
}

.process-arrow--2
{
  top: 172px;
  left: calc(40% - 30px);
}

.process-arrow--3
{
  top: 34px;
  left: calc(60% - 42px);
}

.process-arrow--4
{
  top: 172px;
  left: calc(80% - 54px);
}

@media (max-width: 1280px)
{
  .process-arrow
  {
    width: 150px;
    height: 104px;
  }

  .process-arrow--1
  {
    left: calc(20% - 10px);
  }

  .process-arrow--2
  {
    left: calc(40% - 22px);
  }

  .process-arrow--3
  {
    left: calc(60% - 34px);
  }

  .process-arrow--4
  {
    left: calc(80% - 46px);
  }
}

@media (max-width: 1180px)
{
  .process-journey
  {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    padding: 10px 0 0;
  }

  .process-arrow
  {
    position: static;
    width: 44px;
    height: 60px;
    margin: -2px auto;
  }

  .process-arrow svg
  {
    transform: rotate(90deg);
  }

  .process-node,
  .process-node--2,
  .process-node--4
  {
    padding-top: 0;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    align-items: start;
  }

  .process-node__card
  {
    margin-top: 0;
  }
}

@media (max-width: 760px)
{
  .process-node,
  .process-node--2,
  .process-node--4
  {
    grid-template-columns: 1fr;
  }

  .process-node__point
  {
    width: 70px;
    height: 70px;
  }

  .process-node__point span
  {
    font-size: 26px;
  }
}

/* PROCESS ARROWS — SINGLE SVG OVERLAY */

.process-journey
{
  position: relative;
}

.process-journey__arrows
{
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.pj-arrow
{
  stroke: rgba(240, 120, 34, 0.92);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 3px 8px rgba(240, 120, 34, 0.14));
}

@media (max-width: 1180px)
{
  .process-journey__arrows
  {
    display: none;
  }
}


/* CASES GALLERY OVERRIDE */

.cases
{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(380px, 42vw);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: thin;
}

.case-card
{
  min-height: 560px;
  background: rgba(255, 255, 255, 0.80);
  border-radius: 30px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 24px 70px rgba(21, 21, 21, 0.08);
  display: flex;
  flex-direction: column;
}

.case-card__media
{
  position: relative;
  width: 100%;
  height: 320px;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  background: transparent;
  cursor: pointer;
}

.case-card__media:hover .case-card__photo
{
  transform: scale(1.02);
}

.case-card__photo
{
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease;
}

.case-card__thumbWrap
{
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34%;
  max-width: 154px;
  aspect-ratio: 4 / 5;
  padding: 6px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(21, 21, 21, 0.14);
}

.case-card__thumb
{
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.case-card__count
{
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.82);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.case-card__body
{
  padding: 28px;
  flex: 1;
}

.case-card__body h3
{
  margin: 0;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.25;
  font-weight: 900;
}

.case-card__body p
{
  margin: 14px 0 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.case-photo
{
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.10), rgba(240, 120, 34, 0.10)),
    #efede6;
}

.case-photo::before
{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.68), transparent 22%),
    linear-gradient(180deg, transparent 58%, rgba(21, 21, 21, 0.08) 58%, rgba(21, 21, 21, 0.08) 60%, transparent 60%),
    linear-gradient(90deg, transparent 64%, rgba(21, 21, 21, 0.06) 64%, rgba(21, 21, 21, 0.06) 66%, transparent 66%);
  opacity: 0.75;
}

.case-photo::after
{
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: rgba(21, 21, 21, 0.74);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
  white-space: pre-line;
}

.case-card__thumb .case-photo::after
{
  left: 12px;
  bottom: 12px;
  font-size: 14px;
  letter-spacing: -0.2px;
}

.case-photo--case1-a
{
  background:
    radial-gradient(circle at 24% 30%, rgba(240, 120, 34, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(21, 21, 21, 0.10), rgba(240, 120, 34, 0.14)),
    #ece8df;
}
.case-photo--case1-a::after
{
  content: "КОНТЕЙНЕР\AПОД ПРОЕКТ";
}
.case-photo--case1-b
{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(21,21,21,0.04)),
    #efe7de;
}
.case-photo--case1-b::after
{
  content: "ДЕТАЛИ";
}

.case-photo--case2-a
{
  background:
    radial-gradient(circle at 68% 28%, rgba(240,120,34,0.22), transparent 24%),
    linear-gradient(135deg, rgba(21,21,21,0.11), rgba(240,120,34,0.10)),
    #ebe7dd;
}
.case-photo--case2-a::after
{
  content: "16 МАШИН";
}
.case-photo--case2-b::after
{
  content: "ПОГРУЗКА";
}

.case-photo--case3-a
{
  background:
    radial-gradient(circle at 18% 26%, rgba(240,120,34,0.18), transparent 22%),
    linear-gradient(135deg, rgba(21,21,21,0.12), rgba(240,120,34,0.08)),
    #e9e5da;
}
.case-photo--case3-a::after
{
  content: "ОБОРУДОВАНИЕ";
}
.case-photo--case3-b::after
{
  content: "ДОСТАВКА";
}

.case-photo--case4-a
{
  background:
    radial-gradient(circle at 70% 28%, rgba(240,120,34,0.20), transparent 22%),
    linear-gradient(135deg, rgba(21,21,21,0.08), rgba(240,120,34,0.12)),
    #eee8e0;
}
.case-photo--case4-a::after
{
  content: "МАРКИРОВКА";
}
.case-photo--case4-b::after
{
  content: "КОДЫ";
}

/* slightly different decorative geometry per case */
.case-photo--case1-a::before,
.case-photo--case1-b::before
{
  background:
    linear-gradient(90deg, transparent 12%, rgba(21,21,21,0.08) 12%, rgba(21,21,21,0.08) 14%, transparent 14%, transparent 29%, rgba(21,21,21,0.08) 29%, rgba(21,21,21,0.08) 31%, transparent 31%, transparent 46%, rgba(21,21,21,0.08) 46%, rgba(21,21,21,0.08) 48%, transparent 48%),
    linear-gradient(180deg, transparent 66%, rgba(21,21,21,0.07) 66%, rgba(21,21,21,0.07) 68%, transparent 68%);
}
.case-photo--case2-a::before,
.case-photo--case2-b::before
{
  background:
    linear-gradient(180deg, transparent 60%, rgba(21,21,21,0.07) 60%, rgba(21,21,21,0.07) 62%, transparent 62%),
    linear-gradient(90deg, transparent 18%, rgba(21,21,21,0.06) 18%, rgba(21,21,21,0.06) 20%, transparent 20%, transparent 56%, rgba(21,21,21,0.06) 56%, rgba(21,21,21,0.06) 58%, transparent 58%);
}
.case-photo--case3-a::before,
.case-photo--case3-b::before
{
  background:
    radial-gradient(circle at 76% 74%, rgba(255,255,255,0.44), transparent 22%),
    linear-gradient(90deg, transparent 64%, rgba(21,21,21,0.07) 64%, rgba(21,21,21,0.07) 66%, transparent 66%),
    linear-gradient(180deg, transparent 52%, rgba(21,21,21,0.07) 52%, rgba(21,21,21,0.07) 54%, transparent 54%);
}
.case-photo--case4-a::before,
.case-photo--case4-b::before
{
  background:
    linear-gradient(90deg, transparent 20%, rgba(21,21,21,0.07) 20%, rgba(21,21,21,0.07) 22%, transparent 22%, transparent 40%, rgba(21,21,21,0.07) 40%, rgba(21,21,21,0.07) 42%, transparent 42%),
    linear-gradient(180deg, transparent 64%, rgba(21,21,21,0.07) 64%, rgba(21,21,21,0.07) 66%, transparent 66%),
    radial-gradient(circle at 76% 22%, rgba(255,255,255,0.52), transparent 18%);
}

/* modal */
.case-modal
{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 105;
}
.case-modal.is-open
{
  display: block;
}
.case-modal__overlay
{
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.58);
  backdrop-filter: blur(6px);
}
.case-modal__panel
{
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 36px));
  max-height: calc(100vh - 104px);
  overflow: auto;
  padding: 26px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(21, 21, 21, 0.16);
}
.case-modal__head
{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.case-modal__head h2
{
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}
.case-modal__close
{
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(21,21,21,0.06);
  font-size: 24px;
  cursor: pointer;
}
.case-modal__stage
{
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  gap: 18px;
  align-items: center;
}
.case-modal__nav
{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(21,21,21,0.12);
  background: rgba(255,255,255,0.82);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}
.case-modal__visualWrap
{
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247,246,242,0.9), rgba(236,232,223,0.94));
}
.case-modal__visual
{
  width: 100%;
  height: 540px;
}
.case-modal__counter
{
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(21,21,21,0.82);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}
.case-modal__thumbs
{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.case-modal__thumbBtn
{
  width: 110px;
  height: 78px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(21,21,21,0.10);
  background: rgba(247,246,242,0.72);
  cursor: pointer;
}
.case-modal__thumbBtn.is-active
{
  border-color: rgba(240,120,34,0.78);
  box-shadow: 0 0 0 2px rgba(240,120,34,0.12);
}
.case-modal__thumbInner
{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.case-modal__visual.case-photo::after
{
  font-size: 48px;
  left: 36px;
  bottom: 32px;
}
.case-modal__thumbInner.case-photo::after
{
  font-size: 12px;
  left: 10px;
  bottom: 10px;
}

@media (max-width: 920px)
{
  .cases
  {
    grid-auto-columns: minmax(320px, 88vw);
  }

  .case-card
  {
    min-height: auto;
  }

  .case-card__media
  {
    height: 260px;
  }

  .case-modal__panel
  {
    top: 18px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 36px);
    padding: 20px;
  }

  .case-modal__head h2
  {
    font-size: 26px;
  }

  .case-modal__stage
  {
    grid-template-columns: 1fr;
  }

  .case-modal__nav
  {
    width: 48px;
    height: 48px;
  }

  .case-modal__nav--prev
  {
    order: 2;
    justify-self: start;
  }

  .case-modal__visualWrap
  {
    order: 1;
    min-height: 360px;
  }

  .case-modal__visual
  {
    height: 360px;
  }

  .case-modal__nav--next
  {
    order: 3;
    justify-self: end;
    margin-top: -48px;
  }

  .case-modal__thumbBtn
  {
    width: 92px;
    height: 68px;
  }
}


/* CASE REAL PHOTO PATHS */

.case-photo
{
  background-color: #efede6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.case-photo::before,
.case-photo::after
{
  display: none;
}

.case-photo--case1-a
{
  background-image: url("./assets/cases/keis1.jpg");
}

.case-photo--case1-b
{
  background-image: url("./assets/cases/keis1-2.jpg");
}

.case-photo--case2-a
{
  background-image: url("./assets/cases/keis2.jpg");
}

.case-photo--case2-b
{
  background-image: url("./assets/cases/keis2-2.jpg");
}

.case-photo--case3-a
{
  background-image: url("./assets/cases/keis3.jpg");
}

.case-photo--case3-b
{
  background-image: url("./assets/cases/keis3-2.jpg");
}

.case-photo--case4-a
{
  background-image: url("./assets/cases/keis4.jpg");
}

.case-photo--case4-b
{
  background-image: url("./assets/cases/keis4-2.jpg");
}

.case-modal__visual.case-photo
{
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f6f2;
}

.case-card__photo.case-photo,
.case-card__thumb.case-photo,
.case-modal__thumbInner.case-photo
{
  background-size: cover;
  background-position: center;
}


/* COMPACT VERTICAL SPACING OVERRIDE */

/* Убираем искусственную высоту "почти на весь экран" у внутренних блоков */
.section-screen
{
  min-height: auto;
  display: block;
}

/* Первый экран оставляем крупнее остальных, но тоже без лишней пустоты */
.hero.section-screen
{
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero
{
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(28px, 4vw, 52px);
}

/* Основные секции делаем компактнее примерно в 2.5-3 раза */
.section
{
  padding-top: clamp(34px, 4vw, 54px);
  padding-bottom: clamp(34px, 4vw, 54px);
}

/* Уменьшаем большие внутренние отступы между заголовком секции и содержимым */
.section-head
{
  margin-bottom: clamp(20px, 2.4vw, 34px);
}

/* В блоке "О компании" уменьшаем дистанцию до преимуществ */
.benefits
{
  margin-top: clamp(24px, 3vw, 42px);
}

/* В блоке "Услуги" уменьшаем отступ перед видами транспорта */
.transport
{
  margin-top: 20px;
}

/* В процессе убираем лишний воздух сверху/снизу */
.process-journey
{
  padding-top: 18px;
  padding-bottom: 8px;
}

.process__bottom
{
  margin-top: 14px;
}

/* В кейсах оставляем воздух, но без чрезмерной высоты */
.cases
{
  padding-bottom: 10px;
}

@media (max-width: 920px)
{
  .hero
  {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section
  {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section-head
  {
    margin-bottom: 22px;
  }
}


/* SCROLL ANIMATIONS */

.reveal
{
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal--left
{
  transform: translateX(-34px);
}

.reveal--right
{
  transform: translateX(34px);
}

.reveal--scale
{
  transform: translateY(18px) scale(0.96);
}

.reveal.is-visible
{
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

.reveal-delay-1
{
  transition-delay: 0.08s;
}

.reveal-delay-2
{
  transition-delay: 0.16s;
}

.reveal-delay-3
{
  transition-delay: 0.24s;
}

.reveal-delay-4
{
  transition-delay: 0.32s;
}

.reveal-delay-5
{
  transition-delay: 0.40s;
}

/* Мягкая анимация стрелок в процессе */
.process-journey__arrows .pj-arrow
{
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  transition: stroke-dashoffset 1.1s ease;
}

.process-journey.is-visible .pj-arrow
{
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce)
{
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale
  {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .process-journey__arrows .pj-arrow
  {
    stroke-dashoffset: 0;
    transition: none;
  }
}
