@font-face {
  font-family: "Merx Narrow";
  src: url("../assets/nimbus-sans-narrow-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Merx Narrow";
  src: url("../assets/nimbus-sans-narrow-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy-950: #051828;
  --navy-900: #071b2d;
  --navy-800: #0b2a43;
  --orange: #f45412;
  --paper: #f4f2ef;
  --white: #ffffff;
  --ink: #071b2d;
  --line: #d5d7d9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-900);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy-900);
  font-family: Arial, Helvetica, sans-serif;
}

body,
button,
input,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
main {
  width: min(100%, 1920px);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  height: clamp(70px, 5.15vw, 99px);
  padding: 0 clamp(28px, 4.6vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(5, 24, 40, 0.08);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(210px, 17vw, 315px);
  height: auto;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 42px);
}

.desktop-navigation a,
.mobile-navigation a {
  position: relative;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(14px, 0.92vw, 18px);
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-navigation a:hover::after,
.desktop-navigation a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle,
.mobile-navigation {
  display: none;
}

main {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}

.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
}

.hero-main {
  min-height: clamp(580px, 42.17vw, 810px);
  display: grid;
  grid-template-columns: 41.25% 58.75%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(66px, 6vw, 114px) clamp(38px, 3.9vw, 75px) 54px clamp(48px, 4.55vw, 87px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 25%, rgba(39, 87, 119, 0.43), transparent 33%),
    linear-gradient(145deg, #061b2d 0%, #061b2d 62%, #092840 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  right: -27%;
  top: 8%;
  opacity: 0.24;
  background:
    linear-gradient(45deg, transparent 42%, var(--orange) 42% 44%, transparent 44% 56%, var(--orange) 56% 58%, transparent 58%);
  transform: rotate(8deg);
}

.technical-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(90deg, rgba(244, 84, 18, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(244, 84, 18, 0.09) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to right, #000, transparent 90%);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: clamp(14px, 1.05vw, 20px);
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow i,
.hero-categories i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  margin: clamp(22px, 1.5vw, 30px) 0 0;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(66px, 5.05vw, 97px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-shadow: 0 3px 1px rgba(0, 0, 0, 0.4);
}

.hero h1 span,
.hero h1 strong {
  display: block;
  white-space: nowrap;
}

.hero h1 strong {
  color: var(--orange);
  font-weight: 700;
}

.hero-categories {
  margin: clamp(26px, 2vw, 39px) 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--orange);
  font-size: clamp(14px, 1vw, 19px);
  line-height: 1.35;
}

.hero-description {
  max-width: 590px;
  margin: clamp(24px, 2.1vw, 40px) 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(16px, 1vw, 19px);
  line-height: 1.48;
}

.hero-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 38px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 0.96fr);
  gap: clamp(14px, 1.5vw, 28px);
}

.button {
  min-height: 58px;
  padding: 0 clamp(18px, 1.65vw, 32px);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid transparent;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg,
.card-link svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  stroke-width: 1.7;
  transition: transform 160ms ease;
}

.button:hover svg,
.card-link:hover svg {
  transform: translateX(5px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover {
  color: var(--orange);
  background: var(--white);
}

.button-secondary {
  justify-content: center;
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.button-secondary:hover {
  color: var(--navy-900);
  background: var(--white);
}

.whatsapp-mark {
  font-size: 20px;
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #132638;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-media-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 28px 0 42px rgba(4, 20, 34, 0.26);
}

.hero-highlights {
  min-height: clamp(120px, 9vw, 173px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy-900);
}

.highlight-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  border-right: 1px solid rgba(255, 255, 255, 0.58);
}

.highlight-card:last-child {
  border-right: 0;
}

.highlight-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 22, 37, 0.98) 0%, rgba(4, 22, 37, 0.76) 42%, rgba(4, 22, 37, 0.1) 100%);
}

.highlight-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.highlight-card:hover img {
  transform: scale(1.04);
}

.highlight-card span {
  position: absolute;
  left: clamp(28px, 4vw, 76px);
  top: 50%;
  max-width: 45%;
  color: var(--white);
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(29px, 2.3vw, 44px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  transform: translateY(-55%);
}

.highlight-card i {
  position: absolute;
  left: clamp(28px, 4vw, 76px);
  top: calc(50% + 38px);
  width: 52px;
  height: 4px;
  background: var(--orange);
}

.deliveries-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(135deg, rgba(7, 27, 45, 0.035) 0 1px, transparent 1px 14px),
    var(--paper);
}

.section-shell {
  width: min(82%, 1460px);
  margin: 0 auto;
}

.section-heading {
  padding: clamp(74px, 6.2vw, 118px) 0 clamp(40px, 3vw, 58px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading h2,
.order-band h2 {
  margin: 12px 0 0;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(58px, 4.5vw, 86px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.section-heading > div > p:last-child {
  margin: 18px 0 0;
  color: #4e5660;
  font-size: clamp(16px, 1.05vw, 20px);
}

.button-outline-dark {
  min-width: clamp(280px, 22vw, 410px);
  color: var(--navy-900);
  background: transparent;
  border-color: var(--navy-900);
}

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

.delivery-grid {
  padding-bottom: clamp(54px, 5vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 38px);
}

.delivery-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9dcdf;
  box-shadow: 0 12px 28px rgba(7, 27, 45, 0.12);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.delivery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(7, 27, 45, 0.18);
}

.delivery-image {
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
  background: #d9dcdf;
}

.delivery-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

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

.delivery-content {
  padding: clamp(22px, 1.7vw, 32px) clamp(22px, 1.8vw, 34px) clamp(20px, 1.6vw, 30px);
}

.delivery-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.delivery-title-row h3 {
  margin: 0;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.delivery-title-row p,
.availability {
  margin: 10px 0 0;
  color: #4e5660;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.35;
}

.grade {
  flex: 0 0 auto;
  margin-top: 3px;
  padding: 6px 9px 5px;
  color: var(--orange);
  border: 1px solid var(--orange);
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
}

.availability {
  padding-bottom: 17px;
  border-bottom: 1px solid #cfd3d6;
}

.availability strong {
  color: var(--navy-900);
}

.card-link {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-900);
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(18px, 1.2vw, 23px);
  font-weight: 700;
  text-transform: uppercase;
}

.card-link svg {
  color: var(--orange);
}

.order-band {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 4vw, 76px) 0 clamp(54px, 4.3vw, 82px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 28%, rgba(27, 75, 108, 0.35), transparent 28%),
    var(--navy-900);
}

.order-band::before,
.order-band::after {
  content: "";
  position: absolute;
  top: -1px;
  width: 0;
  height: 0;
  border-top: clamp(34px, 3.2vw, 62px) solid var(--paper);
}

.order-band::before {
  left: 0;
  border-right: clamp(34px, 3.2vw, 62px) solid transparent;
}

.order-band::after {
  right: 0;
  border-left: clamp(34px, 3.2vw, 62px) solid transparent;
}

.order-band-circuit {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, transparent 49.8%, rgba(244, 84, 18, 0.3) 50%, transparent 50.2%),
    linear-gradient(30deg, transparent 49.8%, rgba(244, 84, 18, 0.24) 50%, transparent 50.2%);
  background-size: 180px 180px;
  mask-image: linear-gradient(90deg, #000, transparent 30%, transparent 70%, #000);
}

.order-band .section-shell {
  position: relative;
  z-index: 1;
}

.order-band h2 {
  margin: 0 0 clamp(38px, 3vw, 58px);
  font-size: clamp(48px, 3.5vw, 67px);
}

.order-band h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 14px;
  background: var(--orange);
}

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

.order-step {
  min-width: 0;
  min-height: 112px;
  padding: 0 clamp(24px, 2vw, 38px);
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.order-step:first-child {
  padding-left: 0;
}

.order-step:last-child {
  padding-right: 0;
  border-right: 0;
}

.order-step > svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  stroke-width: 1.45;
}

.order-step h3 {
  margin: 0;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.order-step > div {
  min-width: 0;
}

.order-step h3 span {
  margin-right: 5px;
  color: var(--orange);
}

.order-step p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(13px, 0.85vw, 16px);
  line-height: 1.42;
}

.section-corner {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 0;
  height: 0;
  border-bottom: clamp(40px, 4vw, 76px) solid transparent;
}

.section-corner-left {
  left: 0;
  border-left: clamp(40px, 4vw, 76px) solid var(--navy-900);
}

.section-corner-right {
  right: 0;
  border-right: clamp(40px, 4vw, 76px) solid var(--navy-900);
}

.product-section,
.transport-section,
.cooperation-section,
.about-section,
.contact-section,
.site-footer {
  position: relative;
  scroll-margin-top: 82px;
}

.product-section {
  padding-top: clamp(64px, 4.8vw, 92px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(135deg, rgba(7, 27, 45, 0.04) 0 1px, transparent 1px 14px),
    var(--paper);
}

.product-heading {
  padding-bottom: clamp(34px, 3vw, 56px);
}

.product-heading h2,
.transport-copy h2,
.cooperation-copy h2,
.expert-content h2,
.about-copy h2,
.contact-section h2,
.contact-form-wrap h2 {
  margin: 12px 0 0;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(55px, 4.4vw, 84px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.product-heading > p:last-child {
  margin: 18px 0 0;
  color: #363e47;
  font-size: clamp(16px, 1.05vw, 20px);
}

.product-layout {
  min-height: clamp(650px, 45vw, 865px);
  display: grid;
  grid-template-columns: 61% 39%;
}

.product-gallery {
  min-width: 0;
  display: grid;
  overflow: hidden;
  background: #d6d1cb;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.gallery-1 img {
  object-position: center 45%;
}

.gallery-3 {
  grid-template-columns: 63% 37%;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  background: var(--white);
}

.gallery-3 img:first-child {
  grid-row: 1 / -1;
}

.product-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(52px, 4.2vw, 82px) clamp(42px, 4vw, 76px) clamp(34px, 3vw, 58px);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 8%, rgba(26, 76, 111, 0.4), transparent 34%),
    var(--navy-900);
}

.technical-x {
  position: absolute;
  top: 7%;
  right: -1%;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: clamp(170px, 15vw, 290px);
  font-weight: 200;
  line-height: 0.8;
  -webkit-text-stroke: 2px rgba(244, 84, 18, 0.72);
  opacity: 0.72;
  transform: scaleX(1.15);
  pointer-events: none;
}

.availability-label {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--orange);
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(17px, 1.2vw, 23px);
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.availability-label span {
  width: 19px;
  height: 19px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244, 84, 18, 0.16);
}

.product-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: clamp(25px, 2vw, 38px) 0 0;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(52px, 4.1vw, 79px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.product-categories {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 19px;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(20px, 1.45vw, 28px);
  text-transform: uppercase;
}

.product-categories span:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 18px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--orange);
}

.parameter-list {
  position: relative;
  z-index: 1;
  margin: clamp(28px, 2.4vw, 46px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.parameter-list li {
  min-height: clamp(58px, 4vw, 77px);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(19px, 1.38vw, 27px);
  text-transform: uppercase;
}

.parameter-list svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.35;
}

.product-cta {
  width: 100%;
  margin-top: clamp(28px, 2.1vw, 40px);
}

.product-meta {
  margin: 25px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(16px, 1.05vw, 20px);
  text-transform: uppercase;
}

.product-meta i,
.footer-mark i,
.contact-methods i {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
}

.transport-section {
  display: grid;
  grid-template-columns: 62% 38%;
  background: var(--paper);
}

.transport-map-panel {
  position: relative;
  min-width: 0;
  min-height: clamp(650px, 47vw, 900px);
  padding: clamp(48px, 4vw, 76px) 3vw 30px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 48% 42%, rgba(24, 93, 151, 0.55), transparent 48%),
    linear-gradient(145deg, #041726, #082c47);
}

.transport-map-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 13%;
  background: var(--paper);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 52%, 0 0);
}

