/* --- CSS RESET & NORMALIZE START --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #16181b;
  color: #e7e9ef;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
/* Scrollbar dark styling */
body::-webkit-scrollbar {
  background: #23272A;
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #3a4048;
  border-radius: 6px;
}

/* --- CSS RESET & NORMALIZE END --- */

:root {
  --color-primary: #23272A;
  --color-secondary: #C0B283;
  --color-accent: #F5F3EE;
  --color-background: #16181b;
  --color-card-bg: #222327;
  --color-neon: #73DFFF;
  --color-shadow-dark: rgba(25, 29, 34, 0.48);
  --color-shadow-light: rgba(115, 223, 255, 0.084);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', Arial, sans-serif;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--color-primary);
  box-shadow: 0 3px 14px var(--color-shadow-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: #e7e9ef;
  position: relative;
  padding: 8px 7px;
  border-radius: 4px;
  transition: background .15s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-card-bg);
  color: var(--color-neon);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--color-secondary);
  color: #23272A;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 10px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-neon);
  color: #23272A;
}

/* --- CTA BUTTONS --- */
.cta {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 13px 34px;
  border-radius: 32px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 4px 26px var(--color-shadow-dark);
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.14s;
  display: inline-block;
  margin: 0 5px 0 0;
}
.cta.primary {
  background: linear-gradient(90deg,#73DFFF, var(--color-secondary));
  color: #23272A;
  box-shadow: 0 0 0 1.5px var(--color-neon),0 6px 36px var(--color-shadow-light);
  border: 1px solid var(--color-neon);
}
.cta.primary:hover,
.cta.primary:focus {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 0 0 2.5px var(--color-neon),0 9px 44px var(--color-shadow-light);
}
.cta.secondary {
  background: var(--color-card-bg);
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cta.secondary:hover,
.cta.secondary:focus {
  box-shadow: 0 0 10px var(--color-neon);
  background: var(--color-secondary);
  color: #23272A;
  border-color: var(--color-neon);
  transform: translateY(-2px) scale(1.03);
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(114deg, #171b1d 0%, #23272A 80%);
  color: #f5f6fa;
  padding: 64px 0 44px 0;
  box-shadow: 0 18px 44px var(--color-shadow-dark);
  border-bottom: 2.5px solid var(--color-neon);
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-neon);
  margin-bottom: 20px;
  text-shadow: 0 3px 16px var(--color-shadow-light);
  letter-spacing: 0.01em;
}
.hero .subheadline {
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 400;
  color: #dbeefd;
  margin-bottom: 26px;
  letter-spacing: 0.005em;
  max-width: 600px;
}

/* --- SPACING & SECTION PATTERNS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
}
/* Ensure last section/footer has no bottom margin */
section:last-of-type {
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 18px var(--color-shadow-dark), 0 0 0 1.2px var(--color-neon);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 26px var(--color-neon), 0 0 0 2px var(--color-neon);
  transform: translateY(-2px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8fafd;
  color: #171b1c;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(92,218,239,0.082), 0 0 0 1.5px var(--color-neon);
  margin-bottom: 20px;
  min-width: 290px;
  width: 100%;
  max-width: 410px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 0 10px var(--color-primary),0 0 0 2.5px var(--color-neon);
  transform: scale(1.018);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card-bg);
  padding: 28px 22px;
  border-radius: 17px;
  min-width: 280px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px var(--color-shadow-dark);
}


/* --- TYPOGRAPHY & HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  margin-bottom: 10px;
  font-weight: 700;
}
h1 { font-size: 2.35rem; letter-spacing: 0.01em; }
h2 { font-size: 1.75rem; letter-spacing: 0.008em; }
h3 { font-size: 1.32rem; }
h4 { font-size: 1.08rem; }

p, li, ul, ol, .subheadline {
  color: #e7e9ef;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
strong {
  color: var(--color-neon);
  font-weight: 700;
}

/* --- UNIVERSAL CARDS, OFFERS, LISTS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature {
  background: var(--color-card-bg);
  border-radius: 14px;
  box-shadow: 0 3px 18px var(--color-shadow-dark);
  min-width: 270px;
  flex: 1 1 220px;
  padding: 28px 24px 19px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.14s, transform 0.12s;
  border: 1px solid var(--color-secondary);
}
.feature img {
  width: 32px;
  height: 32px;
  margin-bottom: 7px;
}
.feature:hover,
.feature:focus-visible {
  box-shadow: 0 0 14px var(--color-neon),0 0 0 2px var(--color-neon);
  transform: translateY(-3px) scale(1.03);
}
.no-list-style, .text-section ul, .content-wrapper ul, .text-section ol, .content-wrapper ol {
  list-style: none;
  padding-left: 0;
}
.credentials, .team-teaser, .quality-guarantee, .process-highlights {
  background: rgba(194, 219, 255, 0.08);
  color: var(--color-neon);
  font-size: 1rem;
  padding: 13px 17px;
  border-radius: 11px;
  margin-top: 18px;
  font-weight: 600;
  border-left: 4px solid var(--color-secondary);
}

/* --- OFFER CARDS (exklusive-angebote) --- */
.offer-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.offer-card {
  background: var(--color-card-bg);
  border-radius: 15px;
  box-shadow: 0 4px 18px var(--color-shadow-dark),0 0 0 1.1px var(--color-neon);
  padding: 30px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 350px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s,transform 0.13s;
}
.offer-card:hover,
.offer-card:focus-visible {
  box-shadow: 0 0 12px var(--color-neon),0 0 0 2px var(--color-neon);
  transform: scale(1.03);
}
.offer-tags {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--color-neon);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 22px;
  box-shadow: 0 1px 8px rgba(115,223,255,0.14);
  text-shadow: 0 1px 2px #c0b28350;
}
/* vehicle and brand grids (flotte) */
.brand-logos-row, .client-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin: 32px 0 0 0;
}
.brand-logos-row img, .client-logos-row img {
  width: 54px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(115,223,255,0.13));
  opacity: 0.8;
  transition: filter 0.16s, opacity 0.165s;
}
.brand-logos-row img:hover, .client-logos-row img:hover {
  filter: drop-shadow(0 2px 18px var(--color-neon));
  opacity: 1;
}
.vehicle-highlight-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.vehicle-card {
  background: var(--color-card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--color-shadow-dark);
  padding: 22px 20px;
  color: var(--color-secondary);
  font-family: var(--font-display);
  min-width: 210px;
  flex: 1 1 210px;
  max-width: 310px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.13s;
  border: 1px solid var(--color-secondary);
}
.vehicle-card:hover {
  box-shadow: 0 0 11px var(--color-neon),0 0 0 2px var(--color-neon);
  color: var(--color-neon);
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-card-bg);
  border-left: 4px solid var(--color-neon);
  border-radius: 12px;
  padding: 24px 21px 16px 21px;
  box-shadow: 0 1.5px 9px var(--color-shadow-dark);
  transition: box-shadow 0.13s, transform 0.12s;
}
.faq-item h3 {
  font-size: 1.16rem;
  color: var(--color-secondary);
}
.faq-item:hover {
  box-shadow: 0 0 8px var(--color-neon),0 0 0 2px var(--color-neon);
  transform: scale(1.017);
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.stars {
  color: #FFD700;
  letter-spacing: 1px;
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}
.author {
  color: var(--color-neon);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
}

/* --- CONTACT PAGE --- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  font-family: var(--font-body);
  background: rgba(194,219,255,0.03);
  padding: 22px 17px;
  border-radius: 11px;
  margin-bottom: 22px;
}
.contact-info img {
  display: inline;
  width: 21px;
  height: auto;
  vertical-align: middle;
  margin-right: 7px;
}
.text-section h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 3px;
  color: var(--color-secondary);
}
.map {
  min-width: 200px;
  max-width: 330px;
}
.map p {
  color: #b9bfc6;
  font-style: italic;
  font-size: 0.96rem;
}
.cta-section {
  margin-top: 18px;
}

/* --- THANK YOU --- */
.thank-you-message {
  background: rgba(115,223,255,0.056);
  border-left: 4px solid var(--color-neon);
  border-radius: 10px;
  padding: 22px 19px 15px 19px;
  color: #e7e9ef;
  font-size: 1.11rem;
  margin-bottom: 18px;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #c4c9d2;
  font-family: var(--font-body);
  border-top: 2.5px solid var(--color-neon);
  box-shadow: 0 -3px 12px var(--color-shadow-dark);
  padding-top: 27px;
  padding-bottom: 22px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  gap: 20px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-nav a {
  color: var(--color-neon);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-top: 10px;
}
.footer-info .contact-info {
  background: none;
  padding: 0;
  border-radius: 0;
  color: #c4c9d2;
}
.footer-info .contact-info img {
  width: 18px;
  margin-right: 6px;
}
.legal {
  font-size: 0.95rem;
  color: #aaaeb7;
  margin-top: 10px;
}

/* --- MOBILE BREAKPOINTS --- */
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
  }
  .footer-main, .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .testimonial-list,
  .offer-cards-grid,
  .vehicle-highlight-cards,
  .brand-logos-row,
  .client-logos-row {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  header .container {
    flex-direction: row;
    gap: 14px;
  }
  .section, section {
    padding: 32px 7px 30px 7px;
    margin-bottom: 38px;
  }
  .content-grid,
  .card-container,
  .feature-grid,
  .offer-cards-grid,
  .testimonial-list,
  .vehicle-highlight-cards,
  .brand-logos-row,
  .client-logos-row,
  .footer-main, .footer-info,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column!important;
    gap: 13px;
    align-items: center!important;
  }
  .card, .feature, .feature-item, .offer-card, .vehicle-card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .hero {
    padding: 38px 0 27px 0;
  }
}
@media (max-width: 570px) {
  html { font-size: 15px; }
  .section, section {
    padding: 18px 3.5vw 14px 3vw;
    margin-bottom: 22px;
  }
  .hero {
    padding: 24px 0 12px 0;
  }
  .cta, .cta.primary, .cta.secondary {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 1.03rem;
    min-width: 0;
  }
  .brand-logos-row img, .client-logos-row img {
    width: 38px;
  }
  h1 { font-size: 1.51rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.01rem; }
  .footer-main, .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 3000;
  background: rgba(11, 13, 21, 0.98);
  box-shadow: 0 0 40px 10px #171b1c;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.69,.31,0,.91), opacity 0.19s;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--color-neon);
  padding: 15px;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 14px 22px 0 0;
  cursor: pointer;
  z-index: 3050;
  transition: color 0.21s, background 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff;
  background: var(--color-neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 26px 34px;
  gap: 13px;
}
.mobile-nav a {
  color: #f7fafc;
  padding: 14px 0;
  font-size: 1.18rem;
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(194,219,255, 0.10);
  width: 100%;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--color-neon);
  background: rgba(115,223,255,0.09);
}

