﻿:root {
  --bg: #0f0f10;
  --bg-soft: #161617;
  --panel: rgba(24, 24, 26, 0.92);
  --panel-strong: rgba(18, 18, 20, 0.98);
  --text: #f5f1e8;
  --muted: #b5ab9b;
  --line: rgba(226, 190, 118, 0.16);
  --line-strong: rgba(236, 198, 122, 0.32);
  --accent: #d7b16a;
  --accent-strong: #f0ca83;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(215, 177, 106, 0.08), transparent 32%),
    linear-gradient(180deg, #0c0c0d 0%, #111112 35%, #0d0d0e 100%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea, small { font: inherit; }
button { cursor: pointer; }
.site-shell { position: relative; overflow: clip; }
.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='64' height='64' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 96px 96px;
}
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-menu a:hover { color: var(--text); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
}
.nav-dropdown-toggle::after {
  content: "\25be";
  margin-left: 0.45rem;
  font-size: 0.82rem;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 280px;
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem;
  border-radius: 18px;
  background: rgba(12, 12, 14, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.language-switcher button,
.language-switcher a {
  min-width: 44px;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
  text-align: center;
  text-decoration: none;
}
.language-switcher button:hover,
.language-switcher a:hover {
  color: var(--text);
  transform: translateY(-1px);
}
.language-switcher button.is-active,
.language-switcher a.is-active {
  color: #1f170d;
  background: linear-gradient(135deg, #ecd2a3, #d1ae74);
  border-color: rgba(240, 202, 131, 0.6);
}
.nav-dropdown-menu a {
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.04);
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 0.7rem;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--text); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #1a140c;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(215, 177, 106, 0.18);
}
.button-outline { background: rgba(255,255,255,0.02); color: var(--text); border-color: var(--line-strong); }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(0.4);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.38), rgba(10, 10, 12, 0.72)),
    radial-gradient(circle at 50% 35%, rgba(226, 190, 118, 0.14), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
  max-width: 760px;
}
.eyebrow, .card-label, .contact-label {
  margin: 0 0 0.9rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
}
.hero h1, .section-head h2, .intro h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero-text, .lead, #fleet-description, .service-card p, .intro-card p, .term-card li, .quote-form p, .pricing-note, .footer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
  text-align: justify;
  text-justify: inter-word;
}
.hero-text { margin: 1.2rem 0 0; }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 2rem;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-points li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ddd3c1;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: calc(5.4rem + 10px);
  transform: translateX(-50%);
  z-index: 1;
  display: inline-grid;
  justify-items: center;
  gap: 0.55rem;
  color: rgba(244, 236, 222, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  animation: scrollCuePulse 2.4s ease-in-out infinite;
}
.scroll-cue:hover {
  color: rgba(244, 236, 222, 0.92);
}
.scroll-cue-text {
  white-space: nowrap;
}
.scroll-cue-arrow {
  width: 1rem;
  height: 1rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
@keyframes scrollCuePulse {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) translateY(6px);
  }
}
.section { padding: 5.5rem 0; }
.section-head { margin-bottom: 2rem; }
.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
.section-head h2, .intro h2, .contact-section h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.intro h2 { max-width: 12ch; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}
.contact-copy {
  display: grid;
  align-content: start;
}
.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}
.intro-copy {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}
.intro-copy .lead {
  margin: 0;
  max-width: 60ch;
}
.intro-visual {
  display: grid;
  align-self: stretch;
}
.leather-panel {
  position: relative;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(33, 33, 35, 0.92), rgba(18, 18, 20, 0.98)),
    radial-gradient(circle at top left, rgba(236, 198, 122, 0.08), transparent 32%);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
}
.leather-panel::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px dashed rgba(231, 202, 143, 0.18);
  pointer-events: none;
}
.intro-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.1rem;
  height: 100%;
}
.intro-card img, .service-card img, .fleet-visual img, .thumb-grid button img { border-radius: calc(var(--radius) - 8px); }
.intro-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.benefit-card, .fleet-stats article {
  padding: 1.35rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
}
.benefit-card strong, .fleet-stats strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  color: var(--accent-strong);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.benefit-card p, .fleet-stats span {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}
.services-carousel {
  overflow: hidden;
  padding-top: 8px;
  margin-top: -8px;
}
.services-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
}
.services-grid,
.intro-grid,
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.intro-grid {
  margin-top: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-card {
  display: block;
  overflow: hidden;
  flex: 0 0 calc((100% - 3.75rem) / 4);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}
.service-card[id] {
  scroll-margin-top: 108px;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(240, 202, 131, 0.3), 0 22px 42px rgba(0,0,0,0.24);
  background: linear-gradient(180deg, rgba(40, 34, 24, 0.96), rgba(18, 18, 20, 0.98));
}
.service-card img {
  width: 100%;
  height: clamp(210px, 20vw, 270px);
  aspect-ratio: auto;
  object-fit: cover;
}
.service-card div { padding: 1.4rem; display: grid; gap: 0.75rem; align-content: start; }
.service-card h3 { display: none; }
.services-grid .service-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  min-height: 100%;
}
.services-grid .service-card h3 {
  display: block;
  margin: 0;
  color: var(--accent-strong);
}
.service-card .card-label { margin: 0; }
.service-card p { margin: 0; }
.fleet-layout { display: grid; gap: 1.5rem; }
.fleet-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.fleet-pill {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 126px;
  padding: 0.8rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  text-align: left;
  box-shadow: 0 18px 32px rgba(0,0,0,0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}
.fleet-pill:hover {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(240, 202, 131, 0.3), 0 22px 42px rgba(0,0,0,0.24);
}
.fleet-pill-media {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 0.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}
.fleet-pill-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}
.fleet-pill-copy {
  display: grid;
  gap: 0.35rem;
}
.fleet-pill-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fleet-pill-copy small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}
.fleet-pill.is-active {
  color: #1f170d;
  border-color: rgba(240, 202, 131, 0.6);
  background: linear-gradient(135deg, #ecd2a3, #d1ae74);
}
.fleet-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  padding: 1.2rem;
}
.fleet-visual {
  display: grid;
  align-items: center;
  min-height: 430px;
  background: radial-gradient(circle at center, rgba(215,177,106,0.12), transparent 56%);
}
.fleet-visual img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,0.55));
}
.fleet-copy { align-self: center; padding: 1rem 0.5rem 1rem 0; }
.fleet-copy h3 { margin: 0 0 1rem; font-size: clamp(2rem, 3vw, 3rem); }
.fleet-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}
.feature-list li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #ddd4c5;
  border: 1px solid rgba(255,255,255,0.08);
}
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}
.thumb-grid button {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 0.45rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}
.thumb-grid button:hover {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(240, 202, 131, 0.3);
  background: rgba(223,189,121,0.06);
}
.thumb-grid img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  object-position: center;
  background: rgba(255,255,255,0.03);
}
.pricing-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.currency-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.currency-switcher button {
  min-width: 72px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}
