:root {
  --navy-950: #071a2f;
  --navy-900: #0a2440;
  --navy-760: #123a5f;
  --ink: #142235;
  --muted: #66768a;
  --line: #d8e1eb;
  --silver: #eef3f7;
  --silver-strong: #c6d2df;
  --white: #ffffff;
  --teal: #00a7b7;
  --amber: #f0a92e;
  --red: #d34d3f;
  --shadow: 0 22px 60px rgba(7, 26, 47, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 225, 235, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  min-width: 190px;
}

.brand span:last-child {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 167, 183, 0.95), rgba(240, 169, 46, 0.9)),
    var(--navy-900);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 10px 24px rgba(0, 0, 0, 0.15);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 12px 9px auto;
  height: 4px;
  background: var(--white);
  border-radius: 999px;
}

.brand-mark::after {
  width: 16px;
  top: 22px;
  left: 15px;
  opacity: 0.82;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav > a,
.nav-group > button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 12px;
  cursor: pointer;
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"],
.nav-group > button:hover {
  background: var(--silver);
}

.nav-cta {
  background: var(--navy-950) !important;
  color: var(--white) !important;
  margin-left: 8px;
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 250px;
  display: grid;
  gap: 4px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-group:hover .nav-menu,
.nav-group.is-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: var(--silver);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  place-items: center;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-950);
  margin: 3px 0;
}

.hero {
  min-height: min(790px, calc(100svh - 32px));
  position: relative;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(7, 26, 47, 0.94) 0%, rgba(7, 26, 47, 0.72) 45%, rgba(7, 26, 47, 0.25) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 56px 0 92px;
}

.hero-copy {
  color: var(--white);
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  max-width: 840px;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.final-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--navy-950);
  box-shadow: 0 16px 40px rgba(0, 167, 183, 0.28);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-call {
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(7, 26, 47, 0.24);
  backdrop-filter: blur(12px);
}

.btn-call__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--navy-950);
  font-size: 1.05rem;
}

.btn-call__text {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1.05;
}

.btn-call__text strong {
  color: var(--white);
  font-size: 0.95rem;
}

.btn-call__text small {
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 950;
}

.btn-secondary {
  background: var(--navy-950);
  color: var(--white);
}

.btn-wide {
  width: 100%;
}

.hero-proof {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-proof span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 800;
}

.valuation-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.valuation-panel h2 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

form {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 96px;
  padding-block: 11px;
  line-height: 1.45;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 167, 183, 0.28);
  outline-offset: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 12px;
}

.switch-row {
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--muted);
}

.switch-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}

.form-status {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-status.is-success {
  color: #0a6e5b;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-list {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.trust-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 850;
}

.trust-list i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
  flex: 0 0 auto;
}

.trust-list i::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  left: 5px;
  top: 5px;
}

section {
  scroll-margin-top: 88px;
}

.overview-section,
.content-section,
.practical-section,
.expert-section,
.faq-section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.overview-grid,
.process-grid,
.countries-grid,
.local-grid,
.fit-grid,
.faq-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.overview-section h2,
.image-gallery h2,
.process-section h2,
.fit-section h2,
.countries-section h2,
.content-section h2,
.practical-section h2,
.expert-section h2,
.local-section h2,
.silo-section h2,
.faq-section h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.overview-section p,
.image-gallery p,
.process-section p,
.fit-section p,
.countries-section p,
.practical-section p,
.expert-section p,
.local-section p,
.faq-section p,
.final-cta p {
  color: var(--muted);
  font-size: 1.03rem;
}

.metric-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--silver));
}

.metric strong {
  display: block;
  color: var(--navy-950);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.media-stage {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy-950);
}

.media-stage img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.route-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 26, 47, 0.76);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.route-card span {
  color: var(--amber);
  font-weight: 950;
}

.route-card strong {
  font-size: 1rem;
}

.route-card small {
  color: rgba(255, 255, 255, 0.72);
}

.image-gallery {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.gallery-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 14px;
}

