/* Mahek Car Rental - premium minimal theme (Netflix-red inspired) */
:root {
  --red: #e50914;
  --red-dark: #b0060f;
  --black: #0a0a0a;
  --gray-900: #141414;
  --gray-700: #2a2a2a;
  --gray-500: #6e6e6e;
  --gray-400: #8c8c8c;
  --gray-300: #bdbdbd;
  --gray-200: #e5e5e5;
  --white: #ffffff;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  --radius-btn: 4px;
  --radius-control: 10px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--black) 92%, transparent);
  border-bottom: 1px solid var(--gray-700);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}
.brand:hover { text-decoration: none; color: var(--white); }
.brand img { height: 40px; width: auto; object-fit: contain; }
.brand--logo img {
  height: 42px;
  max-width: min(220px, 52vw);
}
.brand__logo-img--light {
  display: none;
}
html[data-color-scheme="light"] .brand__logo-img--dark {
  display: none;
}
html[data-color-scheme="light"] .brand__logo-img--light {
  display: block;
}

.footer-brand-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-brand-link:hover { opacity: 0.92; }
.footer-brand-logo {
  height: 38px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.footer-brand-logo--light {
  display: none;
}
html[data-color-scheme="light"] .footer-brand-logo--dark {
  display: none;
}
html[data-color-scheme="light"] .footer-brand-logo--light {
  display: block;
}
.footer-tagline {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.5;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1rem;
}
.nav-links a {
  color: var(--gray-200);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: color-mix(in srgb, var(--white) 22%, transparent);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.nav-toggle:active {
  background: rgba(255, 255, 255, 0.16);
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header--nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header--nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.site-header--nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 0;
  }
  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.85rem 0 0.15rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--gray-700);
  }
  .nav-links a {
    padding: 0.7rem 0;
    font-size: 1rem;
  }
  .nav-links a:not(:last-child) {
    border-bottom: 1px solid rgba(42, 42, 42, 0.85);
  }
  .nav-links .nav-links__cta {
    margin-top: 0.65rem;
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .site-header--nav-open .nav-links {
    display: flex;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle__bar {
    transition: none;
  }
}

.mobile-app-dock {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  text-decoration: none;
}
.btn-primary:focus-visible {
  color: #fff;
}
.btn-primary:visited {
  color: #fff;
}
.btn-primary:disabled,
.btn-primary[disabled] {
  color: #fff;
  opacity: 0.65;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-700);
}
.btn-outline:hover { border-color: var(--white); text-decoration: none; color: var(--white); }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 4rem 0 3.5rem;
  background-image:
    linear-gradient(180deg, color-mix(in srgb, var(--black) 35%, transparent) 0%, color-mix(in srgb, var(--black) 88%, transparent) 55%, var(--black) 100%),
    var(--hero-image, linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 55%, #120303 100%));
  background-size: cover;
  background-position: center;
}

.hero__content { max-width: 640px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.hero p {
  margin: 0 0 1.5rem;
  color: var(--gray-200);
  font-size: 1.05rem;
  max-width: 36rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.hero-note {
  font-size: 0.85rem;
  color: var(--gray-400);
}
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

section.section { padding: 3.5rem 0; }
section.section-alt { background: var(--gray-900); border-block: 1px solid var(--gray-700); }

.section-head { margin-bottom: 2rem; }
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.section-head p { margin: 0; color: var(--gray-400); max-width: 42rem; }

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.12s;
}
.card:hover { border-color: var(--gray-400); transform: translateY(-2px); }

.card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--gray-700), var(--black));
  position: relative;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body { padding: 1.1rem 1.2rem 1.25rem; }
.card__body h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.card__meta { color: var(--gray-400); font-size: 0.82rem; margin: 0 0 0.75rem; }
.badge {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: rgba(229, 9, 20, 0.2);
  color: #ff6b6b;
  margin-right: 0.35rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--gray-400);
}
.trust-row strong { color: var(--gray-200); }

/* Home page */
.home-hero { align-items: end; }
.home-hero__inner {
  width: 100%;
}
.home-hero__content {
  max-width: 44rem;
  padding-bottom: 0.25rem;
}
.home-hero__lead {
  margin: 0 0 1.5rem;
  color: var(--gray-200);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 40rem;
}
.home-hero__cta { margin-bottom: 0.25rem; }
.home-hero__trust { margin-top: 1.25rem; }
.home-hero__skip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1rem;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}
.home-hero__skip-label {
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.68rem;
}
.home-hero__skip a {
  color: #ff6b6b;
  font-weight: 600;
  text-decoration: none;
}
.home-hero__skip a:hover { text-decoration: underline; }

.home-how__head {
  margin-bottom: 2rem;
  max-width: 44rem;
}
.home-how__head.section-head { margin-bottom: 2rem; }
.home-how__head h2 { margin-bottom: 0.5rem; }
.home-how__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}
.home-how__lead {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 40rem;
}

.home-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.home-steps__arrow {
  display: none;
}
.home-step {
  background: var(--black);
  border: 1px solid var(--gray-700);
  border-radius: 14px;
  padding: 1.35rem 1.35rem 1.4rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
}
.home-step:hover {
  border-color: rgba(229, 9, 20, 0.38);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}
.home-step__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}
.home-step__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
}
.home-step__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(229, 9, 20, 0.14);
  color: #ff6b6b;
}
.home-step__label {
  margin: 0 0 0.35rem;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff6b6b;
}
.home-step__title {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.home-step__body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}
.home-step__action {
  margin: 1.05rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--gray-700);
  font-size: 0.86rem;
  font-weight: 600;
}
.home-step__action a {
  color: #ff6b6b;
  text-decoration: none;
}
.home-step__action a:hover {
  text-decoration: underline;
  color: #fff;
}

.home-fleet__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}
.home-fleet__head .section-head {
  margin-bottom: 0;
}
.home-fleet__head-btn { flex-shrink: 0; }
.home-fleet__grid { margin-bottom: 0.5rem; }
.home-fleet__footer {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
}
.home-fleet__footer a { font-weight: 600; }
.home-fleet__empty {
  color: var(--gray-400);
  padding: 1.5rem 0;
}

.home-loc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}
.home-loc-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border-radius: 10px;
  background: var(--black);
  border: 1px solid var(--gray-700);
  color: var(--gray-200);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.home-loc-card:hover {
  border-color: var(--red);
  background: var(--gray-900);
  color: var(--white);
  text-decoration: none;
}
.home-loc-card__name { font-weight: 700; font-size: 0.96rem; }
.home-loc-card__meta { font-size: 0.78rem; color: var(--gray-400); }
.home-loc-card:hover .home-loc-card__meta { color: var(--gray-500); }
.home-areas__footer {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-more__panel {
  padding: 1.5rem 1.35rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
}
.home-more__h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.home-more__intro {
  margin: 0 0 1rem;
  color: var(--gray-400);
  font-size: 0.92rem;
  max-width: 40rem;
}
.home-more__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
}
.home-more__links a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: var(--black);
  border: 1px solid var(--gray-700);
  color: var(--gray-200);
  font-size: 0.88rem;
  text-decoration: none;
}
.home-more__links a:hover {
  border-color: var(--red);
  color: var(--white);
  text-decoration: none;
}

.home-faq .section-head { margin-bottom: 1.25rem; }

/* Home - pro hero, marquee, advanced sections */
.home-hero--pro {
  overflow: hidden;
  min-height: 78vh;
  align-items: center;
}
.home-hero__blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(229, 9, 20, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 35% at 15% 70%, rgba(229, 9, 20, 0.12), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.04), transparent 45%);
}
.home-hero--pro .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.home-hero__main {
  min-width: 0;
}
.home-hero__aside {
  min-width: 0;
}
.home-hero__stat-card {
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.5rem;
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.home-hero__stat-card-title {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  font-weight: 700;
}
.home-hero__stat-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.home-hero__stat-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.home-hero__stat-list li:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.home-hero__stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.home-hero__stat-label {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.35;
}
@media (min-width: 480px) {
  .home-hero__stat-list li {
    grid-template-columns: 5.5rem 1fr;
  }
  .home-hero__stat-label { grid-column: 2; }
}
.home-hero__stat-cta {
  width: 100%;
}

/* GetGo-style: light booking card, trust shelf, promo tiles */
.home-hero--getgo .home-hero__content {
  max-width: 46rem;
}
.home-hero__h1 {
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 0.85rem;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #fff;
}
.home-hero .home-hero__h1 {
  /* override .hero h1 */
  margin-bottom: 0.85rem;
}
.home-hero__h1-accent {
  color: #ffd6d6;
}
.hero.home-hero .home-hero__subline {
  margin: 0 0 1.1rem;
  color: var(--gray-200);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 40rem;
}
.home-hero__subline strong { color: #fff; }
.home-hero__chips {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.home-hero__chips li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gray-200);
}
.home-hero__note { margin-top: 0.45rem; }

.home-book-widget {
  position: relative;
  border-radius: 18px;
  padding: 1.2rem 1.25rem 1.25rem;
  background: #f8f8fb;
  color: #141414;
  border: 2px solid rgba(229, 9, 20, 0.65);
  box-shadow:
    0 0 0 4px rgba(229, 9, 20, 0.12),
    0 32px 90px rgba(0, 0, 0, 0.55);
}
.home-book-widget::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.45) 0%, transparent 40%);
  opacity: 0.5;
}
.home-book-widget__head {
  position: relative;
  margin-bottom: 0.95rem;
}
.home-book-widget__head-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--red);
  color: #fff;
}
.home-book-widget__head-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #b0060f;
}
.home-book-widget__head-title {
  margin: 0.2rem 0 0;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  line-height: 1.2;
}
.home-book-widget__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8d8de;
  background: #fff;
}
.home-book-widget__tab {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  background: #fff;
  color: #444;
}
.home-book-widget__tab.is-active {
  background: var(--red);
  color: #fff;
}
.home-book-widget__tab--passive {
  text-decoration: none;
  color: #333;
  transition: background 0.15s;
}
.home-book-widget__tab--passive:hover {
  background: #f0f0f2;
  text-decoration: none;
  color: #111;
}
.home-book-widget__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
.home-book-widget__field--wide {
  grid-column: 1 / -1;
}
.home-book-widget__field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  margin-bottom: 0.35rem;
}
.home-book-widget__field select,
.home-book-widget__field input[type="date"] {
  width: 100%;
  padding: 0.62rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #c9c9d1;
  font-size: 0.92rem;
  font-family: inherit;
  background: #fff;
  color: #111;
  min-height: 2.75rem;
  line-height: 1.35;
  box-sizing: border-box;
}

/* Match date inputs: no heavy native select chrome (arrow / bevel) */
.home-book-widget__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2.35rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5 6 7.5 9 4.5' stroke='%2359606b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
}
.home-book-widget__field select::-ms-expand {
  display: none;
}
/* Optional focus ring consistent with date fields */
.home-book-widget__field select:focus,
.home-book-widget__field input[type="date"]:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
}
.home-book-widget__action {
  grid-column: 1 / -1;
}
.home-book-widget__search {
  width: 100%;
  padding: 0.8rem 1rem !important;
  font-size: 1rem !important;
  border-radius: 10px !important;
}
.home-book-widget__hint {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #2a2a2a;
  max-width: none;
}
.home-book-widget__hint strong {
  color: #0a0a0a;
  font-weight: 700;
}
.home-book-widget > * {
  position: relative;
  z-index: 1;
}

.home-trust-shelf {
  background: var(--gray-900);
  border-bottom: 1px solid var(--gray-700);
  padding: 1.75rem 0;
}
.home-trust-shelf__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.home-trust-shelf__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.home-trust-shelf__icon {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  background: rgba(229, 9, 20, 0.2);
  color: #ff6b6b;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-trust-shelf__title {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.home-trust-shelf__text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.45;
}

.home-promos__head { margin-bottom: 1.5rem; }
.home-promo-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}
.home-promo-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: var(--black);
  border: 1px solid var(--gray-700);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.12s;
}
.home-promo-card:hover {
  border-color: rgba(229, 9, 20, 0.55);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.home-promo-card__tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.home-promo-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-promo-card__meta {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.home-section-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}

section.section--tight { padding: 2.5rem 0; }
.home-drive-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--gray-700);
  background: linear-gradient(145deg, #1a1010 0%, var(--gray-900) 55%);
}
.home-drive-banner__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}
.home-drive-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--white);
}
.home-drive-banner__lead {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.92rem;
  max-width: 38rem;
  line-height: 1.5;
}
.home-drive-banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-phone-cta {
  padding: 0;
  background: var(--black);
}
.home-phone-cta__inner {
  text-align: center;
  padding: 2rem 1.25rem 2.25rem;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, #1f1414 0%, var(--black) 100%);
  border: 1px solid var(--gray-700);
  border-bottom: none;
}
.home-phone-cta__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-400);
}
.home-phone-cta__number {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.home-phone-cta__number:hover { text-decoration: underline; color: #fff; }
.home-phone-cta__or {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--gray-400);
}
.home-phone-cta__or a { font-weight: 600; }

.home-marquee {
  border-block: 1px solid var(--gray-700);
  background: linear-gradient(90deg, var(--black) 0%, var(--gray-900) 50%, var(--black) 100%);
  overflow: hidden;
  padding: 0.65rem 0;
}
.home-marquee__track {
  display: flex;
  width: max-content;
  animation: home-marquee 32s linear infinite;
}
.home-marquee__segment {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding-right: 2.5rem;
  color: var(--gray-400);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.home-marquee__segment span:not(.home-marquee__dot) {
  color: var(--gray-200);
}
.home-marquee__dot {
  color: rgba(229, 9, 20, 0.65);
  user-select: none;
}
@keyframes home-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .home-marquee__track { animation: none; }
  .home-marquee__track { justify-content: center; flex-wrap: wrap; width: 100%; max-width: 100%; }
}

.home-managed-intro {
  padding: 1.75rem 0 0.5rem;
  border-bottom: 1px solid var(--gray-800);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}
.home-managed-intro__prose {
  max-width: 52rem;
}
.home-managed-intro .content-page__empty-note {
  margin-bottom: 0;
}

.home-values__head { margin-bottom: 1.75rem; }
.home-value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.home-value-card {
  border-radius: 14px;
  padding: 1.25rem 1.3rem 1.35rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}
.home-value-card:hover {
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.home-value-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(229, 9, 20, 0.12);
  color: #ff6b6b;
  margin-bottom: 0.85rem;
}
.home-value-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.home-value-card__body {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.5;
}

@media (min-width: 900px) {
  .home-steps.home-steps--linked {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.35rem 0.15rem;
    align-items: stretch;
  }
  .home-steps__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    flex-shrink: 0;
    color: rgba(229, 9, 20, 0.45);
    align-self: center;
    margin-top: -1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-step:hover {
    transform: none;
  }
}

.home-themes__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}
.home-theme-card {
  margin: 0;
  padding: 1.25rem 1.3rem;
  border-radius: 14px;
  background: var(--black);
  border: 1px solid var(--gray-700);
  transition: border-color 0.15s;
}
.home-theme-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.home-theme-card__quote {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray-200);
  line-height: 1.5;
}
.home-theme-card__cap {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 700;
}

