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

:root {
  --ink: #e8decd;
  --ink-2: #f5eee3;
  --panel: rgba(248, 242, 232, 0.88);
  --panel-2: rgba(239, 230, 216, 0.94);
  --white: #172019;
  --muted: #657067;
  --line: rgba(27, 48, 36, 0.16);
  --red: #c9172e;
  --red-bright: #e1263e;
  --green: #006d43;
  --green-bright: #008b56;
  --button-text: #fffaf3;
  --cream: #f8f1e6;
  --tan: #d6c4a8;
  --amber: #eac55f;
  --radius: 20px;
  --mono: "Space Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 140, 82, 0.16), transparent 27rem),
    radial-gradient(circle at 90% 38%, rgba(214, 31, 53, 0.12), transparent 28rem),
    var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(27,48,36,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,48,36,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
  background: linear-gradient(transparent 50%, rgba(0,0,0,.09) 50%);
  background-size: 100% 4px;
  opacity: 0.08;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transition: top .2s;
}
.skip-link:focus { top: 15px; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(236, 226, 210, 0.86);
  backdrop-filter: blur(18px);
}

.brand { position: relative; display: block; flex: 0 0 auto; width: 250px; height: 60px; overflow: hidden; line-height: 0; }
.brand-logo { position: absolute; top: 50%; left: 0; display: block; width: 100%; height: auto; transform: translateY(-50%); }
.site-footer .brand { width: 275px; max-width: 100%; height: 66px; }

.main-nav { display: flex; align-items: center; gap: clamp(12px, 1.55vw, 24px); }
.main-nav > a:not(.nav-cta), .nav-trigger {
  position: relative;
  border: 0;
  padding: 12px 0;
  color: #34483b;
  background: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.main-nav > a:not(.nav-cta)::after,
.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-bright);
  transform: scaleX(0);
  transition: transform .25s;
}
.main-nav > a:hover::after, .nav-trigger:hover::after, .main-nav > a.active::after { transform: scaleX(1); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--red-bright);
  border-radius: 3px 14px 3px 14px;
  color: var(--button-text);
  background: linear-gradient(135deg, var(--red), #9f1024);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(214,31,53,.12);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover, .nav-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(214,31,53,.25); }
.button.secondary { border-color: rgba(27,48,36,.25); color: var(--white); background: rgba(255,255,255,.2); }
.button.secondary:hover { border-color: var(--green-bright); box-shadow: 0 10px 30px rgba(20,226,138,.12); }

.nav-group { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(205px, 1fr));
  gap: 5px;
  width: 460px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 242, 232, .98);
  box-shadow: 0 30px 70px rgba(76,56,34,.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .2s, transform .2s;
}
.nav-dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown a { padding: 12px; border-radius: 8px; color: var(--muted); font-size: 12px; }
.nav-dropdown a:hover { color: var(--white); background: rgba(0,140,82,.16); }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(27,48,36,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.24);
}
.language-switcher a {
  display: grid;
  min-width: 30px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  color: #526257;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.language-switcher a:hover { color: var(--white); background: rgba(0,140,82,.12); }
.language-switcher a.active,
.language-switcher a[aria-current="page"] { color: #fff; background: var(--green); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); color: var(--white); background: transparent; border-radius: 10px; }

main { min-height: 80vh; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: clamp(44px, 4vw, 64px) 0; }
.section-tight { padding: 42px 0; }
.section + .section, .section-tight + .section, .section + .section-tight { padding-top: 28px; }
.section-label, .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-bright);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-label::before, .eyebrow::before { width: 26px; height: 2px; content: ""; background: currentColor; }
.section-title { max-width: 840px; margin: 16px 0 22px; font-size: clamp(38px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; }
.section-title .outline, .hero-title .outline { color: transparent; -webkit-text-stroke: 1px rgba(23,32,25,.52); }
.section-copy { max-width: 680px; color: var(--muted); font-size: clamp(16px, 2vw, 20px); }

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  padding: 110px clamp(20px, 5vw, 80px) 55px;
  overflow: hidden;
}
.hero-grid {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  width: min(1420px, 100%);
  margin: auto;
}
.hero-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 7px rgba(20,226,138,.1), 0 0 20px var(--green-bright); animation: pulse 1.8s infinite; }
.hero-title { max-width: 900px; margin: 0; font-size: clamp(58px, 8.8vw, 142px); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.hero-title .red { color: var(--red-bright); }
.hero-lead { max-width: 660px; margin: 26px 0; color: #4f5d54; font-size: clamp(16px, 1.8vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-photo-frame {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(27,48,36,.16);
  border-radius: 32px 5px 32px 5px;
  background: #d9c9b2;
  box-shadow: 0 40px 100px rgba(76,56,34,.18);
  transform: perspective(900px) rotateY(-4deg);
}
.hero-photo-frame::after, .service-photo-frame::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg,rgba(8,22,15,.02) 45%,rgba(8,22,15,.7) 100%),linear-gradient(135deg,rgba(0,109,67,.14),transparent 48%,rgba(201,23,46,.1)); }
.hero-photo, .service-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.hero-photo-frame figcaption, .service-photo-frame figcaption { position: absolute; right: 22px; bottom: 18px; left: 22px; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: #fffaf3; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.42); }
.hero-photo-frame figcaption span:first-child, .service-photo-frame figcaption span:first-child { padding-left: 12px; border-left: 3px solid var(--green-bright); }

.route-ticker { position: relative; z-index: 3; display: flex; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #d9c9b2; }
.ticker-track { display: flex; min-width: max-content; animation: marquee 28s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 20px; padding: 13px 30px; color: #34483b; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.ticker-item::after { width: 6px; height: 6px; border-radius: 50%; content: ""; background: var(--red-bright); }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: rgba(255,255,255,.2); }
.metric { position: relative; min-height: 160px; padding: 24px; border-right: 1px solid var(--line); overflow: hidden; }
.metric:last-child { border-right: 0; }
.metric::after { position: absolute; right: -25px; bottom: -50px; color: rgba(27,48,36,.035); font-family: var(--mono); font-size: 120px; font-weight: bold; content: attr(data-index); }
.metric strong { display: block; margin: 18px 0 5px; font-family: var(--mono); font-size: clamp(34px,4vw,56px); line-height: 1; }
.metric span { color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.metric-line { width: 40px; height: 3px; background: var(--green-bright); }
.metric:nth-child(2n) .metric-line { background: var(--red-bright); }

.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: 36px; }
.service-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 290px; padding: 24px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(140deg, rgba(248,242,232,.88), rgba(220,205,182,.64)); transition: transform .35s, border-color .35s, background .35s; }
.service-card:nth-child(1), .service-card:nth-child(6) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(7) { grid-column: span 5; }
.service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 4; }
.service-card:hover { z-index: 2; border-color: rgba(0,109,67,.5); background: linear-gradient(140deg, rgba(0,109,67,.12), rgba(248,242,232,.94)); transform: translateY(-8px); }
.card-code { color: var(--green-bright); font-family: var(--mono); font-size: 9px; letter-spacing: .15em; }
.service-card h3 { max-width: 340px; margin: auto 0 14px; font-size: clamp(25px,3vw,40px); line-height: 1.05; letter-spacing: -.04em; }
.service-card p { max-width: 480px; margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.card-link { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; font-family: var(--mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.card-link span:last-child { color: var(--red-bright); font-size: 18px; transition: transform .25s; }
.service-card:hover .card-link span:last-child { transform: translateX(6px); }
.card-photo { position: absolute; top: 0; right: 0; width: 54%; height: 100%; object-fit: cover; opacity: .42; filter: saturate(.65) contrast(1.02); mask-image: linear-gradient(to right,transparent 0,rgba(0,0,0,.8) 38%,black 100%); transition: opacity .35s,transform .45s; }
.service-card > :not(.card-photo) { position: relative; z-index: 1; }
.service-card:hover .card-photo { opacity: .58; transform: scale(1.025); }

.process-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: 54px; align-items: start; }
.process-intro { position: sticky; top: 120px; }
.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 58px 1fr; gap: 20px; min-height: 142px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.process-number { color: var(--red-bright); font-family: var(--mono); font-size: 13px; }
.process-step h3 { margin: 0 0 10px; font-size: 26px; }
.process-step p { max-width: 600px; margin: 0; color: var(--muted); font-size: 14px; }

.corridor-map { position: relative; min-height: 470px; margin-top: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 4px 40px 4px 40px; background: radial-gradient(circle at 54% 50%, rgba(0,109,67,.14), transparent 20%), linear-gradient(130deg,#eadfce,#d5c3a8); }
.corridor-map::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(27,48,36,.055) 1px, transparent 1px), linear-gradient(90deg,rgba(27,48,36,.055) 1px,transparent 1px); background-size: 50px 50px; }
.corridor { position: absolute; height: 2px; background: repeating-linear-gradient(90deg,var(--green-bright) 0 10px,transparent 10px 19px); transform-origin: left; }
.corridor::after { position: absolute; top: -4px; left: 0; width: 9px; height: 9px; content: ""; border-radius: 50%; background: white; box-shadow: 0 0 18px white; animation: travel 7s linear infinite; }
.corridor.a { top: 52%; left: 23%; width: 53%; transform: rotate(-12deg); }
.corridor.b { top: 35%; left: 38%; width: 39%; background-image: repeating-linear-gradient(90deg,var(--red-bright) 0 10px,transparent 10px 19px); transform: rotate(31deg); }
.corridor.c { top: 66%; left: 19%; width: 48%; transform: rotate(9deg); opacity: .55; }
.city { position: absolute; z-index: 2; padding: 7px 10px; border: 1px solid var(--line); color: var(--white); background: #f8f1e6; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.city::before { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; content: ""; background: var(--green-bright); box-shadow: 0 0 10px currentColor; }
.city.minsk { top: 46%; left: 47%; border-color: rgba(27,48,36,.5); font-weight: 700; }
.city.warsaw { top: 58%; left: 22%; }
.city.berlin { top: 39%; left: 12%; }
.city.riga { top: 20%; left: 44%; }
.city.vilnius { top: 31%; left: 34%; }
.city.almaty { right: 8%; bottom: 16%; }
.city.istanbul { right: 23%; bottom: 8%; }
.map-caption { position: absolute; right: 24px; bottom: 22px; left: 24px; display: flex; justify-content: space-between; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }

.cta-panel { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 34px; align-items: end; padding: clamp(30px,4vw,56px); overflow: hidden; border: 1px solid rgba(27,48,36,.16); border-radius: 5px 42px 5px 42px; background: linear-gradient(135deg, rgba(0,109,67,.16), rgba(245,238,227,.94) 48%, rgba(201,23,46,.12)); }
.cta-panel::after { position: absolute; top: -60%; right: 15%; width: 1px; height: 220%; content: ""; background: rgba(27,48,36,.13); transform: rotate(28deg); box-shadow: 60px 0 rgba(27,48,36,.035), 120px 0 rgba(27,48,36,.035); }
.cta-panel h2 { max-width: 750px; margin: 12px 0 0; font-size: clamp(40px,6vw,76px); line-height: .98; letter-spacing: -.055em; }
.cta-panel .button { position: relative; z-index: 2; justify-self: end; }

.service-hero { position: relative; padding: 125px 0 52px; overflow: hidden; }
.service-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.service-hero h1 { max-width: 900px; margin: 22px 0 26px; font-size: clamp(56px,8vw,118px); line-height: .86; letter-spacing: -.07em; text-transform: uppercase; }
.service-hero h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(23,32,25,.52); }
.service-hero .lead { max-width: 670px; color: #4f5d54; font-size: clamp(17px,2vw,21px); }
.hero-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 30px; background: var(--line); border: 1px solid var(--line); }
.hero-spec { padding: 18px; background: var(--ink-2); }
.hero-spec strong { display: block; margin-bottom: 5px; font-family: var(--mono); font-size: 17px; }
.hero-spec span { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.service-photo-frame { position: relative; min-height: 450px; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 32px 6px 32px 6px; background: #d9c9b2; box-shadow: 0 28px 70px rgba(76,56,34,.13); }
.service-photo[src*="contact-team"], .service-photo[src*="cargo-insurance"] { object-position: center 62%; }
.service-photo[src*="customs-clearance"] { object-position: center 54%; }

.split-content { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px,8vw,120px); }
.sticky-heading { position: sticky; top: 120px; align-self: start; }
.sticky-heading h2 { margin: 15px 0; font-size: clamp(38px,5vw,66px); line-height: 1; letter-spacing: -.05em; }
.prose { color: #4f5d54; font-size: 16px; }
.prose h2, .prose h3 { color: var(--white); line-height: 1.15; letter-spacing: -.03em; }
.prose h2 { margin: 0 0 22px; font-size: 36px; }
.prose h3 { margin: 32px 0 12px; font-size: 25px; }
.prose p { margin: 0 0 20px; }
.prose ul { display: grid; gap: 12px; padding: 0; list-style: none; }
.prose li { position: relative; padding: 13px 15px 13px 40px; border: 1px solid var(--line); background: rgba(255,255,255,.25); }
.prose li::before { position: absolute; top: 21px; left: 17px; width: 10px; height: 2px; content: ""; background: var(--green-bright); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.feature { min-height: 190px; padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.25); }
.feature .num { color: var(--red-bright); font-family: var(--mono); font-size: 10px; }
.feature h3 { margin: 34px 0 10px; font-size: 22px; }
.feature p { margin: 0; color: var(--muted); font-size: 13px; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 25px 0; border: 0; color: var(--white); background: none; text-align: left; font-weight: 700; cursor: pointer; }
.faq-question span { color: var(--green-bright); font-family: var(--mono); font-size: 18px; transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .35s ease; }
.faq-answer p { max-width: 800px; margin: 0; padding: 0 0 24px; }
.faq-item.open .faq-answer { max-height: 250px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.contact-card { padding: 28px; border: 1px solid var(--line); background: var(--panel); }
.contact-line { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line small { display: block; margin-bottom: 4px; color: var(--green-bright); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.contact-line a, .contact-line span { font-size: 16px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 15px; color: var(--white); background: #f8f1e6; outline: 0; }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--green-bright); box-shadow: 0 0 0 2px rgba(20,226,138,.08); }
.form-note { color: var(--muted); font-size: 11px; }

.site-footer { padding: 48px 0 24px; border-top: 1px solid var(--line); background: #d9c9b2; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3,.7fr); gap: 50px; }
.footer-brand p { max-width: 360px; margin-top: 24px; color: var(--muted); font-size: 13px; }
.footer-col h3 { margin: 0 0 20px; color: var(--white); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: 10px 0; color: var(--muted); font-size: 12px; }
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: #59665d; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes pulse { 50% { opacity:.45; transform:scale(.75); } }
@keyframes travel { to { left: 100%; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 76px; right: 12px; left: 12px; display: none; flex-direction: column; align-items: stretch; gap: 5px; max-height: calc(100vh - 90px); padding: 18px; overflow: auto; border: 1px solid var(--line); border-radius: 14px; background: #f8f1e6; }
  .main-nav.open { display: flex; }
  .nav-group { display: flex; flex-direction: column; }
  .nav-trigger { text-align: left; }
  .nav-dropdown { position: static; display: grid; grid-template-columns: 1fr; width: auto; padding: 4px 0 4px 12px; border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .nav-dropdown::before { display: none; }
  .language-switcher { align-self: flex-start; margin-top: 8px; }
  .hero-grid, .service-hero-grid, .split-content, .contact-grid { grid-template-columns: 1fr; }
  .service-hero-grid { gap: 36px; }
  .service-hero-grid > * { min-width: 0; }
  .hero { min-height: auto; }
  .hero-photo-frame { min-height: 470px; transform: none; }
  .process-wrap { grid-template-columns: 1fr; }
  .process-intro, .sticky-heading { position: static; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid .service-card { grid-column: span 6; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; }
  .brand { width: 210px; height: 50px; }
  .hero { padding: 110px 20px 40px; }
  .hero-title { font-size: clamp(50px,18vw,82px); }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-photo-frame { min-height: 360px; }
  .metrics, .feature-grid, .quote-form { grid-template-columns: 1fr; }
  .metric { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .metrics .metric:last-child { border-bottom: 0; }
  .services-grid { display: block; }
  .service-card { min-height: 280px; margin-bottom: 12px; }
  .process-step { grid-template-columns: 40px 1fr; gap: 10px; }
  .corridor-map { min-height: 450px; }
  .city { font-size: 7px; }
  .city.berlin { left: 4%; }
  .city.almaty { right: 2%; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .button { justify-self: stretch; }
  .service-hero { padding: 105px 0 36px; }
  .service-hero h1 { max-width: 100%; font-size: clamp(42px,13.2vw,64px); }
  .hero-specs { grid-template-columns: 1fr; }
  .service-photo-frame { width: 100%; max-width: 100%; min-height: 350px; }
  .hero-photo-frame figcaption, .service-photo-frame figcaption { right: 16px; bottom: 14px; left: 16px; align-items: start; flex-direction: column; gap: 7px; font-size: 7px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .form-field.full { grid-column: 1; }
}

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