.map-heading {
  margin: 0;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(32px, 2.2vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
}

.map-heading::after {
  content: "";
  width: 54px;
  height: 4px;
  margin-top: 15px;
  display: block;
  background: var(--orange);
}

.map-shell {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.europe-map {
  width: 92%;
  height: auto;
  display: block;
  overflow: visible;
}

.country {
  fill: #10283a;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  transition: fill 160ms ease;
}

.country-active {
  fill: #104e87;
  stroke: #58a6e1;
}

.country-hub {
  fill: var(--orange);
  stroke: #ffad88;
}

.country:hover {
  fill: #287bb7;
}

.country-hub:hover {
  fill: #ff6b2f;
}

.route-layer path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}

.map-marker circle,
.sicily-marker circle {
  fill: var(--orange);
  stroke: var(--white);
  stroke-width: 3;
}

.map-marker text,
.sicily-marker text {
  fill: var(--white);
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.warehouse-marker .pulse {
  fill: none;
  stroke: var(--orange);
  opacity: 0.8;
}

.map-hint {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.transport-copy {
  min-width: 0;
  padding: clamp(72px, 6vw, 115px) clamp(40px, 4vw, 77px) 60px clamp(24px, 2vw, 40px);
}

.transport-copy > p:not(.section-kicker) {
  max-width: 590px;
  margin: 26px 0 0;
  font-size: clamp(16px, 1.08vw, 21px);
  line-height: 1.5;
}

.transport-options {
  margin: clamp(32px, 3vw, 56px) 0 0;
  display: grid;
  gap: 12px;
}

.transport-options article {
  min-height: 76px;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 58px minmax(100px, 0.7fr) 1fr;
  align-items: center;
  gap: 15px;
  border: 2px solid var(--navy-900);
  box-shadow: 0 4px 12px rgba(7, 27, 45, 0.08);
}

.transport-options svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.5;
}

.transport-options strong {
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(28px, 2vw, 38px);
  text-transform: uppercase;
}

.transport-options span {
  padding-left: 20px;
  border-left: 1px solid #949aa0;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(16px, 1vw, 20px);
  text-transform: uppercase;
}

.transport-copy > .button {
  width: 100%;
  margin-top: 28px;
}

.text-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(18px, 1.2vw, 23px);
  text-transform: uppercase;
}

.text-link svg {
  width: 27px;
  color: var(--orange);
}

.transport-benefits {
  grid-column: 1 / -1;
  min-height: clamp(125px, 10vw, 190px);
  padding: 26px 7vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: var(--white);
  background: var(--navy-900);
}

.transport-benefits span {
  height: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  gap: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  font-family: "Merx Narrow", "Arial Narrow", sans-serif;
  font-size: clamp(21px, 1.55vw, 30px);
  text-transform: uppercase;
}

.transport-benefits span:first-child { padding-left: 0; }
.transport-benefits span:last-child { padding-right: 0; border-right: 0; }
.transport-benefits svg { width: 54px; height: 54px; flex: 0 0 auto; stroke-width: 1.3; }

.cooperation-section {
  display: grid;
  grid-template-columns: 43% 57%;
  background: var(--paper);
}

.cooperation-copy {
  min-width: 0;
  padding: clamp(68px, 5vw, 96px) clamp(36px, 3.5vw, 68px) 58px clamp(48px, 5.2vw, 100px);
}

.cooperation-copy > p:not(.section-kicker),
.expert-content > p:not(.section-kicker),
.about-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.46;
}

