/* ========== COLORS — edit here ========== */
:root {
  --bg: #08080f;
  --bg-card: #12121c;
  --bg-glass: rgba(12, 12, 22, 0.55);
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --orange: #f97316;
  --orange-light: #fb923c;
  --gradient: linear-gradient(90deg, #7c3aed 0%, #c026d3 45%, #f97316 100%);
  --gradient-btn: linear-gradient(90deg, #6d28d9, #db2777, #ea580c);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
  --font: "Inter", system-ui, sans-serif;
  --font-head: "Plus Jakarta Sans", "Inter", sans-serif;
  --container: min(1180px, 92vw);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 0.35s;
}

/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.kayisaki-v1 {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.kayisaki-v1 #content,
body.kayisaki-v1 .site-main { padding: 0; margin: 0; max-width: none; }

img { max-width: 100%; display: block; }
a { color: var(--purple-light); }
ul { list-style: none; }

.container { width: var(--container); margin: 0 auto; }
.narrow { max-width: 640px; }
.center { text-align: center; }

.label {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, var(--purple-light) 0%, var(--orange) 50%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.28));
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}



.section { padding: 5rem 0; }
.section-dark { background: var(--bg-card); }

.section-head { margin-bottom: 2.5rem; text-align: center; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #fff;
}
.section-head p { color: var(--text-muted); max-width: 560px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed);
}

.btn-gradient {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.1); color: #fff;  transform: translateY(-2px); }

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--speed), backdrop-filter var(--speed), box-shadow var(--speed);
}

