:root {
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --bg-card: #171717;
  --bg-card-2: #1a1a1a;
  --text: #ffffff;
  --text-soft: #d8d8d8;
  --text-muted: #9f9f9f;
  --accent: #de0a26;
  --accent-strong: #de0a26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(222, 10, 38, 0.34);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --section-space: 100px;
  --section-space-mobile: 84px;
  --radius: 12px;
  --radius-sm: 10px;
  --container: 1240px;
  --nav-height: 66px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--nav-height);
  padding: 0.45rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 340px;
  line-height: 1;
}

.brand img {
  display: block;
  width: 100%;
  max-width: 270px;
  height: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-contact {
  position: relative;
}

.nav-contact-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform var(--transition), filter var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.nav-contact-toggle::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform var(--transition);
}

.nav-contact.is-open .nav-contact-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-contact-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  display: grid;
  min-width: 220px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(11, 11, 11, 0.96);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
  z-index: 20;
}

.nav-contact.is-open .nav-contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-contact-menu a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  color: #fff;
  white-space: nowrap;
}

.nav-contact-menu a:hover,
.nav-contact-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.36) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(222, 10, 38, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.28));
  animation: heroPulse 9s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  line-height: 0.92;
  font-size: clamp(3rem, 10vw, 6.6rem);
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--text);
}

.hero h1 strong {
  display: block;
  color: var(--accent);
  font-size: 1.08em;
  font-weight: 900;
}

.hero-text,
.section-text,
.service-note,
.membership-card li,
.footer-subtitle,
.footer-right p,
.footer-bottom p {
  color: var(--text-soft);
}

.hero-text {
  max-width: 620px;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button,
.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform var(--transition), filter var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:hover,
.button:focus-visible,
.card-button:hover,
.card-button:focus-visible,
.nav-contact-toggle:hover,
.nav-contact-toggle:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.button-primary,
.card-button {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.button-tertiary {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.services-section,
.membership-section,
.testimonials-section,
.contact-section {
  padding: var(--section-space) 0;
}

.fleet-section,
.fleet-teaser-section,
.fleet-stats-section {
  padding: var(--section-space) 0;
}

.membership-section {
  position: relative;
  background: #0b0b0b;
  overflow: hidden;
}

.membership-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.membership-media img {
  width: 100%;
  height: 122%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.44;
  filter: grayscale(0.16) saturate(0.36) brightness(0.78) contrast(1.02);
  transform: translate3d(0, -8%, 0) scale(1.14);
  transform-origin: center center;
  will-change: transform, opacity, filter;
}

.membership-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.34), rgba(8, 8, 8, 0.62)),
    linear-gradient(90deg, rgba(11, 11, 11, 0.22), rgba(11, 11, 11, 0.12));
  pointer-events: none;
}

.membership-section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 10, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.section-header-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-text {
  margin: 1rem 0 0;
  line-height: 1.8;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card,
.membership-card,
.testimonials-carousel,
.testimonial-card,
.contact-panel {
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card::after,
.membership-card::after,
.testimonials-carousel::after,
.contact-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.08) 46%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.service-card:hover,
.membership-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 32px 68px rgba(0, 0, 0, 0.4);
}

.service-card:hover::after,
.membership-card:hover::after,
.testimonials-carousel:hover::after,
.contact-panel:hover::after {
  transform: translateX(130%);
}

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 38%);
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.testimonials-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
}

.testimonials-viewport {
  min-width: 0;
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: 1rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(222, 10, 38, 0.24);
  border-radius: 999px;
  background: rgba(222, 10, 38, 0.1);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-rating {
  color: #ffd166;
  font-size: 1.1rem;
  letter-spacing: 0.24em;
}

.testimonial-text {
  margin: 1.25rem 0 1.5rem;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 2.3vw, 1.35rem);
  line-height: 1.8;
  text-wrap: balance;
}

.testimonial-name {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), filter var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  border-color: rgba(222, 10, 38, 0.24);
  box-shadow: var(--shadow);
}