.currency-switcher button:hover {
  color: var(--text);
  transform: translateY(-1px);
}
.currency-switcher button.is-active {
  color: #1f170d;
  background: linear-gradient(135deg, #ecd2a3, #d1ae74);
  border-color: rgba(240, 202, 131, 0.6);
}
.pricing-note-inline {
  margin: 0;
  text-align: right;
}
.pricing-intro {
  margin: 1rem auto 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.8;
}
.pricing-table { overflow: auto; padding: 1rem; }
.pricing-table table { width: 100%; border-collapse: collapse; min-width: 720px; }
.pricing-table th, .pricing-table td {
  padding: 1.1rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-table th {
  color: var(--accent-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.pricing-table th:first-child, .pricing-table td:first-child {
  text-align: left;
}
.pricing-note {
  margin: 1rem 0 0;
  text-align: center;
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.term-card { padding: 1.4rem; }
.term-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.8; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  grid-auto-rows: 1fr;
}
.contact-card, .quote-form { padding: 1.3rem; }
.contact-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-height: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(240, 202, 131, 0.3), 0 22px 42px rgba(0,0,0,0.24);
  background: linear-gradient(180deg, rgba(40, 34, 24, 0.96), rgba(18, 18, 20, 0.98));
}
.contact-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(223,189,121,0.12);
  border: 1px solid rgba(240, 202, 131, 0.22);
  color: var(--accent-strong);
  font-size: 1rem;
  line-height: 1;
}
.contact-card strong { display: block; font-size: 1.1rem; }
.contact-card strong + strong { margin-top: 0.7rem; }
.contact-card strong a { color: inherit; }
.contact-card strong a:hover { color: var(--accent-strong); }
.contact-card small { display: block; color: var(--muted); margin-top: 0.15rem; }
.social-card { gap: 0.7rem; }
.office-hours-card {
  justify-items: center;
  text-align: center;
}
.office-hours-card .contact-card-head {
  justify-self: stretch;
  justify-content: flex-start;
  text-align: left;
}
.office-hours-card small {
  margin-top: -0.35rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
}
.social-link:hover { color: var(--accent-strong); }
.social-badge {
  min-width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(223,189,121,0.12);
  border: 1px solid rgba(240, 202, 131, 0.22);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.quote-form {
  display: grid;
  gap: 1rem;
  height: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}
.quote-form:hover {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(240, 202, 131, 0.3), 0 22px 42px rgba(0,0,0,0.24);
  background: linear-gradient(180deg, rgba(40, 34, 24, 0.96), rgba(18, 18, 20, 0.98));
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.quote-form label { display: grid; gap: 0.45rem; }
.quote-form span { color: #e7dcc8; font-size: 0.92rem; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0.9rem 1rem;
  resize: vertical;
}
.quote-form textarea {
  min-height: 220px;
}
.quote-form select {
  color-scheme: dark;
}
.quote-form select option {
  color: #111111;
  background: #f5f1e8;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 1px solid rgba(240, 202, 131, 0.55);
  border-color: rgba(240, 202, 131, 0.38);
}
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
#form-message { margin: 0; color: var(--muted); }
.quote-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0 1.5rem;
  background: rgba(7, 7, 8, 0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 1.5rem;
}
.footer-grid > div { display: grid; gap: 0.7rem; align-content: start; }
.footer-brand { margin-bottom: 0.5rem; }
.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 4, 6, 0.92);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 3rem);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 1.8rem;
}
@media (max-width: 1180px) {
  .intro-panel, .contact-layout, .fleet-showcase, .terms-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-switcher { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fleet-pill { grid-template-columns: 88px minmax(0, 1fr); min-height: 112px; gap: 0.8rem; }
  .fleet-pill-media { min-height: 76px; }
  .fleet-pill-media img { max-height: 60px; }
  .fleet-pill-copy strong { font-size: 0.92rem; }
  .fleet-pill-copy small { font-size: 0.66rem; }
  .fleet-visual { min-height: 300px; }
  .service-card { flex-basis: calc((100% - 1.25rem) / 2); }
  .services-grid,
  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .thumb-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .intro-benefits, .fleet-stats, .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    min-width: min(320px, calc(100vw - 2rem));
    padding: 1rem;
    border-radius: 18px;
    background: rgba(13,13,14,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 0.75rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { display: grid; }
  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }
  .language-switcher button,
  .language-switcher a {
    flex: 1 1 0;
  }
  .nav-cta { width: 100%; }
  .hero { padding-top: 2rem; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .scroll-cue {
    bottom: calc(3.8rem + 10px);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
  .pricing-toolbar {
    align-items: stretch;
  }
  .pricing-note-inline {
    text-align: left;
  }
  .intro-panel { padding: 1.3rem; }
  .intro h2 { max-width: none; }
  .intro-benefits, .fleet-stats, .form-grid, .thumb-grid, .fleet-switcher { grid-template-columns: 1fr; }
  .fleet-pill { grid-template-columns: 72px minmax(0, 1fr); min-height: 96px; gap: 0.7rem; padding: 0.65rem; }
  .fleet-pill-media { min-height: 62px; padding: 0.35rem; }
  .fleet-pill-media img { max-height: 48px; }
  .fleet-pill-copy strong { font-size: 0.88rem; }
  .fleet-pill-copy small { font-size: 0.62rem; letter-spacing: 0.12em; }
  .service-card { flex-basis: 100%; }
  .container { width: min(var(--container), calc(100% - 1.25rem)); }
  .section { padding: 4.4rem 0; }
}
.airport-hero .hero-content {
  max-width: 860px;
}
.airport-hero .hero-points li {
  backdrop-filter: blur(12px);
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}
.split-copy,
.split-aside {
  display: grid;
  gap: 1rem;
}
.split-copy.leather-panel,
.split-aside.leather-panel,
.process-card,
.scenario-card,
.related-card,
.faq-item {
  padding: 1.5rem;
}
.split-copy p,
.split-aside p,
.scenario-card p,
.process-card p,
.related-card p,
.faq-item p {
  margin: 0;
}
.side-stack {
  display: grid;
  gap: 1rem;
}
.side-note {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.side-note strong,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(223,189,121,0.12);
  border: 1px solid rgba(240, 202, 131, 0.22);
  color: var(--accent-strong);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.side-note strong {
  margin-bottom: 0.85rem;
}
.scenario-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.scenario-card,
.process-card,
.related-card {
  position: relative;
  display: grid;
  gap: 0.95rem;
  align-content: start;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}
.scenario-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: calc(var(--radius) - 8px);
}
.scenario-card:hover,
.process-card:hover,
.related-card:hover,
.faq-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(240, 202, 131, 0.3), 0 22px 42px rgba(0,0,0,0.24);
  background: linear-gradient(180deg, rgba(40, 34, 24, 0.96), rgba(18, 18, 20, 0.98));
}
.scenario-card h3,
.process-card h3,
.related-card h3,
.split-copy h3,
.split-aside h3 {
  margin: 0;
  font-size: 1.2rem;
}
.section-note {
  margin: 1.25rem auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
}
.process-card .step-number {
  min-width: 100%;
  height: auto;
  padding: 0.85rem 1rem;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 0.35rem;
  text-align: center;
}
.process-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -0.78rem;
  transform: translateY(-50%);
  color: rgba(240, 202, 131, 0.45);
  font-size: 1.15rem;
  line-height: 1;
  pointer-events: none;
}
.process-card p,
.scenario-card p,
.related-card p,
.split-copy p,
.split-aside p,
.faq-item p {
  color: var(--muted);
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent-strong);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  margin-top: 1rem;
}
.related-card {
  text-decoration: none;
}
.related-card .card-label {
  margin: 0;
}
.related-card p {
  color: var(--muted);
}
.contact-section .section-head {
  margin-bottom: 1rem;
}
.form-grid .field-span-2 {
  grid-column: 1 / -1;
}
.quote-form .span-2 {
  grid-column: 1 / -1;
}
.quote-form .field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
@media (max-width: 1180px) {
  .split-section,
  .scenario-grid,
  .services-grid,
  .intro-grid,
  .terms-grid,
  .related-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-card:not(:last-child)::after {
    display: none;
  }
}
.contact-section .section-head.center {
  margin-bottom: 2rem;
}
@media (max-width: 980px) {
  .scenario-grid,
  .process-grid,
  .services-grid,
  .intro-grid,
  .terms-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .scenario-grid,
  .process-grid,
  .services-grid,
  .intro-grid,
  .terms-grid,
  .related-grid,
  .split-section {
    grid-template-columns: 1fr;
  }
  .form-grid .field-span-2 {
    grid-column: auto;
  }
}

.airport-fleet .fleet-switcher {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


.nav-dropdown-submenu {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.3rem;
}
.nav-dropdown-subtoggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  text-align: left;
}
.nav-dropdown-subtoggle::after {
  content: "+";
  color: var(--accent-strong);
  font-size: 1rem;
  line-height: 1;
}
.nav-dropdown-subtoggle:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-dropdown-submenu.is-open .nav-dropdown-subtoggle::after {
  content: "−";
}
.nav-dropdown-submenu-panel {
  display: none;
  gap: 0.3rem;
  padding: 0.45rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.nav-dropdown-submenu.is-open .nav-dropdown-submenu-panel {
  display: grid;
}
.nav-dropdown-submenu-panel a {
  padding-left: 1rem;
}
@media (max-width: 760px) {
  .nav-dropdown-submenu-panel {
    margin-top: 0.25rem;
  }
}


.airport-pricing-table table {
  min-width: 100%;
}
.airport-pricing-table th,
.airport-pricing-table td {
  padding: 0.85rem 0.55rem;
  font-size: 0.92rem;
}
.airport-pricing-table th {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.airport-pricing-table th:first-child,
.airport-pricing-table td:first-child {
  width: 12%;
  white-space: nowrap;
}
/* Airport landing page refinements */
.side-note strong {
  display: flex;
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.05em;
}

.landing-cta-panel {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
}

.landing-cta-panel h2,
.landing-cta-panel p {
  margin: 0;
}

.landing-cta-panel p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
  text-align: justify;
  text-align-last: center;
}

.landing-cta-panel .hero-actions {
  justify-content: center;
  margin-top: 0.35rem;
}

.process-grid {
  position: relative;
}

@media (min-width: 1181px) {
  .process-grid::before {
    content: "";
    position: absolute;
    left: 12.5%;
    right: 12.5%;
    top: 2.05rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(240, 202, 131, 0), rgba(240, 202, 131, 0.5), rgba(240, 202, 131, 0));
    pointer-events: none;
  }
}

.process-card {
  isolation: isolate;
  padding-top: 1.75rem;
}

.process-card::before {
  content: counter(process-step);
  counter-increment: process-step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto -0.1rem;
  border-radius: 50%;
  background: rgba(12, 12, 14, 0.96);
  border: 1px solid rgba(240, 202, 131, 0.45);
  color: var(--accent-strong);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.process-grid {
  counter-reset: process-step;
}

.process-card .step-number {
  border-radius: 10px;
  min-height: 3.15rem;
  line-height: 1.25;
  white-space: normal;
}

.process-card:not(:last-child)::after {
  content: "›";
  top: 2.05rem;
  right: -0.92rem;
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(12, 12, 14, 0.96);
  border: 1px solid rgba(240, 202, 131, 0.35);
  color: var(--accent-strong);
  font-size: 1.35rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.24);
  z-index: 2;
}

@media (max-width: 1180px) {
  .process-card::before {
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 760px) {
  .landing-cta-panel {
    justify-items: stretch;
    text-align: left;
  }

  .landing-cta-panel p:not(.eyebrow) {
    text-align-last: auto;
  }

  .landing-cta-panel .hero-actions {
    justify-content: stretch;
  }
}
.process-card::after,
.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  inset: 8px;
  width: auto;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 8px);
  border: 1px dashed rgba(231, 202, 143, 0.18);
  background: transparent;
  box-shadow: none;
  transform: none;
  pointer-events: none;
  z-index: 0;
}

