@import url("icons/css/solid.min.css");

:root {
  --bg: #061415;
  --bg-2: #081b1d;
  --panel: rgba(15, 34, 36, 0.76);
  --panel-strong: rgba(17, 43, 45, 0.94);
  --text: #eefcf5;
  --muted: #a7c3bb;
  --subtle: #6f8d85;
  --line: rgba(144, 255, 199, 0.18);
  --line-strong: rgba(144, 255, 199, 0.36);
  --accent: #85f4b4;
  --accent-2: #9ad7ff;
  --warning: #f4c96b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(133, 244, 180, 0.16), transparent 34rem),
    radial-gradient(circle at 84% 12%, rgba(154, 215, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #061415 0%, #07191b 52%, #061415 100%);
  letter-spacing: 0;
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 30%, transparent, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

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

button {
  font: inherit;
}

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

.topbar {
  position: relative;
  z-index: 42;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 13, 14, 0.9);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  transition: min-height 0.25s ease;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.email-lock,
.phone-lock,
.person-lock {
  cursor: default;
  user-select: none;
}

.topbar .icon {
  width: 24px;
  height: 24px;
  font-size: 0.72rem;
  border-radius: 6px;
}

.email-image,
.phone-image,
.person-image {
  min-width: 112px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 610;
}

.email-image img,
.phone-image img,
.person-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.inline-email,
.inline-phone,
.inline-person {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 41;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 20, 21, 0.82);
  transition: top 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header:has(.site-nav.is-open) {
  z-index: 72;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 0.25s ease, margin 0.25s ease, padding 0.25s ease, border-color 0.25s ease, border-radius 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 64px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-inline: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 16, 17, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: filter 0.22s ease;
}

.brand:hover {
  filter: drop-shadow(0 0 12px rgba(133, 244, 180, 0.08));
}

.brand:hover .brand-symbol {
  border-color: rgba(133, 244, 180, 0.62);
  background:
    linear-gradient(145deg, rgba(133, 244, 180, 0.24), rgba(154, 215, 255, 0.08)),
    rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 34px rgba(0, 0, 0, 0.22), 0 0 0 3px rgba(133, 244, 180, 0.055);
}

.brand:hover .brand-mark {
  color: var(--text);
}

.brand-symbol {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: transparent;
  background:
    linear-gradient(145deg, rgba(133, 244, 180, 0.16), rgba(154, 215, 255, 0.06)),
    rgba(255, 255, 255, 0.045);
  background-clip: padding-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 14px 32px rgba(0, 0, 0, 0.22);
  font-weight: 950;
  font-family: "Segoe UI Black", "Arial Black", Impact, var(--font);
  font-size: 0;
  line-height: 1;
  text-shadow: 0 0 18px rgba(133, 244, 180, 0.3);
}

.brand-symbol::before {
  content: "V";
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  background: linear-gradient(135deg, #effff7 0%, var(--accent) 42%, #58dff0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.72rem;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.brand-symbol::after {
  content: none;
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-mark {
  font-weight: 900;
  font-size: 1.58rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-line {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #d8fff0;
  font-size: 0.9rem;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(133, 244, 180, 0.1);
  box-shadow: inset 0 0 0 1px rgba(133, 244, 180, 0.16);
}

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

.language-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-menu__button {
  height: 40px;
  min-width: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 11px 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-menu__button:hover,
.language-menu.is-open .language-menu__button {
  border-color: var(--line-strong);
  background: rgba(133, 244, 180, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.language-code {
  min-width: 24px;
  font-size: 0.82rem;
  font-weight: 760;
  text-align: left;
}

.language-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.75;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.language-menu.is-open .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu__list {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 80;
  min-width: 158px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: rgba(6, 20, 21, 0.98);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-menu.is-open .language-menu__list {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.language-menu__list button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-menu__list button:hover,
.language-menu__list button.is-active {
  color: var(--text);
  background: rgba(133, 244, 180, 0.1);
}

.flag {
  width: 19px;
  height: 13px;
  flex: 0 0 19px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.flag-de {
  background: linear-gradient(#111 0 33.3%, #dd0000 33.3% 66.6%, #ffce00 66.6%);
}

.flag-fr {
  background: linear-gradient(90deg, #1d4ed8 0 33.3%, #fff 33.3% 66.6%, #ef4444 66.6%);
}

.flag-es {
  background: linear-gradient(#c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75%);
}

.flag-en {
  position: relative;
  background: #143a8f;
}

.flag-en::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(33deg, transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(-33deg, transparent 43%, #fff 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 40%, #fff 40% 60%, transparent 60%),
    linear-gradient(0deg, transparent 36%, #fff 36% 64%, transparent 64%);
}

.flag-en::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 45%, #dc2626 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 42%, #dc2626 42% 58%, transparent 58%);
}

.mobile-lang {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 114px));
  display: grid;
  align-items: center;
  padding: clamp(78px, 9vw, 132px) 0 clamp(58px, 7vw, 92px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 20, 21, 0.98) 0%, rgba(6, 20, 21, 0.86) 42%, rgba(6, 20, 21, 0.52) 100%),
    linear-gradient(0deg, #061415 0%, transparent 26%, transparent 70%, rgba(6, 20, 21, 0.52) 100%),
    url("venthar-hero.png") center / cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

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

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  flex: 0 0 36px;
  background: currentColor;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.2vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 660px;
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(133, 244, 180, 0.34);
  border-radius: 8px;
  padding: 13px 18px;
  color: #03100f;
  background: linear-gradient(135deg, var(--accent), #d4ffe6);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 740;
  letter-spacing: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(133, 244, 180, 0.16);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.info-panel {
  display: grid;
  gap: 14px;
}

.info-panel .metric-card {
  min-height: 112px;
}

.metric-card,
.service-card,
.focus-card,
.method-step,
.legal-card,
.language-capabilities article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.metric-card::before,
.service-card::before,
.focus-card::before,
.method-step::before,
.legal-card::before,
.language-capabilities article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x, 20%) var(--y, 0%), rgba(133, 244, 180, 0.18), transparent 28rem);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.metric-card:hover::before,
.service-card:hover::before,
.focus-card:hover::before,
.method-step:hover::before,
.legal-card:hover::before,
.language-capabilities article:hover::before {
  opacity: 1;
}

.metric-card {
  padding: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.metric-card:hover,
.service-card:hover,
.focus-card:hover,
.method-step:hover,
.language-capabilities article:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    var(--panel-strong);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.08rem;
}

.page-section {
  padding: clamp(78px, 10vw, 136px) 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

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

.service-card {
  min-height: 312px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-top,
.focus-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.card-number {
  color: var(--accent);
  font-weight: 900;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(133, 244, 180, 0.08);
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  transform: none;
}

.icon::before {
  display: block;
  font-size: 1rem;
  line-height: 1;
  transform: none;
}

.icon.mail::before { content: "\f0e0"; }
.icon.phone::before { content: "\f095"; }
.icon.clock::before { content: "\f017"; }
.icon.map::before { content: "\f3c5"; }
.icon.home::before { content: "\f015"; }
.icon.site::before { content: "\f6e3"; }
.icon.project::before { content: "\f542"; }
.icon.safety::before { content: "\f3ed"; }
.icon.server::before { content: "\f233"; }
.icon.pharma::before { content: "\f492"; }
.icon.industry::before { content: "\f275"; }
.icon.language::before { content: "\f1ab"; }
.icon.globe::before { content: "\f0ac"; }
.icon.handshake::before { content: "\f2b5"; }

.focus-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.focus-grid {
  display: grid;
  gap: 16px;
}

.focus-card {
  min-height: 136px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.focus-card h3 {
  margin: 0;
  line-height: 1.18;
}

.international-section {
  position: relative;
  overflow: hidden;
}

.international-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(133, 244, 180, 0.09), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 28px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

.international-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.international-grid .section-head,
.map-grid .section-head {
  max-width: 560px;
  min-width: 0;
}

.international-section h2,
.map-band h2 {
  max-width: 560px;
  font-size: clamp(2.45rem, 4.15vw, 4.35rem);
  overflow-wrap: break-word;
}

.language-capabilities {
  display: grid;
  gap: 14px;
  width: min(100%, 600px);
  justify-self: end;
}

.language-capabilities article {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    var(--panel);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.language-capabilities article > span {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(133, 244, 180, 0.08);
  font-weight: 900;
}

.language-capabilities article > span .icon {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
}

.language-capabilities strong {
  margin-top: 2px;
  color: var(--text);
  font-size: 1.18rem;
}

.language-capabilities p {
  grid-column: 2;
  margin: 0;
}

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

.method-step {
  min-height: 260px;
  padding: 26px 92px 26px 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.method-step::after {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(133, 244, 180, 0.34);
  font-size: 3.35rem;
  line-height: 1;
  font-weight: 900;
  z-index: 0;
  pointer-events: none;
}

.method-step h3,
.method-step p {
  position: relative;
  z-index: 1;
}

.contact-band {
  padding: clamp(78px, 10vw, 136px) 0;
  background:
    linear-gradient(135deg, rgba(133, 244, 180, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.map-band {
  padding: clamp(78px, 10vw, 136px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(460px, 0.98fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: stretch;
}

.map-frame {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
  overscroll-behavior: contain;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-item:hover {
  transform: translateX(4px);
  border-color: var(--line-strong);
  background: rgba(133, 244, 180, 0.08);
}

.contact-item span,
.contact-item a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-weight: 750;
}

.contact-item .email-image {
  color: var(--text);
  font-weight: 680;
}

.contact-item .phone-image {
  color: var(--text);
  font-weight: 680;
}

.site-footer {
  flex: 0 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
  line-height: 1.3;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.footer-brand {
  color: var(--text);
  font-weight: 760;
  transition: color 0.18s ease;
}

.footer-brand:hover {
  color: var(--accent);
}

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

.footer-links a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 12px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(560px, calc(100% - 40px));
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 22px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(21, 50, 52, 0.96), rgba(5, 17, 18, 0.98)),
    rgba(6, 20, 21, 0.96);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.cookie-banner h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.25;
}

.cookie-banner p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

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

.cookie-actions button,
.cookie-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(133, 244, 180, 0.34);
  border-radius: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--accent), rgba(133, 244, 180, 0.78));
  color: #061415;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.cookie-actions button:hover,
.cookie-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(133, 244, 180, 0.62);
}

.cookie-actions .secondary {
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.legal-main {
  padding: clamp(38px, 5vw, 64px) 0 clamp(64px, 8vw, 104px);
}

.legal-shell {
  max-width: 900px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.legal-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.legal-nav a:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.legal-nav .icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  font-size: 0.98rem;
}

.legal-stack {
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: 26px;
}

.legal-card h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.legal-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view,
.ready .hero .reveal {
  opacity: 1;
  transform: none;
}

.booting [data-i18n],
.booting .skeletonable {
  color: transparent !important;
  border-radius: 6px;
  background: linear-gradient(100deg, rgba(133, 244, 180, 0.08), rgba(255, 255, 255, 0.16), rgba(133, 244, 180, 0.08));
  background-size: 220% 100%;
  animation: skeleton 1.1s infinite;
}

@keyframes skeleton {
  from { background-position: 220% 0; }
  to { background-position: -220% 0; }
}

@media (max-width: 980px) {
  .topbar-inner {
    justify-content: center;
  }

  .topbar .address {
    display: none;
  }

  .site-nav + .header-actions .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 116px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    padding: 14px;
    background: rgba(6, 20, 21, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero-grid,
  .focus-layout,
  .international-grid,
  .map-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-panel {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }
}

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

  .topbar-inner {
    min-height: 50px;
    font-size: 0.76rem;
  }

  .topbar .icon {
    width: 22px;
    height: 22px;
  }

  .topbar .email-image,
  .topbar .phone-image {
    min-width: 0;
    font-size: 0.7rem;
    font-weight: 680;
  }

  .site-header {
    top: 0;
  }

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

  .site-header.is-scrolled .header-inner {
    border-radius: 8px;
  }

  .topbar-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
  }

  .topbar a,
  .topbar span {
    min-width: 0;
    gap: 5px;
  }

  .topbar a span,
  .topbar span span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .topbar .hours {
    display: none;
  }

  .header-inner {
    min-height: 70px;
    gap: 10px;
    position: relative;
    flex-wrap: nowrap;
  }

  .brand-line,
  .language-wrap > span {
    display: none;
  }

  .brand-mark {
    font-size: 1.35rem;
  }

  .brand {
    padding-right: 0;
  }

  .header-actions .language-wrap {
    display: none;
  }

  .site-nav + .header-actions .nav-toggle {
    display: block !important;
  }

  .mobile-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 6px 0 0;
    color: var(--muted);
  }

  .mobile-lang > span {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 70;
    display: none;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 12px;
    scrollbar-width: none;
    border: 1px solid var(--line);
    background:
      linear-gradient(145deg, rgba(16, 38, 40, 0.98), rgba(4, 15, 16, 0.98)),
      rgba(6, 20, 21, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    justify-content: center;
    min-height: 44px;
    font-size: 0.94rem;
  }

  .mobile-lang {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .mobile-lang .language-menu__button {
    min-width: 104px;
    height: 38px;
    justify-content: center;
    gap: 9px;
  }

  .mobile-lang .language-menu__list {
    right: 50%;
    top: calc(100% + 8px);
    transform: translate(50%, -6px) scale(0.98);
    transform-origin: top center;
  }

  .mobile-lang .language-menu.is-open .language-menu__list {
    transform: translateX(50%);
  }

  .hero {
    min-height: auto;
    padding: 68px 0 48px;
  }

  .hero-grid,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1 {
    width: min(330px, 100%);
    max-width: min(330px, 100%);
    font-size: clamp(2rem, 7.2vw, 2.35rem);
    line-height: 1.1;
    text-wrap: normal;
  }

  .lead {
    width: min(330px, 100%);
    max-width: min(330px, 100%);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .international-section h2,
  .map-band h2 {
    font-size: clamp(2rem, 8.8vw, 2.9rem);
  }

  .btn {
    width: 100%;
  }

  .service-card,
  .method-step {
    min-height: auto;
  }

  .method-step {
    padding-right: 78px;
  }

  .focus-card {
    align-items: flex-start;
  }

  .language-capabilities article {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .language-capabilities article > span {
    width: 46px;
    height: 46px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    padding: 16px;
  }

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

  .cookie-actions button,
  .cookie-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 340px) {
  .topbar-links {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px 0;
  }

  .topbar-links > span {
    justify-content: center;
  }
  .hero {
    padding-top: 54px;
  }
}