.home-blog__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}
.home-blog__head .section-head { margin-bottom: 0; }
.home-blog__head-btn { flex-shrink: 0; }
.home-blog__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}
.home-blog-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  background: var(--black);
  transition: border-color 0.15s, transform 0.15s;
}
.home-blog-card:hover {
  border-color: rgba(229, 9, 20, 0.45);
  transform: translateY(-2px);
}
.home-blog-card__link {
  display: block;
  padding: 1.2rem 1.25rem 1.25rem;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.home-blog-card__link:hover { color: inherit; text-decoration: none; }
.home-blog-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.home-blog-card__excerpt {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  color: var(--gray-400);
  line-height: 1.45;
}
.home-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.home-blog-card__arrow { color: var(--red); font-weight: 700; }

/* Blog index + article */
.blog-section { padding-top: 2.5rem; }
.blog-section--article { padding-bottom: 2.5rem; }
.blog-section__breadcrumb { margin-bottom: 0.25rem; }

.blog-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.blog-header__copy {
  flex: 1 1 min(100%, 36rem);
  min-width: min(100%, 280px);
}
.blog-header__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}
.blog-header__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.blog-header__lead {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 42rem;
}
.blog-header__meta {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--gray-400);
}
.blog-header__meta strong { color: var(--gray-200); }
.blog-header__actions {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.blog-index__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.blog-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
  transition: border-color 0.15s, transform 0.12s;
  height: 100%;
}
.blog-card:hover {
  border-color: rgba(229, 9, 20, 0.45);
  transform: translateY(-2px);
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 1.2rem 1.25rem 1.25rem;
  color: inherit;
  text-decoration: none;
}
.blog-card__link:hover { color: inherit; text-decoration: none; }
.blog-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.blog-card__excerpt {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.45;
  flex: 1 1 auto;
}
.blog-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.blog-card__foot time { color: var(--gray-400); }
.blog-card__arrow { color: var(--red); font-weight: 700; }

.blog-index__empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--gray-700);
  border-radius: 12px;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.5;
}
.blog-index__empty a { color: #ff6b6b; font-weight: 600; text-decoration: none; }
.blog-index__empty a:hover { text-decoration: underline; }

.blog-pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.blog-pagination .pagination { margin-top: 0; justify-content: center; }

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin: 0 0 0.65rem;
}
.blog-article__meta time { color: var(--gray-300); }
.blog-article__dot { opacity: 0.45; user-select: none; }
.blog-article__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.blog-article__deck {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.blog-show-cta {
  margin: 2.5rem 0 0;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--gray-700);
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, var(--gray-900) 55%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: min(1100px, 100%);
}
.blog-show-cta__copy {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.45;
  flex: 1 1 14rem;
}
.blog-show-cta__actions {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-more {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
}
.blog-more__title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: -0.02em;
}

.blog-card__media {
  aspect-ratio: 16 / 10;
  margin: -1.2rem -1.25rem 0.85rem;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-700);
  background: linear-gradient(145deg, var(--gray-700), var(--black));
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}
.blog-card__media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 8.5rem;
  background:
    linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 55%, rgba(229, 9, 20, 0.1) 100%);
}

.blog-article__hero {
  margin: 0 0 2rem;
  border-radius: 0;
  overflow: visible;
  border: none;
  max-width: 1100px;
  box-shadow: none;
}
.blog-article__hero-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  border-radius: 16px;
  border: 1px solid var(--gray-700);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.blog-article__hero--fallback .blog-article__hero-img {
  border-color: rgba(229, 9, 20, 0.35);
}

.blog-article__body.prose img {
  border-radius: 10px;
  border: 1px solid var(--gray-700);
  max-width: 100%;
  height: auto;
  margin: 1.1rem 0;
}
.blog-article__body.prose figure {
  margin: 1.25rem 0;
}
.blog-article__body.prose figcaption {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.45rem;
}

.blog-gallery-wrap {
  margin: 2.5rem 0 0;
  max-width: 1100px;
}
.blog-gallery__heading {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.blog-gallery {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
}
.blog-gallery__item {
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  transition: border-color 0.15s, transform 0.12s;
}
.blog-gallery__item:hover {
  border-color: rgba(229, 9, 20, 0.45);
  transform: translateY(-2px);
}
.blog-gallery__thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.blog-lightbox {
  padding: 0;
  border: none;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  background: transparent;
}
.blog-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}
.blog-lightbox__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3.5rem 1rem 1rem;
  box-sizing: border-box;
}
.blog-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  border: 1px solid var(--gray-600);
  background: var(--gray-900);
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-lightbox__close:hover {
  border-color: var(--red);
  color: #ff6b6b;
}
.blog-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  pointer-events: none;
}

.blog-detail__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.75rem;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.92) 0%, rgba(18, 18, 18, 0.96) 100%);
  border: 1px solid var(--gray-700);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.blog-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff6b6b;
  text-decoration: none;
}
.blog-detail__back:hover { text-decoration: underline; color: #ff8a8a; }
.blog-detail__back-icon { font-size: 1.1rem; line-height: 1; }
.blog-detail__toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.blog-detail__btn {
  font-size: 0.88rem;
  padding: 0.48rem 1rem;
  font-weight: 600;
}

.blog-detail__grid {
  display: grid;
  gap: 2rem 2.75rem;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  align-items: start;
}
@media (max-width: 960px) {
  .blog-detail__grid {
    grid-template-columns: 1fr;
  }
  .blog-detail__aside {
    order: -1;
  }
  .blog-detail__sticky {
    position: static;
  }
  .blog-detail__btn--hide-mobile {
    display: none !important;
  }
}

.blog-detail__aside {
  min-width: 0;
}
.blog-detail__sticky {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-toc {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(229, 9, 20, 0.4);
  background: linear-gradient(165deg, rgba(42, 42, 42, 0.98) 0%, rgba(12, 12, 12, 0.98) 55%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}
.blog-toc__label {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #ff6b6b;
}
.blog-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.blog-toc__list a {
  display: block;
  font-size: 0.87rem;
  line-height: 1.4;
  color: var(--gray-300);
  text-decoration: none;
  padding: 0.25rem 0;
  border-left: 3px solid transparent;
  padding-left: 0.6rem;
  margin-left: -0.6rem;
}
.blog-toc__list a:hover { color: var(--white); }
.blog-toc__list a.is-active {
  color: #ff6b6b;
  border-left-color: var(--red);
  font-weight: 600;
}
.blog-toc__sub a {
  font-size: 0.82rem;
  padding-left: 1.1rem;
  margin-left: 0;
  border-left: none;
  color: var(--gray-400);
}

.blog-detail__mini {
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 2px solid rgba(229, 9, 20, 0.45);
  background: linear-gradient(145deg, rgba(229, 9, 20, 0.12) 0%, rgba(14, 14, 14, 0.98) 50%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.blog-detail__mini-label {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #ff6b6b;
}
.blog-detail__mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.blog-detail__mini-list a {
  font-size: 0.9rem;
  color: var(--gray-200);
  text-decoration: none;
  font-weight: 600;
}
.blog-detail__mini-list a:hover { color: #ff6b6b; }

.blog-detail__main {
  min-width: 0;
}

.blog-detail__main .blog-article__meta {
  font-size: 0.88rem;
}
.blog-detail__main .blog-article__header {
  max-width: 48rem;
  margin: 0.35rem 0 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-700);
}
.blog-detail__main .blog-article__body {
  max-width: 48rem;
}

.blog-article__updated {
  color: var(--gray-400);
}
.blog-article__updated time {
  color: var(--gray-300);
}

.blog-post-nav {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gray-700);
  max-width: 1100px;
}
.blog-post-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.blog-post-nav__grid--single {
  grid-template-columns: 1fr;
}
@media (max-width: 640px) {
  .blog-post-nav__grid:not(.blog-post-nav__grid--single) {
    grid-template-columns: 1fr;
  }
  .blog-post-nav__card--next {
    text-align: left;
  }
}
.blog-post-nav__card--only-next {
  text-align: left;
}
.blog-post-nav__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.12s;
}
.blog-post-nav__card:hover {
  border-color: rgba(229, 9, 20, 0.45);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.blog-post-nav__card--next {
  text-align: right;
}
.blog-post-nav__dir {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff6b6b;
}
.blog-post-nav__post-title {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}

.blog-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  border: 1px solid var(--gray-600);
  background: rgba(15, 15, 15, 0.75);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s, background 0.15s;
}
.blog-lightbox__nav:hover {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.25);
  color: #ff6b6b;
}
.blog-lightbox__nav--prev { left: max(0.5rem, env(safe-area-inset-left)); }
.blog-lightbox__nav--next { right: max(0.5rem, env(safe-area-inset-right)); }

.blog-lightbox__cap {
  margin: 1rem auto 0;
  max-width: min(92vw, 640px);
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.45;
}

.blog-article__body.prose blockquote {
  margin: 1.35rem 0;
  padding: 0.85rem 1rem 0.85rem 1.1rem;
  border-left: 4px solid var(--red);
  background: rgba(229, 9, 20, 0.06);
  border-radius: 0 8px 8px 0;
  color: var(--gray-200);
  font-style: italic;
}
.blog-article__body.prose blockquote p:last-child {
  margin-bottom: 0;
}

.blog-article__body.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.12rem 0.38rem;
  border-radius: 4px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: #ffb4b4;
}

.blog-article__body.prose pre {
  margin: 1.15rem 0;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--gray-700);
  background: #0d0d0d;
  overflow-x: auto;
  font-size: 0.86rem;
  line-height: 1.5;
}
.blog-article__body.prose pre code {
  padding: 0;
  border: none;
  background: none;
  color: var(--gray-200);
  font-size: inherit;
}

.blog-article__body.prose hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--gray-700);
}

.blog-article__body.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.15rem 0;
  font-size: 0.92rem;
}
.blog-article__body.prose th,
.blog-article__body.prose td {
  border: 1px solid var(--gray-700);
  padding: 0.55rem 0.65rem;
  text-align: left;
}
.blog-article__body.prose th {
  background: var(--gray-900);
  color: var(--white);
  font-weight: 600;
}
.blog-article__body.prose ul,
.blog-article__body.prose ol {
  padding-left: 1.35rem;
  margin: 0 0 1rem;
}
.blog-article__body.prose li {
  margin: 0.35rem 0;
}

.home-cta-band {
  padding: 3rem 0;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.14) 0%, transparent 45%),
    var(--gray-900);
  border-block: 1px solid var(--gray-700);
}
.home-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
}
.home-cta-band__copy { flex: 1 1 280px; min-width: min(100%, 280px); }
.home-cta-band__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
}
.home-cta-band__lead {
  margin: 0 0 1rem;
  color: var(--gray-400);
  font-size: 0.92rem;
  max-width: 38rem;
  line-height: 1.5;
}
.home-cta-band__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
}
.home-cta-band__links a {
  color: #ff6b6b;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}
.home-cta-band__links a:hover { text-decoration: underline; }
.home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.home-faq__details details {
  scroll-margin-top: 5rem;
}
@media (min-width: 900px) {
  .home-faq__details {
    columns: 2;
    column-gap: clamp(1.5rem, 4vw, 2.5rem);
  }
  .home-faq__details > details {
    break-inside: avoid;
    margin-bottom: 0.35rem;
  }

  .home-hero.home-hero--pro {
    min-height: 85vh;
    padding: 5rem 0 4.25rem;
    align-items: center;
  }
  .home-hero--pro .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 2.5rem 3rem;
    align-items: center;
  }
}
@media (max-width: 899px) {
  .home-hero__aside {
    order: -1;
    margin-top: 0;
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .home-hero__main {
    order: 0;
  }
}

.prose {
  color: var(--gray-200);
  max-width: 720px;
}
.prose h2, .prose h3 { color: var(--white); margin-top: 1.75rem; }
.prose p { margin: 0 0 1rem; }
.prose a { color: #ff6b6b; }

/* Legal documents (terms, privacy, refund) */
.legal-doc {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}
.legal-doc__breadcrumb {
  margin-bottom: 1.25rem;
}
.legal-doc__header {
  margin-bottom: 2rem;
  max-width: 900px;
}
.legal-doc__title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.legal-doc__intro {
  margin: 0 0 1rem;
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.65;
}
.legal-doc__meta {
  font-size: 0.85rem;
  color: var(--gray-400);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.legal-doc__meta-sep { opacity: 0.5; }
.legal-doc__print {
  margin: 0;
  padding: 0.35rem 0.75rem !important;
  font-size: 0.8rem !important;
}
.legal-doc__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .legal-doc__grid {
    grid-template-columns: 220px 1fr;
  }
}
.legal-doc__aside {
  position: sticky;
  top: 5.5rem;
  padding: 1rem 1.1rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
}
.legal-doc__toc-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}
.legal-doc__toc {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.legal-doc__toc a {
  font-size: 0.82rem;
  color: var(--gray-300);
  text-decoration: none;
  line-height: 1.35;
  border-left: 2px solid transparent;
  padding-left: 0.5rem;
  margin-left: -0.5rem;
}
.legal-doc__toc a:hover {
  color: var(--white);
  border-left-color: var(--red);
}
.legal-doc__article {
  max-width: 820px;
}
.legal-doc__article.prose h2 {
  scroll-margin-top: 5.5rem;
  font-size: 1.2rem;
  margin-top: 2.25rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gray-700);
}
.legal-doc__article.prose h2:first-of-type {
  margin-top: 0;
}
.legal-doc__article.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-doc__article.prose li {
  margin-bottom: 0.45rem;
}
.legal-doc__related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-700);
}
.legal-doc__related-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}
.legal-doc__related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.legal-doc__related-list a {
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
}
@media print {
  .site-header,
  .mobile-app-dock,
  .wa-float,
  .site-footer,
  .legal-doc__aside,
  .legal-doc__print,
  .legal-doc__related {
    display: none !important;
  }
  .legal-doc__grid {
    display: block;
  }
  .legal-doc__article {
    max-width: none;
  }
}