.audience-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.audience-grid article {
  min-height: 145px;
  padding: 22px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  background: var(--white);
  border: 1px solid #e0e0df;
  box-shadow: 0 7px 20px rgba(7, 27, 45, 0.09);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.audience-grid svg { width: 57px; height: 57px; stroke-width: 1.4; }
.audience-grid article > div { min-width: 0; }
.audience-grid span { color: var(--orange); font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: 21px; font-weight: 700; }
.audience-grid h3 { margin: 3px 0 0; font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: clamp(22px, 1.45vw, 28px); line-height: 1; text-transform: uppercase; }
.audience-grid h3::after { content: ""; width: 40px; height: 2px; margin-top: 10px; display: block; background: var(--orange); }
.audience-grid p { margin: 10px 0 0; color: #3e4650; font-size: 13px; line-height: 1.35; }

.cooperation-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.button-dark { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.button-dark:hover { color: var(--navy-900); background: var(--white); }

.expert-panel {
  position: relative;
  min-width: 0;
  min-height: clamp(670px, 45vw, 860px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.expert-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 75% center;
}

.expert-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 24, 40, 1) 0%, rgba(5, 24, 40, 0.94) 36%, rgba(5, 24, 40, 0.52) 61%, rgba(5, 24, 40, 0.08) 100%);
}

.expert-content {
  position: relative;
  z-index: 1;
  width: 56%;
  padding: clamp(90px, 6vw, 116px) 20px 50px clamp(56px, 5vw, 96px);
}

.expert-content h2 { font-size: clamp(48px, 3.65vw, 70px); }
.expert-content h2 strong,
.contact-copy h2 strong { color: var(--orange); font-weight: 700; }
.expert-content ul { margin: 34px 0; padding: 0; display: grid; gap: 22px; list-style: none; }
.expert-content li { display: flex; align-items: center; gap: 15px; font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: clamp(18px, 1.28vw, 25px); font-weight: 700; text-transform: uppercase; }
.expert-content li svg { width: 30px; height: 30px; padding: 5px; color: var(--orange); border: 2px solid var(--orange); border-radius: 4px; }
.expert-content .button { width: min(100%, 430px); }

.cooperation-stats {
  grid-column: 1 / -1;
  min-height: clamp(150px, 12vw, 230px);
  padding: 28px 8vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--paper);
}

