/* ===================== Design tokens (Carbon + Amber, dark) ===================== */
:root {
  --bg: #0e1016; /* primary section background */
  --bg-alt: #0a0c11; /* alternate / footer background */
  --card: #181c26; /* card surface */
  --card-2: #1f2532; /* elevated / hover surface */
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --text: #f1f3f8;
  --muted: #98a1b2;
  --accent: #ff8a00; /* amber */
  --accent-hi: #ffb400; /* bright amber */
  --accent-soft: rgba(255, 138, 0, 0.15);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.75);
  --shadow-soft: 0 14px 34px -20px rgba(0, 0, 0, 0.7);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.brand {
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
section {
  scroll-margin-top: 84px;
}
::selection {
  background: var(--accent);
  color: #14110a;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hi);
  background: var(--accent-soft);
  padding: 7px 14px;
  border-radius: 999px;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  margin: 18px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ===================== Buttons ===================== */
.btn {
  --bg: var(--accent);
  --fg: #14110a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-hi), var(--accent));
  color: var(--fg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter
    .25s var(--ease);
  box-shadow: 0 14px 26px -12px rgba(255, 138, 0, 0.65);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -14px rgba(255, 138, 0, 0.8);
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(-1px);
}
.btn:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
  filter: none;
}
.btn.sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}
.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--line-2);
  box-shadow: none;
}
.btn.ghost:hover {
  background: rgba(255,255,255,0.06);
  filter: none;
}
.btn.outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-2);
  box-shadow: none;
}
.btn.outline:hover {
  border-color: var(--accent);
  color: var(--accent-hi);
  filter: none;
}
.btn.block {
  width: 100%;
}

/* ===================== Navbar ===================== */
header.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding
    .3s var(--ease);
  padding: 18px 0;
}
header.nav.scrolled {
  background: rgba(14, 16, 22, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}
.brand-logo {
  display: block;
  width: 210px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: rgba(255,255,255,0.86);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color .25s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-phone:hover {
  color: var(--accent-hi);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s var(--ease);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #0a0c11;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(720px 440px at 86% 14%, rgba(255,138,0,0.08), transparent
    70%),
    linear-gradient(90deg, rgba(7,8,12,0.62) 0%, rgba(7,8,12,0.28) 38%,
    rgba(7,8,12,0.02) 72%),
    linear-gradient(180deg, rgba(7,8,12,0.22) 0%, rgba(7,8,12,0) 24%,
    rgba(7,8,12,0) 60%, rgba(7,8,12,0.48) 100%);
}
.hero-grid {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr;
  padding: 132px 22px 38px;
}
.hero-inner {
  align-self: center;
  max-width: 820px;
}
.hero .eyebrow {
  background: none;
  padding: 0;
  border-radius: 0;
  color: var(--accent-hi);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.hero .eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(2.9rem, 7.4vw, 5.7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 26px 0 22px;
  text-shadow: 0 14px 44px rgba(0,0,0,0.45);
}
.hero h1 .l1 {
  display: block;
  color: #fff;
}
.hero h1 .hl {
  display: block;
  background: linear-gradient(180deg, #ffe1a6 0%, var(--accent-hi) 48%,
    var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero p.lead {
  font-size: 1.16rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 38px;
}
.hero-actions .btn svg {
  transition: transform .25s var(--ease);
}
.hero-actions .btn:hover svg {
  transform: translateX(5px);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-inner > * {
  opacity: 0;
  animation: heroIn .9s var(--ease) forwards;
}
.hero .eyebrow {
  animation-delay: .15s;
}
.hero h1 {
  animation-delay: .28s;
}
.hero p.lead {
  animation-delay: .44s;
}
.hero-actions {
  animation-delay: .58s;
}

@media (max-width: 760px) {
  .hero-grid {
    padding: 116px 22px 30px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-inner > * {
    opacity: 1;
    animation: none;
  }
  .hero-bg img {
    animation: none;
    transform: none;
  }
}

/* ===================== Generic section ===================== */
.pad {
  padding: 96px 0;
}
.pad-sm {
  padding: 70px 0;
}
.bg-alt {
  background: var(--bg-alt);
}

/* ===================== About ===================== */
.about {
  padding: 0;
  background: var(--bg-alt);
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px max(40px, calc((100vw - var(--container)) / 2 + 22px));
  padding-right: clamp(40px, 7vw, 110px);
}
.about-copy .services-eyebrow {
  margin-bottom: 26px;
}
.about-copy h2 {
  font-size: clamp(2.6rem, 5.3vw, 4.8rem);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}
.about-copy h2 span {
  display: block;
  color: var(--accent);
}
.about-intro {
  max-width: 570px;
  margin: 28px 0 30px;
  color: #d9dde6;
  font-size: 1.05rem;
}
.about-points {
  display: grid;
  gap: 15px;
  list-style: none;
  max-width: 580px;
}
.about-points li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  transform: rotate(45deg);
}
.about-media {
  position: relative;
  overflow: hidden;
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-alt), transparent 18%),
    linear-gradient(0deg, rgba(10,12,17,.45), transparent 45%);
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 820px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }
  .about-copy {
    padding: 72px 22px 58px;
  }
  .about-media {
    min-height: 420px;
  }
  .about-media::after {
    background: linear-gradient(180deg, var(--bg-alt), transparent 24%);
  }
}

/* ===================== Services ===================== */
#services .container {
  max-width: 1340px;
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 58px;
  flex-wrap: wrap;
}
.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 22px;
}
.services-eyebrow::before {
  content: "";
  width: 46px;
  height: 2px;
  background: var(--accent);
}
.services-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.services-title .a {
  display: block;
  color: #fff;
}
.services-title .b {
  display: block;
  color: var(--accent);
}
.services-head .desc {
  max-width: 340px;
  text-align: right;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, #1a1f2b, #0b0d13);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease),
    border-color .5s;
}
.svc:hover {
  transform: translateY(-10px);
  box-shadow: 0 44px 80px -34px rgba(0,0,0,0.85);
  border-color: rgba(255,180,0,0.45);
}
.svc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .9s var(--ease);
}
.svc:hover .svc-img {
  transform: scale(1.08);
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,9,13,0.05) 0%, rgba(8,9,13,0.32)
    46%, rgba(6,7,10,0.97) 100%);
}
.svc::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--accent-hi), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.svc:hover::before {
  transform: scaleX(1);
}
.svc-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent-hi), var(--accent));
  display: grid;
  place-items: center;
  color: #14110a;
  box-shadow: 0 14px 28px -10px rgba(255,138,0,0.9);
}
.svc-body {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
}
.svc-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 12px;
}
.svc-body h3 {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.svc-body p {
  color: rgba(255,255,255,0.74);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-hi);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}