.location-prose {
  max-width: 820px;
  font-size: 1.02rem;
}
.location-prose p { margin: 0 0 1.1rem; }

.content-page {
  padding-top: 1.5rem;
}
.content-page__breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
}
.content-page__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-700);
}
.content-page__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.content-page__body {
  margin-bottom: 2.5rem;
}
.content-page__body h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.content-page__body h3 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 650;
}
.content-page__body ul,
.content-page__body ol {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}
.content-page__body a {
  color: var(--red);
}

.content-page__empty-note {
  padding: 1.25rem 1.35rem;
  border-radius: 10px;
  border: 1px dashed var(--gray-600);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gray-300);
  margin-bottom: 2rem;
}
.content-page__empty-note p {
  margin: 0;
  line-height: 1.55;
}

.pages-index__lead {
  margin: 0 0 1.75rem;
  max-width: 52rem;
  color: var(--gray-400);
  line-height: 1.55;
}
.pages-index__h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pages-index__hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.pages-index__list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.pages-index__list li {
  margin: 0 0 0.65rem;
  padding: 0;
}
.pages-index__link {
  font-weight: 650;
  color: var(--white);
  text-decoration: none;
}
.pages-index__link:hover {
  color: var(--red);
}
.pages-index__meta {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
  font-family: ui-monospace, Menlo, monospace;
}
.pages-index__list--cards .pages-index__card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--gray-700);
  border-radius: 12px;
  background: var(--gray-900);
  margin-bottom: 1rem;
}
.pages-index__card-title {
  display: inline-block;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.pages-index__card-title:hover {
  color: var(--red);
}
.pages-index__card-url {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0.35rem 0 0.5rem;
  word-break: break-all;
}
.pages-index__excerpt {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.5;
}
.pages-index__excerpt--muted {
  color: var(--gray-500);
  font-style: italic;
}

.form-wrap {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  padding: 1.75rem;
}
.form-wrap h2 { margin: 0 0 1rem; font-size: 1.35rem; }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 0.35rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--gray-700);
  background: var(--black);
  color: var(--white);
  font: inherit;
  margin-bottom: 1rem;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 0;
  border-color: var(--red);
}

.form-grid {
  display: grid;
  gap: 0 1rem;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Enquiry / WhatsApp panel */
.enquiry-panel {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 2rem;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--gray-900) 72%, transparent) 0%, color-mix(in srgb, var(--black) 88%, var(--gray-900)) 100%);
  border: 1px solid color-mix(in srgb, var(--gray-700) 75%, transparent);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--white) 5%, transparent) inset,
    0 24px 56px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.enquiry-panel::before {
  content: "";
  position: absolute;
  inset: auto -30% -45% auto;
  width: min(420px, 85%);
  height: min(240px, 55%);
  background: radial-gradient(ellipse at center, color-mix(in srgb, #25d366 12%, transparent) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.9;
}
@media (min-width: 720px) {
  .enquiry-panel {
    padding: 2rem 2.25rem 2.25rem;
  }
}

.enquiry-panel__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.enquiry-panel__brand {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, color-mix(in srgb, #25d366 22%, var(--gray-900)) 0%, var(--gray-900) 100%);
  border: 1px solid color-mix(in srgb, #25d366 35%, var(--gray-700));
  color: #25d366;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.enquiry-panel__wa-icon {
  display: block;
  opacity: 0.95;
}
.enquiry-panel__intro {
  min-width: 0;
}
.enquiry-panel__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.enquiry-panel__subtitle {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 46rem;
}

.enquiry-panel__flow {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.35rem;
  align-items: center;
}
.enquiry-panel__flow-step {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.02em;
}
.enquiry-panel__flow-step + .enquiry-panel__flow-step::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: var(--gray-700);
  margin-right: 0.35rem;
  vertical-align: middle;
}
.enquiry-panel__flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--black) 40%, var(--gray-900));
  border: 1px solid var(--gray-700);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--white);
}

.enquiry-panel__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.enquiry-panel__fieldset {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.enquiry-panel__legend {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 0.85rem;
  padding: 0;
}
.enquiry-panel__legend-opt {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  text-transform: none;
}

.enquiry-panel__grid {
  display: grid;
  gap: 1rem 1.15rem;
}
@media (min-width: 640px) {
  .enquiry-panel__grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.enquiry-panel__field label {
  margin-bottom: 0.4rem;
}
.enquiry-panel__field input,
.enquiry-panel__field select {
  margin-bottom: 0;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--gray-700) 90%, transparent);
  background-color: color-mix(in srgb, var(--black) 65%, var(--gray-900));
  color: var(--white);
  font: inherit;
  line-height: 1.35;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
/* Native selects — match datetime inputs (no OS chrome arrow) */
.enquiry-panel__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2.65rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%238c8c8c' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 1.125rem 1.125rem;
}
.enquiry-panel__field select option,
.enquiry-panel__field select optgroup {
  background: var(--gray-900);
  color: var(--white);
}
.enquiry-panel__field input:hover,
.enquiry-panel__field select:hover {
  border-color: color-mix(in srgb, var(--gray-500) 50%, var(--gray-700));
}
.enquiry-panel__field input:focus,
.enquiry-panel__field select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--red) 55%, var(--gray-700));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 14%, transparent);
}

.enquiry-panel__error {
  margin-top: 0.4rem;
  margin-bottom: 0;
  color: #ff8a8a;
  font-size: 0.85rem;
  line-height: 1.35;
}

.enquiry-panel__inline-action {
  margin: 0.65rem 0 0;
}
.enquiry-panel__text-btn {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: color-mix(in srgb, var(--red) 45%, transparent);
}
.enquiry-panel__text-btn:hover {
  color: color-mix(in srgb, var(--white) 15%, var(--red));
}

.enquiry-panel__submit-wrap {
  padding-top: 0.25rem;
}
.enquiry-panel__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 650;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--red) 28%, transparent);
}
.enquiry-panel__submit svg {
  flex-shrink: 0;
  opacity: 0.95;
}
.enquiry-panel__submit:hover {
  box-shadow: 0 14px 32px color-mix(in srgb, var(--red) 34%, transparent);
}

.enquiry-panel__fineprint {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gray-500);
  max-width: 40rem;
}
.enquiry-panel__lock {
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.85;
  color: var(--gray-400);
}

.error { color: #ff8a8a; font-size: 0.85rem; margin: -0.5rem 0 0.75rem; }

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-700);
  font-size: 0.9rem;
  color: var(--gray-400);
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.footer-grid h4 { color: var(--white); margin: 0 0 0.5rem; font-size: 0.95rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.35rem; }
.footer-grid a { color: var(--gray-400); }
.footer-grid a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-700);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--gray-400);
}

.footer-copy {
  margin: 0;
  flex: 0 1 auto;
  text-align: left;
}

.footer-credit {
  margin: 0;
  flex: 0 0 auto;
  text-align: right;
  margin-left: auto;
}

@media (max-width: 36rem) {
  .footer-bottom {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .footer-credit {
    margin-left: 0;
    text-align: left;
    width: 100%;
  }
}

.footer-credit a {
  color: var(--gray-300);
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--red);
  text-decoration: underline;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  font-size: 1.6rem;
  line-height: 1;
}
.wa-float:hover { filter: brightness(1.08); text-decoration: none; color: #fff; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin: 1rem 0 0;
}
.breadcrumb a { color: var(--gray-400); }

.list-locations {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-locations a {
  display: block;
  padding: 0.9rem 1rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 6px;
  color: var(--white);
}
.list-locations a:hover { border-color: var(--red); text-decoration: none; }

/* —— Locations index — modern business hub —— */
.loc-index {
  --loc-card-radius: 1.25rem;
  --loc-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --loc-card-shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px color-mix(in srgb, var(--white) 8%, transparent);
  --loc-surface: color-mix(in srgb, var(--gray-900) 88%, var(--black));
  --loc-chip-airport: #60a5fa;
  --loc-chip-hub: #c084fc;
  --loc-chip-area: #4ade80;
  --loc-chip-town: #facc15;
}

.loc-index__breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
}
.loc-index__breadcrumb a:hover { color: var(--white); }

.loc-index__hero {
  margin-bottom: 2.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--gray-700) 55%, transparent);
}

.loc-index__hero-card {
  display: grid;
  gap: 1.75rem;
  padding: 1.75rem 1.5rem 2rem;
  border-radius: calc(var(--loc-card-radius) + 4px);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--gray-900) 55%, transparent) 0%, color-mix(in srgb, var(--black) 92%, var(--gray-900)) 100%);
  border: 1px solid color-mix(in srgb, var(--gray-700) 72%, transparent);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--white) 6%, transparent) inset,
    0 28px 64px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}
.loc-index__hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: min(520px, 90%);
  height: min(320px, 70%);
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--red) 22%, transparent) 0%, transparent 68%);
  pointer-events: none;
  opacity: 0.85;
}
@media (min-width: 960px) {
  .loc-index__hero-card {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
    gap: 2rem;
    padding: 2.25rem 2.5rem 2.5rem;
  }
}

.loc-index__hero-copy {
  position: relative;
  z-index: 1;
}

.loc-index__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.loc-index__eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--red);
  margin-right: 0.5rem;
  vertical-align: middle;
  border-radius: 2px;
}

.loc-index__title {
  font-size: clamp(2rem, 4.6vw, 2.875rem);
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 750;
}
.loc-index__title-accent {
  color: color-mix(in srgb, var(--white) 12%, var(--red));
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
  text-decoration-color: color-mix(in srgb, var(--red) 55%, transparent);
}
.loc-index__lead {
  margin: 0;
  color: var(--gray-300);
  max-width: 36rem;
  font-size: 1.025rem;
  line-height: 1.6;
}

.loc-index__hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin: 1.35rem 0 0;
}
.loc-index__hero-cta,
.loc-index__hero-cta-secondary {
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.loc-index__hero-cta-secondary {
  border-color: color-mix(in srgb, var(--gray-400) 45%, var(--gray-700));
  background: color-mix(in srgb, var(--black) 45%, transparent);
}

.loc-index__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
@media (min-width: 520px) {
  .loc-index__stats { grid-template-columns: repeat(4, 1fr); }
}
.loc-index__stats li {
  padding: 0.875rem 1rem 0.9rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--black) 35%, var(--loc-surface));
  border: 1px solid color-mix(in srgb, var(--gray-700) 75%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.loc-index__stats li:hover {
  border-color: color-mix(in srgb, var(--red) 28%, var(--gray-700));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--red) 12%, transparent);
}
.loc-index__stats strong {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.loc-index__stats span {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  font-weight: 600;
}

.loc-index__hero-aside {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: 200px;
}
.loc-index__hero-visual {
  flex: 1;
  border-radius: var(--loc-card-radius);
  min-height: 200px;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gray-700) 55%, transparent);
  background: var(--gray-900);
}
.loc-index__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.loc-index__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
}
.loc-index__hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(200deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.35) 45%, rgba(10, 10, 10, 0.78) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}
.loc-index__hero-pin {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--red) 25%, transparent);
  z-index: 2;
  animation: loc-hero-pin 2.4s ease-in-out infinite;
}
.loc-index__hero-pin--1 { top: 26%; left: 22%; animation-delay: 0s; }
.loc-index__hero-pin--2 { top: 44%; left: 58%; animation-delay: 0.35s; }
.loc-index__hero-pin--3 { top: 62%; left: 38%; animation-delay: 0.7s; }
@keyframes loc-hero-pin {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--red) 22%, transparent); transform: scale(1); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--red) 8%, transparent); transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .loc-index__hero-pin { animation: none; }
}

.loc-index__hero-visual-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem 0.5rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-200);
  background: color-mix(in srgb, var(--black) 45%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
}
.loc-index__hero-visual-tag-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px color-mix(in srgb, var(--red) 65%, transparent);
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .loc-index__hero-aside { min-height: 0; }
  .loc-index__hero-visual { min-height: 100%; min-height: 260px; }
}

