:root {
  --ink: #101826;
  --ink-soft: #1c2740;
  --rust: #C1442D;
  --rust-dark: #963521;
  --rust-light: #E7714F;
  --cream: #F7F4EC;
  --paper: #FFFFFF;
  --slate: #5C6470;
  --slate-light: #8891a0;
  --amber: #E3A63E;
  --line: #E6E0D2;
  --line-dark: #2b3552;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

h1,
h2,
h3,
.display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--rust);
  display: inline-block;
}

.eyebrow.light {
  color: var(--amber);
}

.eyebrow.light::before {
  background: var(--amber);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rust);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(193, 68, 45, 0.55);
}

.btn-primary:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-outline.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline.on-dark:hover {
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 3px;
}

.btn-sm {
  padding: 12px 22px;
  font-size: 13px;
  width: 100%;
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 236, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
}

.logo-mark svg {
  position: absolute;
  inset: 0;
  margin: auto;
}

.logo-text {
  font-family: 'Anton', sans-serif;
  font-size: 21px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-text span {
  color: var(--rust);
}

.logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--slate-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-links a.active {
  color: var(--rust);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width .2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.nav-phone .icon-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.nav-phone .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 0 0 16px;
  margin-top: -15px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  margin: -10px 0 14px;
  color: var(--ink);
}

.hero-word {
  display: inline-block;
  margin-right: 0.18em;
  will-change: transform, opacity;
}

.hero h1 .accent {
  color: var(--rust);
}

.hero p.lead {
  font-size: 16.5px;
  color: var(--slate);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.trust-row {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}

.trust-item {}

.trust-item .num {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: var(--ink);
}

.trust-item .lbl {
  font-size: 12.5px;
  color: var(--slate);
  font-weight: 600;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-standalone {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.hero-car-standalone::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 85%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(16, 24, 38, 0.28) 0%, rgba(16, 24, 38, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-car-large {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 20px rgba(16, 24, 38, 0.15));
  will-change: transform, opacity;
}

.hero-car-standalone:hover .hero-car-large {
  transform: scale(1.04) translateY(-6px);
}

/* section spacing */
section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-head .eyebrow {
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  margin-top: 0;
  color: var(--ink);
  max-width: 560px;
  line-height: 1.05;
}

.section-head p {
  color: var(--slate);
  max-width: 400px;
  font-size: 15px;
  line-height: 1.65;
  padding-bottom: 4px;
}

/* ---------- BRAND FILTER ---------- */
.brand-filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 10px 0 42px 0;
}

.brand-filter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  user-select: none;
}

.brand-filter-item:hover {
  transform: translateY(-4px);
}

.brand-img-box {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid var(--line);
  box-shadow: 0 4px 14px rgba(16, 24, 38, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.brand-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.brand-filter-item:hover .brand-img-box img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.brand-img-box.all-brand {
  background: var(--ink);
  color: #fff;
  font-size: 24px;
}

.brand-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  transition: color 0.25s ease;
}

.brand-filter-item.active .brand-img-box {
  border-color: var(--rust);
  background: #fff;
  box-shadow: 0 6px 20px rgba(193, 68, 45, 0.2);
}

.brand-filter-item.active .brand-img-box img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-filter-item.active .brand-img-box.all-brand {
  background: var(--rust);
  border-color: var(--rust);
}

.brand-filter-item.active .brand-label {
  color: var(--rust);
  font-weight: 700;
}

.car-card.hide-card {
  display: none !important;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: flex-start;
}

.faq-copy h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  margin: 0 0 16px;
  line-height: 1.1;
  color: var(--ink);
}

.faq-copy p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}

.faq-help-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 6px 20px rgba(16, 24, 38, 0.04);
}

.fhc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--rust);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-help-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}

.faq-help-card p {
  font-size: 13.5px;
  margin: 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(193, 68, 45, 0.3);
}

.faq-item.active {
  border-color: var(--rust);
  box-shadow: 0 8px 24px rgba(193, 68, 45, 0.08);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--rust);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--rust);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease;
}

.faq-answer p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--ink);
  color: #fff;
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 38px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell .num {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--amber);
}

.stat-cell .lbl {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- FLEET ---------- */
#armada {
  padding-top: 90px;
  padding-bottom: 90px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.car-card {
  background: var(--ink);
  border-radius: var(--radius-m);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 14px 30px -10px rgba(16, 24, 38, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 166, 62, 0.45);
  box-shadow: 0 24px 44px -15px rgba(16, 24, 38, 0.6);
}

.car-card.featured {
  background: linear-gradient(145deg, #101826 0%, #1c2740 100%);
  border: 1.5px solid var(--amber);
  box-shadow: 0 18px 36px -10px rgba(227, 166, 62, 0.25);
}

.car-card.featured .car-name,
.car-card.featured .spec-lbl,
.car-card.featured .price-lbl {
  color: #fff;
}

.car-card.featured .spec-item i {
  color: var(--amber);
}

.car-card.featured .divider {
  background: rgba(255, 255, 255, 0.16);
}

.car-card.featured .rating {
  color: rgba(255, 255, 255, 0.85);
}

.car-thumb {
  height: 155px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #0b111c;
}

.car-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  display: block;
  transition: transform .4s ease;
}

.car-card:hover .car-thumb img {
  transform: scale(1.06);
}

.car-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.car-name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.rating .stars {
  color: var(--amber);
  font-size: 10.5px;
  letter-spacing: 1.5px;
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.spec-item .ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 12.5px;
}

.spec-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.price-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.price-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.car-card .btn-primary,
.car-card .btn-outline,
.car-card .btn-sm {
  width: 100%;
  background: var(--rust);
  color: #ffffff !important;
  border: none !important;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(193, 68, 45, 0.4);
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.car-card .btn-primary:hover,
.car-card .btn-outline:hover,
.car-card .btn-sm:hover {
  background: var(--rust-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(193, 68, 45, 0.55);
}

.fleet-footer {
  text-align: center;
  margin-top: 48px;
}

/* ---------- HOW IT WORKS ---------- */
.how-section {
  background: var(--paper);
  padding: 80px 0 110px 0;
  position: relative;
}

.how-wrap {
  position: relative;
}

.how-steps-container {
  position: relative;
  margin-top: 75px;
}

.how-line-track {
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 8px;
  background: rgba(16, 24, 38, 0.12);
  border-radius: 100px;
  z-index: 1;
}

.how-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amber) 0%, var(--rust) 100%);
  border-radius: 100px;
  box-shadow: 0 0 16px rgba(193, 68, 45, 0.6);
  will-change: width;
}