.gallery-card {
  position: relative;
  min-height: 0;
  margin: 0;
  grid-column: span 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-950);
  box-shadow: 0 14px 38px rgba(7, 26, 47, 0.12);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gallery-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  z-index: 0;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(2) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 13px;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 47, 0.82));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.fit-section,
.process-section,
.countries-section,
.local-section,
.silo-section,
.final-cta {
  padding: clamp(58px, 8vw, 104px) 0;
}

.process-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.process-grid {
  align-items: start;
}

.signal-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.signal-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: var(--radius);
  background: var(--silver);
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.process-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--silver));
  box-shadow: 0 12px 34px rgba(7, 26, 47, 0.06);
}

.process-step__number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy-950);
  color: var(--white);
  font-weight: 950;
}

.process-step strong {
  color: var(--navy-950);
  font-size: 1.06rem;
}

.process-step p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.process-step small {
  min-width: 82px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: rgba(0, 167, 183, 0.12);
  color: var(--navy-900);
  font-weight: 900;
  text-align: center;
}

.fit-section {
  background: var(--silver);
}

.fit-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.fit-option {
  min-height: 42px;
  border: 1px solid var(--silver-strong);
  background: var(--white);
  color: var(--navy-950);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-weight: 850;
  cursor: pointer;
}

.fit-option.is-active {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
}

.fit-result {
  min-height: 320px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  align-content: center;
  gap: 18px;
}

.fit-result span {
  color: var(--teal);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.fit-result p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.countries-section {
  background: var(--navy-950);
  color: var(--white);
}

.countries-section h2,
.countries-section p {
  color: var(--white);
}

.countries-section p {
  color: rgba(255, 255, 255, 0.72);
}

.route-map {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(ellipse at 30% 50%, rgba(0, 167, 183, 0.28), transparent 42%),
    #0a2440;
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.hub,
.node,
.vehicle {
  position: absolute;
  border-radius: 999px;
}

.hub {
  width: 20px;
  height: 20px;
  left: 44%;
  top: 48%;
  background: var(--amber);
  box-shadow: 0 0 0 10px rgba(240, 169, 46, 0.18);
}

.node {
  width: 12px;
  height: 12px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(0, 167, 183, 0.12);
}

.node-a {
  left: 18%;
  top: 28%;
}

.node-b {
  right: 16%;
  top: 34%;
}

.node-c {
  right: 24%;
  bottom: 22%;
}

.route {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), transparent);
  animation: pulseRoute 2.9s ease-in-out infinite;
}

.route-a {
  width: 34%;
  left: 20%;
  top: 33%;
  transform: rotate(17deg);
}

.route-b {
  width: 38%;
  left: 45%;
  top: 50%;
  transform: rotate(-22deg);
  animation-delay: 600ms;
}

.route-c {
  width: 36%;
  left: 45%;
  top: 53%;
  transform: rotate(28deg);
  animation-delay: 1.1s;
}

.vehicle {
  width: 34px;
  height: 16px;
  background: var(--white);
  border-radius: 5px;
  box-shadow: inset 0 -5px 0 rgba(0, 167, 183, 0.45);
}

.vehicle-a {
  left: 32%;
  top: 43%;
  animation: floatVehicle 4.8s ease-in-out infinite;
}

.vehicle-b {
  right: 25%;
  top: 57%;
  background: var(--silver-strong);
  animation: floatVehicle 5.4s ease-in-out infinite reverse;
}

@keyframes pulseRoute {
  0%,
  100% {
    opacity: 0.34;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatVehicle {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(16px, -12px, 0);
  }
}

.country-tags {
  margin-top: 20px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.country-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-weight: 850;
  font-size: 0.9rem;
}

.country-tags--muted span {
  color: rgba(255, 255, 255, 0.7);
}

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

.detail-block {
  min-height: 380px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 26, 47, 0.06);
}

.detail-block__index {
  display: inline-flex;
  color: var(--teal);
  font-weight: 950;
  margin-bottom: 18px;
}

.detail-block h3 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 1.35rem;
  line-height: 1.18;
}

.detail-block p {
  color: var(--muted);
}

.detail-block ul {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.detail-block li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 760;
}

.detail-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

.practical-section {
  background: linear-gradient(180deg, var(--white), var(--silver));
}