/* Spotlight featured */
.loc-index__spotlight {
  margin-bottom: 2.25rem;
}
.loc-index__spotlight-head {
  margin-bottom: 1.25rem;
}
.loc-index__h2 {
  font-size: 1.125rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}
.loc-index__sub {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.9375rem;
  max-width: 40rem;
  line-height: 1.5;
}
.loc-index__spotlight-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .loc-index__spotlight-grid { grid-template-columns: repeat(3, 1fr); }
}

.loc-index__spot-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--loc-card-radius);
  overflow: hidden;
  background: var(--loc-surface);
  border: 1px solid color-mix(in srgb, var(--gray-700) 70%, transparent);
  box-shadow: var(--loc-card-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.2s ease;
}
.loc-index__spot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--loc-card-shadow-hover);
  border-color: color-mix(in srgb, var(--gray-500) 40%, transparent);
  text-decoration: none;
  color: inherit;
}
.loc-index__spot-media {
  position: relative;
  overflow: hidden;
}
.loc-index__spot-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.loc-index__spot-card:hover .loc-index__spot-media img {
  transform: scale(1.06);
}
.loc-index__spot-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 10, 10, 0.82) 100%);
  pointer-events: none;
}
.loc-index__spot-chip {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 1;
}
.loc-index__spot-body {
  padding: 1.125rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.loc-index__spot-name {
  font-weight: 750;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.loc-index__spot-sub {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.4;
}
.loc-index__spot-cta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.loc-index__spot-cta::after {
  content: "→";
  transition: transform 0.2s ease;
}
.loc-index__spot-card:hover .loc-index__spot-cta::after {
  transform: translateX(4px);
}

/* Toolbar */
.loc-index__toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: var(--loc-surface);
  border: 1px solid color-mix(in srgb, var(--gray-700) 75%, transparent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
@media (min-width: 860px) {
  .loc-index__toolbar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.35rem;
  }
}
.loc-index__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.loc-index__filter {
  border: 1px solid transparent;
  background: color-mix(in srgb, var(--black) 55%, var(--gray-900));
  color: var(--gray-300);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.loc-index__filter:hover {
  color: var(--white);
  background: color-mix(in srgb, var(--gray-700) 40%, var(--black));
  border-color: var(--gray-700);
}
.loc-index__filter.is-active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.loc-index__filter.is-active:hover {
  background: var(--gray-200);
  color: var(--black);
}

.loc-index__search-wrap {
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}
.loc-index__search {
  width: 100%;
  padding: 0.625rem 1rem 0.625rem 2.75rem;
  border-radius: 12px;
  border: 1px solid var(--gray-700);
  background: var(--black) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%238c8c8c' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat 0.95rem 50%;
  background-size: 18px 18px;
  color: var(--white);
  font-size: 0.9rem;
}
.loc-index__search::placeholder { color: var(--gray-500); }
.loc-index__search:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--red) 65%, var(--gray-700));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 18%, transparent);
}

.loc-index__empty {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--gray-900) 70%, var(--black));
  border: 1px dashed var(--gray-700);
  color: var(--gray-400);
  font-size: 0.9375rem;
  text-align: center;
}
.loc-index__empty--hidden { display: none; }

/* Location cards grid */
.loc-index__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .loc-index__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1180px) {
  .loc-index__grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.loc-index__cell--hidden { display: none !important; }

.loc-index__card {
  height: 100%;
  border-radius: var(--loc-card-radius);
  background: var(--loc-surface);
  border: 1px solid color-mix(in srgb, var(--gray-700) 65%, transparent);
  box-shadow: var(--loc-card-shadow);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.2s ease;
}
.loc-index__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--loc-card-shadow-hover);
  border-color: color-mix(in srgb, var(--gray-500) 35%, transparent);
}

.loc-index__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.loc-index__card-link:hover { text-decoration: none; color: inherit; }

.loc-index__card-media {
  position: relative;
  overflow: hidden;
}
.loc-index__card-media img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.loc-index__card:hover .loc-index__card-media img {
  transform: scale(1.05);
}
.loc-index__card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.65) 100%);
  pointer-events: none;
}

/* Type chips — refined */
.loc-index__chip {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 1;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
  color: var(--gray-200);
}
.loc-index__chip--airport {
  border-color: color-mix(in srgb, var(--loc-chip-airport) 45%, transparent);
  color: var(--loc-chip-airport);
}
.loc-index__chip--hub {
  border-color: color-mix(in srgb, var(--loc-chip-hub) 45%, transparent);
  color: var(--loc-chip-hub);
}
.loc-index__chip--area {
  border-color: color-mix(in srgb, var(--loc-chip-area) 45%, transparent);
  color: var(--loc-chip-area);
}
.loc-index__chip--town {
  border-color: color-mix(in srgb, var(--loc-chip-town) 45%, transparent);
  color: var(--loc-chip-town);
}

.loc-index__card-body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  border-top: 1px solid color-mix(in srgb, var(--gray-700) 50%, transparent);
}
.loc-index__card-title {
  font-size: 1.125rem;
  font-weight: 750;
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.loc-index__card-sub {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.4;
}
.loc-index__card-excerpt {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.loc-index__card-foot {
  margin-top: 0.75rem;
  padding-top: 0.875rem;
  border-top: 1px solid color-mix(in srgb, var(--gray-700) 40%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.loc-index__card-cta {
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.loc-index__card-cta .loc-index__card-cta-arrow {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.loc-index__card:hover .loc-index__card-cta .loc-index__card-cta-arrow {
  transform: translateX(2px);
  background: var(--red-dark);
  color: #fff;
}
.loc-index__card-meta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.gallery {
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.gallery img {
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.faq details {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.6rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
}
.faq p { margin: 0.75rem 0 0; color: var(--gray-400); font-size: 0.95rem; }

.pagination { display: flex; flex-wrap: wrap; gap: 0.35rem; padding: 0; list-style: none; margin: 2rem 0 0; }
.page-link { display: block; padding: 0.45rem 0.8rem; border: 1px solid var(--gray-700); border-radius: 4px; color: var(--gray-200); background: var(--gray-900); text-decoration: none; }
.page-item.active .page-link { background: var(--red); border-color: var(--red); color: #fff; }
.page-item.disabled .page-link { opacity: 0.4; pointer-events: none; }

/* Fleet - advanced image grid */
.container--fleet {
  width: min(1320px, 100% - 2rem);
}
.fleet-section { padding-top: 2.5rem; }

.fleet-trip-context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(229, 9, 20, 0.45);
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.12) 0%, var(--gray-900) 65%);
}
.fleet-trip-context__title {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff6b6b;
}
.fleet-trip-context__body {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-200);
  line-height: 1.4;
}
.fleet-trip-context__sep {
  color: var(--gray-400);
  margin: 0 0.25rem;
}
.fleet-trip-context__cta {
  flex-shrink: 0;
}
.fleet-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.fleet-header__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.fleet-header__lead {
  margin: 0;
  max-width: 40rem;
  color: var(--gray-400);
  font-size: 1rem;
}
.fleet-header__cta { flex-shrink: 0; }

.fleet-filters {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
  padding: 1.15rem 1.25rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
}
.fleet-filters__group { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.65rem 1rem; }
.fleet-filters__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  min-width: 5rem;
}
.fleet-filters__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.fleet-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--gray-700);
  color: var(--gray-200);
  background: var(--black);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.fleet-pill:hover {
  border-color: var(--gray-400);
  color: var(--white);
  text-decoration: none;
}
.fleet-pill.is-active {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.12);
  color: var(--white);
}
.fleet-pill__count {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
}
.fleet-pill.is-active .fleet-pill__count { color: #ff8a8a; }

.fleet-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-400);
}

.fleet-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
@media (min-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}

.fleet-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
}
.fleet-card:hover {
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}
.fleet-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.fleet-card__link:hover { text-decoration: none; color: inherit; }

.fleet-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #222, #0a0a0a);
}
.fleet-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.fleet-card__img--secondary {
  opacity: 0;
}
.fleet-card:hover .fleet-card__img--primary {
  transform: scale(1.06);
}
.fleet-card:hover .fleet-card__img--secondary {
  opacity: 1;
  transform: scale(1.04);
}
.fleet-card:not(:has(.fleet-card__img--secondary)):hover .fleet-card__img--primary {
  transform: scale(1.05);
}

.fleet-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.fleet-card:hover .fleet-card__overlay { opacity: 1; }
.fleet-card__overlay-cta {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fleet-card__overlay-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

.fleet-card__badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  z-index: 2;
  pointer-events: none;
}
.fleet-chip {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(6px);
}

.fleet-card__gallery-badge {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.fleet-card__gallery-icon {
  width: 14px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  box-shadow: 4px -2px 0 -1px rgba(255, 255, 255, 0.5);
}

.fleet-card__body {
  padding: 1.1rem 1.15rem 1.2rem;
}
.fleet-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.fleet-card__meta {
  margin: 0;
  font-size: 0.84rem;
  color: var(--gray-400);
}
.fleet-card__footer { margin: 0.75rem 0 0; }
.fleet-card__linktext {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
}

@media (prefers-reduced-motion: reduce) {
  .fleet-card,
  .fleet-card__img,
  .fleet-card__overlay {
    transition: none;
  }
  .fleet-card:hover { transform: none; }
  .fleet-card:hover .fleet-card__img--primary { transform: none; }
}

/* Car detail page */
.car-detail { padding-top: 2rem; }
.car-detail__breadcrumb { margin-bottom: 1.25rem; }
.car-detail__hero {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.75rem;
}
@media (min-width: 960px) {
  .car-detail__hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 2.25rem;
  }
}
.car-detail__stage {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
  aspect-ratio: 16 / 10;
}
.car-detail__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-detail__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}
.car-detail__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-900);
  opacity: 0.75;
  transition: opacity 0.15s, border-color 0.15s;
}
.car-detail__thumb:hover,
.car-detail__thumb.is-active {
  opacity: 1;
  border-color: var(--red);
}
.car-detail__thumb img {
  width: 88px;
  height: 55px;
  object-fit: cover;
  display: block;
}
.car-detail__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.car-detail__tagline {
  font-size: 1.08rem;
  color: var(--gray-200);
  margin: 0 0 0.65rem;
  max-width: 36rem;
}
.car-detail__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 1rem;
}
.car-detail__badges { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.65rem; }
.car-detail__quick {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.car-detail__quick li {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
}
.car-detail__quick span { display: block; color: var(--gray-400); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.car-detail__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 0.75rem; }
.car-detail__note { font-size: 0.82rem; color: var(--gray-400); margin: 0; max-width: 34rem; }

.car-detail__h2 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.car-detail__specs-wrap {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-700);
}
.car-detail__specs {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.car-detail__spec {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}
.car-detail__spec--wide { grid-column: 1 / -1; }
.car-detail__spec-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.35rem;
}
.car-detail__spec-value { font-size: 0.95rem; color: var(--gray-200); }
.car-detail__highlights {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--gray-200);
  max-width: 52rem;
}
.car-detail__highlights li { margin-bottom: 0.4rem; }

.car-detail__seo { margin-bottom: 2.5rem; }
.car-detail__prose { max-width: 48rem; }
.car-detail__prose--long { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-700); }

.car-detail__internal-links {
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.25rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
}
.car-detail__internal-intro { margin: 0 0 1rem; color: var(--gray-400); max-width: 48rem; }
.car-detail__link-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.car-detail__link-grid a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: var(--black);
  border: 1px solid var(--gray-700);
  color: var(--gray-200);
  font-size: 0.88rem;
}
.car-detail__link-grid a:hover {
  border-color: var(--red);
  color: var(--white);
  text-decoration: none;
}

.car-detail__faq { margin-bottom: 2.5rem; }
.car-detail__related { margin-bottom: 1rem; }

/* Location detail page */
.loc-detail { padding-top: 2rem; }
.loc-detail__breadcrumb { margin-bottom: 1.25rem; }
.loc-detail__hero {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.25rem;
}
@media (min-width: 960px) {
  .loc-detail__hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 2.25rem;
  }
}
.loc-detail__visual-wrap { min-width: 0; }
.loc-detail__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
  aspect-ratio: 16 / 10;
}
.loc-detail__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.loc-detail__visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.loc-detail__visual-caption {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.loc-detail__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.loc-detail__tagline {
  font-size: 1.05rem;
  color: var(--gray-200);
  margin: 0 0 0.65rem;
  max-width: 36rem;
}
.loc-detail__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 1rem;
}
.loc-detail__badges { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.65rem; }
.loc-detail__quick {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.loc-detail__quick li {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
}
.loc-detail__quick span { display: block; color: var(--gray-400); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.loc-detail__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 0.75rem; }
.loc-detail__note { font-size: 0.82rem; color: var(--gray-400); margin: 0; max-width: 34rem; }
.loc-detail__h2 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.loc-detail__highlights-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-700);
}
.loc-detail__highlights {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--gray-200);
  max-width: 52rem;
}
.loc-detail__highlights li { margin-bottom: 0.4rem; }
.loc-detail__jump {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1.25rem;
  margin-bottom: 2rem;
  padding: 1rem 1.15rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
}
.loc-detail__jump-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  font-weight: 700;
}
.loc-detail__jump-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.loc-detail__jump-list a {
  font-size: 0.88rem;
  color: #ff6b6b;
  text-decoration: none;
}
.loc-detail__jump-list a:hover { text-decoration: underline; }
.loc-detail__tips {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  margin-bottom: 2.25rem;
}
.loc-detail__tip {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.loc-detail__tip-title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.loc-detail__tip-body {
  margin: 0;
  font-size: 0.86rem;
  color: var(--gray-400);
  line-height: 1.45;
}
.loc-detail__guide {
  margin-bottom: 2.5rem;
}
.loc-detail__prose { max-width: 52rem; }
.loc-detail__fleet {
  margin-bottom: 2.5rem;
}
.loc-detail__fleet-lead {
  margin: -0.35rem 0 1.25rem;
  color: var(--gray-400);
  max-width: 44rem;
  font-size: 0.92rem;
}
.loc-detail__fleet-footer {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
}
.loc-detail__fleet-footer a { color: #ff6b6b; }
.loc-detail__internal { margin-bottom: 2.5rem; }
.loc-detail__areas {
  margin-bottom: 2.5rem;
}
.loc-detail__areas-lead {
  margin: -0.35rem 0 1.25rem;
  color: var(--gray-400);
  max-width: 44rem;
  font-size: 0.92rem;
}
.loc-detail__area-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}
.loc-detail__area-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--gray-200);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.loc-detail__area-card:hover {
  border-color: var(--red);
  background: var(--black);
  color: var(--white);
}
.loc-detail__area-name { font-weight: 700; font-size: 0.98rem; }
.loc-detail__area-meta { font-size: 0.8rem; color: var(--gray-400); }
.loc-detail__area-card:hover .loc-detail__area-meta { color: var(--gray-500); }
.loc-detail__faq { margin-bottom: 1rem; }

