/* Goa Wheels - premium minimal theme */
: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;
}

.page-nav-spacer {
  height: 80px;
  background: var(--black);
}

@media (min-width: 768px) {
  .page-nav-spacer {
    height: 96px;
  }
}

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

:where(.admin-app) a {
  color: var(--red);
  text-decoration: none;
}

:where(.admin-app) 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;
}

:where(.admin-app) .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;
}

:where(.admin-app) .btn:active {
  transform: scale(0.98);
}

:where(.admin-app) .btn-primary {
  background: var(--red);
  color: #fff;
}

:where(.admin-app) .btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  text-decoration: none;
}

:where(.admin-app) .btn-primary:focus-visible {
  color: #fff;
}

:where(.admin-app) .btn-primary:visited {
  color: #fff;
}

:where(.admin-app) .btn-primary:disabled,
:where(.admin-app) .btn-primary[disabled] {
  color: #fff;
  opacity: 0.65;
}

:where(.admin-app) .btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-700);
}

:where(.admin-app) .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;
}

.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;
}
.admin-app input,
.admin-app select,
.admin-app 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;
}

.admin-app input:focus,
.admin-app select:focus,
.admin-app 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;
  }

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

  .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: dark appearance (Tailwind tokens for data-color-scheme="dark") === */
html[data-color-scheme="dark"] {
  color-scheme: dark;
  --background: #0a0a0a;
  --foreground: #e5e5e5;
  --card: #141414;
  --card-foreground: #e5e5e5;
  --popover: #141414;
  --popover-foreground: #e5e5e5;
  --primary: #f59e0b;
  --primary-foreground: #000000;
  --secondary: #262626;
  --secondary-foreground: #e5e5e5;
  --muted: #1a1a1a;
  --muted-foreground: #a3a3a3;
  --accent: #92400e;
  --accent-foreground: #fde68a;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #2a2a2a;
  --input: #404040;
  --ring: #f59e0b;
}

html[data-color-scheme="dark"] #site-header {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: #2a2a2a;
}

html[data-color-scheme="dark"] #site-header .border-border {
  border-color: #2a2a2a;
}

html[data-color-scheme="dark"] #site-header #bar-1,
html[data-color-scheme="dark"] #site-header #bar-2,
html[data-color-scheme="dark"] #site-header #bar-3 {
  background-color: #e5e5e5;
}

/* === Public storefront: light appearance (default) === */
html[data-color-scheme="light"] {
  color-scheme: light;
}

html[data-color-scheme="light"] body {
  background: #ffffff;
  color: #1f2937;
}

html[data-color-scheme="light"] .page-nav-spacer {
  background: #ffffff;
}

html[data-color-scheme="light"] #site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: #e5e7eb;
}

html[data-color-scheme="light"] #site-header .border-border {
  border-color: #e5e7eb;
}

html[data-color-scheme="light"] #site-header #bar-1,
html[data-color-scheme="light"] #site-header #bar-2,
html[data-color-scheme="light"] #site-header #bar-3 {
  background-color: #1f2937;
}

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;
}

.demo-credentials {
  margin-bottom: 1.5rem;
}

.demo-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
}

.demo-box {
  background: #fff3f1;
  border: 1px solid #ffd4cc;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 14px;
  line-height: 1.6;
}

.demo-box:hover {
  background: #ffe7e2;
  transform: translateY(-2px);
}

.demo-login-btn {
  width: 100%;
  margin-bottom: 1.2rem;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff1ee;
  border: 1px solid #ffd4cc;
  color: #111;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.demo-login-btn:hover {
  background: #ffe3dc;
  transform: translateY(-2px);
}

/* ── Admin leads ── */
.admin-leads-dash {
  margin-bottom: 1.25rem;
}

.admin-leads-filters {
  margin-bottom: 1.25rem;
}

.admin-leads-table-wrap {
  margin-bottom: 1rem;
}

.admin-leads-id {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.admin-leads-id:hover {
  color: var(--primary, #ff6b6b);
}

.admin-leads-trip {
  min-width: 12rem;
}

.admin-leads-trip strong {
  display: block;
  font-weight: 600;
}

.admin-leads-trip small {
  display: block;
  margin-bottom: 0.15rem;
}

.admin-leads-trip__arrow {
  display: block;
  color: #666;
  font-size: 0.85rem;
  margin: 0.15rem 0;
}

.admin-leads-car {
  font-weight: 600;
}

.admin-leads-client {
  max-width: 14rem;
}

.admin-leads-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.admin-leads-preview-row td {
  padding-top: 0 !important;
  border-top: none !important;
  background: rgba(255, 255, 255, 0.02);
}

.admin-leads-preview {
  margin: 0 0 0.5rem;
}

.admin-leads-preview summary {
  cursor: pointer;
  font-size: 0.82rem;
  color: #888;
  padding: 0.35rem 0;
  user-select: none;
}

.admin-leads-preview summary:hover {
  color: #ccc;
}

.admin-leads-preview__grid {
  display: grid;
  gap: 1rem;
  padding: 0.75rem 0 0.5rem;
}

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

.admin-leads-preview__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin: 0 0 0.5rem;
}

.admin-leads-preview-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  margin: 0;
  font-size: 0.88rem;
}

.admin-leads-preview-dl dt {
  color: #777;
  font-weight: 600;
}

.admin-leads-preview-dl dd {
  margin: 0;
}

.admin-leads-message {
  margin: 0;
  padding: 0.85rem 1rem;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  color: #ddd;
  max-height: 220px;
  overflow: auto;
}

.admin-leads-message--full {
  max-height: none;
}

.admin-leads-show-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-leads-show-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.admin-leads-show-meta {
  margin: 0;
  color: #888;
  font-size: 0.88rem;
}

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

.admin-leads-show-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 960px) {
  .admin-leads-show-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.admin-leads-dl dt {
  min-width: 9rem;
}

.admin-leads-contact-number {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.admin-leads-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.admin-leads-car-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.admin-leads-car-card__img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #333;
  flex-shrink: 0;
}

.admin-leads-car-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.admin-leads-car-card__price {
  margin: 0.5rem 0;
  font-weight: 600;
  color: #ccc;
}

/* Contact page - corporate business layout (contact-biz) */
.contact-biz {
  --cb-accent: #f59e0b;
  --cb-accent-soft: rgba(245, 158, 11, 0.14);
  --cb-surface: #ffffff;
  --cb-surface-alt: #f9fafb;
  --cb-border: #e5e7eb;
  --cb-muted: #6b7280;
  --cb-text: #1f2937;
  --cb-hero-bg: #111827;
  --cb-metrics-bg: #f3f4f6;
  --cb-page-bg: #f9fafb;
  --cb-enquiry-bg: #f3f4f6;
  --cb-radius: 6px;
  --cb-radius-lg: 10px;
  color: var(--cb-text);
  background: var(--cb-page-bg);
  font-family: Inter, var(--font, system-ui, sans-serif);
}

.contact-biz__title,
.contact-biz__section-title,
.contact-biz__alert-title,
.contact-biz__airport-name,
.contact-biz__fleet-name {
  color: #111827;
}

.contact-biz__hero {
  color: #f9fafb;
}

.contact-biz__hero .contact-biz__title,
.contact-biz__hero .contact-biz__lead,
.contact-biz__hero .contact-biz__lead strong,
.contact-biz__hero .contact-biz__checks li {
  color: #f3f4f6;
}

.contact-biz__hero .contact-biz__breadcrumb,
.contact-biz__hero .contact-biz__breadcrumb a {
  color: #9ca3af;
}

.contact-biz__metric-value {
  color: #b45309;
}

.contact-biz__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e5e7eb;
}

html[data-color-scheme="dark"] .contact-biz {
  --cb-surface: #141414;
  --cb-surface-alt: #1a1a1a;
  --cb-border: #2a2a2a;
  --cb-muted: #8c8c8c;
  --cb-text: #e5e5e5;
  --cb-hero-bg: #0a0d12;
  --cb-metrics-bg: #06080b;
  --cb-page-bg: #0a0a0a;
  --cb-enquiry-bg: #111111;
}

html[data-color-scheme="dark"] .contact-biz__title,
html[data-color-scheme="dark"] .contact-biz__section-title,
html[data-color-scheme="dark"] .contact-biz__alert-title,
html[data-color-scheme="dark"] .contact-biz__airport-name,
html[data-color-scheme="dark"] .contact-biz__fleet-name {
  color: #e5e5e5;
}

html[data-color-scheme="dark"] .contact-biz__hero {
  color: #f9fafb;
}

html[data-color-scheme="dark"] .contact-biz__metric-value {
  color: #f59e0b;
}

.contact-biz__hero {
  background: var(--cb-hero-bg);
  border-bottom: 1px solid var(--cb-border);
  padding: 1.5rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.contact-biz__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(245, 158, 11, 0.06) 0%, transparent 42%);
  pointer-events: none;
}

.contact-biz__hero-inner { position: relative; z-index: 1; }

.contact-biz__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--cb-muted);
  margin-bottom: 1.75rem;
}