.practical-layout {
  display: grid;
  gap: 30px;
}

.practical-head {
  max-width: 840px;
}

.practical-head h2 {
  margin: 0;
  max-width: 780px;
}

.practical-head p {
  max-width: 760px;
}

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

.practical-card {
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 26, 47, 0.07);
}

.practical-card h3 {
  margin: 0 0 16px;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.2;
}

.practical-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.practical-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.practical-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
}

.expert-section {
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 0.98), rgba(18, 58, 95, 0.94)),
    var(--navy-950);
  color: var(--white);
}

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

.expert-intro {
  position: sticky;
  top: 96px;
}

.expert-intro h2 {
  margin: 0;
  color: var(--white);
}

.expert-intro p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

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

.expert-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.expert-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-weight: 950;
}

.expert-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.2;
}

.expert-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.local-section {
  background: var(--silver);
}

.local-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}

.local-areas span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--white);
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 850;
}

.map-panel {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 247, 0.88)),
    linear-gradient(90deg, transparent 49%, rgba(10, 36, 64, 0.12) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(10, 36, 64, 0.12) 50%, transparent 51%);
  background-size: auto, 72px 72px, 72px 72px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 24px;
}

.map-panel strong {
  color: var(--navy-950);
  font-size: 1.4rem;
}

.map-panel small {
  color: var(--muted);
  font-weight: 800;
}

.map-dot,
.map-line {
  position: absolute;
}

.map-line {
  height: 3px;
  background: rgba(0, 167, 183, 0.42);
  transform-origin: left center;
}

.map-line-a {
  left: 22%;
  top: 40%;
  width: 56%;
  transform: rotate(-12deg);
}

.map-line-b {
  left: 30%;
  top: 53%;
  width: 44%;
  transform: rotate(24deg);
  background: rgba(240, 169, 46, 0.55);
}

.map-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy-950);
  box-shadow: 0 0 0 8px rgba(10, 36, 64, 0.12);
}

.map-dot-main {
  left: 48%;
  top: 42%;
  background: var(--teal);
}

.map-dot-airport {
  left: 26%;
  bottom: 32%;
  background: var(--amber);
}

.map-dot-west {
  right: 24%;
  top: 31%;
}

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

.silo-section {
  background: var(--white);
}

.link-cloud {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.link-cloud a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--silver);
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.link-cloud a:hover {
  background: var(--navy-950);
  color: var(--white);
}

.faq-grid {
  align-items: start;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 18px;
}

summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--navy-950);
  font-weight: 900;
}

summary::after {
  content: "+";
  color: var(--teal);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0 0 18px;
}

.final-cta {
  background:
    linear-gradient(110deg, rgba(7, 26, 47, 0.98), rgba(18, 58, 95, 0.92)),
    var(--navy-950);
  color: var(--white);
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.legal-hero {
  padding: clamp(70px, 10vw, 128px) 0 clamp(48px, 7vw, 82px);
  background:
    linear-gradient(115deg, rgba(7, 26, 47, 0.98), rgba(18, 58, 95, 0.9)),
    var(--navy-950);
  color: var(--white);
}

.legal-hero__inner {
  max-width: 840px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.98;
}

.legal-hero p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.legal-section {
  padding: clamp(54px, 8vw, 96px) 0;
  background: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--silver));
  box-shadow: 0 12px 34px rgba(7, 26, 47, 0.07);
}

.legal-summary strong {
  color: var(--navy-950);
  font-size: 1.1rem;
}

.legal-summary p {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(7, 26, 47, 0.06);
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--navy-950);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.impressum h2 {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 8px;
  color: var(--navy-950);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--navy-950);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(0, 167, 183, 0.5);
  text-underline-offset: 3px;
}

.legal-content ul {
  margin: 12px 0 18px;
  padding-left: 20px;
}

