/* ─────────────── RESET & BASE ─────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:     #3ecf6a;
  --accent-h:   #2db55a;
  --dark:       #0d0d0d;
  --dark2:      #1a1a1a;
  --mid:        #2b2b2b;
  --light-bg:   #f8f8f6;
  --text:       #1c1c1c;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --white:      #ffffff;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.18);
  --trans:      .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────── NAVBAR ─────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans), backdrop-filter var(--trans);
}
#navbar.scrolled {
  background: rgba(13,13,13,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--trans);
}
#navbar.scrolled .nav-logo-img {
  opacity: 1;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: .9;
  margin-bottom: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--trans), transform var(--trans);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-h); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--trans);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(13,13,13,.97);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-weight: 500;
}
.mobile-link:last-child { border-bottom: none; }
.cta-mobile {
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  font-weight: 600;
}

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(62,207,106,.30);
}
.btn-primary:hover { background: var(--accent-h); box-shadow: 0 6px 28px rgba(62,207,106,.40); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-card {
  width: 100%;
  justify-content: center;
  background: var(--dark);
  color: #fff;
  margin-top: 8px;
  font-size: 14px;
  padding: 11px 20px;
}
.btn-card:hover { background: var(--accent); }

.btn-full { width: 100%; justify-content: center; }

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Hero CSS-only background ── */
.hero {
  background: #030d06;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(140deg, #030d06 0%, #050f08 45%, #021a09 100%);
}

/* right green glow */
.hb-glow-r {
  position: absolute;
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,207,106,.28) 0%, rgba(62,207,106,.07) 42%, transparent 70%);
  right: -200px; top: 50%;
  transform: translateY(-50%);
  animation: glowPulseR 5s ease-in-out infinite;
}
@keyframes glowPulseR {
  0%, 100% { opacity: .8; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;  transform: translateY(-50%) scale(1.07); }
}

/* top-left teal accent */
.hb-glow-l {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,150,80,.20) 0%, transparent 65%);
  left: -80px; top: -80px;
  animation: glowPulseL 7s ease-in-out infinite .6s;
}
@keyframes glowPulseL {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.1); }
}

/* dot grid */
.hb-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}

/* large floating car silhouette */
.hb-car {
  position: absolute;
  right: 5%;
  bottom: 12%;
  font-size: clamp(160px, 26vw, 360px);
  line-height: 1;
  color: rgba(62,207,106,.13);
  filter: drop-shadow(0 0 80px rgba(62,207,106,.22));
  animation: floatCar 7s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
@keyframes floatCar {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

/* horizontal speed lines */
.hb-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hb-lines span {
  position: absolute;
  left: 0;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(62,207,106,.45) 50%, transparent 100%);
  opacity: 0;
  animation: speedLine 4.5s ease-in-out infinite;
}
.hb-lines span:nth-child(1) { top: 30%; width: 52%; animation-delay: 0s; }
.hb-lines span:nth-child(2) { top: 46%; width: 38%; animation-delay: .9s; }
.hb-lines span:nth-child(3) { top: 57%; width: 62%; animation-delay: 1.8s; }
.hb-lines span:nth-child(4) { top: 37%; width: 28%; animation-delay: 2.7s; }
.hb-lines span:nth-child(5) { top: 65%; width: 48%; animation-delay: 3.6s; }
@keyframes speedLine {
  0%   { opacity: 0; transform: translateX(-30px); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(50px); }
}

/* floating ambient particles */
.hb-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hb-dots span {
  position: absolute;
  border-radius: 50%;
  background: rgba(62,207,106,.7);
  animation: floatDot ease-in-out infinite;
}
.hb-dots span:nth-child(1) { width:4px;height:4px; left:14%; top:22%; animation-duration:9s;  animation-delay:0s; }
.hb-dots span:nth-child(2) { width:3px;height:3px; left:26%; top:68%; animation-duration:12s; animation-delay:1s; }
.hb-dots span:nth-child(3) { width:5px;height:5px; left:44%; top:18%; animation-duration:10s; animation-delay:2s; }
.hb-dots span:nth-child(4) { width:3px;height:3px; left:58%; top:78%; animation-duration:14s; animation-delay:.5s; }
.hb-dots span:nth-child(5) { width:4px;height:4px; left:20%; top:48%; animation-duration:11s; animation-delay:3s; }
.hb-dots span:nth-child(6) { width:2px;height:2px; left:35%; top:85%; animation-duration:13s; animation-delay:1.5s; }
.hb-dots span:nth-child(7) { width:3px;height:3px; left:8%;  top:55%; animation-duration:8s;  animation-delay:2.5s; background:rgba(120,230,150,.5); }
@keyframes floatDot {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  30%       { opacity: .9; }
  60%       { opacity: .5; transform: translateY(-28px) scale(1.3); }
  80%       { opacity: .9; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(62,207,106,.15);
  border: 1px solid rgba(62,207,106,.40);
  color: #a8f0c0;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  font-weight: 500;
}
.stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.2);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 20px;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────── FEATURES ─────────────── */
.features {
  background: var(--dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.features-car {
  position: absolute;
  right: -2%;
  bottom: -10%;
  font-size: clamp(180px, 30vw, 380px);
  line-height: 1;
  color: rgba(62,207,106,.08);
  filter: drop-shadow(0 0 60px rgba(62,207,106,.15));
  animation: floatCar 7s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--dark2);
  transition: background var(--trans);
  text-align: center;
}
.feature-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.feature-card:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.feature-card:hover { background: var(--mid); }

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(62,207,106,.12);
  border: 1px solid rgba(62,207,106,.28);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--accent);
}
.feature-card h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  color: rgba(255,255,255,.5);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ─────────────── SECTION HEADER ─────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-label.light { color: #7de8a6; }

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-header p {
  color: var(--muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

/* ─────────────── FLEET ─────────────── */
.fleet {
  background: var(--light-bg);
  padding: 96px 0;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.car-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.car-card.featured {
  border: 2px solid var(--accent);
}
.featured-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: .02em;
}

.car-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #f0f0ee;
}
.car-img-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.car-card:hover .car-img-wrap img { transform: scale(1.05); }

.car-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .03em;
}
.car-badge-eu {
  position: absolute;
  bottom: 12px; left: 90px;
  background: #1d4ed8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: .05em;
}

.car-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.car-title-row h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.car-year {
  font-size: 12px;
  font-weight: 600;
  background: var(--light-bg);
  color: var(--muted);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.car-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.car-specs span {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.car-specs i { color: var(--accent); font-size: 11px; }

.car-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}
.car-features li {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.car-features i { color: #22c55e; font-size: 11px; }

.car-pricing {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 16px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13.5px;
}
.price-row span { color: var(--muted); }
.price-row strong { font-weight: 700; color: var(--text); }
.price-row.best {
  background: rgba(62,207,106,.06);
  margin: 4px -6px 0;
  padding: 6px 10px;
  border-radius: 8px;
  border-top: none;
}
.price-row.best span { color: var(--accent); font-weight: 600; }
.price-row.best strong { color: var(--accent); }

/* ─────────────── TRAILER ─────────────── */
.trailer {
  background: var(--light-bg);
  padding: 96px 0;
}

.trailer-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  max-width: 1040px;
  margin: 0 auto;
  transition: box-shadow var(--trans);
}
.trailer-card:hover { box-shadow: var(--shadow-lg); }

.trailer-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f0f0ee;
  min-height: 400px;
}
.trailer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.trailer-card:hover .trailer-img-wrap img { transform: scale(1.04); }

.trailer-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.trailer-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.trailer-title-row h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}

.trailer-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.trailer-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  flex: 1;
}