.contact-biz__breadcrumb a { color: var(--cb-muted); text-decoration: none; }
.contact-biz__breadcrumb a:hover { color: var(--cb-accent); }

.contact-biz__hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .contact-biz__hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.contact-biz__overline {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cb-accent);
}

.contact-biz__overline--section { margin-bottom: 0.45rem; }

.contact-biz__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.contact-biz__lead {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cb-muted);
}

.contact-biz__lead strong { color: var(--cb-text); font-weight: 600; }

.contact-biz__checks {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  max-width: 34rem;
}

.contact-biz__checks li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.contact-biz__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 1px;
  background: var(--cb-accent);
}

.contact-biz__hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.contact-biz__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: var(--cb-radius);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}

.contact-biz__btn:hover { transform: translateY(-1px); }
.contact-biz__btn--sm { padding: 0.55rem 1rem; font-size: 0.75rem; }
.contact-biz__btn--primary { background: var(--cb-accent); color: #0a0a0a; }
.contact-biz__btn--outline { background: transparent; border-color: var(--cb-border); color: var(--cb-text); }
.contact-biz__btn--outline:hover { border-color: var(--cb-accent); color: var(--cb-accent); }
.contact-biz__btn--ghost { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); color: var(--cb-muted); }
.contact-biz__btn--whatsapp { background: #128c7e; border-color: #0f7668; color: #fff; }
.contact-biz__btn--whatsapp:hover { background: #0f7668; }
.contact-biz__btn--block { display: block; width: 100%; text-align: center; }

.contact-biz__hero-media {
  margin: 0;
  border-radius: var(--cb-radius-lg);
  overflow: hidden;
  border: 1px solid var(--cb-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.contact-biz__hero-media img {
  display: block;
  width: 100%;
  min-height: 240px;
  max-height: 420px;
  object-fit: cover;
}

.contact-biz__hero-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cb-muted);
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid var(--cb-border);
}

.contact-biz__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #6ee7b7;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-biz__status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #34d399;
}

.contact-biz__metrics {
  background: var(--cb-metrics-bg);
  border-bottom: 1px solid var(--cb-border);
}

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

@media (min-width: 768px) {
  .contact-biz__metrics-grid { grid-template-columns: repeat(4, 1fr); }
}

.contact-biz__metric {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--cb-border);
  border-bottom: 1px solid var(--cb-border);
}

@media (min-width: 768px) {
  .contact-biz__metric { border-bottom: none; text-align: left; padding: 1.5rem 1.25rem; }
  .contact-biz__metric:last-child { border-right: none; }
}

.contact-biz__metric-value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--cb-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.contact-biz__metric-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

.contact-biz__body { padding: 2.5rem 0 1rem; }

.contact-biz__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1.1rem;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
}

.contact-biz__nav-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

.contact-biz__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-biz__nav-list a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cb-muted);
  text-decoration: none;
}

.contact-biz__nav-list a:hover { color: var(--cb-accent); }

.contact-biz__alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--cb-border);
  border-left: 3px solid var(--cb-accent);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
}

.contact-biz__alert-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.contact-biz__alert-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--cb-muted);
  max-width: 36rem;
  line-height: 1.55;
}

.contact-biz__alert-text a { color: var(--cb-accent); font-weight: 600; text-decoration: none; }
.contact-biz__alert-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.contact-biz__section { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.contact-biz__section--compact { margin-bottom: 2rem; }
.contact-biz__section--panel {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
}

.contact-biz__section-head { margin-bottom: 1.5rem; max-width: 40rem; }

.contact-biz__section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.contact-biz__section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.contact-biz__section-title--sm { font-size: 1.25rem; }

.contact-biz__section-intro {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--cb-muted);
}

.contact-biz__section-foot {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: var(--cb-muted);
}

.contact-biz__section-foot a { color: var(--cb-accent); font-weight: 600; text-decoration: none; }
.contact-biz__link-arrow { font-size: 0.8125rem; font-weight: 700; color: var(--cb-accent); text-decoration: none; }

.contact-biz__airport-grid { display: grid; gap: 1.25rem; }

@media (min-width: 880px) {
  .contact-biz__airport-grid { grid-template-columns: 1fr 1fr; }
}

.contact-biz__airport-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
  overflow: hidden;
}

.contact-biz__airport-card.is-highlighted {
  border-color: #c27803;
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.25);
}

.contact-biz__airport-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.contact-biz__airport-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contact-biz__airport-code {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: var(--cb-radius);
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--cb-accent);
}

.contact-biz__airport-code--inline { position: static; background: var(--cb-accent-soft); }

.contact-biz__airport-body {
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-biz__airport-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-biz__airport-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cb-accent-soft);
  color: var(--cb-accent);
}

.contact-biz__airport-badge--goi { background: rgba(56, 189, 248, 0.12); color: #7dd3fc; }
.contact-biz__airport-name { margin: 0; font-size: 1.15rem; font-weight: 800; }
.contact-biz__airport-sub { margin: 0.25rem 0 0; font-size: 0.8125rem; color: var(--cb-muted); }
.contact-biz__airport-desc { margin: 0 0 0.85rem; font-size: 0.9rem; line-height: 1.55; color: var(--cb-muted); }
.contact-biz__airport-list { margin: 0 0 1.15rem; padding-left: 1.1rem; font-size: 0.8125rem; color: var(--cb-muted); }
.contact-biz__airport-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }

.contact-biz__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
}

.contact-biz__table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.contact-biz__table th, .contact-biz__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--cb-border);
}

.contact-biz__table thead th {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cb-muted);
  background: var(--cb-surface-alt);
}

.contact-biz__table tbody th { font-weight: 600; }
.contact-biz__table-note-col { color: var(--cb-muted); font-size: 0.8125rem; }

.contact-biz__steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .contact-biz__steps { grid-template-columns: repeat(3, 1fr); }
}

.contact-biz__step {
  padding: 1.25rem;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
}

.contact-biz__step-num {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--cb-accent);
}

.contact-biz__step-title { margin: 0 0 0.45rem; font-size: 1rem; font-weight: 700; }
.contact-biz__step-text { margin: 0; font-size: 0.8125rem; line-height: 1.55; color: var(--cb-muted); }

.contact-biz__doc-grid {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .contact-biz__doc-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-biz__doc-card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius);
  background: var(--cb-surface);
}

.contact-biz__doc-title { margin: 0 0 0.35rem; font-size: 0.9375rem; font-weight: 700; }
.contact-biz__doc-text { margin: 0; font-size: 0.8125rem; line-height: 1.5; color: var(--cb-muted); }

.contact-biz__reach-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.contact-biz__reach-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
}

.contact-biz__reach-card--featured {
  border-color: rgba(18, 140, 126, 0.45);
  background: linear-gradient(165deg, rgba(18, 140, 126, 0.12) 0%, var(--cb-surface) 55%);
}

.contact-biz__reach-label {
  margin: 0 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

.contact-biz__reach-value { margin: 0; font-size: 1rem; font-weight: 700; word-break: break-word; }
.contact-biz__reach-value--hours { font-size: 0.875rem; font-weight: 600; line-height: 1.45; }
.contact-biz__reach-value a { color: var(--cb-text); text-decoration: none; }
.contact-biz__reach-value a:hover { color: var(--cb-accent); }
.contact-biz__reach-hint { margin: 0.45rem 0 0; font-size: 0.8125rem; color: var(--cb-muted); }
.contact-biz__reach-card--featured .contact-biz__btn { margin-top: 0.85rem; }

.contact-biz__social { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }

.contact-biz__social a {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--cb-border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cb-muted);
  text-decoration: none;
}

.contact-biz__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.contact-biz__tag {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--cb-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cb-muted);
  text-decoration: none;
  background: var(--cb-surface);
}

.contact-biz__tag:hover { border-color: var(--cb-accent); color: var(--cb-accent); }

.contact-biz__fleet-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .contact-biz__fleet-grid { grid-template-columns: repeat(4, 1fr); }
}

.contact-biz__fleet-card {
  display: block;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  overflow: hidden;
  background: var(--cb-surface);
  text-decoration: none;
  color: inherit;
}

.contact-biz__fleet-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-biz__fleet-meta { padding: 0.75rem 0.85rem; }
.contact-biz__fleet-name { display: block; font-size: 0.875rem; font-weight: 700; }
.contact-biz__fleet-type {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

/* Fleet detail page (contact-biz layout) */
.fleet-detail__layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .fleet-detail__layout {
    grid-template-columns: minmax(0, 1fr) min(320px, 30%);
    gap: 2rem 2.5rem;
  }
}

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

.fleet-detail__sidebar {
  position: relative;
}

@media (min-width: 1024px) {
  .fleet-detail__sidebar {
    position: sticky;
    top: 5.5rem;
  }
}

.fleet-detail__book {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.fleet-detail__book-label {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

.fleet-detail__book-price {
  margin: 0 0 1.15rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cb-text);
}

.fleet-detail__book-price span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cb-muted);
}

.fleet-detail__book-price--sm { font-size: 1.25rem; }

.fleet-detail__book-rows {
  margin: 0 0 1.15rem;
  padding: 0;
  border-top: 1px solid var(--cb-border);
}