.how-car-anim {
  position: absolute;
  top: -85px;
  left: 0%;
  transform: translateX(-50%);
  width: 210px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 12px 20px rgba(16, 24, 38, 0.45));
}

.how-car-anim img {
  width: 100%;
  height: auto;
  display: block;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}

.step-item {
  position: relative;
  padding: 0 20px;
  text-align: left;
  transition: transform .3s ease;
}

.step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid rgba(16, 24, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--slate);
  transition: all .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step-item.active .step-num {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(193, 68, 45, 0.45);
}

.step-item.active h3 {
  color: var(--rust);
}

.step-item h3 {
  font-size: 21px;
  margin-bottom: 8px;
  transition: color .3s ease;
}

.step-item p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 270px;
}

/* ---------- WHY US ---------- */
.why-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.why-copy .eyebrow {
  margin-bottom: 16px;
}

.why-copy h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-bottom: 20px;
}

.why-copy p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 420px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item .fi-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  font-size: 16px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
}

/* ---------- TESTIMONIALS ---------- */
.testi-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.testi-section .eyebrow {
  color: var(--amber);
}

.testi-section .eyebrow::before {
  background: var(--amber);
}

.testi-section h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin-top: 14px;
  color: #fff;
  max-width: 420px;
}

.testi-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-m);
  padding: 26px 28px;
}

.testi-card .stars {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.testi-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  color: #fff;
}

.testi-person .who .name {
  font-weight: 700;
  font-size: 14px;
}

.testi-person .who .loc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--rust);
  border-radius: var(--radius-l);
  padding: 64px 60px;
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 34px);
  pointer-events: none;
}

.cta-text h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 10px;
  max-width: 520px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 90px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 18px 0 22px;
  max-width: 280px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.foot-logo .logo-text {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  transition: all .2s ease;
}

.social-row a:hover {
  background: var(--rust);
  border-color: var(--rust);
}

.foot-col h4 {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  font-weight: 700;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.foot-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.foot-col a:hover {
  color: var(--amber);
}

.foot-contact li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  align-items: flex-start;
}

.foot-contact i {
  color: var(--amber);
  margin-top: 3px;
  width: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---------- MOBILE MENU DRAWER ---------- */
.mobile-menu-btn {
  display: none;
  background: var(--paper);
  border: 1.5px solid var(--line);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  box-shadow: -10px 0 30px rgba(16, 24, 38, 0.15);
  padding: 24px 24px 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 38, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.mobile-nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a.active {
  color: var(--rust);
  font-weight: 700;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1140px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  #armada,
  .how-section,
  .why-section,
  .testi-section,
  .faq-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-right .btn {
    display: none;
  }

  .hero {
    padding-top: 10px;
    margin-top: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(34px, 7vw, 52px);
    margin: 0 0 14px;
  }

  .hero .lead {
    margin: 0 auto 20px auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    margin-top: 28px;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: 20px 16px;
    box-shadow: 0 4px 16px rgba(16, 24, 38, 0.04);
  }

  .trust-item {
    text-align: center;
    padding: 8px 4px;
  }

  .trust-item .num {
    font-size: 26px;
    line-height: 1.1;
  }

  .trust-item .lbl {
    font-size: 12px;
    margin-top: 4px;
  }

  .hero-visual {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }

  .hero-car-large {
    width: 100%;
    max-width: 420px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-copy {
    text-align: center;
  }

  .why-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .testi-grid > div:first-child {
    text-align: center;
  }

  .testi-grid p {
    margin-left: auto;
    margin-right: auto;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .how-line-track {
    display: none;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding: 0 16px;
  }

  nav {
    padding: 10px 16px;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .brand-filter-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .brand-filter-container::-webkit-scrollbar {
    display: none;
  }

  .brand-img-box {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    padding: 8px;
  }

  .brand-label {
    font-size: 11.5px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fleet-grid:not(.is-filtered) .car-card:nth-child(n+5) {
    display: none !important;
  }

  .cta-banner {
    padding: 36px 20px;
    text-align: center;
    border-radius: 20px;
  }

  .cta-text h2 {
    font-size: 26px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }

  .stat-cell:last-child {
    border-bottom: none;
  }

  .faq-trigger {
    font-size: 14.5px;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 16px 18px;
  }
}

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}