:root {
  --navy: #071d3d;
  --navy-deep: #04142c;
  --blue: #095fcc;
  --blue-light: #dceaff;
  --ice: #f3f7fb;
  --paper: #ffffff;
  --ink: #0b1c32;
  --muted: #657083;
  --line: #dfe6ee;
  --container: 1240px;
  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.language-pending {
  overflow: hidden;
}

body.legal-open {
  overflow: hidden;
}

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

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

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

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: white;
  transform: translateY(-140%);
  transition: transform 0.2s;
}

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

.country-gate {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 70% 20%, rgba(39, 117, 219, 0.34), transparent 30%),
    linear-gradient(135deg, #041126 0%, #071f43 52%, #0c4382 100%);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.country-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.country-gate.is-closed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.gate-topbar {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 36px 52px;
}

.gate-note,
.gate-footer {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.58;
}

.gate-footer {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.gate-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  text-align: center;
  animation: gateIn 0.9s var(--ease) both;
}

.gate-content h1 {
  margin: 14px 0 10px;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.gate-content > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 15px;
}

.country-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.country-card {
  position: relative;
  min-height: 218px;
  padding: 30px;
  overflow: hidden;
  color: white;
  text-align: left;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
}

.country-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transition: transform 0.5s var(--ease);
}

.country-card:hover,
.country-card:focus-visible {
  z-index: 1;
  outline: none;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.13);
  transform: translateY(-5px);
}

.country-card:hover::after {
  transform: scale(1.25);
}

