/*-------------------------------------------------------------
 CSS RESET & BASELINE NORMALIZE
---------------------------------------------------------------*/
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,
b, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181F2F;
  color: #F2F5F7;
}
*, *:before, *:after { box-sizing: inherit;}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

/*-------------------------------------------------------------
 FONT IMPORTS
---------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');

:root {
  --brand-primary: #23436B;
  --brand-secondary: #72A24D;
  --brand-accent: #F2F5F7;
  --brand-dark: #181F2F;
  --brand-dark2: #22304c;
  --brand-neon: #62fcd7;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/*-------------------------------------------------------------
 LAYOUT CONTAINER & SECTIONS
---------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #202b3c;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(11,19,32,0.13);
  transition: box-shadow 0.22s;
}
@media (max-width: 900px) {
  .section { padding: 32px 8px; margin-bottom: 40px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #202b3c;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(35,67,107,.15);
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px var(--brand-neon);
  transform: translateY(-6px) scale(1.014);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/*-------------------------------------------------------------
 TYPOGRAPHY
---------------------------------------------------------------*/
body, html {
  font-family: var(--font-body);
  background: #181F2F;
  color: #F2F5F7;
  font-size: 16px;
}
h1, .display, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1.25px;
  color: var(--brand-accent);
  line-height: 1.13;
  margin-bottom: 12px;
}
@media (max-width: 700px) {
  h1, .display, .hero h1 { font-size: 2rem; }
}
h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--brand-neon);
  margin-bottom: 6px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 500;
  color: var(--brand-secondary);
  margin-bottom: 4px;
}
h4, h5, h6 { font-family: var(--font-display); }
p, ul, ol, li {
  color: #E6E7F1;
  font-size: 1rem;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.07rem;
  color: var(--brand-dark2);
  font-weight: 500;
  margin-bottom: 16px;
  background: rgba(98,252,215,0.09);
  border-left: 4px solid var(--brand-neon);
  padding: 8px 18px;
  border-radius: 5px;
}

strong, b { color: var(--brand-secondary); font-weight: 600; }

ul {
  margin-left: 24px;
  margin-bottom: 14px;
  list-style: disc inside;
}
ol {
  margin-left: 28px;
  margin-bottom: 14px;
  list-style: decimal inside;
}
ul li:before {
  content: '';
  margin-right: 0;
}
li {
  margin-bottom: 8px;
}