.cooperation-stats > span {
  min-height: 100px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 78px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 18px;
  border-right: 1px solid #9ba0a4;
}

.cooperation-stats > span:first-child { padding-left: 0; }
.cooperation-stats > span:last-child { padding-right: 0; border-right: 0; }
.cooperation-stats svg { width: 68px; height: 68px; grid-row: 1 / 3; color: var(--orange); stroke-width: 1.3; }
.cooperation-stats strong { font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: clamp(42px, 3.4vw, 65px); line-height: 0.9; text-transform: uppercase; }
.cooperation-stats small { margin-top: 10px; font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: clamp(17px, 1.1vw, 21px); text-transform: uppercase; }

.about-section {
  display: grid;
  grid-template-columns: 50% 50%;
  background: var(--paper);
}

.about-image { min-height: clamp(540px, 38vw, 730px); overflow: hidden; }
.about-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.about-copy { padding: clamp(55px, 4.5vw, 86px) clamp(48px, 5vw, 96px) 50px 4.5vw; }
.about-values { margin: 28px 0; display: grid; grid-template-columns: repeat(2, 1fr); }
.about-values article { min-height: 130px; padding: 20px; display: grid; grid-template-columns: 58px 1fr; gap: 14px; border-right: 1px solid #adb1b4; border-bottom: 1px solid #adb1b4; }
.about-values article:nth-child(even) { border-right: 0; }
.about-values article:nth-child(n+3) { border-bottom: 0; }
.about-values svg { width: 50px; height: 50px; stroke-width: 1.35; }
.about-values h3 { margin: 0; font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: clamp(21px, 1.4vw, 27px); line-height: 1; text-transform: uppercase; }
.about-values h3::after { content: ""; width: 34px; height: 2px; margin-top: 8px; display: block; background: var(--orange); }
.about-values p { margin: 9px 0 0; font-size: 13px; line-height: 1.34; }
.about-copy > .button { width: min(100%, 360px); min-width: 0; }

.contact-section {
  display: grid;
  grid-template-columns: 51% 49%;
  color: var(--white);
  background:
    radial-gradient(circle at 48% 25%, rgba(26, 76, 111, 0.35), transparent 35%),
    var(--navy-900);
}

.contact-copy,
.contact-form-wrap { min-width: 0; padding: clamp(48px, 4vw, 76px) clamp(38px, 4vw, 78px); }
.contact-copy { border-right: 1px solid rgba(255, 255, 255, 0.5); }
.contact-section h2 { font-size: clamp(50px, 3.9vw, 75px); }
.contact-copy > p:not(.section-kicker) { max-width: 650px; margin: 20px 0 0; font-size: clamp(15px, 1vw, 19px); line-height: 1.45; }
.intent-actions { margin-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.intent-actions .button { min-height: 54px; padding-inline: 16px; font-size: clamp(14px, 0.93vw, 18px); cursor: pointer; }
.contact-methods { margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 16px 30px; }
.contact-methods span { display: flex; align-items: center; gap: 10px; font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: clamp(16px, 1.1vw, 21px); text-transform: uppercase; }
.contact-methods svg { width: 28px; height: 28px; stroke-width: 1.5; }

.contact-form-wrap h2 { font-size: clamp(45px, 3.25vw, 62px); }
.intent-fieldset { margin: 24px 0 8px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; border: 0; }
.intent-fieldset legend { width: 100%; margin-bottom: 8px; color: rgba(255, 255, 255, 0.72); font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: 15px; text-transform: uppercase; }
.intent-fieldset label { cursor: pointer; }
.intent-fieldset input { position: absolute; opacity: 0; }
.intent-fieldset span { padding: 8px 15px; display: block; border: 1px solid rgba(255, 255, 255, 0.5); font-family: "Merx Narrow", "Arial Narrow", sans-serif; text-transform: uppercase; }
.intent-fieldset input:checked + span { color: var(--white); background: var(--orange); border-color: var(--orange); }
.intent-fieldset input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 3px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 32px; }
.form-grid label { color: rgba(255, 255, 255, 0.8); font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: 15px; text-transform: uppercase; }
.form-grid input,
.form-grid textarea { width: 100%; margin-top: 7px; padding: 8px 0; display: block; color: var(--white); border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.7); border-radius: 0; outline: 0; background: transparent; font-size: 17px; resize: vertical; }
.form-grid input:focus,
.form-grid textarea:focus { border-bottom-color: var(--orange); box-shadow: 0 2px 0 var(--orange); }
.form-wide { grid-column: 1 / -1; }
.form-submit-row { margin-top: 18px; display: flex; align-items: center; gap: 25px; }
.form-submit-row .button { min-width: min(100%, 290px); cursor: pointer; }
.form-submit-row > span { font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: clamp(15px, 1vw, 19px); text-transform: uppercase; }
.form-status { min-height: 22px; margin: 14px 0 0; color: #ffb598; font-size: 14px; line-height: 1.4; }

.site-footer {
  min-height: 150px;
  padding: 32px 6vw 24px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(150px, 0.6fr);
  align-items: start;
  gap: 24px 48px;
  background: var(--paper);
}

.footer-brand img { width: min(100%, 330px); height: auto; display: block; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px 28px; }
.site-footer nav a,
.footer-legal,
.footer-mark { font-family: "Merx Narrow", "Arial Narrow", sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; }
.site-footer nav a:hover { color: var(--orange); }
.footer-mark { margin: 0; display: flex; justify-content: flex-end; align-items: center; gap: 12px; font-size: 25px; }
.footer-legal { grid-column: 1 / -1; display: flex; justify-content: center; flex-wrap: wrap; gap: 18px 48px; color: #263543; font-size: 14px; }

@media (max-width: 1240px) {
  .site-header {
    gap: 24px;
  }

  .brand img {
    width: 205px;
  }

  .desktop-navigation {
    gap: 16px;
  }

  .hero-copy {
    padding-left: 38px;
    padding-right: 32px;
  }

  .hero h1 {
    font-size: clamp(58px, 5vw, 72px);
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-step {
    grid-template-columns: 42px 1fr;
    padding-inline: 18px;
    gap: 12px;
  }

  .order-step > svg {
    width: 38px;
    height: 38px;
  }

  .product-layout {
    grid-template-columns: 56% 44%;
  }

  .product-panel {
    padding-inline: 40px;
  }

  .transport-section {
    grid-template-columns: 58% 42%;
  }

  .transport-copy {
    padding-inline: 26px 38px;
  }

  .cooperation-section {
    grid-template-columns: 48% 52%;
  }

  .cooperation-copy {
    padding-inline: 38px;
  }

  .audience-grid article {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .audience-grid svg {
    width: 43px;
    height: 43px;
  }

  .expert-content {
    width: 66%;
    padding-left: 45px;
  }

  .contact-copy,
  .contact-form-wrap {
    padding-inline: 35px;
  }

  .intent-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 74px;
    padding-inline: 26px;
  }

  .desktop-navigation {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    color: var(--navy-900);
    border: 1px solid var(--navy-900);
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle svg {
    width: 24px;
    height: 24px;
  }

  .mobile-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 18px 26px 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    color: var(--white);
    background: var(--navy-900);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .mobile-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-navigation a {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 18px;
  }

  .hero-main {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 610px;
    padding: 76px 8vw 58px;
  }

  .hero h1 {
    font-size: clamp(68px, 10vw, 92px);
  }

  .hero-description {
    max-width: 630px;
  }

  .hero-actions {
    width: min(100%, 620px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    height: clamp(380px, 58vw, 560px);
  }

  .hero-highlights {
    min-height: 390px;
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .highlight-card:last-child {
    border-bottom: 0;
  }

  .highlight-card span {
    max-width: 70%;
    font-size: 38px;
  }

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

  .delivery-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }

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

  .order-step:nth-child(2) {
    border-right: 0;
  }

  .order-step:nth-child(3) {
    padding-left: 0;
  }

  .product-layout,
  .transport-section,
  .cooperation-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    min-height: 560px;
  }

  .product-panel {
    padding: 64px 8vw 54px;
  }

  .product-panel h3 {
    max-width: 620px;
  }

  .transport-map-panel {
    min-height: 650px;
  }

  .transport-map-panel::after {
    display: none;
  }

  .europe-map {
    width: 100%;
  }

  .transport-copy {
    padding: 70px 8vw;
  }

  .transport-benefits {
    grid-column: auto;
  }

  .cooperation-copy {
    padding: 70px 8vw;
  }

  .expert-panel {
    min-height: 760px;
  }

  .expert-content {
    width: 62%;
    padding-left: 8vw;
  }

  .cooperation-stats {
    grid-column: auto;
  }

  .about-image {
    min-height: 560px;
  }

  .about-copy {
    padding: 70px 8vw;
  }

  .contact-copy,
  .contact-form-wrap {
    padding: 70px 8vw;
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

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

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-mark {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-legal {
    grid-row: 3;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 66px;
    padding-inline: 18px;
  }

  .brand img {
    width: 185px;
  }

  .mobile-navigation {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }

  .hero-copy {
    min-height: 590px;
    padding: 64px 22px 42px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(48px, 13vw, 56px);
  }

  .hero h1 span,
  .hero h1 strong {
    white-space: normal;
  }

  .hero-categories {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-categories i {
    display: none;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 360px;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .highlight-card {
    min-height: 124px;
  }

  .highlight-card span {
    left: 24px;
    font-size: 34px;
  }

  .highlight-card i {
    left: 24px;
  }

  .section-shell {
    width: calc(100% - 36px);
  }

  .section-heading {
    padding-top: 70px;
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }

  .section-heading h2 {
    font-size: clamp(55px, 15vw, 72px);
  }

  .button-outline-dark {
    width: 100%;
    min-width: 0;
  }

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

  .delivery-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .delivery-image {
    aspect-ratio: 1.75 / 1;
  }

  .delivery-title-row h3 {
    font-size: 42px;
  }

  .delivery-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .grade {
    order: -1;
  }

  .order-band {
    padding-top: 58px;
  }

  .order-band h2 {
    max-width: 280px;
    font-size: 51px;
  }

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

  .order-step,
  .order-step:first-child,
  .order-step:nth-child(3),
  .order-step:last-child {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  }

  .order-step:last-child {
    border-bottom: 0;
  }

  .order-step > svg {
    width: 46px;
    height: 46px;
  }

  .order-step h3 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .order-step p {
    font-size: 15px;
  }

  .product-section {
    padding-top: 62px;
  }

  .product-heading h2,
  .transport-copy h2,
  .cooperation-copy h2,
  .about-copy h2,
  .contact-section h2 {
    font-size: clamp(48px, 14vw, 62px);
  }

  .product-gallery {
    min-height: 0;
  }

  .gallery-1 {
    aspect-ratio: 1 / 1.05;
  }

  .gallery-3 {
    min-height: 690px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
  }

  .gallery-3 img:first-child {
    grid-row: auto;
  }

  .product-panel {
    padding: 52px 22px 42px;
  }

  .product-panel h3 {
    font-size: clamp(47px, 13vw, 58px);
  }

  .technical-x {
    right: -12%;
    font-size: 190px;
  }

  .parameter-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    font-size: 20px;
  }

  .parameter-list svg {
    width: 32px;
    height: 32px;
  }

  .transport-map-panel {
    min-height: 0;
    padding: 52px 14px 34px;
  }

  .map-heading {
    margin-left: 8px;
    font-size: 30px;
  }

  .map-shell {
    margin-top: 26px;
  }

  .map-marker text,
  .sicily-marker text {
    font-size: 24px;
  }

  .transport-copy,
  .cooperation-copy,
  .about-copy,
  .contact-copy,
  .contact-form-wrap {
    padding: 58px 22px;
  }

  .transport-options article {
    min-height: 88px;
    grid-template-columns: 45px 72px 1fr;
    gap: 10px;
    padding-inline: 12px;
  }

  .transport-options svg {
    width: 36px;
    height: 36px;
  }

  .transport-options strong {
    font-size: 27px;
  }

  .transport-options span {
    padding-left: 12px;
    font-size: 15px;
  }

  .transport-benefits {
    padding: 20px 22px;
    grid-template-columns: 1fr;
  }

  .transport-benefits span,
  .transport-benefits span:first-child,
  .transport-benefits span:last-child {
    min-height: 105px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .transport-benefits span:last-child {
    border-bottom: 0;
  }

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

  .audience-grid article {
    grid-template-columns: 58px 1fr;
  }

  .audience-grid svg {
    width: 50px;
    height: 50px;
  }

  .cooperation-actions,
  .intent-actions {
    grid-template-columns: 1fr;
  }

  .expert-panel {
    min-height: 790px;
  }

  .expert-panel > img {
    object-position: 68% center;
  }

  .expert-panel::after {
    background: linear-gradient(180deg, rgba(5, 24, 40, 0.98) 0%, rgba(5, 24, 40, 0.9) 54%, rgba(5, 24, 40, 0.34) 100%);
  }

  .expert-content {
    width: 100%;
    padding: 56px 22px;
  }

  .expert-content h2 {
    font-size: clamp(45px, 12vw, 56px);
  }

  .cooperation-stats {
    padding: 20px 22px;
    grid-template-columns: 1fr;
  }

  .cooperation-stats > span,
  .cooperation-stats > span:first-child,
  .cooperation-stats > span:last-child {
    min-height: 140px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #aeb2b5;
  }

  .cooperation-stats > span:last-child {
    border-bottom: 0;
  }

  .about-image {
    min-height: 390px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values article,
  .about-values article:nth-child(even),
  .about-values article:nth-child(n+3) {
    border-right: 0;
    border-bottom: 1px solid #adb1b4;
  }

  .about-values article:last-child {
    border-bottom: 0;
  }

  .contact-methods {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding-inline: 22px;
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: min(100%, 290px);
  }

  .site-footer nav,
  .footer-mark,
  .footer-legal {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