.cookie-notice {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 18px;
  width: min(760px, calc(100% - 24px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(216, 225, 235, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(7, 26, 47, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.cookie-notice div {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}

.cookie-notice a,
.cookie-notice button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 8px 12px;
  font-weight: 900;
}

.cookie-notice a {
  color: var(--navy-950);
  background: var(--silver);
  border: 1px solid var(--line);
}

.cookie-notice button {
  border: 0;
  background: var(--teal);
  color: var(--navy-950);
  cursor: pointer;
}

.legal .cookie-notice {
  bottom: 18px;
}

.floating-actions {
  position: fixed;
  z-index: 35;
  right: clamp(12px, 2vw, 22px);
  top: 50%;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(18px, -50%) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.floating-action {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 225, 235, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-950);
  box-shadow: 0 18px 42px rgba(7, 26, 47, 0.18);
  backdrop-filter: blur(16px);
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateX(-4px);
  box-shadow: 0 22px 52px rgba(7, 26, 47, 0.24);
}

.floating-action svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-action svg .icon-soft {
  fill: currentColor;
  opacity: 0.12;
  stroke: none;
}

.floating-action span {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-action:hover span,
.floating-action:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-action--phone {
  color: var(--navy-950);
}

.floating-action--form {
  color: var(--teal);
}

.floating-action--whatsapp {
  color: #1fa855;
}

.site-footer {
  padding: 58px 0 76px;
  background:
    linear-gradient(135deg, rgba(0, 167, 183, 0.08), transparent 34%),
    linear-gradient(180deg, #071a2f, #061424);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(150px, 0.44fr));
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.brand--footer {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
}

.footer-brand {
  gap: 14px;
}

.footer-lead {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.footer-contact__item {
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.footer-contact a.footer-contact__item:hover {
  border-color: rgba(0, 167, 183, 0.45);
  background: rgba(0, 167, 183, 0.09);
}

.footer-contact__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(0, 167, 183, 0.14);
  color: var(--teal);
}

.footer-contact__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.73rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-contact strong {
  display: block;
  color: var(--white);
  font-weight: 850;
  line-height: 1.25;
  word-break: break-word;
}

.footer-column {
  gap: 10px;
  padding-top: 7px;
}

.footer-column strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.98rem;
}

.footer-column strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  transform: rotate(45deg);
}

.footer-column a {
  position: relative;
  width: fit-content;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-column a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber);
  font-weight: 950;
}

.footer-grid a:hover {
  color: var(--teal);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a,
  .nav-group > button {
    width: 100%;
    justify-content: space-between;
  }

  .nav-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 4px 0 10px 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-group.is-open .nav-menu {
    display: grid;
  }

  .hero-grid,
  .overview-grid,
  .process-grid,
  .countries-grid,
  .local-grid,
  .fit-grid,
  .faq-grid,
  .final-cta-grid,
  .expert-layout,
  .legal-layout,
  .silo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 64px;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 0;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .expert-intro {
    position: static;
  }

  .detail-block {
    min-height: 0;
  }

  .practical-card {
    min-height: 0;
  }

  .media-stage,
  .media-stage img,
  .route-map,
  .map-panel {
    min-height: 340px;
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice div {
    justify-content: flex-end;
  }

  .floating-actions {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-grid {
    padding: 46px 0 82px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

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

  .valuation-panel {
    padding: 16px;
  }

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

  .trust-list {
    grid-template-columns: 1fr;
  }

  .overview-section h2,
  .image-gallery h2,
  .process-section h2,
  .fit-section h2,
  .countries-section h2,
  .local-section h2,
  .silo-section h2,
  .faq-section h2,
  .final-cta h2,
  .practical-section h2,
  .expert-section h2,
  .legal-hero h1 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .legal-content {
    padding: 18px;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .floating-actions {
    right: 8px;
    gap: 8px;
  }

  .floating-action {
    width: 48px;
    height: 48px;
  }

  .floating-action svg {
    width: 26px;
    height: 26px;
  }

  .floating-action span {
    display: none;
  }

  .fit-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

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

  .expert-card {
    min-height: 0;
  }

  .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .process-step__number {
    width: 38px;
    height: 38px;
  }

  .process-step small {
    grid-column: 2;
    justify-content: start;
    width: max-content;
    max-width: 100%;
  }

  .fit-option {
    padding-inline: 8px;
  }

}

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