.trailer-spec-col h4,
.trailer-feat-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.trailer-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trailer-specs-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.trailer-specs-list li:last-child { border-bottom: none; }
.trailer-specs-list li span {
  font-weight: 600;
  color: var(--text);
  min-width: 105px;
  flex-shrink: 0;
}

.trailer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trailer-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.trailer-features i { color: #22c55e; font-size: 11px; margin-top: 3px; flex-shrink: 0; }

.trailer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ─────────────── ABOUT ─────────────── */
.about {
  background: var(--white);
  padding: 96px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text .section-label { margin-bottom: 10px; }

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.75;
}

.about-area {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.about-area i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px;
  transition: background var(--trans), box-shadow var(--trans);
}
.about-card:hover { background: #fff; box-shadow: var(--shadow); }

.about-card i {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}
.about-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.about-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─────────────── QUOTE SECTION ─────────────── */
.quote-section {
  background: linear-gradient(135deg, #021a09 0%, #053d16 50%, #021a09 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.quote-info h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.quote-info p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quote-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 500;
}
.quote-perks i { color: #4ade80; font-size: 15px; }

.quote-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.req { color: var(--accent); }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--trans), background var(--trans);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.1);
}

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.3);
  color: #4ade80;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
}
.form-success.show { display: flex; }

/* ─────────────── CONTACT ─────────────── */
.contact {
  background: var(--light-bg);
  padding: 96px 0;
}

.contact-inner .section-header { margin-bottom: 48px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--trans);
}
.contact-card:hover { transform: translateY(-4px); }

.contact-icon {
  width: 56px; height: 56px;
  background: rgba(62,207,106,.10);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--accent);
}
.contact-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.contact-card a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--trans);
}
.contact-card a:hover { color: var(--accent-h); }
.contact-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; }

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-icon {
  width: 42px; height: 42px;
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-brand .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  max-width: 260px;
}

.footer-links h5,
.footer-contact h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  padding: 5px 0;
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact p {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-contact i { color: var(--accent); margin-top: 2px; font-size: 12px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,.25);
}

/* ─────────────── BACK TO TOP ─────────────── */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: 0 4px 16px rgba(62,207,106,.35);
  z-index: 900;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: scale(1.1); }

/* ─────────────── ANIMATIONS ─────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .quote-inner  { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .trailer-card { grid-template-columns: 1fr; }
  .trailer-img-wrap { min-height: 280px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hb-car {
    right: auto;
    left: 50%;
    bottom: 3%;
    font-size: 200px;
    color: rgba(62,207,106,.22);
    filter: drop-shadow(0 0 60px rgba(62,207,106,.35));
    animation-name: floatCarMobile;
  }
  @keyframes floatCarMobile {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50%       { transform: translateX(-50%) translateY(-18px); }
  }

  .hero-stats { gap: 18px; }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .feature-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .feature-card:nth-child(2) { border-radius: 0; }
  .feature-card:nth-child(3) { border-radius: 0; }
  .feature-card:last-child  { border-radius: 0 0 var(--radius) var(--radius); }

  .cars-grid { grid-template-columns: 1fr; }

  .trailer-specs-grid { grid-template-columns: 1fr; }
  .trailer-body { padding: 24px; }

  .contact-grid { grid-template-columns: 1fr; }

  .about-cards { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:first-child,
  .feature-card:last-child { border-radius: 0; }

  .quote-form { padding: 24px; }

  .hero-stats { flex-direction: column; gap: 12px; align-items: flex-start; }
  .stat-div { display: none; }
}