.svc-link svg {
  transition: transform .25s var(--ease);
}
.svc:hover .svc-link svg {
  transform: translateX(6px);
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-head .desc {
    text-align: left;
    max-width: 460px;
  }
  .svc {
    min-height: 560px;
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .svc {
    min-height: 480px;
  }
}

/* ===================== Fleet / Showroom ===================== */
#fleet .container {
  max-width: 1340px;
}
.stars {
  color: var(--accent-hi);
  letter-spacing: 1px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.filters button {
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  font-family: "Sora", sans-serif;
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: .25s var(--ease);
}
.filters button:hover {
  border-color: var(--accent);
  color: var(--text);
}
.filters button.active {
  background: linear-gradient(135deg, var(--accent-hi), var(--accent));
  color: #14110a;
  border-color: transparent;
  box-shadow: 0 10px 22px -12px rgba(255,138,0,0.6);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.veh {
  position: relative;
  background: linear-gradient(180deg, #181c26 0%, #12151d 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease),
    border-color .5s;
}
.veh::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 4;
  background: linear-gradient(90deg, var(--accent-hi), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.veh:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.9);
  border-color: rgba(255,180,0,0.42);
}
.veh:hover::before {
  transform: scaleX(1);
}

.veh-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.veh-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.veh:hover .veh-media img {
  transform: scale(1.08);
}
.veh-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,12,17,0) 52%, rgba(18,21,29,0.92)
    100%);
}
.veh-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(8,9,13,0.5);
  border: 1px solid rgba(255,180,0,0.7);
  color: var(--accent-hi);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.veh-body {
  position: relative;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.veh-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.veh-head h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.25;
  min-height: 2.5em;
}
.veh-head .yr {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  flex: 0 0 auto;
  padding-top: 3px;
}
.veh-price {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.42rem;
  color: var(--accent-hi);
  margin: 2px 0 12px;
  letter-spacing: -0.01em;
}
.veh-spec-title {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 2px 0 8px;
}
.veh-specs {
  list-style: none;
  margin: 0 0 14px;
}
.veh-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.veh-specs .k {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.82rem;
}
.veh-specs .k svg {
  color: var(--accent);
  flex: 0 0 auto;
}
.veh-specs .v {
  color: #eef1f6;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
}
.veh-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color .25s var(--ease);
}
.veh-link svg {
  color: var(--accent-hi);
  transition: transform .25s var(--ease);
}
.veh:hover .veh-link {
  color: var(--accent-hi);
}
.veh:hover .veh-link svg {
  transform: translateX(6px);
}

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