.country-code {
  display: block;
  color: #79aef0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.country-name {
  display: block;
  margin-top: 22px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.country-action {
  position: absolute;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
}

.country-action svg,
.text-link svg,
.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.gate-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.gate-orbit--one {
  width: 640px;
  height: 640px;
  top: -390px;
  right: -100px;
}

.gate-orbit--two {
  width: 430px;
  height: 430px;
  bottom: -280px;
  left: -80px;
}

@keyframes gateIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.site-shell {
  visibility: hidden;
}

body.site-ready .site-shell {
  visibility: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand-logo {
  width: 158px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(12%) sepia(33%) saturate(2419%) hue-rotate(183deg) brightness(88%) contrast(105%);
  transition: filter 0.3s var(--ease);
}

.brand--light .brand-logo,
.site-header:not(.is-scrolled):not(.menu-open) .brand-logo {
  filter: brightness(0) invert(1);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--navy);
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

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

.site-header:not(.is-scrolled):not(.menu-open) .brand {
  color: white;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  margin-right: 30px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 24px;
}

.language-switch {
  gap: 8px;
}

.language-switch button {
  padding: 4px 0;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.46;
}

.language-switch button.is-active {
  opacity: 1;
}

.language-switch span {
  width: 1px;
  height: 11px;
  background: currentColor;
  opacity: 0.25;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 26px;
  color: white;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.035em;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  cursor: pointer;
  transition: transform 0.25s var(--ease), color 0.25s, background 0.25s, border-color 0.25s;
}

.button:hover {
  transform: translateY(-2px);
  background: #074fae;
  border-color: #074fae;
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 11px;
}

.site-header:not(.is-scrolled):not(.menu-open) .header-cta {
  color: var(--navy);
  border-color: white;
  background: white;
}

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

.button--white:hover {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.site-header.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
}

.mobile-rentcar-tab {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 92svh;
  max-height: 960px;
  overflow: hidden;
  color: white;
  background: var(--navy-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: heroScale 1.6s var(--ease) both;
}

@keyframes heroScale {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3,16,35,.94) 0%, rgba(4,20,44,.82) 33%, rgba(4,20,44,.21) 70%, rgba(4,20,44,.12) 100%),
    linear-gradient(0deg, rgba(3,13,29,.5), transparent 42%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  width: min(650px, 61%);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.eyebrow--light {
  color: #8ebdf4;
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 440;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero-lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.text-link--light {
  color: white;
  border: 0;
  padding: 0;
}

.text-link span:last-child {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span:last-child,
.text-link:hover svg {
  transform: translateX(4px);
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 240px;
  color: rgba(255,255,255,.65);
  font-size: 11px;
  line-height: 1.45;
}

.proof-value {
  color: white;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.trust-strip {
  color: white;
  background: var(--navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 102px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.trust-grid > div:not(:first-child) {
  padding-left: 38px;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-number {
  color: #639ee3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust-grid p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 132px 0;
}

.section--soft {
  background: var(--ice);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.section-heading h2,
.section-top h2,
.feature-card h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 480;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.intro-copy {
  padding-top: 27px;
}

.intro-copy .large-copy {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.intro-copy > p:not(.large-copy) {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.intro-copy .text-link {
  margin-top: 38px;
}

.section-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 66px;
}

.section-top > p {
  max-width: 450px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d4dde8;
  border-left: 1px solid #d4dde8;
}

.offer-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-right: 1px solid #d4dde8;
  border-bottom: 1px solid #d4dde8;
  background: rgba(255,255,255,.28);
  transition: color 0.35s, background 0.35s, transform 0.35s var(--ease);
}

.offer-card:hover {
  z-index: 2;
  color: white;
  background: var(--blue);
  transform: translateY(-4px);
}

.offer-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.card-index {
  position: absolute;
  top: 36px;
  right: 34px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.offer-card:hover .card-index,
.offer-card:hover p {
  color: rgba(255,255,255,.68);
}

.offer-card h3 {
  margin: 75px 0 15px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.offer-card p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  transition: color 0.35s;
}

.section-heading--center {
  text-align: center;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin-top: 82px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 15%;
  left: 15%;
  height: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 30px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  border: 8px solid white;
  border-radius: 50%;
  outline: 1px solid var(--blue-light);
  background: var(--blue);
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 650;
}

.process-step p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-band {
  padding-bottom: 132px;
}

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

.feature-card {
  position: relative;
  min-height: 590px;
  padding: 58px;
  overflow: hidden;
  color: white;
}

.feature-card--blue {
  background: #0865d2;
}

.feature-card--ink {
  background: var(--navy-deep);
}

.feature-tag {
  display: inline-block;
  margin-bottom: 70px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  opacity: 0.65;
}

.feature-card h2 {
  position: relative;
  z-index: 1;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 350px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.75;
}

.round-link {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  left: 58px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.round-link:hover {
  color: var(--navy);
  background: white;
  transform: translateX(4px);
}

.round-link svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.feature-art {
  position: absolute;
  right: -8px;
  bottom: -18px;
  width: 48%;
  fill: none;
  stroke: rgba(255,255,255,.11);
  stroke-width: 2;
}

.feature-art--bolt {
  fill: rgba(255,255,255,.055);
  stroke-width: 1;
}

.rental {
  padding: 0 0 132px;
}

.rental-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  min-height: 690px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 25%, rgba(34, 117, 224, .23), transparent 34%),
    linear-gradient(128deg, #04142c 0%, #071d3d 58%, #0a3365 100%);
}

.rental-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 58%, transparent);
}

.rental-copy {
  position: relative;
  z-index: 2;
  padding: 70px 20px 64px 68px;
}

.rental-copy h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 460;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.rental-lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.8;
}

.rental-services {
  display: grid;
  max-width: 570px;
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.rental-services > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.rental-services span {
  color: #6eafff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.rental-services p {
  margin: 0;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: .015em;
}

.rental-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.rental-phone {
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: opacity .25s;
}

.rental-phone:hover {
  opacity: .72;
}

.rental-phone span {
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rental-phone strong {
  font-size: 13px;
  font-weight: 650;
}

.rental-response {
  margin: 15px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 10px;
}

.rental-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
}

.rental-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,20,44,.08), transparent 28%, transparent 72%, rgba(4,20,44,.42));
  pointer-events: none;
}

.rental-visual::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent 5%, rgba(255,255,255,.16) 34%, rgba(255,255,255,.16) 78%, transparent);
}

.rental-watermark {
  position: absolute;
  z-index: 3;
  top: 74px;
  right: -18px;
  color: rgba(255,255,255,.045);
  font-size: clamp(70px, 8.5vw, 128px);
  font-weight: 820;
  letter-spacing: -.07em;
  line-height: 1;
}

.rental-scope {
  position: absolute;
  z-index: 3;
  top: 58px;
  right: 50px;
  padding: 10px 14px;
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
}

.rental-fleet-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rental-fleet {
  position: absolute;
  z-index: 4;
  right: 50px;
  bottom: 34px;
  left: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.17);
}

.rental-fleet small {
  flex: 0 0 auto;
  color: #6eafff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.rental-fleet strong {
  max-width: 300px;
  font-size: 11px;
  font-weight: 560;
  line-height: 1.6;
  text-align: right;
}

.partners {
  padding-top: 0;
}

.partners .eyebrow {
  text-align: center;
}

.partner-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 54px;
  color: #697586;
}

.partner-list span {
  font-size: clamp(13px, 1.6vw, 20px);
  font-weight: 750;
  letter-spacing: -0.025em;
}

.contact {
  color: white;
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.contact-copy h2 {
  color: white;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.75;
}

.direct-contact {
  padding: 42px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
}

.direct-kicker {
  margin: 0 0 22px;
  color: #8ebdf4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.contact-method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 104px;
  border-top: 1px solid rgba(255,255,255,.13);
  transition: padding 0.3s var(--ease), background 0.3s;
}

.contact-method:hover {
  padding-inline: 14px;
  background: rgba(255,255,255,.045);
}

.contact-method__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.contact-method__icon svg,
.contact-method__arrow {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.contact-method small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 550;
  letter-spacing: -0.02em;
}

.contact-method__arrow {
  transition: transform 0.25s var(--ease);
}

.contact-method:hover .contact-method__arrow {
  transform: translateX(5px);
}

.contact-office {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-office strong {
  color: white;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer {
  padding: 60px 0 24px;
  background: white;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 52px;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 80px;
}

.footer-legal div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-legal span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal strong {
  color: var(--navy);
  font-size: 12px;
  font-weight: 650;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 23px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.country-reset,
.footer-link {
  padding: 0;
  color: inherit;
  font: inherit;
  border: 0;
  border-bottom: 1px solid #adb5c0;
  background: none;
  cursor: pointer;
}

.footer-link {
  border-bottom-color: transparent;
}

.footer-link:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.legal-modal {
  position: fixed;
  z-index: 800;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.legal-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(2, 11, 25, .68);
  backdrop-filter: blur(7px);
  cursor: default;
}

.legal-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(720px, 100%);
  height: 100%;
  overflow: hidden;
  color: var(--ink);
  background: white;
  box-shadow: -30px 0 80px rgba(2, 11, 25, .18);
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
}

.legal-modal.is-open .legal-panel {
  transform: translateX(0);
}

.legal-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 48px 56px 34px;
  border-bottom: 1px solid var(--line);
}

.legal-panel__head .eyebrow {
  margin-bottom: 13px;
}

.legal-panel__head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.legal-close {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
}

.legal-close:hover {
  color: white;
  background: var(--navy);
}

.legal-close span {
  position: absolute;
  top: 22px;
  left: 14px;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.legal-close span:first-child { transform: rotate(45deg); }
.legal-close span:last-child { transform: rotate(-45deg); }

.legal-panel__body {
  height: calc(100% - 152px);
  padding: 42px 56px 72px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.legal-intro {
  margin: 0 0 36px;
  padding: 20px 22px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.65;
  border-left: 2px solid var(--blue);
  background: var(--ice);
}

.legal-panel__body h3 {
  margin: 36px 0 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.legal-panel__body h3:first-of-type {
  margin-top: 0;
}

.legal-panel__body p,
.legal-panel__body li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.legal-panel__body p {
  margin: 0 0 14px;
}

.legal-panel__body ul {
  margin: 0;
  padding-left: 19px;
}

.legal-panel__body a {
  color: var(--blue);
  border-bottom: 1px solid #a9c9ee;
}

.legal-version {
  margin-top: 44px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1020px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-rentcar-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 11px;
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid var(--blue);
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 8px 22px rgba(0, 105, 218, 0.2);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 0;
    padding: 0 32px;
    overflow: hidden;
    color: var(--navy);
    background: white;
    transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
  }

  .mobile-nav a:not(.button) {
    font-size: 20px;
    font-weight: 600;
  }

  .site-header.menu-open .mobile-nav {
    max-height: 430px;
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .two-column,
  .contact-grid {
    gap: 70px;
  }

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

  .rental-shell {
    grid-template-columns: 1fr;
  }

  .rental-copy {
    padding-right: 68px;
  }

  .rental-visual {
    min-height: 560px;
  }

  .rental-visual::after {
    top: 0;
    right: 7%;
    bottom: auto;
    left: 7%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  }

  .rental-fleet-image {
    object-fit: cover;
  }

  .partner-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-legal {
    gap: 35px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .gate-topbar {
    padding: 24px 20px;
  }

  .gate-note {
    display: none;
  }

  .gate-content {
    padding-top: 35px;
  }

  .gate-content h1 {
    font-size: 43px;
  }

  .country-options {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .country-card {
    min-height: 142px;
    padding: 22px;
  }

  .country-name {
    margin-top: 12px;
    font-size: 27px;
  }

  .country-action {
    left: auto;
    right: 22px;
    bottom: 26px;
  }

  .gate-footer {
    bottom: 14px;
  }

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

  .brand {
    font-size: 14px;
  }

  .brand-logo {
    width: 138px;
  }

  .header-actions {
    gap: 10px;
  }

  .hero {
    min-height: 700px;
    height: 90svh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3,16,35,.94) 0%, rgba(4,20,44,.7) 70%, rgba(4,20,44,.3) 100%);
  }

  .hero-copy {
    width: 100%;
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-lead {
    max-width: 90%;
    font-size: 15px;
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-proof {
    right: auto;
    left: 0;
    bottom: 22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .trust-grid > div,
  .trust-grid > div:not(:first-child) {
    min-height: 62px;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 84px 0;
  }

  .two-column,
  .section-top,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .intro-copy {
    padding: 0;
  }

  .intro-copy .large-copy {
    font-size: 20px;
  }

  .section-top {
    margin-bottom: 42px;
  }

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

  .offer-card {
    min-height: 264px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 58px;
  }

  .process-track::before {
    display: none;
  }

  .feature-band {
    padding-bottom: 84px;
  }

  .rental {
    padding-bottom: 84px;
  }

  .rental-copy {
    padding: 54px 28px 50px;
  }

  .rental-copy h2 {
    font-size: clamp(42px, 11.5vw, 58px);
  }

  .rental-lead {
    font-size: 14px;
  }

  .rental-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .rental-visual {
    min-height: 500px;
  }

  .rental-watermark {
    top: 55px;
    right: -10px;
    font-size: 76px;
  }

  .rental-scope {
    top: 30px;
    right: 26px;
  }

  .rental-fleet-image {
    object-fit: contain;
  }

  .rental-fleet {
    right: 26px;
    bottom: 24px;
    left: 26px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .rental-fleet strong {
    text-align: left;
  }

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

  .feature-card {
    min-height: 500px;
    padding: 38px 30px;
  }

  .feature-tag {
    margin-bottom: 50px;
  }

  .round-link {
    bottom: 32px;
    left: 30px;
  }

  .partner-list {
    gap: 30px 42px;
  }

  .contact-grid {
    gap: 54px;
  }

  .direct-contact {
    padding: 28px 22px;
  }

  .contact-method {
    gap: 14px;
  }

  .contact-method__icon {
    width: 40px;
    height: 40px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-left: 0;
  }

  .legal-panel__head {
    padding: 30px 24px 24px;
  }

  .legal-panel__body {
    height: calc(100% - 120px);
    padding: 30px 24px 56px;
  }
}

@media (max-width: 400px) {
  html,
  body {
    overflow-x: hidden;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 112px;
  }

  .header-actions {
    gap: 7px;
  }

  .mobile-rentcar-tab {
    padding: 0 9px;
    font-size: 9px;
  }

  .language-switch {
    gap: 6px;
  }

  .menu-toggle {
    width: 36px;
  }
}