.fleet-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
}
.fleet-grid--compact .fleet-card__visual { aspect-ratio: 16 / 11; }

@media (max-width: 720px) {
  .fleet-header { flex-direction: column; align-items: stretch; }
  .fleet-header__cta { width: 100%; justify-content: center; }
  .nav-links {
    width: 100%;
    justify-content: center;
  }
  .header-inner { justify-content: center; }
}

/* About page */
.about-page { padding-top: 2rem; }
.about-page__breadcrumb { margin-bottom: 1.25rem; }
.about-page__hero {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .about-page__hero {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}
.about-page__hero-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  aspect-ratio: 5 / 4;
  background: var(--gray-900);
  min-height: 220px;
}
@media (min-width: 960px) {
  .about-page__hero-visual { aspect-ratio: 4 / 5; max-height: 520px; }
}
.about-page__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-page__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.about-page__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.about-page__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.5vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.about-page__lead {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  color: var(--gray-200);
  line-height: 1.55;
  max-width: 40rem;
}
.about-page__hero-bullets {
  margin: 0 0 1.35rem;
  padding-left: 1.2rem;
  color: var(--gray-300);
  max-width: 40rem;
  line-height: 1.5;
  font-size: 0.95rem;
}
.about-page__hero-bullets li { margin-bottom: 0.35rem; }
.about-page__hero-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.about-page__stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
  gap: 1rem;
  margin-bottom: 2.25rem;
  padding: 1.25rem 1.1rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
}
.about-page__stat {
  text-align: center;
  padding: 0.5rem 0.35rem;
}
.about-page__stat-value {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}
.about-page__stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--gray-400);
}
.about-page__jump {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1.25rem;
  margin-bottom: 2.25rem;
  padding: 1rem 1.15rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
}
.about-page__jump-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  font-weight: 700;
}
.about-page__jump-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.about-page__jump-list a { font-size: 0.88rem; color: #ff6b6b; text-decoration: none; }
.about-page__jump-list a:hover { text-decoration: underline; }
.about-page__h2 {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.about-page__story {
  margin-bottom: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--gray-700);
}
.about-page__prose { max-width: 48rem; }
.about-page__values { margin-bottom: 2.5rem; }
.about-page__value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.about-page__value {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  padding: 1.1rem 1.15rem;
}
.about-page__value-title { margin: 0 0 0.4rem; font-size: 1rem; }
.about-page__value-body { margin: 0; font-size: 0.88rem; color: var(--gray-400); line-height: 1.45; }
.about-page__process {
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(145deg, var(--gray-900) 0%, var(--black) 100%);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
}
.about-page__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 40rem;
}
.about-page__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.about-page__step-num {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.about-page__steps strong { display: block; margin-bottom: 0.25rem; color: var(--white); }
.about-page__steps li > div > span { font-size: 0.88rem; color: var(--gray-400); line-height: 1.45; }
.about-page__internal { margin-bottom: 2.5rem; }
.about-page__locations { margin-bottom: 2.5rem; }
.about-page__locations-lead {
  margin: -0.35rem 0 1.15rem;
  color: var(--gray-400);
  font-size: 0.92rem;
  max-width: 44rem;
}
.about-page__area-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}
.about-page__area-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--gray-200);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.about-page__area-card:hover {
  border-color: var(--red);
  background: var(--black);
  color: var(--white);
}
.about-page__area-name { font-weight: 700; font-size: 0.95rem; }
.about-page__area-meta { font-size: 0.78rem; color: var(--gray-400); }
.about-page__area-card:hover .about-page__area-meta { color: var(--gray-500); }
.about-page__locations-footer { margin: 1.15rem 0 0; font-size: 0.9rem; }
.about-page__locations-footer a { color: #ff6b6b; }
.about-page__fleet { margin-bottom: 2.5rem; }
.about-page__fleet-lead {
  margin: -0.35rem 0 1.15rem;
  color: var(--gray-400);
  font-size: 0.92rem;
  max-width: 44rem;
}
.about-page__fleet-footer { margin: 1.15rem 0 0; font-size: 0.9rem; }
.about-page__fleet-footer a { color: #ff6b6b; }
.about-page__faq { margin-bottom: 1rem; }
.about-page__faq-lead {
  margin: -0.35rem 0 1.1rem;
  color: var(--gray-400);
  font-size: 0.92rem;
  max-width: 44rem;
}

/* Contact page - airports focus */
.contact-page { padding-top: 2rem; padding-bottom: 2.5rem; }
.contact-page__breadcrumb { margin-bottom: 1.25rem; }
.contact-page__hero {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.25rem;
  align-items: start;
}
@media (min-width: 960px) {
  .contact-page__hero {
    grid-template-columns: 1fr 1.08fr;
    gap: 2.5rem;
  }
}
.contact-page__hero-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
  aspect-ratio: 5 / 4;
  background: var(--gray-900);
  min-height: 220px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}
@media (min-width: 960px) {
  .contact-page__hero-visual {
    aspect-ratio: 4 / 5;
    max-height: 500px;
  }
}
.contact-page__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-page__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(0,0,0,0.06) 25%, rgba(0,0,0,0.52) 100%);
  pointer-events: none;
}
.contact-page__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.contact-page__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.contact-page__lead {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  color: var(--gray-200);
  line-height: 1.55;
  max-width: 42rem;
}
.contact-page__hero-bullets {
  margin: 0 0 1.35rem;
  padding-left: 1.2rem;
  color: var(--gray-300);
  max-width: 42rem;
  line-height: 1.5;
  font-size: 0.95rem;
}
.contact-page__hero-bullets li { margin-bottom: 0.4rem; }
.contact-page__hero-cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.contact-page__jump {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1.25rem;
  margin-bottom: 2.25rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.07) 0%, var(--gray-900) 55%);
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: 12px;
}
.contact-page__jump-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff6b6b;
  font-weight: 700;
}
.contact-page__jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-page__jump-list a {
  color: var(--gray-300);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.contact-page__jump-list a:hover { color: #ff6b6b; }

.contact-page__h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
}
.contact-page__intro {
  margin: 0 0 1.35rem;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 48rem;
}

.contact-page__airports { margin-bottom: 2.75rem; }
.contact-airport-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .contact-airport-grid { grid-template-columns: 1fr 1fr; }
}
.contact-airport-card {
  position: relative;
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.contact-airport-card:hover {
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}
.contact-airport-card--highlight {
  border-color: rgba(229, 9, 20, 0.55);
  box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.25);
  background: linear-gradient(165deg, rgba(229, 9, 20, 0.08) 0%, var(--gray-900) 45%);
}
.contact-airport-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  background: rgba(229, 9, 20, 0.25);
  color: #ffb4b4;
  margin-bottom: 0.75rem;
}
.contact-airport-card__badge--goi {
  background: rgba(100, 180, 255, 0.15);
  color: #9fd4ff;
}
.contact-airport-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.contact-airport-card__sub {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--gray-400);
}
.contact-airport-card__body {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.contact-airport-card__list {
  margin: 0 0 1.15rem;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--gray-400);
  line-height: 1.45;
}
.contact-airport-card__list li { margin-bottom: 0.35rem; }
.contact-airport-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-page__compare {
  margin-bottom: 2.75rem;
  padding: 1.35rem 1.4rem;
  border-radius: 14px;
  border: 1px solid var(--gray-700);
  background: var(--black);
}
.contact-compare {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-compare { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
.contact-compare__head {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #ff6b6b;
  letter-spacing: -0.01em;
}
.contact-compare__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.contact-page__compare-foot {
  margin: 1.15rem 0 0;
  font-size: 0.9rem;
  color: var(--gray-400);
}
.contact-page__compare-foot a { color: #ff6b6b; font-weight: 600; }

.contact-page__reach { margin-bottom: 2.5rem; }
.contact-page__reach-lead {
  margin: 0 0 1.25rem;
  color: var(--gray-400);
  font-size: 0.95rem;
  max-width: 44rem;
  line-height: 1.55;
}
.contact-reach-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.contact-reach-card {
  padding: 1.1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
}
.contact-reach-card__title {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  font-weight: 700;
}
.contact-reach-card__value {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
}
.contact-reach-card__value a { color: var(--white); text-decoration: none; }
.contact-reach-card__value a:hover { color: #ff6b6b; }
.contact-reach-card__hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.4;
}
.contact-page__fleet-link {
  margin: 1.35rem 0 0;
  font-size: 0.9rem;
}
.contact-page__fleet-link a { color: #ff6b6b; font-weight: 600; text-decoration: none; }
.contact-page__fleet-link a:hover { text-decoration: underline; }
.contact-page__sep { color: var(--gray-400); margin: 0 0.35rem; }

.contact-page__faq { margin-bottom: 1rem; }
.contact-faq { display: flex; flex-direction: column; gap: 0.55rem; max-width: 52rem; }
.contact-faq__item {
  border-radius: 10px;
  border: 1px solid var(--gray-700);
  background: var(--gray-900);
  padding: 0;
  overflow: hidden;
}
.contact-faq__q {
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  padding: 0.95rem 1.1rem;
  list-style: none;
}
.contact-faq__q::-webkit-details-marker { display: none; }
.contact-faq__a {
  padding: 0 1.1rem 0.95rem;
  border-top: 1px solid var(--gray-700);
}
.contact-faq__a p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* Mobile app shell: bottom tab bar + safe areas */
@media (max-width: 767px) {
  body.has-mobile-shell {
    padding-bottom: calc(4.65rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-app-dock {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    justify-content: space-around;
    align-items: stretch;
    padding: 0.4rem 0.2rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 10, 10, 0.94);
    border-top: 1px solid var(--gray-700);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.5);
  }

  .mobile-app-dock__item {
    flex: 1;
    min-width: 0;
    max-width: 5.5rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.3rem 0.12rem;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.15;
    text-align: center;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color 0.15s ease, background 0.15s ease;
  }

  .mobile-app-dock__item:hover,
  .mobile-app-dock__item:focus-visible {
    color: var(--white);
    text-decoration: none;
    outline: none;
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-app-dock__item.is-active {
    color: #ff8a8a;
    background: rgba(229, 9, 20, 0.12);
  }

  .mobile-app-dock__item.is-active .mobile-app-dock__icon {
    color: var(--red);
  }

  .mobile-app-dock__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
  }

  .wa-float {
    bottom: calc(4.85rem + env(safe-area-inset-bottom, 0px));
    right: max(14px, env(safe-area-inset-right, 14px));
  }
}

@media (min-width: 768px) {
  .mobile-app-dock {
    display: none !important;
  }
}

/* ========== Admin (advanced shell) ========== */
.admin-app.admin-body {
  background: #0a0a0a;
  color: #e8e8e8;
  min-height: 100vh;
  margin: 0;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.admin-shell {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.admin-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 80;
  backdrop-filter: blur(4px);
}

.admin-body.admin-sidebar-open .admin-sidebar-backdrop {
  display: block;
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #121212 0%, #0e0e0e 100%);
  border-right: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  max-height: 100vh;
  overflow: auto;
  z-index: 90;
  scrollbar-width: thin;
}

.admin-sidebar__brand {
  padding: 1.35rem 1.15rem 1rem;
  border-bottom: 1px solid #252525;
}

.admin-sidebar__logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
  display: block;
}

.admin-sidebar__logo:hover { color: #ff8a8a; text-decoration: none; }

.admin-sidebar__tag {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  font-weight: 600;
}

.admin-sidebar__nav {
  flex: 1;
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.admin-sidebar__section {
  margin: 1rem 0 0.4rem 0.35rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #666;
  font-weight: 700;
}

.admin-sidebar__section:first-child { margin-top: 0; }

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: #b8b8b8;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  border: 1px solid transparent;
}

.admin-nav-link__icon {
  display: flex;
  color: #888;
  flex-shrink: 0;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}

.admin-nav-link:hover .admin-nav-link__icon { color: #ccc; }

.admin-nav-link.is-active {
  background: rgba(229, 9, 20, 0.15);
  border-color: rgba(229, 9, 20, 0.35);
  color: #fff;
}

.admin-nav-link.is-active .admin-nav-link__icon {
  color: #ff6b6b;
}
.admin-nav-link__ext {
  font-size: 0.72rem;
  margin-left: 0.2rem;
  color: #777;
  font-weight: 400;
}

.admin-sidebar__footer {
  padding: 1rem 0.85rem 1.25rem;
  border-top: 1px solid #252525;
  margin-top: auto;
}

.admin-sidebar__outlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.admin-sidebar__outlink:hover { color: #fff; text-decoration: none; }

.admin-sidebar__logout .btn { margin: 0; }

.admin-main-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.35rem;
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid #2a2a2a;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.admin-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #333;
  border-radius: 10px;
  background: #161616;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.admin-menu-btn__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #ddd;
  border-radius: 1px;
}

.admin-topbar__lead {
  flex: 1;
  min-width: 12rem;
}

.admin-topbar__title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.admin-topbar__sub {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.4;
  max-width: 52rem;
}

.admin-topbar__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  text-align: right;
}

.admin-user-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.6rem 0.25rem 0.25rem;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #ccc;
}

.admin-user-pill__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #7a0f14 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
}

.admin-user-pill__avatar--photo {
  display: block;
  object-fit: cover;
  flex-shrink: 0;
  padding: 0;
  font-size: 0;
}

.admin-profile-photo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem;
}

.admin-profile-photo-preview {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #2a2a2a;
  background: #121212;
  flex-shrink: 0;
}

.admin-profile-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-profile-photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red) 0%, #7a0f14 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.75rem;
}