.process-card .step-number,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-arrow {
  position: absolute;
  top: 2.05rem;
  right: -0.92rem;
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(12, 12, 14, 0.96);
  border: 1px solid rgba(240, 202, 131, 0.35);
  color: var(--accent-strong);
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0,0,0,0.24);
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 1180px) {
  .process-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .pricing-toolbar {
    display: grid;
    align-items: stretch;
    gap: 0.9rem;
    margin-bottom: 1.15rem;
  }

  .pricing-toolbar > div {
    display: grid;
    gap: 0.55rem;
  }

  .currency-switcher {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    border-radius: 22px;
  }

  .currency-switcher button {
    min-width: 0;
    padding: 0.72rem 0.45rem;
  }

  .pricing-note-inline {
    text-align: left;
  }

  .pricing-table {
    overflow: visible;
    padding: 0.85rem;
  }

  .pricing-table table,
  .airport-pricing-table table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .pricing-table table,
  .airport-pricing-table table {
    border-collapse: separate;
  }

  .pricing-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .pricing-table tbody {
    display: grid;
    gap: 0.9rem;
  }

  .pricing-table tr {
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
      rgba(10, 10, 12, 0.34);
  }

  .pricing-table th,
  .pricing-table td,
  .airport-pricing-table th,
  .airport-pricing-table td {
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.98rem;
  }

  .pricing-table td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 1rem;
    text-align: right;
    white-space: normal;
  }

  .pricing-table td::before {
    content: attr(data-label);
    max-width: 11rem;
    color: var(--accent-strong);
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.13em;
    text-align: left;
    text-transform: uppercase;
  }

  .pricing-table td:first-child,
  .airport-pricing-table td:first-child {
    display: block;
    width: auto;
    padding-top: 0;
    padding-bottom: 0.95rem;
    text-align: left;
    white-space: normal;
    color: var(--text);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.28rem;
    line-height: 1.25;
  }

  .pricing-table td:first-child::before {
    content: none;
  }

  .pricing-table td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