.fleet-detail__book-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--cb-border);
  font-size: 0.8125rem;
}

.fleet-detail__book-row dt {
  margin: 0;
  font-weight: 600;
  color: var(--cb-muted);
}

.fleet-detail__book-row dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.fleet-detail__book-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fleet-detail__book-note {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--cb-border);
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--cb-muted);
}

.fleet-detail__book-note strong { color: var(--cb-text); font-weight: 700; }

.fleet-detail__gallery-section { overflow: hidden; }

.fleet-detail__gallery-stage {
  border-radius: var(--cb-radius-lg);
  overflow: hidden;
  background: var(--cb-surface-alt);
  border: 1px solid var(--cb-border);
}

.fleet-detail__gallery-stage img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fleet-detail__gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.fleet-detail__gallery-thumb {
  flex: 0 0 auto;
  width: calc(25% - 0.375rem);
  min-width: 4.5rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--cb-radius);
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.72;
  transition: opacity 0.15s, border-color 0.15s;
}

@media (min-width: 640px) {
  .fleet-detail__gallery-thumb { width: calc(20% - 0.4rem); }
}

.fleet-detail__gallery-thumb:hover,
.fleet-detail__gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--cb-accent);
}

.fleet-detail__gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fleet-detail__specs {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .fleet-detail__specs { grid-template-columns: repeat(2, 1fr); }
}

.fleet-detail__spec {
  padding: 1rem 1.1rem;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius);
  background: var(--cb-surface);
}

.fleet-detail__spec--wide {
  grid-column: 1 / -1;
}

.fleet-detail__spec-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

.fleet-detail__spec-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--cb-text);
}

.contact-biz__faq { display: flex; flex-direction: column; gap: 0.5rem; max-width: 52rem; }

.contact-biz__faq-item {
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
  overflow: hidden;
}

.contact-biz__faq-q {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  list-style: none;
}

.contact-biz__faq-q::-webkit-details-marker { display: none; }
.contact-biz__faq-item[open] .contact-biz__faq-q { color: var(--cb-accent); border-bottom: 1px solid var(--cb-border); }
.contact-biz__faq-a { padding: 0 1.15rem 1rem; }
.contact-biz__faq-a p { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.6; color: var(--cb-muted); }

.contact-biz__enquiry {
  padding: 2.75rem 0 3.5rem;
  background: var(--cb-enquiry-bg);
  border-top: 1px solid var(--cb-border);
}

.contact-biz__enquiry-head { margin-bottom: 1.5rem; max-width: 40rem; }
.contact-biz__enquiry .enquiry-panel { max-width: 52rem; }

.contact-biz__prose {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cb-muted);
}

.contact-biz__prose h2,
.contact-biz__prose h3 {
  color: var(--cb-text);
  margin: 1.5rem 0 0.65rem;
}

.contact-biz__prose p { margin: 0 0 1rem; }

.contact-biz__prose a,
.contact-biz__step-text a {
  color: var(--cb-accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-biz__prose a:hover,
.contact-biz__step-text a:hover {
  text-decoration: underline;
}

a.contact-biz__airport-card {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.12s;
}

a.contact-biz__airport-card:hover {
  border-color: var(--cb-accent);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .contact-biz__airport-grid--compact { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .contact-biz__airport-grid--compact { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .contact-biz__airport-grid--compact { grid-template-columns: repeat(4, 1fr); }
}

.contact-biz__area-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.12s;
}

.contact-biz__area-link:hover {
  border-color: var(--cb-accent);
  transform: translateY(-1px);
}

.contact-biz__reach-value--sm {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cb-muted);
}

/* Fleet catalog - contact-biz extension */
.contact-biz__filter-block { margin-bottom: 1.25rem; }
.contact-biz__filter-block:last-child { margin-bottom: 0; }

.contact-biz__filter-label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

.contact-biz__filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-biz__filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--cb-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cb-muted);
  text-decoration: none;
  background: var(--cb-surface-alt);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.contact-biz__filter-chip span {
  font-size: 0.6875rem;
  font-weight: 700;
  opacity: 0.65;
}

.contact-biz__filter-chip:hover {
  border-color: var(--cb-accent);
  color: var(--cb-accent);
}

.contact-biz__filter-chip.is-active {
  border-color: var(--cb-accent);
  background: var(--cb-accent-soft);
  color: #92400e;
}

html[data-color-scheme="dark"] .contact-biz__filter-chip.is-active {
  color: var(--cb-accent);
}

.contact-biz__empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
}

.contact-biz__empty-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cb-text);
}

.contact-biz__empty-text {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--cb-muted);
}

.contact-biz__car-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-biz__car-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .contact-biz__car-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-biz__car-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  background: var(--cb-surface);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-biz__car-card:hover {
  border-color: color-mix(in srgb, var(--cb-accent) 45%, var(--cb-border));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-biz__car-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cb-surface-alt);
}

.contact-biz__car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.contact-biz__car-card:hover .contact-biz__car-media img {
  transform: scale(1.04);
}

.contact-biz__car-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(17, 24, 39, 0.82);
  color: #f9fafb;
}

.contact-biz__car-badge--tier {
  top: auto;
  bottom: 0.65rem;
  left: 0.65rem;
  background: var(--cb-accent);
  color: #0a0a0a;
}

.contact-biz__car-badge + .contact-biz__car-badge:not(.contact-biz__car-badge--tier) {
  top: 0.65rem;
  left: auto;
  right: 0.65rem;
}

.contact-biz__car-photos {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cb-text);
}

.contact-biz__car-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.15rem;
}

.contact-biz__car-name {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.contact-biz__car-name a {
  color: var(--cb-text);
  text-decoration: none;
}

.contact-biz__car-name a:hover { color: var(--cb-accent); }

.contact-biz__car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--cb-muted);
}

.contact-biz__car-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--cb-border);
}

.contact-biz__car-price-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cb-muted);
}

.contact-biz__car-price-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cb-accent);
  line-height: 1.2;
}

.contact-biz__car-price-value small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cb-muted);
}

.contact-biz__hero--home {
  padding-bottom: 2rem;
}

.contact-biz__home-book {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--cb-radius-lg);
  background: #ffffff;
  border: 1px solid var(--cb-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.contact-biz__home-book-label {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #111827;
}

.contact-biz__home-book-row {
  color-scheme: light;
}

/* Homepage - Zoomcar-inspired business layout (home-app) */
.home-app {
  --ha-bg: #f0f2f5;
  --ha-surface: #ffffff;
  --ha-surface-alt: #f8f9fb;
  --ha-border: #e4e7ec;
  --ha-text: #111827;
  --ha-muted: #6b7280;
  --ha-accent: #f59e0b;
  --ha-accent-hover: #d97706;
  --ha-radius: 10px;
  --ha-shadow: 0 4px 24px rgba(17, 24, 39, 0.08);
  --ha-shadow-lg: 0 20px 50px rgba(17, 24, 39, 0.12);
  background: var(--ha-bg);
  color: var(--ha-text);
  font-family: Inter, var(--font, system-ui, sans-serif);
}

.home-app__hero {
  position: relative;
  /* Clear fixed header (h-20 / md:h-24) + breathing room below nav */
  padding: calc(5rem + 2rem) 0 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .home-app__hero {
    padding-top: calc(6rem + 2.75rem);
    padding-bottom: 3.5rem;
  }
}

.home-app__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-app__hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 242, 245, 0.92) 0%, rgba(240, 242, 245, 0.78) 45%, rgba(240, 242, 245, 0.95) 100%);
}

.home-app__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-app__hero-inner {
  position: relative;
  z-index: 1;
}

.home-app__badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-app__hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ha-text);
}

.home-app__hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ha-muted);
}

.home-app__hero-lead strong {
  color: var(--ha-text);
  font-weight: 600;
}

.home-app__search {
  background: var(--ha-surface);
  border: 1px solid var(--ha-border);
  border-radius: calc(var(--ha-radius) + 4px);
  box-shadow: var(--ha-shadow-lg);
  padding: 1.25rem 1.35rem 1.35rem;
}

.home-app__search-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ha-border);
}

.home-app__search-tab {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ha-muted);
  background: transparent;
  cursor: default;
}

.home-app__search-tab.is-active {
  background: var(--ha-text);
  color: #fff;
}

.home-app__search-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-app__search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .home-app__search-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
    align-items: end;
  }
}

.home-app__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-app__field-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ha-muted);
}

.home-app__input {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--ha-border);
  border-radius: var(--ha-radius);
  background: var(--ha-surface);
  color: var(--ha-text);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.home-app__input:focus {
  outline: none;
  border-color: var(--ha-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.home-app__search-action {
  display: flex;
  align-items: stretch;
}

.home-app__search-btn {
  width: 100%;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--ha-radius);
  background: var(--ha-accent);
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
  white-space: nowrap;
}

.home-app__search-btn:hover {
  background: var(--ha-accent-hover);
  transform: translateY(-1px);
}

.home-app__search-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--ha-muted);
}

.home-app__trust {
  background: var(--ha-surface);
  border-top: 1px solid var(--ha-border);
  border-bottom: 1px solid var(--ha-border);
}

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