.admin-profile-photo-fields {
  flex: 1;
  min-width: 12rem;
}

.admin-car-section__desc code {
  font-size: 0.88em;
  background: #181818;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  border: 1px solid #333;
}

.admin-user-pill__text {
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.admin-user-pill--link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}

a.admin-user-pill--link:hover {
  border-color: #444;
  background: #1a1a1a;
}

a.admin-user-pill--link:focus-visible {
  outline: 2px solid var(--red, #c41e3a);
  outline-offset: 2px;
}

.admin-topbar__time {
  font-size: 0.75rem;
  color: #666;
  font-variant-numeric: tabular-nums;
}

.admin-main {
  padding: 1.35rem 1.35rem 2.5rem;
  flex: 1;
}

.admin-flash {
  max-width: 48rem;
}

.admin-seo-serp-preview {
  padding: 1rem 1.1rem;
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  max-width: 40rem;
}

.admin-seo-serp-key {
  font-size: 0.75rem;
  color: #81c995;
  margin: 0 0 0.45rem;
  word-break: break-all;
}

.admin-seo-serp-title {
  font-size: 1.05rem;
  color: #8ab4f8;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.admin-seo-serp-desc {
  font-size: 0.84rem;
  color: #bdc1c6;
  margin: 0;
  line-height: 1.5;
}

.admin-seo-og-preview {
  margin-top: 0.75rem;
}

.admin-seo-og-card {
  max-width: 520px;
}

/* Stat grid */
.admin-stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
  margin-bottom: 1.5rem;
}

.admin-stat-card {
  background: linear-gradient(165deg, #141414 0%, #101010 100%);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.admin-stat-card--accent {
  border-color: rgba(229, 9, 20, 0.45);
  background: linear-gradient(165deg, rgba(229, 9, 20, 0.12) 0%, #121212 55%);
}

.admin-stat-card__label {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  font-weight: 700;
}

.admin-stat-card__value {
  margin: 0.4rem 0 0;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.admin-stat-card__suffix {
  font-size: 1.05rem;
  font-weight: 600;
  color: #888;
  margin-left: 0.15rem;
}

.admin-stat-card__hint {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.35;
}

.admin-dashboard-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1080px) {
  .admin-dashboard-grid {
    grid-template-columns: 2.2fr 1fr;
    align-items: start;
  }
}

/* Dashboard charts (Chart.js) */
.admin-dashboard-charts {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
}

@media (min-width: 900px) {
  .admin-dashboard-charts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .admin-dashboard-charts {
    grid-template-columns: 1.15fr 1.15fr 0.95fr;
    align-items: stretch;
  }
}

.admin-card--chart {
  min-height: 0;
}

.admin-card--chart-donut {
  min-height: 300px;
}

.admin-chart-canvas-wrap {
  position: relative;
  height: 260px;
  width: 100%;
}

.admin-chart-canvas-wrap--donut {
  height: 280px;
  max-width: 420px;
  margin: 0 auto;
}

.admin-dashboard-live-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(165deg, #141414 0%, #101010 100%);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.admin-dashboard-live-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 5.5rem;
}

.admin-dashboard-live-strip__k {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  font-weight: 700;
}

.admin-dashboard-live-strip__v {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.admin-dashboard-live-strip__link {
  margin-left: auto;
  font-size: 0.84rem;
  font-weight: 600;
  color: #8ab4f8;
  text-decoration: none;
}

.admin-dashboard-live-strip__link:hover {
  text-decoration: underline;
}

.admin-card {
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 1.2rem 1.25rem 1.35rem;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.admin-card--stretch {
  min-height: 280px;
}

.admin-card__head {
  margin-bottom: 1rem;
}

.admin-card__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.admin-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.admin-card__desc {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: #888;
  line-height: 1.45;
}

/* Bar chart */
.admin-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.2rem;
  min-height: 180px;
  padding-top: 0.5rem;
}

.admin-bar-chart__cell {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.admin-bar-chart__bar-wrap {
  width: 100%;
  max-width: 28px;
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
}

.admin-bar-chart__bar {
  width: 100%;
  min-height: 2px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #ff6b6b 0%, var(--red) 55%, #7a0a0f 100%);
  box-shadow: 0 0 16px rgba(229, 9, 20, 0.25);
  transition: height 0.25s ease;
}

.admin-bar-chart__label {
  font-size: 0.58rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.admin-bar-chart__count {
  font-size: 0.68rem;
  font-weight: 700;
  color: #999;
  font-variant-numeric: tabular-nums;
}

.admin-quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-quick-links a {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  background: #161616;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.12s, background 0.12s;
}

.admin-quick-links a:hover {
  border-color: rgba(229, 9, 20, 0.45);
  background: rgba(229, 9, 20, 0.08);
  text-decoration: none;
  color: inherit;
}

.admin-quick-links__t {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.admin-quick-links__d {
  display: block;
  font-size: 0.76rem;
  color: #888;
  margin-top: 0.15rem;
}

/* Admin system hub & module directory */
.admin-sys-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.09) 0%, #141414 55%);
}
.admin-sys-hero__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}
.admin-sys-hero__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #fff;
}
.admin-sys-hero__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #a3a3a3;
}
.admin-sys-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.admin-sys-hero__btn {
  border-color: #444;
}

.admin-mgmt-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .admin-mgmt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .admin-mgmt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.admin-mgmt-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem 1.25rem 1.35rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #161616;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}
.admin-mgmt-card:hover {
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.admin-mgmt-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.admin-mgmt-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.admin-mgmt-card__badge {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #ff8a8a;
}
.admin-mgmt-card__suffix {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
}
.admin-mgmt-card__desc {
  margin: 0.65rem 0 0;
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #9a9a9a;
}
.admin-mgmt-card__cta {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: #e50914;
}

.admin-sys-columns {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .admin-sys-columns {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.admin-sys-meta {
  margin: 0;
  display: grid;
  gap: 1rem 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
}
.admin-sys-meta__item {
  margin: 0;
}
.admin-sys-meta__label {
  margin: 0 0 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
}
.admin-sys-meta__value {
  margin: 0;
}
.admin-sys-code {
  display: inline-block;
  max-width: 100%;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: #0f0f0f;
  border: 1px solid #333;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  color: #d4d4d4;
  word-break: break-all;
}

.admin-health-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.admin-health-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #2a2a2a;
}
.admin-health-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.admin-health-row__label {
  font-size: 0.88rem;
  color: #ccc;
}
.admin-health-pill {
  flex-shrink: 0;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.admin-health-pill--ok {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}
.admin-health-pill--bad {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.35);
}
.admin-health-pill--warn {
  background: rgba(250, 204, 21, 0.12);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.35);
}

/* Toolbar & page headers for CRUD index pages */
.admin-page-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.admin-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.admin-table-wrap {
  overflow-x: auto;
  margin: 0 -0.15rem;
  padding: 0 0.15rem;
  -webkit-overflow-scrolling: touch;
}

.admin-table tbody tr {
  transition: background 0.1s;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.admin-muted { color: #888; }
.admin-nowrap { white-space: nowrap; }
.admin-empty-cell {
  text-align: center;
  color: #777;
  padding: 1.75rem 1rem !important;
}

.admin-form-panel {
  max-width: 720px;
}

.admin-form-back {
  margin: 0 0 1rem;
  font-size: 0.88rem;
}

.admin-form-back a {
  color: #ff8a8a;
  font-weight: 600;
  text-decoration: none;
}

.admin-form-back a:hover {
  text-decoration: underline;
}

.admin-form-panel h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1rem;
  color: #ff8a8a;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.admin-form-panel h2:first-child {
  margin-top: 0;
}

.admin-help {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 0 1.25rem;
}

.admin-help code {
  font-size: 0.82em;
  background: #1a1a1a;
  padding: 0.12em 0.35em;
  border-radius: 4px;
  border: 1px solid #333;
}

.admin-filter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-filter-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  align-items: end;
}

.admin-filter-grid__wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .admin-filter-grid__wide {
    grid-column: span 2;
  }
}

.admin-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.admin-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: #222;
  border: 1px solid #3a3a3a;
  color: #aaa;
}

.admin-badge--ok {
  background: rgba(46, 204, 113, 0.12);
  border-color: #2ecc71;
  color: #7bedb3;
}

.admin-badge--muted {
  opacity: 0.75;
  font-weight: 600;
}

.admin-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #333;
}

.admin-thumb--placeholder {
  display: block;
  background: #1a1a1a;
  border: 1px solid #333;
}

.admin-inline-form {
  display: inline;
}

.admin-link-danger {
  background: none;
  border: none;
  padding: 0;
  color: #ff8a8a;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.admin-link-danger:hover {
  color: #ffc4c4;
}

.admin-action-sep {
  color: #444;
  margin: 0 0.35rem;
  user-select: none;
}

.admin-message-cell {
  display: block;
  white-space: pre-wrap;
  color: #aaa;
  line-height: 1.4;
  max-width: 28rem;
}

/* Tables & alerts (admin context) */
.admin-main .table,
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.admin-main .table th,
.admin-main .table td,
.table th,
.table td {
  border-bottom: 1px solid #2a2a2a;
  padding: 0.75rem 0.65rem;
  text-align: left;
  vertical-align: top;
}

.admin-main .table th,
.table th {
  color: #999;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.02);
}

.admin-main .table code,
.table code {
  font-size: 0.8em;
  background: #1a1a1a;
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-ok {
  background: rgba(46, 204, 113, 0.12);
  color: #7bedb3;
  border: 1px solid #2ecc71;
}

.alert-err {
  background: rgba(229, 9, 20, 0.12);
  color: #ff9b9b;
  border: 1px solid var(--red);
}

.admin-main .pagination {
  margin-top: 1.25rem;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
  box-sizing: border-box;
}

/* Admin login page */
.admin-login-page {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(229, 9, 20, 0.28) 0%, transparent 55%),
    #0a0a0a;
  font-family: var(--font);
  color: #eee;
}

.admin-login-card {
  width: min(420px, 100%);
  background: linear-gradient(165deg, #151515 0%, #101010 100%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2rem 2rem 2.1rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.admin-login-card__brand {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff6b6b;
  margin: 0 0 0.35rem;
}

.admin-login-card h1 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.admin-login-card__lead {
  color: #888;
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.admin-login-card .btn-primary {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem 1rem;
}

.admin-login-foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
  font-size: 0.78rem;
  color: #666;
  line-height: 1.45;
}

/* Mobile admin */
@media (max-width: 900px) {
  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-102%);
    transition: transform 0.22s ease;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.5);
  }

  .admin-sidebar.is-open {
    transform: translateX(0);
  }

  .admin-menu-btn {
    display: inline-flex;
  }

  .admin-topbar__meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 0.65rem;
  }

  .admin-topbar__time {
    display: none;
  }

  .admin-main-column {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .admin-sidebar {
    transition: none;
  }
}

@media (max-width: 520px) {
  .admin-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-bar-chart__label {
    font-size: 0.52rem;
  }
}

/* Admin — advanced car form */
.admin-car-errors ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.admin-car-form {
  margin-bottom: 0;
}

.admin-car-page {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1100px) {
  .admin-car-page {
    grid-template-columns: minmax(0, 11rem) 1fr;
    gap: 2rem;
  }
}

.admin-car-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  row-gap: 0.35rem;
  padding: 0.85rem;
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  position: sticky;
  top: 5.75rem;
}

@media (min-width: 1100px) {
  .admin-car-toc {
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 0.08rem;
  }
}

.admin-car-toc__label {
  width: 100%;
  margin: 0 0 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
}

.admin-car-toc a {
  display: block;
  padding: 0.38rem 0.55rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #aaa;
  text-decoration: none;
  border: 1px solid transparent;
}

.admin-car-toc a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}

.admin-car-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.admin-car-section {
  background: linear-gradient(165deg, #141414 0%, #101010 100%);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 1.25rem 1.35rem 1.4rem;
  scroll-margin-top: 5.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.admin-car-section__head {
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2a2a2a;
}

.admin-car-section__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.admin-car-section__desc {
  margin: 0.45rem 0 0;
  font-size: 0.86rem;
  color: #888;
  line-height: 1.45;
  max-width: 52rem;
}

.admin-field-grid {
  display: grid;
  gap: 1rem 1.25rem;
  grid-template-columns: 1fr;
}

.admin-field-grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.admin-field-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
}

.admin-field-span-2 {
  grid-column: 1 / -1;
}

.admin-field {
  min-width: 0;
}

.admin-field label,
.admin-car-form label:not(.admin-car-gallery__item):not(.admin-checkbox-label):not(.admin-car-drop-label):not(.admin-theme-scheme-option) {
  font-size: 0.78rem;
  font-weight: 700;
  color: #c8c8c8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-car-form .admin-checkbox-label,
.admin-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #ddd;
  cursor: pointer;
}

.admin-checkbox-label input {
  width: auto;
  margin: 0.2rem 0 0;
  accent-color: var(--red);
}

.admin-field--checkbox {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
}

.admin-req {
  color: #ff8a8a;
}

.admin-hint {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #777;
  font-size: 0.72rem;
}

.admin-hint code {
  font-size: 0.85em;
  background: #1a1a1a;
  padding: 0.08em 0.3em;
  border-radius: 4px;
  border: 1px solid #333;
}

.admin-field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #ff9b9b;
}