.testimonial-arrow span {
  font-size: 1.1rem;
  line-height: 1;
}

.testimonial-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.testimonial-dot:hover,
.testimonial-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.34);
}

.testimonial-dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(222, 10, 38, 0.16);
}

.service-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.44)),
    linear-gradient(90deg, rgba(222, 10, 38, 0.14), transparent 42%);
  pointer-events: none;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 500ms ease, filter 500ms ease;
  filter: saturate(0.96) contrast(1.04);
}

.service-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.08);
}

.service-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.5rem 1.45rem 1.55rem;
}

.service-card h3,
.membership-card h3 {
  margin: 0;
  font-size: 1.36rem;
  letter-spacing: -0.02em;
}

.service-card h3 {
  min-height: 2.8rem;
  line-height: 1.08;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(222, 10, 38, 0.18);
  text-wrap: balance;
}

.service-listing {
  margin: 1rem 0 1.25rem;
}

.service-listing ul,
.membership-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-listing li {
  padding: 0.85rem 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-listing ul li:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.service-line > span:first-child {
  max-width: 17rem;
}

.service-price-inline {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(222, 10, 38, 0.24);
  border-radius: 999px;
  background: rgba(222, 10, 38, 0.1);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(222, 10, 38, 0.12);
}

.service-detail {
  margin-top: 0.28rem;
  padding-left: 0.05rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-listing-single .service-line {
  align-items: flex-start;
}

.service-note {
  margin: 0 0 1.2rem;
  font-size: 0.94rem;
  line-height: 1.7;
}

.card-button {
  margin-top: auto;
  width: 100%;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.membership-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.membership-card-featured {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.membership-card::after {
  display: none;
}

.plan-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(222, 10, 38, 0.14);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.membership-price {
  margin: 1rem 0 1.2rem;
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.membership-price span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 0.2rem;
}

.membership-card li {
  padding: 0.58rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
}

.membership-card ul {
  flex: 1 1 auto;
}

.membership-card .button {
  margin-top: auto;
}

.membership-note {
  margin-top: 1.6rem;
  padding: 1.4rem 1.5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.86);
  box-shadow: var(--shadow);
}

.membership-note h3 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.membership-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.membership-note li {
  padding: 0.45rem 0;
  color: var(--text-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.membership-note li:first-child {
  border-top: 0;
}

.fleet-teaser-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    #0d0d0d;
}

.fleet-teaser-section .section-header {
  max-width: 680px;
  margin-bottom: 2.35rem;
}

.fleet-teaser-section .section-header h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.fleet-teaser-section .section-text {
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.fleet-pricing-header {
  margin-top: var(--section-space);
  padding-top: 0;
}

.fleet-teaser-grid,
.fleet-card-grid,
.fleet-stat-grid,
.fleet-stats-grid {
  display: grid;
  gap: 1.5rem;
}

.fleet-teaser-grid,
.fleet-card-grid-four,
.fleet-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fleet-card-grid-qualifiers {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.about-home-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.about-home-media,
.about-page-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
  box-shadow: var(--shadow);
}

.about-home-media img,
.about-page-media img {
  display: block;
  width: 100%;
  height: auto;
}

.about-section {
  padding: var(--section-space) 24px;
  background: #050505;
}

.about-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 10, 0.92);
  padding: 42px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.about-copy {
  max-width: 620px;
  align-self: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.65rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 10, 0.74);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.about-eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.about-copy p {
  max-width: 600px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-media {
  width: 100%;
}

.about-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 22px;
  display: block;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.about-values {
  margin-top: 24px;
}

.about-values h3 {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.about-values ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-values li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.about-values li:first-child {
  border-top: 0;
  padding-top: 0;
}

.story-section {
  padding: var(--section-space) 24px;
  background: #050505;
}

.story-container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.story-header {
  max-width: 820px;
  margin: 0 auto 48px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.7rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 10, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.story-eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.story-header h2 {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.story-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.story-card {
  height: 100%;
  text-align: left;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.story-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.35rem 0.7rem;
  margin-bottom: 16px;
  border: 1px solid rgba(222, 10, 38, 0.24);
  border-radius: 999px;
  background: rgba(222, 10, 38, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.story-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.story-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.story-cta {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-page-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.about-story-card {
  padding: 0;
}

.about-story-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.2rem 1.15rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-story-card summary::-webkit-details-marker {
  display: none;
}

.about-story-card summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.45rem;
  line-height: 1;
  transition: transform var(--transition);
}

.about-story-card[open] summary::after {
  transform: rotate(45deg);
}

.about-story-card .about-story-content {
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid rgba(222, 10, 38, 0.18);
}

.about-story-card .about-story-content p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.about-page-media {
  margin-bottom: 1.5rem;
}

.fleet-feature-card,
.fleet-info-card,
.fleet-stat-card,
.fleet-rates-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
  box-shadow: var(--shadow);
}

.fleet-feature-card::after,
.fleet-info-card::after,
.fleet-stat-card::after,
.fleet-rates-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.08) 46%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.fleet-feature-card:hover::after,
.fleet-info-card:hover::after,
.fleet-stat-card:hover::after,
.fleet-rates-shell:hover::after {
  transform: translateX(130%);
}

.fleet-feature-card,
.fleet-info-card {
  padding: 1.25rem 1.2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.fleet-feature-card:hover,
.fleet-info-card:hover,
.fleet-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(222, 10, 38, 0.24);
  box-shadow: 0 32px 68px rgba(0, 0, 0, 0.4);
}

.fleet-feature-card h3,
.fleet-info-card h3,
.fleet-stat-card h2 {
  margin: 0;
}

.fleet-feature-card h3,
.fleet-info-card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.fleet-info-card h3 {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(222, 10, 38, 0.18);
}

.fleet-info-card p,
.fleet-stat-card p,
.fleet-promo p,
.fleet-plan-size,
.fleet-plan-note,
.fleet-plan-example,
.fleet-rates-note,
.fleet-trust-card p,
.fleet-cta-meta {
  color: var(--text-soft);
}

.fleet-info-card p,
.fleet-trust-card p,
.fleet-rates-note {
  margin: 1rem 0 0;
  line-height: 1.75;
}

.fleet-teaser-action {
  margin-top: 1.6rem;
}

.fleet-teaser-action .button {
  min-height: 50px;
  padding: 0.9rem 1.3rem;
}

.fleet-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.4) 100%),
    url("https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.fleet-hero-content {
  display: flex;
  align-items: center;
}

.fleet-hero-title {
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.9;
}

.fleet-stats-section {
  padding: var(--section-space) 0;
  margin: 0;
  min-height: auto;
}

.fleet-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-bottom: 0;
}

.fleet-trust-section {
  padding: var(--section-space) 0;
  margin: 0;
}

.fleet-stat-card {
  min-width: 0;
  width: 100%;
  padding: 28px;
  box-sizing: border-box;
  overflow: visible;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.fleet-stat-prefix {
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.85;
}

.fleet-stat-number {
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.fleet-stat-text {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.fleet-stat-label {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.fleet-trust-card h3 {
  margin: 0;
}

.fleet-plans-section .membership-grid {
  margin-top: 2rem;
}

.fleet-promo {
  padding: 1.25rem 1.4rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(222, 10, 38, 0.24);
  border-radius: 14px;
  background: rgba(11, 11, 11, 0.86);
  box-shadow: var(--shadow);
}

.fleet-promo p {
  margin: 0;
  font-weight: 600;
  line-height: 1.7;
}

.fleet-plan-size {
  margin: 0.7rem 0 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.fleet-plan-note {
  margin: -0.35rem 0 1.1rem;
  font-size: 0.92rem;
}

.fleet-plan-example {
  margin: 1.15rem 0 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
  font-size: 0.94rem;
}

.fleet-rates-shell {
  padding: 1.3rem;
}

.fleet-rates-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fleet-rates-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.fleet-rates-table th,
.fleet-rates-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.fleet-rates-table th {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-rates-table td {
  color: var(--text-soft);
  line-height: 1.5;
}

.retail-price {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(222, 10, 38, 0.85);
  opacity: 0.82;
}

.fleet-rates-table tbody tr:last-child td {
  border-bottom: 0;
}

.fleet-rates-note {
  margin-bottom: 0;
}

.fleet-cta-panel .section-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.fleet-cta-meta {
  margin: 1rem 0 0;
}

.contact-panel {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
}

@keyframes heroPulse {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  100% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.contact-button {
  margin-top: 1.5rem;
  min-width: 220px;
}

.legal-hero {
  position: relative;
  min-height: 72vh;
  padding-top: var(--nav-height);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.42) 100%),
    url("https://images.unsplash.com/photo-1486006920555-c77dcf18193c?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.legal-hero .hero-content {
  align-items: flex-end;
  padding: 5rem 0 4rem;
}

.legal-hero-copy {
  max-width: 780px;
}

.legal-hero-copy h1 {
  margin: 0;
  line-height: 0.94;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 800;
}

.legal-hero-copy h1 span,
.legal-hero-copy h1 strong {
  display: block;
}

.legal-hero-copy h1 strong {
  color: var(--accent);
  font-weight: 900;
}

.legal-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.legal-meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(222, 10, 38, 0.22);
  border-radius: 999px;
  background: rgba(222, 10, 38, 0.1);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-content-section {
  padding: var(--section-space) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    #0d0d0d;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.legal-sidebar,
.legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
  box-shadow: var(--shadow);
}

.legal-sidebar {
  padding: 1.5rem;
}

.legal-sidebar::after,
.legal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.08) 46%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 700ms ease;
  pointer-events: none;
}

.legal-sidebar:hover::after,
.legal-card:hover::after {
  transform: translateX(130%);
}

.legal-sidebar h2,
.legal-card h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal-sidebar p,
.legal-card p,
.legal-card li {
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-sidebar p {
  margin: 1rem 0 0;
}

.legal-sidebar-nav {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(222, 10, 38, 0.18);
}

.legal-sidebar-nav a {
  display: block;
  padding: 0.7rem 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-main {
  display: grid;
  gap: 1.2rem;
}

.legal-card {
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.legal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(222, 10, 38, 0.24);
  box-shadow: 0 32px 68px rgba(0, 0, 0, 0.4);
}

.legal-card h2 {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(222, 10, 38, 0.18);
}

.legal-card p,
.legal-card ul {
  margin: 1rem 0 0;
}

.legal-card ul {
  padding-left: 1.1rem;
}

.legal-card li + li {
  margin-top: 0.55rem;
}

.legal-note {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-links p {
  margin: 0;
}

.site-footer {
  padding: 2.2rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #090909;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-top {
  align-items: flex-start;
  padding-bottom: 1.25rem;
}

.footer-bottom {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.footer-title {
  margin: 0 0 0.3rem;
  color: #fff;
  font-weight: 700;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
}

.footer-subtitle,
.footer-right p,
.footer-bottom p {
  margin: 0.15rem 0;
  font-size: 0.95rem;
}

.footer-right {
  text-align: right;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 26px;
    border-radius: 24px;
  }

  .about-copy {
    max-width: 100%;
  }

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

@media (min-width: 901px) {
  .nav-shell {
    padding: 0.7rem 0;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(12, 12, 12, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .site-nav a {
    display: block;
    padding: 0.8rem 0.9rem;
    border-radius: 8px;
  }

  .nav-contact {
    width: 100%;
  }

  .nav-contact-toggle {
    width: 100%;
  }

  .nav-contact-menu {
    position: static;
    min-width: 0;
    margin-top: 0.65rem;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-text {
    max-width: 100%;
  }

  .brand {
    max-width: 250px;
  }

  .brand img {
    max-width: 220px;
  }

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

  .fleet-teaser-grid,
  .fleet-card-grid-four,
  .fleet-card-grid-qualifiers,
  .fleet-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-panel {
    padding: 2rem 1.25rem;
  }

  .legal-sidebar,
  .legal-card {
    padding: 1.25rem;
  }

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

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 700px) {
  :root {
    --nav-height: 60px;
  }

  .hero {
    min-height: 100svh;
    background-position: center;
  }

  .hero-content {
    min-height: calc(100svh - var(--nav-height));
    padding: 2rem 0;
  }

  .services-section,
  .membership-section,
  .testimonials-section,
  .contact-section,
  .fleet-section,
  .fleet-teaser-section,
  .fleet-stats-section {
    padding: var(--section-space-mobile) 0;
  }

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

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

  .about-section {
    padding: var(--section-space-mobile) 18px;
  }

  .about-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .about-panel {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 34px;
  }

  .about-media img {
    aspect-ratio: 4 / 3;
  }

  .story-section {
    padding: var(--section-space-mobile) 18px;
  }

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

  .story-card {
    padding: 24px;
    border-radius: 18px;
  }

  .story-header {
    margin-bottom: 34px;
    padding: 1.45rem 1.2rem;
  }

  .story-header h2 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .story-header p {
    font-size: 1rem;
  }

  .story-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .story-cta a {
    width: 100%;
  }

  .fleet-teaser-grid,
  .fleet-card-grid-four,
  .fleet-card-grid-qualifiers,
  .fleet-stat-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 210px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-button {
    width: 100%;
  }

  .testimonials-carousel {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.25rem;
    gap: 1rem;
  }

  .testimonials-viewport {
    order: 1;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonial-arrow {
    width: 56px;
    height: 56px;
  }

  .testimonial-arrow-prev,
  .testimonial-arrow-next {
    order: 2;
  }

  .testimonial-arrow-prev {
    justify-self: start;
  }

  .testimonial-arrow-next {
    justify-self: end;
    margin-top: -4.5rem;
  }

  .testimonial-dots {
    order: 3;
    margin-top: 0;
  }

  .legal-content-section {
    padding: var(--section-space-mobile) 0;
  }

  .legal-hero .hero-content {
    align-items: center;
    padding: 3rem 0;
  }

  .fleet-rates-shell {
    padding: 1rem;
  }

  .fleet-teaser-section .section-header {
    margin-bottom: 1.9rem;
  }

  .fleet-teaser-section .section-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .fleet-teaser-section .section-text {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .fleet-pricing-header {
    margin-top: var(--section-space-mobile);
  }

  .section-header,
  .about-copy {
    padding: 1.35rem 1.15rem;
  }

  .fleet-feature-card,
  .fleet-info-card,
  .fleet-stat-card {
    padding: 1.05rem 1rem;
  }

  .fleet-feature-card h3,
  .fleet-info-card h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .fleet-info-card p,
  .fleet-trust-card p,
  .fleet-rates-note,
  .fleet-cta-meta {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .fleet-hero-title {
    font-size: clamp(2.9rem, 13vw, 4.6rem);
  }

  .fleet-stat-number {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .fleet-stat-text {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .fleet-stat-label {
    margin-top: 0.55rem;
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .fleet-plan-size,
  .fleet-plan-note,
  .fleet-plan-example {
    font-size: 0.9rem;
  }

  .fleet-rates-table th,
  .fleet-rates-table td {
    padding: 0.85rem 0.8rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 1024px) {
  .fleet-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .fleet-hero-title {
    font-size: clamp(3.2rem, 14vw, 5.5rem);
  }
}

@media (max-width: 560px) {
  .fleet-stats-grid {
    grid-template-columns: 1fr;
  }

  .fleet-teaser-action .button {
    width: 100%;
  }

  .fleet-stat-card {
    padding: 1rem;
  }

  .fleet-cta-panel {
    padding: 1.7rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-hero,
  .reveal-section,
  .reveal-card,
  .reveal-plan,
  .reveal-contact {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