@media (min-width: 768px) {
  .home-app__trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.home-app__trust-item {
  padding: 1.15rem 1rem;
  text-align: center;
  border-right: 1px solid var(--ha-border);
  border-bottom: 1px solid var(--ha-border);
}

@media (min-width: 768px) {
  .home-app__trust-item { border-bottom: none; text-align: left; padding: 1.25rem; }
  .home-app__trust-item:last-child { border-right: none; }
}

.home-app__trust-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ha-text);
  line-height: 1.1;
}

.home-app__trust-item span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ha-muted);
}

.home-app__section {
  padding: 3.5rem 0;
}

.home-app__section--alt {
  background: var(--ha-surface);
  border-top: 1px solid var(--ha-border);
  border-bottom: 1px solid var(--ha-border);
}

.home-app__head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.home-app__head--center {
  text-align: center;
  margin-inline: auto;
}

.home-app__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.home-app__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b45309;
}

.home-app__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ha-text);
}

.home-app__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ha-muted);
}

.home-app__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #b45309;
  text-decoration: none;
  white-space: nowrap;
}

.home-app__link:hover { text-decoration: underline; }

.home-app__benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-app__benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-app__benefits { grid-template-columns: repeat(4, 1fr); }
}

.home-app__benefit {
  padding: 1.25rem;
  background: var(--ha-surface);
  border: 1px solid var(--ha-border);
  border-radius: var(--ha-radius);
  transition: box-shadow 0.15s, border-color 0.15s;
}

.home-app__benefit:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: var(--ha-shadow);
}

.home-app__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

.home-app__benefit-title {
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
}

.home-app__benefit-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ha-muted);
}

.home-app__steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .home-app__steps { grid-template-columns: repeat(3, 1fr); }
}

.home-app__step {
  padding: 1.35rem;
  background: var(--ha-surface-alt);
  border: 1px solid var(--ha-border);
  border-radius: var(--ha-radius);
  text-align: center;
}

.home-app__section--alt .home-app__step {
  background: var(--ha-bg);
}

.home-app__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--ha-accent);
  color: #111827;
  font-size: 0.875rem;
  font-weight: 800;
}

.home-app__step-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.home-app__step-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ha-muted);
}

.home-app__hub-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-app__hub-grid { grid-template-columns: repeat(2, 1fr); }
}

.home-app__hub-card {
  display: block;
  border-radius: var(--ha-radius);
  overflow: hidden;
  background: var(--ha-surface);
  border: 1px solid var(--ha-border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.12s;
}

.home-app__hub-card:hover {
  box-shadow: var(--ha-shadow-lg);
  transform: translateY(-2px);
}

.home-app__hub-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-app__hub-body {
  padding: 1rem 1.15rem;
}

.home-app__hub-code {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-app__hub-name {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.home-app__hub-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ha-muted);
}

.home-app__fleet-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .home-app__fleet-grid { grid-template-columns: repeat(4, 1fr); }
}

.home-app__fleet-card {
  display: block;
  background: var(--ha-surface);
  border: 1px solid var(--ha-border);
  border-radius: var(--ha-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.home-app__section--alt .home-app__fleet-card {
  background: var(--ha-bg);
}

.home-app__fleet-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--ha-shadow);
}

.home-app__fleet-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #eef0f3;
}

.home-app__fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-app__fleet-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-app__fleet-body {
  padding: 0.75rem 0.85rem 0.9rem;
}

.home-app__fleet-name {
  margin: 0 0 0.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-app__fleet-spec {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  color: var(--ha-muted);
}

.home-app__fleet-price {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #b45309;
}

.home-app__fleet-price--muted {
  font-weight: 600;
  color: var(--ha-muted);
}

.home-app__loc-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.home-app__loc-chip {
  flex-shrink: 0;
  width: 7.5rem;
  border-radius: var(--ha-radius);
  overflow: hidden;
  background: var(--ha-surface);
  border: 1px solid var(--ha-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.home-app__loc-chip:hover {
  border-color: var(--ha-accent);
}

.home-app__loc-chip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-app__loc-name {
  display: block;
  padding: 0.55rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-app__blog-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .home-app__blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-app__blog-grid { grid-template-columns: repeat(4, 1fr); }
}

.home-app__blog-card {
  display: block;
  background: var(--ha-bg);
  border: 1px solid var(--ha-border);
  border-radius: var(--ha-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.home-app__section--alt .home-app__blog-card {
  background: var(--ha-surface);
}

.home-app__blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-app__blog-body {
  padding: 0.85rem 1rem 1rem;
}

.home-app__blog-title {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-app__blog-excerpt {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ha-muted);
}

.home-app__faq-wrap {
  max-width: 42rem;
}

.home-app__faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-app__faq-item {
  border: 1px solid var(--ha-border);
  border-radius: var(--ha-radius);
  background: var(--ha-surface);
  overflow: hidden;
}

.home-app__faq-item summary {
  padding: 1rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.home-app__faq-item summary::-webkit-details-marker { display: none; }

.home-app__faq-item[open] summary {
  color: #b45309;
  border-bottom: 1px solid var(--ha-border);
}

.home-app__faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ha-muted);
}

.home-app__enquiry {
  padding: 3.5rem 0 4rem;
  background: var(--ha-surface);
  border-top: 1px solid var(--ha-border);
}

.home-app__enquiry-head {
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.home-app__enquiry-wa {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--ha-muted);
}

.home-app__enquiry-wa a {
  color: #b45309;
  font-weight: 700;
  text-decoration: none;
}

.home-app__enquiry .enquiry-panel {
  max-width: 52rem;
  border-radius: calc(var(--ha-radius) + 2px) !important;
}

.enquiry-cta__head {
  margin-bottom: 1.25rem;
}

.enquiry-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.enquiry-page__body {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.enquiry-page__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .enquiry-page__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }
}

.enquiry-page__form-head {
  margin-bottom: 1.25rem;
}

.enquiry-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enquiry-page__card {
  padding: 1.15rem 1.25rem;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.enquiry-page__card-title {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--cb-text);
}

.enquiry-page__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.enquiry-page__step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.enquiry-page__step-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cb-accent-soft);
  color: var(--cb-accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.enquiry-page__step strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cb-text);
}

.enquiry-page__step p {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--cb-muted);
}

.enquiry-page__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.enquiry-page__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cb-accent);
  text-decoration: none;
}

.enquiry-page__links a:hover {
  text-decoration: underline;
}

.enquiry-page__faq {
  margin: 0;
}

.enquiry-page__faq-item + .enquiry-page__faq-item {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--cb-border);
}

.enquiry-page__faq-item dt {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cb-text);
}

.enquiry-page__faq-item dd {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--cb-muted);
}

@media (min-width: 1024px) {
  .enquiry-page__aside {
    position: sticky;
    top: 5.5rem;
  }
}

/* Light enquiry form inside contact-biz pages */
.contact-biz .enquiry-panel {
  padding: 1.5rem 1.35rem 1.75rem;
  background: var(--cb-surface);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.contact-biz .enquiry-panel::before {
  display: none;
}

.contact-biz .enquiry-panel--embedded {
  padding-top: 1.35rem;
}

.contact-biz .enquiry-panel__brand {
  background: var(--cb-accent-soft);
  border-color: color-mix(in srgb, var(--cb-accent) 35%, var(--cb-border));
  color: var(--cb-accent);
  box-shadow: none;
}

.contact-biz .enquiry-panel__title {
  color: var(--cb-text);
  font-weight: 800;
}

.contact-biz .enquiry-panel__subtitle {
  color: var(--cb-muted);
}

.contact-biz .enquiry-panel__flow-step {
  color: var(--cb-muted);
}

.contact-biz .enquiry-panel__flow-step + .enquiry-panel__flow-step::before {
  background: var(--cb-border);
}

.contact-biz .enquiry-panel__flow-num {
  background: var(--cb-surface-alt);
  border-color: var(--cb-border);
  color: var(--cb-accent);
}

.contact-biz .enquiry-panel__legend {
  color: var(--cb-muted);
}

.contact-biz .enquiry-panel__legend-opt {
  color: var(--cb-muted);
}

.contact-biz .enquiry-panel__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cb-text);
}

.contact-biz .enquiry-panel__field input,
.contact-biz .enquiry-panel__field select {
  width: 100%;
  border: 1px solid var(--cb-border);
  background-color: #ffffff;
  color: var(--cb-text);
}

.contact-biz .enquiry-panel__field select {
  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='%2364748b' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
}

.contact-biz .enquiry-panel__field select option,
.contact-biz .enquiry-panel__field select optgroup {
  background: #ffffff;
  color: var(--cb-text);
}

.contact-biz .enquiry-panel__field input:hover,
.contact-biz .enquiry-panel__field select:hover {
  border-color: color-mix(in srgb, var(--cb-accent) 40%, var(--cb-border));
}

.contact-biz .enquiry-panel__field input:focus,
.contact-biz .enquiry-panel__field select:focus {
  border-color: var(--cb-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cb-accent) 18%, transparent);
}