.admin-char-count {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #666;
  font-variant-numeric: tabular-nums;
}

.admin-char-count.is-warn {
  color: #ffb347;
}

.admin-html-editor-wrap {
  margin-top: 0.35rem;
}

.admin-html-editor-wrap .tox-tinymce {
  border-radius: 10px;
  border-color: #333;
}

.admin-code-field {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.45;
}

.admin-car-hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #888;
  line-height: 1.45;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px dashed #333;
}

.admin-car-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.admin-car-gallery__item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  cursor: pointer;
  border-radius: 10px;
  padding: 0.45rem;
  border: 1px solid #2a2a2a;
  background: #161616;
  transition: border-color 0.12s, background 0.12s;
}

.admin-car-gallery__item:has(input:checked) {
  border-color: rgba(229, 9, 20, 0.55);
  background: rgba(229, 9, 20, 0.08);
}

.admin-car-gallery__thumb-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #222;
}

.admin-car-gallery__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-car-gallery__order {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: #eee;
}

.admin-car-gallery__delete {
  font-size: 0.78rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.admin-car-gallery__delete input {
  width: auto;
  margin: 0;
  accent-color: var(--red);
}

.admin-car-upload {
  padding: 1.1rem 1.15rem;
  border: 1px dashed #3a3a3a;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-car-drop-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-car-file-input {
  font-size: 0.85rem;
  color: #aaa;
}

.admin-car-new-files {
  margin-top: 0.75rem;
}

.admin-car-new-files-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: #999;
  line-height: 1.55;
}

.admin-form-sticky-footer {
  position: sticky;
  bottom: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 1.75rem -1.35rem -1.35rem;
  padding: 1rem 1.35rem calc(1rem + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 12, 12, 0.94);
  border-top: 1px solid #2a2a2a;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.admin-form-sticky-footer__spacer {
  flex: 1;
  min-width: 0.5rem;
}

.admin-car-form input:not([type="checkbox"]):not([type="file"]),
.admin-car-form select,
.admin-car-form textarea {
  margin-bottom: 0;
  margin-top: 0.4rem;
}