/* ===================== FAQ ===================== */
.faq-layout {
  max-width: 920px;
  margin: 0 auto;
}
.faq-aside {
  max-width: 680px;
  margin: 0 auto 38px;
  text-align: center;
}
.faq-aside .services-eyebrow {
  margin-bottom: 20px;
}
.faq-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.faq-aside p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}
.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-hi);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.faq-cta svg {
  transition: transform .25s var(--ease);
}
.faq-cta:hover svg {
  transform: translateX(5px);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.faq-item:hover {
  border-color: var(--line-2);
}
.faq-item.open {
  border-color: rgba(255,180,0,0.4);
  background: linear-gradient(180deg, rgba(255,138,0,0.06), rgba(255,138,0,0)
    60%), var(--card);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--text);
}
.faq-n {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex: 0 0 auto;
}
.faq-qt {
  flex: 1;
  line-height: 1.35;
}
.faq-q .pm {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-hi);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 0;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-item.open .faq-q .pm {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--accent-hi), var(--accent));
  color: #14110a;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a p {
  padding: 0 24px 22px 62px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .faq-aside {
    margin-bottom: 28px;
  }
  .faq-a p {
    padding-left: 24px;
  }
}

/* ===================== Contact ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}
.contact-info {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 46px 42px;
  border: 1px solid var(--accent-soft);
  background: radial-gradient(700px 380px at 112% -12%, rgba(255,138,0,0.26),
    transparent 58%), linear-gradient(165deg, #1d222e 0%, #0d0f15 70%);
}
.contact-info::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,0,0.12), transparent 70%);
  pointer-events: none;
}
.contact-info h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.contact-info > p {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 380px;
}
.contact-info .row {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-info .row:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.contact-info .row .ic {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255,180,0,0.2), rgba(255,138,0,0.1));
  border: 1px solid rgba(255,180,0,0.25);
  color: var(--accent-hi);
  display: grid;
  place-items: center;
  transition: .3s var(--ease);
}
.contact-info .row:hover .ic {
  background: linear-gradient(135deg, var(--accent-hi), var(--accent));
  color: #14110a;
  transform: translateY(-2px);
}
.contact-info .row b {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-info .row span {
  color: #eef1f6;
  font-size: 0.95rem;
}
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #fff;
  transition: .25s var(--ease);
}
.contact-socials a:hover {
  background: var(--accent);
  color: #14110a;
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 10px 22px -10px rgba(255,138,0,0.7);
}

.contact-form {
  background: linear-gradient(180deg, #181c26, #111520);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  transition: border .2s, box-shadow .2s, background .2s;
}
.field input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: .75;
}
.field input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-form .btn.block {
  margin-top: 8px;
  padding: 16px 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-note {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-note.ok {
  background: rgba(34,197,94,0.14);
  color: #4ade80;
}
.form-note.err {
  background: rgba(239,68,68,0.14);
  color: #f87171;
}
.form-note.show {
  display: block;
  animation: pop .4s var(--ease);
}
@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===================== Footer ===================== */
footer.ft {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  color: var(--muted);
  padding: 80px 0 34px;
  border-top: 1px solid var(--line);
}
footer.ft::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,180,0,0.35),
    transparent);
}
.ft-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
.ft-brandcol {
  max-width: 340px;
}
.ft .brand {
  color: #fff;
  margin-bottom: 18px;
}
.ft-brandcol p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.ft-socials {
  display: flex;
  gap: 10px;
}
.ft-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  border: 0;
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 12px 26px -12px rgba(37,211,102,0.8);
}
.ft-socials a svg {
  width: 27px;
  height: 27px;
}
.ft-socials a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 34px -12px rgba(37,211,102,0.95);
}
.ft-col h4 {
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: "Sora", sans-serif;
}
.ft-col a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.94rem;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.ft-col a:hover {
  color: var(--accent-hi);
}
.ft-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 26px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.ft-legal {
  display: flex;
  gap: 22px;
}
.ft-legal a {
  transition: color .2s;
}
.ft-legal a:hover {
  color: var(--accent-hi);
}
@media (max-width: 980px) {
  .ft-brandcol {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

/* ===================== Reveal animation ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================== Mobile menu panel ===================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,12,17,0.98);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  color: #fff;
  font-family: "Sora";
  font-size: 1.5rem;
  font-weight: 600;
}
.mobile-menu .close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .feature-grid,
  .fleet-grid,
  .tgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .nav-links,
  .nav-phone {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta .btn {
    display: none;
  }
  .feature-grid,
  .fleet-grid,
  .tgrid {
    grid-template-columns: 1fr;
  }
  .pad {
    padding: 70px 0;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 420px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .brand-logo {
    width: 170px;
    height: 32px;
  }
}