.contact-biz .enquiry-panel__text-btn {
  color: var(--cb-accent);
  text-decoration-color: color-mix(in srgb, var(--cb-accent) 45%, transparent);
}

.contact-biz .enquiry-panel__text-btn:hover {
  color: color-mix(in srgb, var(--cb-accent) 85%, #000);
}

.contact-biz .enquiry-panel__submit {
  background: var(--cb-accent);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--cb-accent) 28%, transparent);
}

.contact-biz .enquiry-panel__submit:hover {
  background: color-mix(in srgb, var(--cb-accent) 88%, #000);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--cb-accent) 34%, transparent);
}

.contact-biz .enquiry-panel__fineprint,
.contact-biz .enquiry-panel__lock {
  color: var(--cb-muted);
}

.contact-biz .enquiry-panel__error {
  color: #dc2626;
}

.home-app__enquiry-cta {
  padding: 3rem 0 4rem;
  background: #ffffff;
  border-top: 1px solid #e4e7ec;
  text-align: center;
}

.home-app__enquiry-cta-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.home-app__enquiry-cta .home-app__title {
  margin-bottom: 0.75rem;
}

.home-app__enquiry-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.home-app__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.12s, background 0.15s;
}

.home-app__cta-btn--primary {
  background: #f59e0b;
  color: #111827;
}

.home-app__cta-btn--primary:hover {
  background: #d97706;
  transform: translateY(-1px);
}

.home-app__cta-btn--ghost {
  background: transparent;
  color: #111827;
  border: 1px solid #e4e7ec;
}

.home-app__cta-btn--ghost:hover {
  border-color: #f59e0b;
}

/* Locations index (/locations) - home-app directory */
.loc-index__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: var(--ha-muted);
}

.loc-index__crumb a {
  color: inherit;
  text-decoration: none;
}

.loc-index__crumb a:hover {
  color: #b45309;
}

.loc-index__crumb [aria-current="page"] {
  color: var(--ha-text);
  font-weight: 600;
}

.loc-index__hero-copy {
  max-width: 40rem;
}

.loc-index__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.loc-index__toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem;
  background: var(--ha-surface);
  border: 1px solid var(--ha-border);
  border-radius: calc(var(--ha-radius) + 2px);
  box-shadow: var(--ha-shadow);
}

@media (min-width: 768px) {
  .loc-index__toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.loc-index__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.loc-index__filter {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--ha-border);
  border-radius: 999px;
  background: var(--ha-bg);
  color: var(--ha-text);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.loc-index__filter:hover {
  border-color: var(--ha-accent);
}

.loc-index__filter.is-active {
  background: var(--ha-accent);
  border-color: var(--ha-accent);
  color: #111827;
}

.loc-index__search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--ha-border);
  border-radius: var(--ha-radius);
  background: var(--ha-bg);
  color: var(--ha-muted);
}

@media (min-width: 768px) {
  .loc-index__search {
    width: min(100%, 18rem);
    flex-shrink: 0;
  }
}

.loc-index__search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ha-text);
}

.loc-index__search input:focus {
  outline: none;
}

.loc-index__search input::placeholder {
  color: var(--ha-muted);
  font-weight: 500;
}

.loc-index__grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .loc-index__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .loc-index__grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}

.loc-index__cell.hidden {
  display: none;
}

.loc-index__card {
  height: 100%;
  background: var(--ha-surface);
  border: 1px solid var(--ha-border);
  border-radius: var(--ha-radius);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}

.loc-index__card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: var(--ha-shadow);
  transform: translateY(-2px);
}

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

.loc-index__card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.loc-index__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.loc-index__card:hover .loc-index__card-media img {
  transform: scale(1.04);
}

.loc-index__card-type {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.loc-index__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1rem 1.1rem;
}

.loc-index__card-name {
  margin: 0 0 0.2rem;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.3;
}

.loc-index__card-sub {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
}

.loc-index__card-excerpt {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ha-muted);
  flex: 1;
}

.loc-index__card-more {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #b45309;
}

.loc-index__empty {
  text-align: center;
  padding: 3rem 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--ha-surface);
  border: 1px dashed var(--ha-border);
  border-radius: var(--ha-radius);
}

.loc-index__empty.hidden {
  display: none;
}

.loc-index__empty-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.loc-index__empty-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ha-muted);
}

/* Homepage - Naukri-inspired layout (home-nk) */
.home-nk {
  --nk-blue: #457eff;
  --nk-blue-dark: #275df5;
  --nk-teal: #0ea5a0;
  --nk-bg: #f8fafc;
  --nk-surface: #ffffff;
  --nk-muted-bg: #eef3ff;
  --nk-border: #e2e8f0;
  --nk-text: #1e293b;
  --nk-muted: #64748b;
  --nk-radius: 8px;
  --nk-shadow: 0 4px 20px rgba(39, 93, 245, 0.08);
  --nk-shadow-lg: 0 8px 32px rgba(39, 93, 245, 0.12);
  background: var(--nk-bg);
  color: var(--nk-text);
  font-family: Inter, var(--font, system-ui, sans-serif);
}

.home-nk__hero {
  position: relative;
  padding: calc(5rem + 1.5rem) 0 2.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .home-nk__hero {
    padding-top: calc(6rem + 2rem);
    padding-bottom: 3rem;
  }
}

.home-nk__hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #dce8ff 0%, #eef4ff 35%, #f8fafc 70%, #ffffff 100%);
  z-index: 0;
}

.home-nk__hero-bg::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(69, 126, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-nk__hero-inner {
  position: relative;
  z-index: 1;
}

.home-nk__hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-nk__hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2.5rem;
  }
}

.home-nk__hero-main {
  min-width: 0;
}

.home-nk__hero-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nk-blue-dark);
}

.home-nk__hero-head {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.home-nk__trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--nk-muted);
}

.home-nk__trust-stars {
  display: inline-flex;
  gap: 0.1rem;
  color: #f59e0b;
}

.home-nk__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
}

.home-nk__hero-aside {
  display: none;
}

@media (min-width: 1024px) {
  .home-nk__hero-aside { display: block; }
}

.home-nk__hero-visual {
  position: relative;
  border-radius: calc(var(--nk-radius) + 6px);
  overflow: hidden;
  box-shadow: var(--nk-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.home-nk__hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-nk__hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius);
  box-shadow: var(--nk-shadow);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--nk-text);
  backdrop-filter: blur(8px);
}

.home-nk__hero-float--top {
  top: 1rem;
  left: 1rem;
}

.home-nk__hero-float--bottom {
  bottom: 1rem;
  right: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.home-nk__hero-float--bottom strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--nk-blue-dark);
  line-height: 1.1;
}

.home-nk__hero-float--bottom span:last-child {
  font-size: 0.6875rem;
  color: var(--nk-muted);
  font-weight: 600;
}

.home-nk__hero-float-icon {
  font-size: 1rem;
}

.home-nk__hero-title {
  margin: 0 0 0.75rem;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.home-nk__hero-title span {
  color: var(--nk-blue-dark);
}

.home-nk__hero-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--nk-muted);
}

.home-nk__hero-lead strong {
  color: var(--nk-text);
  font-weight: 700;
}

.home-nk__search {
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: calc(var(--nk-radius) + 4px);
  box-shadow: var(--nk-shadow-lg);
  padding: 0;
  max-width: none;
  overflow: hidden;
}

.home-nk__search-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--nk-border);
  background: #f8fafc;
}

.home-nk__search-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nk-muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

@media (min-width: 640px) {
  .home-nk__search-tab { flex: 0 1 auto; min-width: 9rem; }
}

.home-nk__search-tab.is-active {
  color: var(--nk-blue-dark);
  background: var(--nk-surface);
  border-bottom-color: var(--nk-blue-dark);
}

.home-nk__search-bar {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

@media (min-width: 768px) {
  .home-nk__search { padding: 0; }
  .home-nk__search-bar { padding: 1.15rem 1.15rem 0.85rem; }
}

@media (min-width: 900px) {
  .home-nk__search-bar {
    grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
    gap: 0;
    align-items: stretch;
  }
}

.home-nk__search-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.35rem 0;
}

@media (min-width: 900px) {
  .home-nk__search-field {
    padding: 0.5rem 1rem;
    border-right: 1px solid var(--nk-border);
  }
  .home-nk__search-field--grow { min-width: 0; }
  .home-nk__search-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.35rem 0.35rem 0.35rem 0.75rem;
  }
}

.home-nk__search-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nk-muted);
}

.home-nk__search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--nk-text);
  padding: 0.15rem 0;
  min-height: 1.75rem;
}

.home-nk__search-input:focus {
  outline: none;
}

.home-nk__search-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: var(--nk-radius);
  background: var(--nk-blue-dark);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s;
}

.home-nk__search-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .home-nk__search-btn {
    width: auto;
    min-width: 9rem;
    height: 100%;
    min-height: 3.25rem;
  }
}

.home-nk__search-note {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.75rem;
  color: var(--nk-muted);
}

@media (min-width: 768px) {
  .home-nk__search-note { padding: 0 1.15rem 1rem; }
}