/* Admin — cars index (advanced) */
.admin-cars-kpis {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.admin-cars-kpi {
  flex: 1 1 5.5rem;
  min-width: 5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: linear-gradient(165deg, #141414 0%, #101010 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.admin-cars-kpi--ok {
  border-color: rgba(46, 204, 113, 0.35);
  background: linear-gradient(165deg, rgba(46, 204, 113, 0.1) 0%, #101010 100%);
}

.admin-cars-kpi--muted {
  opacity: 0.92;
}

.admin-cars-kpi__value {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.admin-cars-kpi__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
}

.admin-cats-strip {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #121212;
}

@media (min-width: 960px) {
  .admin-cats-strip {
    flex: 1 1 auto;
    max-width: min(100%, 28rem);
  }
}

.admin-cats-strip__chip {
  font-size: 0.78rem;
  color: #999;
}

.admin-cats-strip__chip strong {
  color: #ddd;
  font-weight: 700;
}

.admin-cars-filters {
  margin-bottom: 1.15rem;
}

.admin-cars-filter-grid {
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}

.admin-cars-result-meta {
  margin-left: auto;
  font-size: 0.85rem;
  color: #888;
}

.admin-cars-result-meta strong {
  color: #ccc;
}

.admin-cars-table-wrap {
  margin-bottom: 0.5rem;
}

.admin-cars-th-thumb {
  width: 72px;
}

.admin-cars-td-thumb {
  width: 72px;
  vertical-align: middle !important;
}

.admin-cars-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #333;
  display: block;
}

.admin-cars-thumb--empty {
  background: linear-gradient(135deg, #222 0%, #151515 100%);
  border: 1px dashed #3a3a3a;
}

.admin-cars-td-vehicle {
  min-width: 10rem;
}

.admin-cars-name {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}

.admin-cars-slug {
  display: block;
  font-size: 0.72rem;
  margin-top: 0.2rem;
  color: #888;
  background: transparent;
  border: none;
  padding: 0;
}

.admin-cars-mini {
  display: block;
  font-size: 0.72rem;
  color: #666;
  margin-top: 0.25rem;
}

.admin-cars-leads {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #ccc;
}

.admin-cars-actions {
  white-space: nowrap;
  min-width: 8.5rem;
}

.admin-cars-actions .admin-inline-form {
  display: inline;
}

.admin-cars-action {
  color: #ff8a8a;
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  margin-right: 0.5rem;
}

.admin-cars-action:hover {
  text-decoration: underline;
  color: #ffc4c4;
}

@media (max-width: 900px) {
  .admin-cars-table .admin-cars-td-vehicle .admin-cars-mini {
    display: none;
  }
}

/* Admin — locations index (advanced) */
.admin-locs-kpis {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.admin-locs-kpi {
  flex: 1 1 5.5rem;
  min-width: 5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: linear-gradient(165deg, #141414 0%, #101010 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.admin-locs-kpi--ok {
  border-color: rgba(46, 204, 113, 0.35);
  background: linear-gradient(165deg, rgba(46, 204, 113, 0.1) 0%, #101010 100%);
}

.admin-locs-kpi--muted {
  opacity: 0.92;
}

.admin-locs-kpi__value {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.admin-locs-kpi__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
}

.admin-locs-type-strip {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #121212;
}

@media (min-width: 960px) {
  .admin-locs-type-strip {
    flex: 1 1 auto;
    max-width: min(100%, 36rem);
  }
}

.admin-locs-type-strip__chip {
  font-size: 0.78rem;
  color: #999;
}

.admin-locs-type-strip__chip strong {
  color: #ddd;
  font-weight: 700;
}

.admin-locs-filters {
  margin-bottom: 1.15rem;
}

.admin-locs-filter-grid {
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
}

.admin-locs-result-meta {
  margin-left: auto;
  font-size: 0.85rem;
  color: #888;
}

.admin-locs-result-meta strong {
  color: #ccc;
}

.admin-locs-table-wrap {
  margin-bottom: 0.5rem;
}

.admin-locs-th-type {
  width: 4.5rem;
}

.admin-locs-td-type {
  vertical-align: middle !important;
}

.admin-loc-type-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  padding: 0.28rem 0.35rem;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: #222;
  border: 1px solid #3a3a3a;
  color: #bbb;
}

.admin-loc-type-pill[data-type="airport"] {
  border-color: rgba(229, 9, 20, 0.45);
  background: rgba(229, 9, 20, 0.12);
  color: #ff9b9b;
}

.admin-loc-type-pill[data-type="hub"] {
  border-color: rgba(100, 149, 237, 0.45);
  background: rgba(100, 149, 237, 0.12);
  color: #a8c4ff;
}

.admin-loc-type-pill[data-type="town"] {
  border-color: rgba(46, 204, 113, 0.35);
  background: rgba(46, 204, 113, 0.1);
  color: #7bedb3;
}

.admin-loc-type-pill[data-type="area"] {
  border-color: rgba(241, 196, 15, 0.35);
  background: rgba(241, 196, 15, 0.1);
  color: #f7dc6f;
}

.admin-loc-type-pill[data-type="other"] {
  border-color: rgba(187, 187, 187, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
}

.admin-locs-td-main {
  min-width: 11rem;
}

.admin-locs-name {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}

.admin-locs-slug {
  display: block;
  font-size: 0.72rem;
  margin-top: 0.2rem;
  color: #888;
}

.admin-locs-sub {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.35rem;
  line-height: 1.35;
}

.admin-locs-leads {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #ccc;
}

.admin-locs-leads-split {
  display: block;
  font-size: 0.7rem;
  color: #666;
  font-weight: 500;
  margin-top: 0.15rem;
}

.admin-locs-td-geo {
  white-space: nowrap;
}

.admin-locs-map {
  font-size: 0.84rem;
  font-weight: 600;
  color: #ff8a8a;
  text-decoration: none;
}

.admin-locs-map:hover {
  text-decoration: underline;
  color: #ffc4c4;
}

.admin-locs-geo-missing {
  color: #555;
}

.admin-locs-actions {
  white-space: nowrap;
  min-width: 8.5rem;
}

.admin-locs-action {
  color: #ff8a8a;
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  margin-right: 0.5rem;
}

.admin-locs-action:hover {
  text-decoration: underline;
  color: #ffc4c4;
}

@media (max-width: 900px) {
  .admin-locs-leads-split {
    display: none;
  }
}

.admin-loc-map-preview {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* Admin — blog index (advanced) */
.admin-blog-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.admin-blog-kpi {
  flex: 1 1 5.5rem;
  min-width: 5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: linear-gradient(165deg, #141414 0%, #101010 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.admin-blog-kpi--ok {
  border-color: rgba(46, 204, 113, 0.35);
  background: linear-gradient(165deg, rgba(46, 204, 113, 0.1) 0%, #101010 100%);
}

.admin-blog-kpi--muted {
  opacity: 0.92;
}

.admin-blog-kpi--sched {
  border-color: rgba(100, 149, 237, 0.4);
  background: linear-gradient(165deg, rgba(100, 149, 237, 0.1) 0%, #101010 100%);
}

.admin-blog-kpi__value {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.admin-blog-kpi__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
}

.admin-blog-filters {
  margin-bottom: 1.15rem;
}

.admin-blog-filter-grid {
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}

.admin-blog-result-meta {
  margin-left: auto;
  font-size: 0.85rem;
  color: #888;
}

.admin-blog-result-meta strong {
  color: #ccc;
}

.admin-blog-table-wrap {
  margin-bottom: 0.5rem;
}

.admin-blog-th-thumb {
  width: 76px;
}

.admin-blog-td-thumb {
  width: 76px;
  vertical-align: middle !important;
}

.admin-blog-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #333;
  display: block;
}

.admin-blog-thumb--empty {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px dashed #3a3a3a;
  background: linear-gradient(135deg, #222 0%, #151515 100%);
}

.admin-blog-td-main {
  min-width: 12rem;
}

.admin-blog-title {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.admin-blog-slug {
  display: block;
  font-size: 0.72rem;
  margin-top: 0.2rem;
  color: #888;
}

.admin-blog-excerpt {
  display: block;
  font-size: 0.78rem;
  color: #666;
  margin-top: 0.45rem;
  line-height: 1.4;
}

.admin-blog-badge--sched {
  background: rgba(100, 149, 237, 0.15);
  border: 1px solid rgba(100, 149, 237, 0.45);
  color: #a8c4ff;
}

.admin-blog-date-hint {
  display: block;
  font-size: 0.68rem;
  color: #666;
  margin-top: 0.3rem;
  font-weight: 500;
}

.admin-blog-gallery-count {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #ccc;
}

.admin-blog-updated .admin-blog-date-hint {
  margin-top: 0.2rem;
}

.admin-blog-actions {
  white-space: nowrap;
  min-width: 9rem;
}

.admin-blog-action {
  color: #ff8a8a;
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  margin-right: 0.5rem;
}

.admin-blog-action:hover {
  text-decoration: underline;
  color: #ffc4c4;
}

@media (max-width: 900px) {
  .admin-blog-excerpt {
    display: none;
  }

  .admin-blog-updated .admin-blog-date-hint {
    display: none;
  }
}

/* Admin — blog post form */
.admin-blog-hero-preview {
  margin: 0 0 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  max-width: min(100%, 520px);
  background: #161616;
}

.admin-blog-hero-preview img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.admin-blog-file-hint {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: #888;
  min-height: 1.25rem;
}

.admin-blog-gallery-top {
  margin-bottom: 1.25rem;
}

.admin-settings-logo-preview {
  margin: 0 0 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: #161616;
  display: inline-block;
  max-width: 100%;
}

.admin-settings-logo-preview img {
  display: block;
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

/* Admin — theme management */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-theme-presets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.75rem;
}

.admin-theme-scheme-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15.5rem), 1fr));
  gap: 0.85rem;
  margin-top: 0.35rem;
  align-items: stretch;
}

.admin-field:has(.admin-theme-scheme-options) .admin-field__label {
  display: block;
  margin-bottom: 0.2rem;
}

.admin-theme-scheme-option {
  display: grid;
  grid-template-rows: auto auto;
  grid-auto-flow: row;
  align-content: start;
  justify-items: stretch;
  gap: 0.65rem;
  margin: 0;
  padding: 0.65rem 0.75rem 0.75rem;
  border-radius: 12px;
  border: 2px solid #2a2a2a;
  background: #121212;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  min-width: 0;
  width: 100%;
}

.admin-theme-scheme-option:has(input:focus-visible) {
  outline: 2px solid var(--red, #c41e3a);
  outline-offset: 2px;
}

.admin-theme-scheme-option:has(input:checked) {
  border-color: var(--red, #c41e3a);
  background: linear-gradient(165deg, #1c1416 0%, #141414 100%);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--red, #c41e3a) 35%, transparent);
}

.admin-theme-scheme-option--light:has(input:checked) {
  background: linear-gradient(165deg, #1a1816 0%, #131312 100%);
}

.admin-theme-scheme-option:hover {
  border-color: #4a4a4a;
}

.admin-theme-scheme-option__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  grid-row: 1;
}

.admin-theme-scheme-option__title {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  color: #f4f4f4;
  letter-spacing: 0.02em;
}

.admin-theme-scheme-option__subtitle {
  display: block;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #9a9a9a;
  text-transform: none;
  letter-spacing: 0;
}

.admin-theme-scheme-footnote a {
  color: color-mix(in srgb, var(--red, #e85d6e) 92%, #fff);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.admin-theme-scheme-footnote a:hover {
  color: #fff;
}

/* Mini storefront preview inside each scheme card */
.admin-theme-scheme-mock {
  display: flex;
  flex-direction: column;
  grid-row: 2;
  min-height: 4.35rem;
  height: 4.35rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.admin-theme-scheme-mock--light {
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 14px rgba(15, 23, 42, 0.08);
}

.admin-theme-scheme-mock__chrome {
  flex: 0 0 42%;
  background: linear-gradient(180deg, #262626 0%, #171717 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.admin-theme-scheme-mock__chrome::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 32%;
  max-width: 4.25rem;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.admin-theme-scheme-mock__body {
  flex: 1;
  background: linear-gradient(180deg, #0c0c0c 0%, #070707 100%);
  padding: 6px 9px 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.admin-theme-scheme-mock__line {
  display: block;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.11);
}

.admin-theme-scheme-mock__line--short {
  width: 58%;
}

.admin-theme-scheme-mock__accent {
  display: block;
  width: 1.35rem;
  height: 4px;
  border-radius: 99px;
  margin-top: 1px;
  background: var(--red, #e50914);
  box-shadow: 0 0 10px color-mix(in srgb, var(--red, #e50914) 55%, transparent);
}

/* Light mock: bright chrome + paper body (reads clearly inside dark admin UI) */
.admin-theme-scheme-mock--light .admin-theme-scheme-mock__chrome {
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
  border-bottom-color: #e2e5eb;
}

.admin-theme-scheme-mock--light .admin-theme-scheme-mock__chrome::after {
  background: rgba(15, 23, 42, 0.88);
  box-shadow: none;
}

.admin-theme-scheme-mock--light .admin-theme-scheme-mock__body {
  background: linear-gradient(180deg, #eef0f5 0%, #e3e6ec 100%);
}

.admin-theme-scheme-mock--light .admin-theme-scheme-mock__line {
  background: rgba(15, 23, 42, 0.14);
}

.admin-theme-scheme-mock--light .admin-theme-scheme-mock__accent {
  box-shadow: 0 1px 4px color-mix(in srgb, var(--red, #e50914) 40%, transparent);
}

.admin-theme-preset-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: 10px;
  border: 2px solid #2a2a2a;
  background: #121212;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.admin-theme-preset-card:hover {
  border-color: #444;
}

.admin-theme-preset-card.is-selected {
  border-color: var(--red, #c41e3a);
  background: #1a1214;
}

.admin-theme-preset-card__swatch {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 6px;
  border: 1px solid #333;
}

.admin-theme-preset-card__label {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #ccc;
}

.admin-theme-token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1rem 1.25rem;
}

.admin-theme-token-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  max-width: 48rem;
}

.admin-theme-color-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-theme-color-pick {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid #444;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.admin-theme-color-hex {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, monospace;
  font-size: 0.88rem;
}

.admin-theme-io-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.admin-theme-import .admin-field__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 0.35rem;
}

.admin-theme-json-dump {
  margin: 0;
  padding: 1rem 1.1rem;
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.45;
  overflow: auto;
  max-height: 22rem;
  color: #a8b89a;
}

.admin-theme-save-wrap {
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}

.admin-car-section--danger .admin-car-section__title {
  color: #e8a0a0;
}

/* Admin — live visitors */
.admin-visitors-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.admin-visitors-stat {
  padding: 0.85rem 1rem;
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
}

.admin-visitors-stat__value {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #f0f0f0;
  line-height: 1.1;
}

.admin-visitors-stat__label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
}

.admin-visitors-live-meta {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.admin-visitors-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.35);
  animation: admin-visitors-pulse 2s ease-in-out infinite;
}

@keyframes admin-visitors-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}

.admin-visitors-toolbar {
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-visitors-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.admin-checkbox-label--inline {
  margin: 0;
}

.admin-visitors-input-search {
  min-width: 12rem;
  max-width: 20rem;
}

.admin-visitors-live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  vertical-align: middle;
}

.admin-visitors-off-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  vertical-align: middle;
}

.admin-visitors-row--hot {
  background: rgba(46, 204, 113, 0.06);
}

.admin-visitors-dl {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
  font-size: 0.88rem;
}

.admin-visitors-dl dt {
  margin: 0;
  color: #888;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.admin-visitors-dl dd {
  margin: 0;
  color: #ddd;
  word-break: break-word;
}

.admin-visitors-ua {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: #aaa;
  white-space: pre-wrap;
}

.admin-visitors-mono {
  font-size: 0.78rem;
  word-break: break-all;
}

/* === Public storefront: light appearance (pairs with Theme → Light + html[data-color-scheme]) === */
html[data-color-scheme="light"] {
  color-scheme: light;
}

html[data-color-scheme="light"] .site-header {
  background: color-mix(in srgb, var(--black) 94%, #000 6%);
}

html[data-color-scheme="light"] .nav-toggle {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.14);
  color: #1a1d28;
}
html[data-color-scheme="light"] .nav-toggle:hover {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.22);
  color: #0a0c12;
}
html[data-color-scheme="light"] .nav-toggle:active {
  background: rgba(0, 0, 0, 0.1);
}

html[data-color-scheme="light"] .nav-links a:hover,
html[data-color-scheme="light"] .nav-links a:focus-visible {
  color: var(--red);
}

@media (max-width: 767px) {
  html[data-color-scheme="light"] .nav-links a:not(:last-child) {
    border-bottom-color: rgba(15, 20, 40, 0.1);
  }
}

html[data-color-scheme="light"] .footer-grid a:hover,
html[data-color-scheme="light"] .footer-grid a:focus-visible {
  color: var(--red);
}

/* Light storefront: hero on photo — fix low-contrast pink accent & skip links */
html[data-color-scheme="light"] .home-hero__h1 {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
html[data-color-scheme="light"] .home-hero__h1-accent {
  color: var(--red);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.98),
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(255, 255, 255, 0.45);
}
html[data-color-scheme="light"] .hero.home-hero .home-hero__subline {
  color: rgba(18, 20, 28, 0.95);
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.65),
    0 1px 1px rgba(255, 255, 255, 0.85);
}
html[data-color-scheme="light"] .home-hero__subline strong {
  color: #0a0b10;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.7),
    0 1px 1px rgba(255, 255, 255, 0.9);
}
html[data-color-scheme="light"] .home-hero__skip {
  border-top-color: rgba(0, 0, 0, 0.14);
}
html[data-color-scheme="light"] .home-hero__skip-label {
  color: rgba(18, 20, 28, 0.65);
}
html[data-color-scheme="light"] .home-hero__skip a {
  color: var(--red-dark);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.95);
}
html[data-color-scheme="light"] .home-hero__skip a:hover {
  color: var(--red);
}
html[data-color-scheme="light"] .home-hero__chips li {
  color: rgba(18, 20, 28, 0.92);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 0, 0.12);
}
html[data-color-scheme="light"] .home-hero .hero__eyebrow {
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.75),
    0 1px 1px rgba(255, 255, 255, 0.95);
}
html[data-color-scheme="light"] .home-hero .hero-note.home-hero__note {
  color: rgba(18, 20, 28, 0.8);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
}

/* Light storefront: "Don't miss out" / drive banner — was dark bar + washed pink */
html[data-color-scheme="light"] .home-drive-banner__inner {
  background: linear-gradient(145deg, #ffffff 0%, #faf7f7 42%, #f2f6fc 100%);
  border-color: var(--gray-700);
  box-shadow: 0 12px 40px rgba(15, 20, 40, 0.08);
}
html[data-color-scheme="light"] .home-drive-banner__eyebrow {
  color: var(--red-dark);
  letter-spacing: 0.11em;
}
html[data-color-scheme="light"] .home-drive-banner__title {
  color: var(--white);
}
html[data-color-scheme="light"] .home-drive-banner__lead {
  color: var(--gray-300);
}

/* —— Admin: Theme studio —— */
.admin-theme-studio {
  max-width: min(120rem, 100%);
}
.admin-theme-flash {
  margin: 0 0 1rem;
}
.admin-theme-publish-note {
  margin: -0.25rem 0 1.25rem;
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
  border: 1px solid #333;
  background: #141414;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #ccc;
}
.admin-theme-publish-note strong {
  color: #eee;
}
.admin-theme-publish-note--ok {
  border-color: rgba(46, 204, 113, 0.4);
  background: rgba(46, 204, 113, 0.07);
}
.admin-theme-publish-note--warn {
  border-color: rgba(234, 179, 8, 0.45);
  background: rgba(234, 179, 8, 0.08);
}
.admin-theme-studio__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-700, #333);
}
.admin-theme-studio__header .admin-theme-studio__lede {
  flex: 1;
  min-width: min(100%, 32rem);
}
.admin-theme-studio__lede {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #aaa;
  max-width: 40rem;
  line-height: 1.5;
}
.admin-theme-studio__header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.admin-theme-studio__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1180px) {
  .admin-theme-studio__grid {
    grid-template-columns: 1fr min(360px, 34vw);
  }
  .admin-theme-studio__preview {
    position: sticky;
    top: 0.75rem;
  }
}
.admin-theme-studio__main {
  min-width: 0;
}
.admin-theme-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.admin-theme-tabs__btn {
  appearance: none;
  border: 1px solid #333;
  background: #161616;
  color: #ccc;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.admin-theme-tabs__btn:hover {
  border-color: #555;
  color: #eee;
}
.admin-theme-tabs__btn.is-active {
  border-color: var(--red, #c41e3a);
  background: rgba(196, 30, 58, 0.12);
  color: #fff;
}
.admin-theme-tab-panel {
  margin-bottom: 0.5rem;
}
.admin-theme-tab-panel[hidden] {
  display: none !important;
}
.admin-theme-tab-panel.is-active:not([hidden]) {
  display: block;
}
.admin-theme-section {
  margin-bottom: 0.25rem;
}
.admin-theme-token-toolbar {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.admin-theme-search__input {
  width: 100%;
  max-width: 28rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #eee;
  font-size: 0.88rem;
}
.admin-theme-sticky-save {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.92) 0%, #121212 35%);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
}
.admin-theme-preview-card {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background: #0d0d0d;
  overflow: hidden;
}
.admin-theme-preview-card__head {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #242424;
}
.admin-theme-preview-card__title {
  margin: 0;
  font-size: 0.95rem;
}
.admin-theme-live-preview {
  --preview-pad: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
}
.admin-theme-live-preview__chrome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.55rem var(--preview-pad);
  background: var(--gray-900, #141414);
  border-bottom: 1px solid var(--gray-700, #2a2a2a);
}
.admin-theme-live-preview__logo {
  font-weight: 800;
  color: var(--white, #fff);
  letter-spacing: -0.02em;
}
.admin-theme-live-preview__nav {
  display: flex;
  gap: 0.65rem;
  flex: 1;
}
.admin-theme-live-preview__nav a {
  color: var(--gray-200, #e5e5e5);
  text-decoration: none;
  font-weight: 600;
}
.admin-theme-live-preview__nav a:hover {
  color: var(--red, #e50914);
}
.admin-theme-live-preview__cta {
  border: none;
  border-radius: var(--radius-btn, 4px);
  padding: 0.35rem 0.65rem;
  font-weight: 700;
  font-size: 0.75rem;
  background: var(--red, #e50914);
  color: #fff;
  cursor: default;
}
.admin-theme-live-preview__body {
  padding: var(--preview-pad);
  background: var(--black, #0a0a0a);
}
.admin-theme-live-preview__h {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white, #fff);
  letter-spacing: -0.02em;
}
.admin-theme-live-preview__muted {
  margin: 0 0 0.65rem;
  color: var(--gray-400, #8c8c8c);
  font-size: 0.78rem;
  max-width: 20rem;
}
.admin-theme-live-preview__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.admin-theme-live-preview__chip {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 99px;
  background: color-mix(in srgb, var(--gray-700, #2a2a2a) 80%, transparent);
  color: var(--gray-200, #e5e5e5);
  border: 1px solid var(--gray-700, #2a2a2a);
}
.admin-theme-live-preview__link {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--red, #e50914);
  text-decoration: none;
}
.admin-theme-live-preview__link:hover {
  text-decoration: underline;
}
.admin-theme-live-preview__card {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-control, 10px);
  background: var(--gray-900, #141414);
  border: 1px solid var(--gray-700, #2a2a2a);
}
.admin-theme-live-preview__card-kicker {
  margin: 0;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400, #8c8c8c);
  font-weight: 700;
}
.admin-theme-live-preview__card-title {
  margin: 0.2rem 0 0.5rem;
  font-weight: 700;
  color: var(--white, #fff);
}
.admin-theme-live-preview__btn {
  width: 100%;
  border: none;
  border-radius: var(--radius-btn, 4px);
  padding: 0.45rem 0.65rem;
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--red, #e50914);
  color: #fff;
  cursor: default;
}
.admin-theme-preview-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-top: 1px solid #242424;
  background: #101010;
}
.admin-theme-json-textarea {
  width: 100%;
  min-height: 320px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.45;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #0a0a0a;
  color: #ddd;
  resize: vertical;
}
.admin-theme-json-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