.header.is-scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.15;
}
.logo-img {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
  flex-shrink: 0;
}
.logo-img--footer {
  filter: drop-shadow(0 4px 20px rgba(124, 58, 237, 0.25));
}
.logo-img--hero {
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}
.logo--footer {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.logo--footer .logo-name {
  font-size: 1.05rem;
  background: linear-gradient(135deg, #fff 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo--hero .logo-name {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: color var(--speed), background var(--speed);
  white-space: nowrap;
}
.nav ul li a:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }

.nav-close {
  display: none;
}

.header-phone {
  color: var(--orange-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}
.header-phone:hover { color: #fff; }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--speed), opacity var(--speed);
  transform-origin: center;
}
.menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.menu-btn.is-open {
  background: none;
  border: none;
  box-shadow: none;
}

/* ========== HERO (reference layout) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: -15% 0;
  background: url("https://images.unsplash.com/photo-1514565131-fce0801e5785?w=1920&h=1080&fit=crop&q=85") center / cover no-repeat;
  will-change: transform;
}

.hero-bg-layer--overlay {
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 15, 0.92) 0%, rgba(8, 8, 15, 0.75) 45%, rgba(8, 8, 15, 0.5) 100%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px !important;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.hero-content.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.hero-logo-small {
  width: auto;
  max-width: 240px;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-logo-small .logo--hero {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-tag {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) forwards;
}
.hero-line--1 {
  color: #fff;
  animation-delay: 0.45s;
}
.hero-line--2 {
  background: var(--gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation-delay: 0.6s;
  min-height: 1.1em;
}
.hero-line--2.gradient-animate {
  animation: fadeUp 0.9s var(--ease) 0.6s forwards, gradientShift 5s ease infinite;
}
.hero-line--2::after {
  content: "|";
  color: var(--orange);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  max-width: 550px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.75s forwards;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}
.hero-pills li {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--speed), transform var(--speed);
}
.hero-pills li:hover {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.05s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.4s forwards;
  pointer-events: none;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--purple), transparent);
  margin: 0.5rem auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-height: 740px) {
  .hero-scroll-hint { display: none; }
}

/* ========== STATS ========== */
.stats-bar {
  padding: 2.5rem 0;
  border-block: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}
.stat { text-align: center; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--purple-light);
}
.stat span { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ========== ABOUT ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}
.split p { color: var(--text-muted); margin-bottom: 1rem; }

.check-list { margin-top: 1.25rem; }
.check-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: var(--text-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.about-visual {
  display: flex;
  justify-content: center;
}
.about-card {
  padding: 2.5rem;
  background: var(--gradient-btn);
  border-radius: 20px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}
.about-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.about-card p { color: white; margin-bottom: 1.25rem; }
.about-phone {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

/* ========== VEHICLES ========== */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.vehicle-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--speed), box-shadow var(--speed);
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2);
}
.vehicle-img { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.vehicle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.vehicle-card:hover .vehicle-img img { transform: scale(1.06); }
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.3rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gradient-btn);
  color: #fff;
  border-radius: 999px;
}
.vehicle-card h3 { padding: 1rem 1rem 0.25rem; font-size: 1.05rem; }
.specs { padding: 0 1rem; color: var(--orange-light); font-size: 0.85rem; }
.vehicle-card a {
  display: block;
  padding: 0.75rem 1rem 1rem;
  color: var(--purple-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========== FEATURES ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-box {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color var(--speed), transform var(--speed);
}
.feature-box:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-3px);
}
.feature-box .icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
.feature-box h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-box p { color: var(--text-muted); font-size: 0.92rem; }
.feature-box a { color: var(--orange-light); }

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step {
  padding: 1.5rem;
  border-left: 2px solid var(--purple);
  background: rgba(124, 58, 237, 0.06);
  border-radius: 0 12px 12px 0;
}
.step-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { margin: 0.5rem 0; font-size: 1.05rem; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* ========== TRUST ========== */
.trust-banner {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(249, 115, 22, 0.08));
  border: 1px solid var(--border);
  border-radius: 20px;
}
.trust-banner h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.trust-banner > p { color: var(--text-muted); max-width: 700px; margin: 0 auto 2rem; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.trust-badges div { font-size: 0.95rem; color: var(--text-muted); }
.trust-badges strong { color: var(--orange); margin-right: 0.35rem; }

/* ========== REVIEWS ========== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review {
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.review p { font-style: italic; color: var(--text-muted); margin-bottom: 1rem; }
.review cite { font-size: 0.85rem; color: var(--orange-light); font-style: normal; }

/* ========== FLEET (single published vehicle) ========== */
.fleet-grid--single {
  display: flex;
  justify-content: center;
  max-width: 380px;
  margin: 0 auto;
}
.fleet-grid--single .item {
  width: 100%;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-parallax {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.25)),
    linear-gradient(180deg, rgba(8, 15, 28, 0.68), rgba(12, 22, 40, 0.6)),
    url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1600&h=500&fit=crop&q=80") center / cover;
  will-change: transform;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.cta-banner p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* ========== FORM ========== */
.form {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.form input {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.form input:focus {
  outline: none;
  border-color: var(--purple);
}
.form input[type="date"] {
  color-scheme: dark;
}
.form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.95;
}
.form-note { margin-top: 1rem; text-align: center; color: #4ade80; font-size: 0.9rem; }

/* ========== FAQ ========== */
/* legacy faq list - do not use on accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  padding: 1.15rem 0;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: "+"; font-size: 1.25rem; color: var(--orange); transition: transform var(--speed); }
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.is-open .faq-a { max-height: 200px; }
.faq-a p { padding-bottom: 1rem; color: var(--text-muted); }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.contact-card {
  padding: 2rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.contact-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.contact-card a, .contact-card p { color: var(--text-muted); text-decoration: none; }
.contact-card a:hover { color: var(--orange-light); }

.final-cta {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), transparent);
}
.final-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-btn);
  border-radius: 14px;
}
.final-cta h2 { font-family: var(--font-head); margin-bottom: 1.25rem; }

/* ========== FOOTER ========== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-row p { color: var(--text-muted); font-size: 0.85rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.footer-social a:hover { color: #fff; }

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .header {
    z-index: 1200;
  }
  .nav ul { display: none; }
  .header-phone { display: none; }
  .menu-btn {
    display: flex;
    z-index: 1202;
  }
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 1190;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 1.25rem) 1.25rem 1.5rem;
    background: rgba(8, 8, 15, 0.98);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease), visibility 0.35s;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-close {
    display: none !important;
  }
  body.nav-open {
    overflow: hidden;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav.is-open ul {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav.is-open ul li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
  }
  .nav.is-open .header-phone {
    display: block;
    text-align: center;
    padding: 1rem 0;
    margin-top: 0.5rem;
    color: var(--orange-light);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
  }
  .nav.is-open .btn {
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
  }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stat { text-align: center; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid,
  .feature-grid,
  .review-grid,
  .contact-grid,
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal, .hero-content, .hero-line, .hero-pills, .hero-btns { animation: none !important; transition: none !important; }
  .reveal, .hero-content { opacity: 1; transform: none; }
  .hero-line--2::after { display: none; }
}


.section-why .feature-grid--why {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-why .feature-box--why { grid-column: span 2; }
.section-why .feature-box--why:nth-child(4) { grid-column: 2 / span 2; }
.section-why .feature-box--why:nth-child(5) { grid-column: 4 / span 2; }

.section-why .feature-box--why h3 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.section-why .feature-box--why p {
  color: var(--text-muted);
  font-weight: 400;
}
.section-why .why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.85rem;
  color: var(--orange, #e85d04);
}
.section-why .why-icon svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 900px) {
  .section-why .feature-grid--why { grid-template-columns: 1fr; }
  .section-why .feature-box--why,
  .section-why .feature-box--why:nth-child(4),
  .section-why .feature-box--why:nth-child(5) { grid-column: 1; }
}

/* KAY UI POLISH */
.split > .reveal:first-child { text-align: center; }
.split h2 { text-align: center; color: #fff; }
.split p { text-align: center; }
.check-list { display: inline-block; text-align: left; margin: 1rem auto 0; }
#faq .kay-accordion { max-width: 720px; margin: 0 auto; }
#faq h2.title-gradient { text-align: center; }
.connect-hub__info h2, .connect-hub__info > p { text-align: center; }
.connect-hub__cards { margin-top: 1.5rem; }
.trust-banner { text-align: center; }
.trust-banner h2, .trust-banner p { text-align: center; }

/* KAY FAQ FIX */
#faq .kay-accordion { gap: 0.75rem; max-width: 720px; margin-left: auto; margin-right: auto; }
#faq .kay-acc-item { background: #0a0a12; border: 1px solid rgba(14, 165, 233, 0.35); border-radius: 12px; overflow: visible; }
#faq .kay-acc-btn {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.05rem 1.25rem;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
  background: transparent;
  transition: background 0.25s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}
#faq .kay-acc-label {
  display: block;
  min-width: 0;
}
#faq .kay-acc-icon {
  margin-top: 0.15em;
  justify-self: end;
  flex-shrink: 0;
}
#faq .kay-acc-btn:hover { background: linear-gradient(90deg, rgba(14, 165, 233, 0.22), rgba(56, 189, 248, 0.14)); }
#faq .kay-acc-item.is-open { border-color: rgba(56, 189, 248, 0.55); box-shadow: 0 8px 32px rgba(14, 165, 233, 0.22); }
#faq .kay-acc-item.is-open .kay-acc-btn { background: #0ea5e9; border-radius: 12px 12px 0 0; }
#faq .kay-acc-panel__inner { padding: 0.25rem 1.3rem 1.4rem; background: #08080f; overflow: visible; }
#faq .kay-acc-panel__inner > p { padding: 0 0 1rem; margin: 0; color: #cbd5e1; line-height: 1.65; text-align: left; }
#faq .kay-acc-panel__inner > p.faq-lead { margin-bottom: 0.75rem; }
#faq .faq-divider { display: block; height: 1px; background: rgba(148, 163, 184, 0.4); border: 0; margin: 0 0 0.9rem; }
#faq .faq-rental-list { list-style: none; padding: 0; margin: 0; }
#faq .faq-rental-list li { margin: 0 0 0.45rem; padding: 0; }
#faq .faq-rental-list em { color: #fff; font-style: italic; font-weight: 400; font-size: 0.98rem; }
#faq .kay-acc-item:not(.is-open) .kay-acc-panel { max-height: 0 !important; overflow: hidden; }
#faq .kay-acc-item.is-open .kay-acc-panel { max-height: 560px; overflow: hidden; }
#faq .kay-acc-icon { border-color: rgba(255,255,255,0.25); background: rgba(0,0,0,0.2); }
#faq .kay-acc-item.is-open .kay-acc-icon::before,
#faq .kay-acc-item.is-open .kay-acc-icon::after { background: #7dd3fc; }

@media (max-width: 640px) {
  #faq .kay-accordion {
    width: 100%;
    max-width: 100%;
  }
  #faq .kay-acc-btn {
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
    gap: 0.65rem;
  }
  #faq .kay-acc-icon {
    width: 24px;
    height: 24px;
  }
  #faq .kay-acc-panel__inner {
    padding: 0.25rem 1rem 1.2rem;
  }
}