.home-nk__search-alt {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nk-blue-dark);
  text-decoration: none;
}

.home-nk__search-alt:hover { text-decoration: underline; }

@media (min-width: 900px) {
  .home-nk__search-alt { text-align: left; }
}

.home-nk__trending {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.25rem;
}

.home-nk__trending-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--nk-muted);
}

.home-nk__trending-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-nk__trending-links a {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--nk-border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--nk-blue-dark);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.home-nk__trending-links a:hover {
  border-color: var(--nk-blue);
  background: #fff;
}

.home-nk__stats {
  background: var(--nk-surface);
  border-top: 1px solid var(--nk-border);
  border-bottom: 1px solid var(--nk-border);
}

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

@media (min-width: 768px) {
  .home-nk__stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.home-nk__stat {
  padding: 1.1rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--nk-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.home-nk__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.15rem;
  border-radius: 50%;
  background: var(--nk-muted-bg);
  color: var(--nk-blue-dark);
}

@media (min-width: 768px) {
  .home-nk__stat {
    border-bottom: none;
    border-right: 1px solid var(--nk-border);
    padding: 1.25rem;
  }
  .home-nk__stat:last-child { border-right: none; }
}

.home-nk__stat:nth-child(odd) { border-right: 1px solid var(--nk-border); }
.home-nk__stat:nth-last-child(-n+2) { border-bottom: none; }

@media (min-width: 768px) {
  .home-nk__stat:nth-child(odd) { border-right: none; }
}

.home-nk__stat strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--nk-blue-dark);
  line-height: 1.2;
}

.home-nk__stat span:last-child {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--nk-muted);
}

.home-nk__services {
  padding: 1.25rem 0 1.75rem;
  background: var(--nk-surface);
  border-bottom: 1px solid var(--nk-border);
}

.home-nk__services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .home-nk__services-grid { grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
}

.home-nk__service {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--nk-bg);
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}

.home-nk__service:hover {
  border-color: rgba(69, 126, 255, 0.4);
  box-shadow: var(--nk-shadow);
  transform: translateY(-2px);
}

.home-nk__service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.35rem;
  border-radius: var(--nk-radius);
  background: var(--nk-muted-bg);
  color: var(--nk-blue-dark);
}

.home-nk__service-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #0f172a;
}

.home-nk__service-text {
  font-size: 0.75rem;
  color: var(--nk-muted);
  line-height: 1.4;
}

.home-nk__section {
  padding: 3rem 0;
}

.home-nk__section--muted {
  background: var(--nk-muted-bg);
}

.home-nk__section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.home-nk__section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-nk__section-title {
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #0f172a;
}

.home-nk__section-sub {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--nk-muted);
  max-width: 36rem;
}

.home-nk__section-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nk-blue-dark);
  text-decoration: none;
  white-space: nowrap;
}

.home-nk__section-link:hover { text-decoration: underline; }

.home-nk__cat-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.home-nk__cat-card {
  flex-shrink: 0;
  width: 8.5rem;
  padding: 1rem 0.85rem;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.home-nk__cat-card:hover {
  border-color: var(--nk-blue);
  box-shadow: var(--nk-shadow);
}

.home-nk__cat-card--accent {
  background: linear-gradient(180deg, #eef4ff 0%, #fff 100%);
  border-color: rgba(69, 126, 255, 0.25);
}

.home-nk__cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: var(--nk-muted-bg);
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--nk-blue-dark);
}

.home-nk__cat-icon svg {
  display: block;
}

.home-nk__cat-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-nk__cat-meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  color: var(--nk-muted);
}

.home-nk__spotlights {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-nk__spotlights { grid-template-columns: repeat(2, 1fr); }
}

.home-nk__spotlight {
  position: relative;
  display: block;
  min-height: 14rem;
  border-radius: calc(var(--nk-radius) + 4px);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--nk-shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}

.home-nk__spotlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--nk-shadow-lg);
}

.home-nk__spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-nk__spotlight:hover img {
  transform: scale(1.05);
}

.home-nk__spotlight-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 14rem;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.35) 55%, transparent 100%);
}

.home-nk__spotlight-tag {
  align-self: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  background: var(--nk-blue-dark);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-nk__spotlight-name {
  margin: 0 0 0.25rem;
  font-family: Merriweather, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-nk__spotlight-meta {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  opacity: 0.9;
  line-height: 1.45;
}

.home-nk__spotlight-cta {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #93c5fd;
}

.home-nk__fleet-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .home-nk__fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-nk__fleet-grid { grid-template-columns: repeat(4, 1fr); }
}

.home-nk__fleet-card {
  display: block;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}

.home-nk__fleet-card:hover {
  border-color: rgba(69, 126, 255, 0.4);
  box-shadow: var(--nk-shadow);
  transform: translateY(-2px);
}

.home-nk__fleet-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #f1f5f9;
}

.home-nk__fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-nk__fleet-card:hover .home-nk__fleet-media img {
  transform: scale(1.04);
}

.home-nk__fleet-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(39, 93, 245, 0.92);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-nk__fleet-body {
  padding: 0.85rem 0.9rem 1rem;
}

.home-nk__fleet-name {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.3;
}

.home-nk__fleet-spec {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--nk-muted);
}

.home-nk__fleet-price {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--nk-teal);
}

.home-nk__fleet-price--muted {
  font-weight: 600;
  color: var(--nk-muted);
}

.home-nk__jobs--compact {
  margin-top: 0.25rem;
}

.home-nk__reviews {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-nk__reviews { grid-template-columns: repeat(3, 1fr); }
}

.home-nk__review {
  margin: 0;
  padding: 1.25rem;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: calc(var(--nk-radius) + 2px);
  border-top: 3px solid var(--nk-blue);
}

.home-nk__review-text {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--nk-text);
  font-style: italic;
}

.home-nk__review-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nk-muted);
  font-style: normal;
}

.home-nk__employers {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-nk__employers { grid-template-columns: repeat(2, 1fr); }
}

.home-nk__employer {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: calc(var(--nk-radius) + 2px);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.home-nk__employer:hover {
  border-color: rgba(69, 126, 255, 0.35);
  box-shadow: var(--nk-shadow);
}

.home-nk__employer-logo {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: var(--nk-radius);
  overflow: hidden;
  border: 1px solid var(--nk-border);
}

.home-nk__employer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-nk__employer-name {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
}

.home-nk__employer-meta {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--nk-muted);
  line-height: 1.45;
}

.home-nk__employer-cta {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--nk-blue-dark);
}

.home-nk__jobs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-nk__job {
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.home-nk__job:hover {
  border-color: rgba(69, 126, 255, 0.35);
  box-shadow: var(--nk-shadow);
}

.home-nk__job-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 640px) {
  .home-nk__job-link {
    flex-wrap: nowrap;
    padding: 1rem 1.25rem;
  }
}

.home-nk__job-logo {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--nk-radius);
  overflow: hidden;
  border: 1px solid var(--nk-border);
  background: #f1f5f9;
}

.home-nk__job-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-nk__job-body {
  flex: 1;
  min-width: 0;
}

.home-nk__job-title {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.home-nk__job-company {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  color: var(--nk-muted);
}

.home-nk__job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.45rem;
  padding: 0;
  list-style: none;
}

.home-nk__job-tags li {
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--nk-muted-bg);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--nk-blue-dark);
}

.home-nk__job-salary {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--nk-teal);
}

.home-nk__job-salary--muted {
  font-weight: 600;
  color: var(--nk-muted);
}

.home-nk__job-apply {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--nk-blue-dark);
  border-radius: var(--nk-radius);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--nk-blue-dark);
  transition: background 0.15s, color 0.15s;
}

.home-nk__job:hover .home-nk__job-apply {
  background: var(--nk-blue-dark);
  color: #fff;
}

.home-nk__features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .home-nk__features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-nk__features { grid-template-columns: repeat(4, 1fr); }
}

.home-nk__feature {
  padding: 1.25rem;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius);
}

.home-nk__feature-num {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--nk-blue);
}

.home-nk__feature-title {
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 800;
}

.home-nk__feature-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--nk-muted);
}

.home-nk__steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .home-nk__steps { grid-template-columns: repeat(3, 1fr); }
}

.home-nk__step {
  padding: 1.35rem;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: calc(var(--nk-radius) + 2px);
  border-top: 3px solid var(--nk-blue);
}

.home-nk__step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--nk-muted-bg);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--nk-blue-dark);
}

.home-nk__step-title {
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 800;
}

.home-nk__step-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--nk-muted);
}

.home-nk__loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .home-nk__loc-grid { grid-template-columns: repeat(4, 1fr); }
}

.home-nk__loc-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.65rem 0.45rem 0.45rem;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  transition: border-color 0.15s;
}

.home-nk__loc-pill:hover { border-color: var(--nk-blue); }

.home-nk__loc-pill img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.home-nk__articles {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .home-nk__articles { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .home-nk__articles { grid-template-columns: repeat(4, 1fr); }
}

.home-nk__article {
  display: block;
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s;
}

.home-nk__article:hover { box-shadow: var(--nk-shadow); }

.home-nk__article img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-nk__article-body {
  padding: 0.85rem 1rem 1rem;
}

.home-nk__article-title {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-nk__article-excerpt {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--nk-muted);
}

.home-nk__article-read {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--nk-blue-dark);
}