@media (max-width: 1080px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 750px) {
  .mobile-menu .container {
    padding: 0;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 4000;
  background: #191b1f;
  border-top: 3.5px solid var(--color-neon);
  color: #fafcff;
  font-family: var(--font-body);
  box-shadow: 0 -2.5px 28px 2px rgba(115,223,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px 18px 23px;
  animation: bannerin 0.5s cubic-bezier(.56,.09,.27,1.14);
}
@keyframes bannerin {
  from { transform: translateY(25%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner p {
  flex: 1 0 200px;
  font-size: 1.08rem;
  color: #e7e9ef;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-size: 0.98rem;
  padding: 8px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  margin-left: 0;
  box-shadow: 0 2px 8px var(--color-shadow-dark);
  transition: background 0.19s, color 0.17s, box-shadow 0.17s;
}
.cookie-banner .cookie-accept {
  background: var(--color-neon);
  color: #23272A;
  border: 1px solid var(--color-neon);
}
.cookie-banner .cookie-accept:hover {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 0 8px var(--color-neon);
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.2px solid var(--color-secondary);
}
.cookie-banner .cookie-reject:hover {
  background: var(--color-secondary);
  color: #23272A;
}
.cookie-banner .cookie-settings {
  background: var(--color-card-bg);
  color: var(--color-neon);
  border: 1px solid var(--color-neon);
}
.cookie-banner .cookie-settings:hover {
  background: var(--color-neon);
  color: #23272A;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding-left: 10px; padding-right: 10px;
    font-size: 15px;
    box-sizing: border-box;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9001;
  background: rgba(20, 23, 34, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.18s, opacity 0.17s;
}
.cookie-modal-overlay.active {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #23272A;
  color: #fff;
  border-radius: 14px;
  min-width: 275px;
  max-width: 98vw;
  padding: 32px 24px;
  box-shadow: 0 8px 40px var(--color-shadow-dark), 0 0 0 2.5px var(--color-neon);
  font-family: var(--font-body);
  animation: modalin .37s cubic-bezier(.64,.14,.18,0.97);
}
@keyframes modalin {
  from { transform: translateY(44px) scale(0.99); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.44rem;
  color: var(--color-neon);
  margin-bottom: 21px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  font-size: 1.07rem;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #fafaff;
  cursor: pointer;
}
.cookie-modal .cookie-toggle {
  display: inline-flex;
  width: 38px;
  height: 22px;
  background: #191b1f;
  border-radius: 14px;
  border: 1.5px solid #505863;
  position: relative;
  transition: background 0.15s, border 0.15s;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-toggle span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-neon);
  position: absolute;
  left: 2px; top: 1.7px;
  transition: left 0.18s, background 0.15s;
}
.cookie-modal .cookie-toggle input:checked + span {
  background: var(--color-secondary);
  left: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 27px;
}
.cookie-modal button {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 22px;
  cursor: pointer;
  font-size: 0.99rem;
  background: var(--color-neon);
  color: var(--color-primary);
  border: 1px solid var(--color-neon);
  transition: background 0.16s, color 0.16s, border 0.16s;
}
.cookie-modal button.cookie-cancel {
  background: #23272A;
  color: var(--color-neon);
  border: 1px solid var(--color-neon);
}
.cookie-modal button.cookie-cancel:hover {
  background: var(--color-neon);
  color: #23272A;
}
.cookie-modal button.cookie-save {
  background: var(--color-secondary);
  color: #23272A;
  border: 1px solid var(--color-secondary);
}
.cookie-modal button.cookie-save:hover {
  background: var(--color-neon);
  color: #23272A;
  border-color: var(--color-neon);
}

/* --- MICRO-INTERACTIONS --- */
a, .cta, button {
  transition: color 0.13s, background 0.15s, box-shadow 0.18s, border-color 0.17s, transform 0.13s;
}
.feature img, .brand-logos-row img, .client-logos-row img {
  transition: filter 0.16s;
}
.card, .feature, .offer-card, .vehicle-card, .faq-item, .testimonial-card {
  transition: box-shadow 0.12s, transform 0.15s, color 0.17s;
}

/* --- CUSTOM SCROLLBARS IN MODALS --- */
.cookie-modal ::-webkit-scrollbar {
  background: #202224;
  width: 7px;
}
.cookie-modal ::-webkit-scrollbar-thumb {
  background: #31485a;
  border-radius: 4px;
}

/* --- END --- */