@media (max-width: 650px) {
  h1, .display { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .subheadline, p { font-size: 0.98rem; }
}

/*-------------------------------------------------------------
 HEADER, LOGO & NAVIGATION
---------------------------------------------------------------*/
header {
  width: 100%;
  background: linear-gradient(93deg, #202f47 0%, #23436B 100%);
  border-bottom: 2px solid var(--brand-neon);
  box-shadow: 0 2px 15px #1015263c;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
}

header img {
  height: 44px;
  width: auto;
}
@media (max-width: 425px) {
  header img { height: 36px; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: auto;
  margin-left: 36px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
  color: #F2F5F7;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-neon);
  background: rgba(35,243,255,0.065);
}

header .cta.primary {
  background: var(--brand-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 8px;
  padding: 10px 28px;
  box-shadow: 0 2px 16px rgba(114,162,77,0.40);
  border: none;
  margin-left: 28px;
  transition: background 0.15s, box-shadow 0.2s, transform 0.14s;
  cursor: pointer;
}
header .cta.primary:hover, header .cta.primary:focus {
  background: var(--brand-neon);
  color: var(--brand-dark);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 2px 22px var(--brand-neon); 
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-neon);
  cursor: pointer;
  padding: 8px 12px;
  line-height: 1;
  z-index: 110;
  border-radius: 7px;
  transition: background 0.15s, color 0.20s;
}
.mobile-menu-toggle:hover {
  background: rgba(98,252,215,0.13);
  color: #fff;
}

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/*-------------------------------------------------------------
 MOBILE MENU (SLIDE IN)
---------------------------------------------------------------*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(114deg, #181F2F 85%, #23436B 97%);
  z-index: 1002;
  overflow-y: auto;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.75,.24,.74,1.17), background 0.2s;
  box-shadow: 6px 0 48px #2ffcff0d;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--brand-neon);
  padding: 16px 26px 0 0;
  cursor: pointer;
  transition: color 0.14s, background 0.16s;
}
.mobile-menu-close:hover { color: #fff; background: rgba(98,252,215,0.13); }

.mobile-nav {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.mobile-nav a {
  width: 100%;
  padding: 18px 36px;
  border-bottom: 1px solid #233;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-display);
  letter-spacing: .01em;
  transition: background 0.19s, color 0.14s;
  border-left: 5px solid transparent;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #202f47;
  color: var(--brand-neon);
  border-left: 5px solid var(--brand-neon);
}

@media (min-width: 1020px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
}

/* Overlay for when mobile menu is open */
.mobile-menu::before {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,31,47,0.34);
  z-index: -1;
  pointer-events: none;
}

/*-------------------------------------------------------------
 HERO SECTION & GENERAL BUTTONS
---------------------------------------------------------------*/
.hero {
  background: linear-gradient(112deg, #23436B 54%, #181f2f 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 44px #2ffcff0a;
  padding: 70px 0 46px 0;
  margin-bottom: 40px;
  min-height: 350px;
  position: relative;
  z-index: 1;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 22px;
}
.hero h1 {
  color: var(--brand-neon);
  font-size: 2.3rem;
}
.hero .cta.primary {
  margin-top: 12px;
  font-size: 1.02rem;
  border-radius: 9px;
  letter-spacing: .03em;
  border: none;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 36px; padding-bottom: 28px;
  }
  .hero .container {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.cta {
  background: none;
  border: 2px solid var(--brand-neon);
  color: var(--brand-neon);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 8px;
  padding: 10px 28px;
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, border 0.14s, transform 0.11s;
  cursor: pointer;
  box-shadow: 0 2px 9px #2ffcff1f;
}
.cta.primary {
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  box-shadow: 0 2px 16px rgba(114,162,77,0.40);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-neon);
  color: var(--brand-dark);
  box-shadow: 0 2px 24px var(--brand-neon);
  transform: translateY(-2px) scale(1.035);
}
.cta:hover, .cta:focus {
  background: var(--brand-neon);
  color: #181F2F;
  transform: scale(1.04);
}

/*-------------------------------------------------------------
 FEATURE CARDS
---------------------------------------------------------------*/
.features, .vehicle-features {
  background: #19253A;
  border-radius: 18px;
  box-shadow: 0 2px 16px #21364c19;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features h2, .vehicle-features h2 {
  margin-bottom: 22px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 8px;
}
@media (max-width: 850px) {
  .feature-grid {
    gap: 18px;
    flex-direction: column;
  }
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  background: #22304c;
  border-radius: 14px;
  padding: 28px 18px 20px 18px;
  box-shadow: 0 2px 15px #23436B22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  position: relative;
  transition: box-shadow 0.19s, transform 0.18s;
  margin-bottom: 20px;
  border: 2px solid transparent;
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 8px var(--brand-neon));
}
.feature h3 {
  margin-bottom: 0;
  color: var(--brand-neon);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 32px #21f9e9b6;
  border: 2.5px solid var(--brand-neon);
  transform: translateY(-6px) scale(1.018);
}

/*-------------------------------------------------------------
 PRICING TABLE
---------------------------------------------------------------*/
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.pricing-table .option {
  flex: 1 1 260px;
  background: #22304c;
  border-radius: 16px;
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  color: #fff;
  box-shadow: 0 2px 19px #72A24D0d;
  border: 2.5px solid #181F2F;
  transition: border 0.15s, box-shadow 0.20s, background 0.11s, color 0.11s, transform 0.13s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.pricing-table .option:hover, .pricing-table .option:focus {
  border: 2.5px solid var(--brand-neon);
  box-shadow: 0 10px 27px #29f7fcc7;
  color: var(--brand-neon);
  background: #233c59;
  transform: scale(1.016);
}
.pricing-table .option h2 {
  margin-bottom: 13px;
  font-size: 1.23rem;
  color: var(--brand-secondary);
}
.pricing-table .option ul {
  margin: 0;
  padding-left: 14px;
  font-size: 1rem;
  color: #d2fdff;
}
@media (max-width: 850px) {
  .pricing-table {
    flex-direction: column;
    gap: 14px;
  }
}

/*-------------------------------------------------------------
 TESTIMONIAL CARDS
---------------------------------------------------------------*/
.testimonials-preview,
section .testimonial-card {
  background: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  background: #F2F5F7;
  color: #164070;
  border-radius: 16px;
  box-shadow: 0 4px 12px #23436B18;
  font-family: var(--font-body);
  flex-direction: column;
  align-items: flex-start;
  border-left: 6px solid var(--brand-secondary);
}
.testimonial-card p {
  color: #18243F;
  font-size: 1.08rem;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  color: #325375;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.star-rating, .star-rating-overall {
  color: #FFCB2D;
  font-size: 1.28rem;
  margin: 16px 0 2px 0;
  text-shadow: 0 1px 0 #fff, 0 -2px 3px #222;
  letter-spacing: 2px;
  font-family: var(--font-display);
  font-weight: bold;
}
.star-rating-overall {
  background: #fff;
  padding: 7px 16px 8px 16px;
  color: #23436B;
  border-radius: 8px;
  box-shadow: 0 1px 4px #e3f6e91c;
  margin-bottom: 18px;
}

/*-------------------------------------------------------------
 FOOTER STYLES
---------------------------------------------------------------*/
footer {
  background: linear-gradient(98deg, #202b3d 0%, #23436B 100%);
  color: #F2F5F7;
  padding: 38px 0 24px 0;
  margin-top: 64px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 40px #21f9e919;
  font-family: var(--font-body);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
footer a img {
  height: 36px;
  margin-right: 26px;
}
.footer-links {
  display: flex;
  gap: 22px;
  margin: 12px 0;
}
.footer-links a {
  color: var(--brand-neon);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.14s;
  position: relative;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-info img {
  height: 19px;
  width: 19px;
  filter: invert(65%) sepia(12%) saturate(740%) hue-rotate(116deg) brightness(106%) contrast(94%);
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/*-------------------------------------------------------------
 MISCELLANEOUS UTILITY CLASSES & ELEMENTS
---------------------------------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.timeline {
  background: #1c3857;
  color: var(--brand-neon);
  padding: 9px 15px 9px 15px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 12px;
  box-shadow: 0 1px 6px #62fcd70a;
}
.hint {
  background: #21f9e905;
  color: var(--brand-neon);
  font-family: var(--font-display);
  font-size: 0.97rem;
  border-left: 3px solid var(--brand-neon);
  padding: 8px 13px;
  margin-top: 13px;
  border-radius: 5px;
}
.office-info {
  background: #22304c;
  padding: 14px 22px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 2px 8px #23436B12;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: var(--brand-neon);
  background: #22304c;
  padding: 9px 18px;
  border-radius: 8px;
}
.contact-details img {
  height: 20px;
  filter: invert(65%) sepia(12%) saturate(740%) hue-rotate(116deg) brightness(106%) contrast(94%);
}
.next-steps {
  margin-top: 20px;
  font-size: 1rem;
}
.next-steps a {
  color: var(--brand-neon);
  text-decoration: underline;
  transition: color 0.16s;
}
.next-steps a:hover { color: var(--brand-secondary); }

/*-------------------------------------------------------------
 COOKIE BANNER (FIXED BOTTOM BANNER + MODAL)
---------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #181F2F;
  color: #fff;
  border-top: 3.5px solid var(--brand-neon);
  box-shadow: 0 -2px 40px #21f9e919;
  z-index: 2005;
  padding: 20px 16px 18px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: transform 0.23s, opacity 0.2s;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(110%); }
.cookie-banner__text {
  flex: 1 1 240px;
  color: #fff;
  font-size: 0.97rem;
  line-height: 1.56;
  margin-bottom: 0;
}
.cookie-banner__btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  background: var(--brand-secondary);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  box-shadow: 0 1px 4px #61f8e721;
  cursor: pointer;
  transition: background 0.13s, color 0.15s, box-shadow 0.11s, transform 0.09s;
}
.cookie-btn:hover {
  background: var(--brand-neon);
  color: #181F2F;
}
.cookie-btn.settings {
  background: none;
  border: 2px solid var(--brand-neon);
  color: var(--brand-neon);
  box-shadow: 0 1px 6px #61f8e7a3;
}
.cookie-btn.settings:hover { background: var(--brand-neon); color: #181F2F; }

/* COOKIE MODAL POPUP */
.cookie-modal__overlay {
  position: fixed;
  z-index: 2006;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24, 31, 47, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal__overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  width: 96vw;
  max-width: 410px;
  background: #202b3d;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 8px 42px #29f7fc79;
  padding: 32px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 5;
  animation: cookieModalIn 0.42s cubic-bezier(.48,.04,.38,1.13);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(80px) scale(0.98); }
  79% { opacity: 1; transform: translateY(-8px) scale(1.03); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}
.cookie-modal__close {
  background: none;
  border: none;
  color: var(--brand-neon);
  font-size: 1.8rem;
  position: absolute;
  right: 16px; top: 12px;
  cursor: pointer;
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-neon);
  margin-bottom: 13px;
}
.cookie-category { margin-bottom: 18px; }
.cookie-category__label {
  font-weight: 600;
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-size: 1rem;
}
.cookie-modal__switch {
  appearance: none;
  width: 36px;
  height: 22px;
  background: #23436B;
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  vertical-align: middle;
  margin-left: 15px;
  border: 1.3px solid #333;
}
.cookie-modal__switch:checked {
  background: var(--brand-neon);
}
.cookie-modal__switch::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1.8px; left: 2.2px;
  box-shadow: 0 1.5px 4px #62fcd78e;
  transition: left 0.18s, background 0.15s;
}
.cookie-modal__switch:checked::before {
  left: 16px;
  background: #14eba1;
}
.cookie-category__desc {
  font-size: 0.97rem;
  color: #dbf4f7;
  margin-left: 4px;
}
.cookie-category.essential .cookie-modal__switch {
  background: #22304c65;
  pointer-events: none;
  filter: grayscale(0.75) opacity(0.55);
}

.cookie-modal__cta-group {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 25px;
  justify-content: flex-end;
}
.cookie-modal__cta-group .cookie-btn {
  padding: 10px 20px;
  font-size: 0.98rem;
}

/*-------------------------------------------------------------
 RESPONSIVE
---------------------------------------------------------------*/
@media (max-width: 750px) {
  .container, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .features, .vehicle-features { padding: 26px 8px; }
  .section { padding: 26px 8px; }
}
@media (max-width: 700px) {
  .feature, .pricing-table .option {
    min-width: 95vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 650px) {
  header .container { flex-direction: row; gap: 5px; padding: 11px 8px; }
  footer { padding: 20px 0 12px 0; }
}

/*-------------------------------------------------------------
 ANIMATIONS / EFFECTS / TRANSITIONS
---------------------------------------------------------------*/
a, button, .cta, .card, .feature, .pricing-table .option, .main-nav a, .mobile-nav a {
  transition: background 0.15s, color 0.18s, border 0.11s, box-shadow 0.12s, transform 0.11s;
}

.card, .feature, .testimonial-card, .option {
  will-change: transform, box-shadow;
}

.hero, .features, .vehicle-features, .pricing-table, .testimonial-card, .card {
  animation: sectionFadeIn 0.74s cubic-bezier(.5,.8,.4,1.13); /* for entrance */
}
@keyframes sectionFadeIn {
  0%{ opacity:0; transform:translateY(48px); }
  70%{ opacity:.7; transform:translateY(-8px); }
  100%{ opacity: 1; transform:translateY(0); }
}

/*-------------------------------------------------------------
 SCROLLBAR STYLES
---------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 12px;
  background: #1b2434;
}
::-webkit-scrollbar-thumb {
  background: #23436B;
  border-radius: 7px;
  border: 2px solid #202b3d;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-neon); }

/*-------------------------------------------------------------
 EXTRAS: BOX SHADOWS, RADIUS, ETC.
---------------------------------------------------------------*/
section, .section, .features, .vehicle-features, .card, .feature, .pricing-table .option, .testimonial-card {
  box-shadow: 0 2.5px 24px #27fcff17;
  border-radius: 16px;
}

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

/*-------------------------------------------------------------
 SPACING: MARGIN/GAP UTILITIES
---------------------------------------------------------------*/
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-40 { margin-top: 40px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }

/*-------------------------------------------------------------
 FOCUS STATES (FOR ACCESSIBILITY)
---------------------------------------------------------------*/
a:focus, button:focus {
  outline: 2.3px dotted var(--brand-neon);
  outline-offset: 2px;
}

/*-------------------------------------------------------------
 HIDE/SHOW helpers (for JS)
---------------------------------------------------------------*/
.hide { display: none !important; }

/* End */