.home-nk__faq-wrap {
  max-width: 42rem;
  margin-inline: auto;
}

.home-nk__faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-nk__faq-item {
  background: var(--nk-surface);
  border: 1px solid var(--nk-border);
  border-radius: var(--nk-radius);
  overflow: hidden;
}

.home-nk__faq-item summary {
  padding: 1rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.home-nk__faq-item summary::-webkit-details-marker { display: none; }

.home-nk__faq-item[open] summary {
  color: var(--nk-blue-dark);
  border-bottom: 1px solid var(--nk-border);
}

.home-nk__faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--nk-muted);
}

.home-nk__banner {
  padding: 2.75rem 0 3.5rem;
  background: linear-gradient(135deg, var(--nk-blue-dark) 0%, #1e40af 55%, var(--nk-teal) 100%);
  color: #fff;
}

.home-nk__banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.home-nk__banner-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.home-nk__banner-title {
  margin: 0 0 0.5rem;
  font-family: Merriweather, Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.home-nk__banner-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 32rem;
}

.home-nk__banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-nk__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--nk-radius);
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.12s, background 0.15s;
}

.home-nk__btn--white {
  background: #fff;
  color: var(--nk-blue-dark);
}

.home-nk__btn--white:hover {
  transform: translateY(-1px);
  background: #f8fafc;
}

.home-nk__btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.home-nk__btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.home-nk__btn--primary {
  background: var(--nk-blue-dark);
  color: #fff;
}

.home-nk__btn--primary:hover {
  background: #1557b0;
  transform: translateY(-1px);
}

.home-nk__btn--ghost {
  background: #fff;
  color: var(--nk-blue-dark);
  border: 1px solid var(--nk-border);
}

.home-nk__btn--ghost:hover {
  border-color: var(--nk-blue-dark);
  transform: translateY(-1px);
}

.home-nk__btn--whatsapp {
  background: #128c7e;
  color: #fff;
}

.home-nk__btn--whatsapp:hover {
  background: #0f7668;
  transform: translateY(-1px);
}

.home-nk__hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.home-nk__hero-cta .home-nk__btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 6px;
}

.home-nk__hero-inner--split {
  max-width: none;
}

.home-nk__hero-inner--split .home-nk__hero-head {
  max-width: 38rem;
}

.home-nk__hero-inner--split .home-nk__hero-lead {
  max-width: none;
}

.home-nk__hero-inner--split .home-nk__trust-row {
  margin-bottom: 1rem;
}

.home-nk__hero-inner--split .home-nk__trending {
  justify-content: flex-start;
}

/* Naukri professional variant - clean, centered, minimal */
.home-nk--pro {
  --nk-blue: #4a90e2;
  --nk-blue-dark: #1a73e8;
  --nk-muted-bg: #f4f7fb;
  --nk-bg: #ffffff;
  --nk-shadow: 0 2px 12px rgba(26, 115, 232, 0.06);
  --nk-shadow-lg: 0 6px 28px rgba(26, 115, 232, 0.1);
}

.home-nk--pro .home-nk__hero-bg {
  background: linear-gradient(180deg, #edf3fc 0%, #f7f9fc 42%, #ffffff 100%);
}

.home-nk--pro .home-nk__hero-bg::after {
  opacity: 0.5;
}

.home-nk--pro .home-nk__hero-inner--center {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.home-nk--pro .home-nk__hero-inner--split {
  text-align: left;
}

.home-nk--pro .home-nk__hero-inner--split .home-nk__hero-grid {
  align-items: center;
}

@media (min-width: 1024px) {
  .home-nk--pro .home-nk__hero-inner--split .home-nk__hero-aside {
    display: block;
  }
}

.home-nk--pro .home-nk__hero-inner--center .home-nk__hero-cta {
  justify-content: center;
}

.home-nk--pro .home-nk__hero-inner--center .home-nk__trust-row {
  justify-content: center;
}

.home-nk--pro .home-nk__fleet-badge {
  background: rgba(26, 115, 232, 0.92);
}

.home-nk--pro .home-nk__fleet-price {
  color: var(--nk-blue-dark);
}

.home-nk--pro .home-nk__spotlight-tag {
  background: var(--nk-blue-dark);
}

.home-nk--pro .home-nk__services {
  padding: 1.5rem 0 2rem;
  background: #fff;
  border-bottom: 1px solid #e8eef5;
}

.home-nk--pro .home-nk__service {
  border-color: #e8eef5;
  background: #f8fafc;
}

.home-nk--pro .home-nk__service:hover {
  border-color: rgba(26, 115, 232, 0.35);
}

.home-nk--pro .home-nk__service-icon {
  background: #eef4fd;
  color: var(--nk-blue-dark);
}

.home-nk--pro .home-nk__cat-icon {
  background: #eef4fd;
}

.home-nk--pro .home-nk__review {
  border-top-color: var(--nk-blue-dark);
}

.home-nk--pro .home-nk__hero-head {
  max-width: none;
  margin-bottom: 1.5rem;
}

.home-nk--pro .home-nk__hero-title {
  font-size: clamp(1.875rem, 4.5vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.home-nk--pro .home-nk__hero-lead {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 0.9375rem;
}

.home-nk--pro .home-nk__search {
  text-align: left;
  border-radius: 10px;
  border-color: #d8e3f0;
}

.home-nk--pro .home-nk__search-tabs {
  background: #f4f7fb;
}

.home-nk--pro .home-nk__search-tab.is-active {
  color: var(--nk-blue-dark);
  border-bottom-color: var(--nk-blue-dark);
  font-weight: 800;
}

.home-nk--pro .home-nk__search-btn {
  background: var(--nk-blue-dark);
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.home-nk--pro .home-nk__search-btn:hover {
  background: #1557b0;
}

.home-nk--pro .home-nk__trending {
  justify-content: center;
}

.home-nk--pro .home-nk__trending-links a {
  background: #fff;
  border-color: #dde5ef;
  font-weight: 600;
}

.home-nk--pro .home-nk__stats {
  background: #f4f7fb;
  border-color: #e8eef5;
}

.home-nk--pro .home-nk__stat strong {
  color: #1a73e8;
  font-size: 1.5rem;
}

.home-nk--pro .home-nk__section {
  padding: 3.25rem 0;
}

.home-nk--pro .home-nk__section-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-nk--pro .home-nk__section-sub {
  font-size: 0.8125rem;
}

.home-nk--pro .home-nk__cat-card {
  width: 7.5rem;
  padding: 0.85rem 0.75rem;
  border-radius: 6px;
  border-color: #e8eef5;
}

.home-nk--pro .home-nk__cat-card--accent {
  background: #eef4fd;
  border-color: #c8daf5;
}

.home-nk--pro .home-nk__cat-name {
  font-size: 0.8125rem;
  font-weight: 700;
}

.home-nk--pro .home-nk__employer {
  border-radius: 8px;
  border-color: #e8eef5;
}

.home-nk--pro .home-nk__employer-name {
  font-family: Inter, var(--font, system-ui, sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
}

.home-nk--pro .home-nk__job {
  border-radius: 6px;
  border-color: #e8eef5;
}

.home-nk--pro .home-nk__job-title {
  font-family: Inter, var(--font, system-ui, sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
}

.home-nk--pro .home-nk__job-apply {
  border-radius: 6px;
  font-weight: 600;
}

.home-nk--pro .home-nk__feature {
  border-radius: 8px;
  border-color: #e8eef5;
  padding: 1.35rem;
}

.home-nk--pro .home-nk__feature-num {
  display: none;
}

.home-nk--pro .home-nk__feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.home-nk--pro .home-nk__step {
  border-top-color: #1a73e8;
  border-radius: 8px;
}

.home-nk--pro .home-nk__loc-pill {
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  font-size: 0.8125rem;
  justify-content: center;
}

.home-nk--pro .home-nk__loc-pill img {
  display: none;
}

.home-nk--pro .home-nk__article {
  border-radius: 8px;
  border-color: #e8eef5;
}

.home-nk--pro .home-nk__faq-item {
  border-radius: 6px;
  border-color: #e8eef5;
}

.home-nk--pro .home-nk__faq-item[open] summary {
  color: #1a73e8;
}

.home-nk--pro .home-nk__banner {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
}

.home-nk--pro .home-nk__banner-inner--center {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.home-nk--pro .home-nk__banner-text {
  max-width: 28rem;
  margin-inline: auto;
}

.home-nk--pro .home-nk__banner-actions {
  justify-content: center;
}

body:has(.home-nk--pro) #site-header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8eef5 !important;
  box-shadow: 0 1px 0 rgba(26, 115, 232, 0.04);
}

body:has(.home-nk--pro) #site-header.bg-background\/0 {
  background: rgba(255, 255, 255, 0.98) !important;
}

/* === Sitewide Naukri professional theme (site-nk) === */
body.site-nk {
  --site-blue: #1a73e8;
  --site-blue-dark: #1557b0;
  --site-blue-soft: rgba(26, 115, 232, 0.12);
  --site-muted-bg: #f4f7fb;
  --site-border: #e8eef5;
}

body.site-nk #site-header,
body.site-nk #site-header.bg-background\/0 {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--site-border) !important;
  box-shadow: 0 1px 0 rgba(26, 115, 232, 0.04);
}

html[data-color-scheme="light"] body.site-nk {
  background: #ffffff;
}

body.site-nk .page-nav-spacer {
  background: #ffffff;
  height: calc(80px + 2.75rem);
}

@media (min-width: 768px) {
  body.site-nk .page-nav-spacer {
    height: calc(96px + 2.75rem);
  }
}

body.site-nk .home-nk__hero {
  padding-top: calc(5rem + 2.75rem + 1.5rem);
}

@media (min-width: 768px) {
  body.site-nk .home-nk__hero {
    padding-top: calc(6rem + 2.75rem + 2rem);
  }
}

body.site-nk .contact-biz {
  --cb-accent: #1a73e8;
  --cb-accent-soft: rgba(26, 115, 232, 0.12);
  --cb-hero-bg: transparent;
  --cb-page-bg: #ffffff;
  --cb-metrics-bg: #f4f7fb;
  --cb-enquiry-bg: #f4f7fb;
  --cb-surface-alt: #f4f7fb;
  --cb-border: #e8eef5;
}

body.site-nk .contact-biz__hero {
  background: linear-gradient(180deg, #edf3fc 0%, #f7f9fc 100%);
  color: #1e293b;
  border-bottom-color: var(--site-border);
}

body.site-nk .contact-biz__hero::before {
  background: linear-gradient(115deg, rgba(26, 115, 232, 0.07) 0%, transparent 45%);
}

body.site-nk .contact-biz__hero .contact-biz__title,
body.site-nk .contact-biz__hero .contact-biz__lead,
body.site-nk .contact-biz__hero .contact-biz__lead strong,
body.site-nk .contact-biz__hero .contact-biz__checks li {
  color: #1e293b;
}

body.site-nk .contact-biz__hero .contact-biz__breadcrumb,
body.site-nk .contact-biz__hero .contact-biz__breadcrumb a {
  color: #64748b;
}

body.site-nk .contact-biz__hero .contact-biz__breadcrumb a:hover {
  color: var(--site-blue);
}

body.site-nk .contact-biz__overline,
body.site-nk .contact-biz__overline--section {
  color: var(--site-blue-dark);
}

body.site-nk .contact-biz__metric-value {
  color: var(--site-blue-dark);
}

body.site-nk .contact-biz__btn--primary {
  background: var(--site-blue-dark);
  color: #ffffff;
}

body.site-nk .contact-biz__btn--primary:hover {
  background: #1557b0;
}

body.site-nk .contact-biz__btn--ghost {
  background: #ffffff;
  border-color: var(--site-border);
  color: #1e293b;
}

body.site-nk .contact-biz__btn--ghost:hover {
  border-color: var(--site-blue);
  color: var(--site-blue-dark);
}

body.site-nk .contact-biz__filter-chip.is-active {
  background: var(--site-blue-dark);
  border-color: var(--site-blue-dark);
  color: #ffffff;
}

body.site-nk .contact-biz__car-price-value {
  color: var(--site-blue-dark);
}

body.site-nk .contact-biz__faq-item[open] .contact-biz__faq-q {
  color: var(--site-blue-dark);
}

body.site-nk .contact-biz__enquiry {
  background: var(--site-muted-bg);
  border-top: 1px solid var(--site-border);
}

body.site-nk .home-app {
  --ha-accent: #1a73e8;
  --ha-bg: #ffffff;
  --ha-surface-alt: #f4f7fb;
  --ha-border: #e8eef5;
  --ha-muted: #64748b;
}

body.site-nk .home-app__hero-bg::after {
  background: linear-gradient(135deg, rgba(237, 243, 252, 0.95) 0%, rgba(247, 249, 252, 0.88) 50%, rgba(255, 255, 255, 0.92) 100%);
}

body.site-nk .home-app__badge {
  background: var(--site-blue-soft);
  color: var(--site-blue-dark);
}

body.site-nk .home-app__search-btn,
body.site-nk .home-app__cta-btn--primary {
  background: var(--site-blue-dark);
  color: #ffffff;
}

body.site-nk .home-app__search-btn:hover,
body.site-nk .home-app__cta-btn--primary:hover {
  background: #1557b0;
}

body.site-nk .home-app__cta-btn--ghost:hover {
  border-color: var(--site-blue);
}

body.site-nk .home-app__trust-item strong,
body.site-nk .home-app__link,
body.site-nk .home-app__fleet-price,
body.site-nk .home-app__hub-code,
body.site-nk .home-app__step-num,
body.site-nk .home-app__faq-item[open] summary {
  color: var(--site-blue-dark);
}

body.site-nk .home-app__fleet-tag {
  background: var(--site-blue-dark);
}

body.site-nk .home-app__section--alt {
  background: var(--site-muted-bg);
}

body.site-nk .home-app__enquiry-cta {
  background: #ffffff;
  border-top: 1px solid var(--site-border);
}

body.site-nk .loc-index__crumb a:hover {
  color: var(--site-blue-dark);
}

body.site-nk .loc-index__filter.is-active {
  background: var(--site-blue-dark);
  border-color: var(--site-blue-dark);
  color: #ffffff;
}

body.site-nk .loc-index__filter:hover {
  border-color: var(--site-blue);
}

body.site-nk .loc-index__card-more,
body.site-nk .loc-index__search input {
  color: var(--site-blue-dark);
}

body.site-nk .mobile-app-dock__item.is-active {
  color: var(--site-blue-dark);
  background: var(--site-blue-soft);
}

body.site-nk .mobile-app-dock__item.is-active .mobile-app-dock__icon {
  color: var(--site-blue-dark);
}

body.site-nk .site-footer a:hover {
  color: var(--site-blue-dark);
}

body.site-nk .text-primary {
  color: var(--site-blue-dark) !important;
}

body.site-nk .bg-primary {
  background-color: var(--site-blue-dark) !important;
}

body.site-nk .bg-primary\/10 {
  background-color: var(--site-blue-soft) !important;
}

body.site-nk .hover\:text-primary:hover,
body.site-nk a.hover\:text-primary:hover {
  color: var(--site-blue-dark) !important;
}

body.site-nk .text-primary-foreground,
body.site-nk .bg-primary.text-primary-foreground {
  color: #ffffff !important;
}

body.site-nk .shadow-primary\/20 {
  --tw-shadow-color: rgba(26, 115, 232, 0.2);
}

body.site-nk .ring-primary,
body.site-nk input:focus,
body.site-nk select:focus,
body.site-nk textarea:focus {
  --tw-ring-color: var(--site-blue-dark);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Call / WhatsApp marketing */
.call-strip {
  background: linear-gradient(90deg, #1a73e8 0%, #1557b0 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.call-strip__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding: 0.55rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}

.call-strip__text {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
}

.call-strip__text strong {
  font-weight: 800;
}

.call-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.call-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.12s, background 0.15s;
}

.call-strip__btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.call-strip__btn--call {
  background: #fff;
  color: #1557b0;
}

.call-strip__btn--wa {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-floats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-float,
.contact-floats .wa-float {
  position: static;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.22);
  text-decoration: none;
  transition: transform 0.12s, filter 0.15s;
}

.phone-float {
  background: #1a73e8;
  color: #fff;
}

.phone-float:hover,
.contact-floats .wa-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
  text-decoration: none;
}

.contact-floats .wa-float {
  background: #25d366;
  color: #fff;
}

.home-nk__trust-phone {
  font-weight: 800;
  color: #1a73e8;
  text-decoration: none;
}

.home-nk__trust-phone:hover {
  text-decoration: underline;
}

.home-nk__btn--call {
  background: #0f7668;
  color: #fff;
}

.home-nk__btn--call:hover {
  background: #0d6559;
  transform: translateY(-1px);
}

.mobile-app-dock__item--call,
.mobile-app-dock__item--wa {
  color: #fff !important;
  background: rgba(26, 115, 232, 0.18);
}

.mobile-app-dock__item--wa {
  background: rgba(37, 211, 102, 0.16);
}

/* ========== Admin PWA (install + standalone) ========== */
.admin-pwa-install {
  margin-bottom: 1rem;
  padding: 0.85rem;
  border: 1px solid #333;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-pwa-install--login {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.admin-pwa-install__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
}

.admin-pwa-install__ios {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #bbb;
}

.admin-pwa-install__dismiss {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  padding: 0.35rem;
  border: 0;
  background: transparent;
  color: #888;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.admin-pwa-install__dismiss:hover {
  color: #ccc;
}

.admin-pwa-offline {
  text-align: center;
}

@media (display-mode: standalone) {
  .admin-topbar {
    padding-top: max(0.75rem, env(safe-area-inset-top));
  }

  .admin-sidebar {
    padding-top: env(safe-area-inset-top);
  }

  .admin-main {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }

  .admin-login-page {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
}