/*--------------------------------------------------------------
  RESET & BASELINE
--------------------------------------------------------------*/
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #23272c; /* dark, industrial */
  color: #EAF0F7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #E28A00;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.43,.41,.22,.91);
}
a:focus, a:hover {
  color: #F5A623;
  text-decoration: underline;
}
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
}

/*--------------------------------------------------------------
  TYPOGRAPHY
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
}
h2 {
  font-size: 1.625rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #d6dde5;
}
strong {
  color: #fff;
}

/* Industrial headings effect */
h1, h2 {
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow:
      0 1px 0 #222D38,
      0 2px 4px rgba(20,30,60,0.18);
}

ul, ol {
  margin-bottom: 18px;
  margin-left: 20px;
}
ul li, ol li {
  margin-bottom: 7px;
  color: #bfc9d5;
  font-size: 1rem;
  line-height: 1.6;
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 12px;
  filter: brightness(0.9) grayscale(0.35) drop-shadow(1px 1px 2px #222D38);
}

/*--------------------------------------------------------------
  CONTAINER & LAYOUT GLOBALS
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #292e34;
  border: 1.5px solid #3b4650;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(30,36,50,0.13);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.15s cubic-bezier(.5,.4,.38,.99), box-shadow 0.15s cubic-bezier(.5,.4,.38,.99);
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(30,36,50,0.19);
  transform: translateY(-4px) scale(1.025);
  border-color: #4d5e71;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 20px 28px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background: #EAF0F7;
  color: #23272c;
  margin-bottom: 20px;
  border-left: 5px solid #184C82;
  box-shadow: 0 2px 16px 0 rgba(30,36,60,0.08);
  transition: box-shadow 0.15s cubic-bezier(.5,.4,.38,.99);
}
.testimonial-card strong {
  color: #184C82;
  font-size: 1rem;
}
.testimonial-card p {
  color: #19212B;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(30,36,80,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.facts ul,
.fleet-advantages ul {
  list-style: disc inside;
  margin-left: 0;
  color: #bfc9d5;
}
.facts ul li,
.fleet-advantages ul li {
  font-size: 1.05rem;
  margin-bottom: 7px;
}

/*--------------------------------------------------------------
  HEADER, NAVIGATION, & FOOTER
--------------------------------------------------------------*/
header {
  background: #23272c;
  border-bottom: 1.5px solid #303842;
  position: sticky;
  top: 0;
  z-index: 2000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
header img {
  height: 43px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #b0bed0;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:focus, .main-nav a:hover {
  color: #fff;
  background: #25344A;
}
.main-nav .cta-btn {
  background: #184C82;
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.09);
  padding: 10px 20px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-left: 8px;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #E28A00;
  color: #23272c;
  box-shadow: 0 6px 22px 0 rgba(235,142,0,.13);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #E28A00;
  font-size: 2rem;
  border: none;
  margin-left: 20px;
  cursor: pointer;
  padding: 6px 14px 6px 6px;
  border-radius: 6px;
  transition: background 0.15s;
  z-index: 31;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1d2430;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(30,36,50,0.98);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.48,.12,.34,.95);
  box-shadow: 8px 0 32px 0 rgba(0,0,0,0.18);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  right: 25px;
  top: 19px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 5px;
  z-index: 3020;
  transition: background 0.14s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #23272c;
  color: #E28A00;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 95px;
  width: 100%;
  padding: 0 38px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 0;
  border-bottom: 1px solid #303842;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #E28A00;
}

footer {
  background: #191C20;
  border-top: 2px solid #303842;
  color: #bbc5d6;
  padding: 40px 0 15px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
footer img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #E28A00;
  font-weight: 500;
  font-size: 0.98rem;
}
.footer-nav a:focus, .footer-nav a:hover {
  text-decoration: underline;
  color: #F5A623;
}
.company-info {
  font-size: 0.96rem;
  color: #b4bdc8;
  margin-bottom: 8px;
}
.company-info a {
  color: #184C82;
}

footer p {
  margin-top: 12px;
  font-size: 0.93rem;
  color: #98a4b8;
}

/*--------------------------------------------------------------
  HERO, FEATURES, CTA, SECTIONS
--------------------------------------------------------------*/
.hero {
  background: linear-gradient(120deg, #23272c 80%, #184C82 120%);
  padding: 56px 0 60px 0;
  border-bottom: 2px solid #283444;
  min-height: 330px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.features { /* used as section & list */
  background: #23272c;
  padding: 42px 0;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.features ul li {
  background: #29303B;
  border: 1.2px solid #39424D;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(32,44,67,0.10);
  padding: 18px 16px 14px 20px;
  min-width: 230px;
  margin-bottom: 0;
  font-weight: 500;
  color: #e1e7ef;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border 0.13s, box-shadow 0.12s, background 0.13s;
}
.features ul li:hover {
  border-color: #184C82;
  box-shadow: 0 4px 18px 0 rgba(24,76,130,0.09);
  background: #232a38;
}
.services {
  background: #20232a;
  border-top: 2px solid #283444;
  border-bottom: 2px solid #283444;
  padding: 42px 0;
}
.services ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.cta, .cta-contact, .cta-btn, .contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-btn, .contact-cta .cta-btn, .services .cta-btn {
  background: #E28A00;
  color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(226,138,0,0.15);
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.13rem;
  padding: 13px 30px;
  margin-top: 8px;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.cta-btn:focus, .cta-btn:hover {
  background: #184C82;
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(24,76,130,0.11);
}

.facts {
  background: #273040;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 18px;
}

.fleet-advantages {
  background: #29303B;
  border-radius: 10px;
  padding: 10px 20px;
  margin-top: 18px;
}

.how-it-works ol {
  counter-reset: section;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.how-it-works ol li {
  background: #292e34;
  border-radius: 50px;
  border: 1.5px solid #184C82;
  padding: 12px 25px 12px 18px;
  position: relative;
  min-width: 180px;
  color: #e1e7ef;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.how-it-works ol li img {
  width: 34px;
  height: 34px;
}

.confirmation {
  background: #23272c;
  padding: 60px 0 50px 0;
  min-height: 340px;
  text-align: center;
}
.confirmation .cta-btn {
  margin-top: 24px;
}

/*--------------------------------------------------------------
  CAREER PAGE ELEMENTS
--------------------------------------------------------------*/
.career-hero {
  background: linear-gradient(125deg, #23272c 65%, #184C82 95%);
  padding: 52px 0 58px 0;
  min-height: 210px;
}
.benefits .testimonial-card {
  background: #EAF0F7;
  color: #23272c;
  border-left: 5px solid #E28A00;
}
.benefits .testimonial-card strong {
  color: #184C82;
}

/*--------------------------------------------------------------
  CONTACT PAGE ELEMENTS
--------------------------------------------------------------*/
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.08rem;
}
.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #D3DFEE;
}
.location-map {
  background: #29303B;
  color: #EAF0F7;
  padding: 14px 20px;
  border-radius: 9px;
  margin-top: 10px;
}
.location-map strong {
  color: #E28A00;
}

/*--------------------------------------------------------------
  LEGAL PAGES
--------------------------------------------------------------*/
.legal, .legal-gdpr, .legal-cookie, .legal-terms {
  background: #20232a;
  border-radius: 16px;
  border: 1.5px solid #303842;
  margin-top: 36px;
  margin-bottom: 60px;
  padding: 40px 28px;
  color: #EAF0F7;
  box-shadow: 0 2px 18px 0 rgba(30,36,50,0.11);
}
.legal h1, .legal-gdpr h1, .legal-cookie h1, .legal-terms h1 {
  color: #fff;
}

/*--------------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3050;
  background: #23272c;
  color: #EAF0F7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 18px;
  box-shadow: 0 -4px 22px 0 rgba(20,24,38,0.16);
  font-size: 1rem;
  min-height: 70px;
  transition: transform 0.36s cubic-bezier(.52,.14,.41,1);
}
.cookie-banner.hidden {
  transform: translateY(120%);
}
.cookie-banner-text {
  flex: 3 1 60%;
}
.cookie-banner-actions {
  flex: 1 1 auto;
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  background: #E28A00;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  transition: background 0.14s, color 0.14s;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(226,138,0,0.12);
}
.cookie-btn.settings {
  background: #184C82;
}
.cookie-btn.reject {
  background: #B53C36;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #184C82;
  color: #F5A623;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #8F2920;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,24,32,0.62);
  z-index: 3350;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #29303B;
  color: #EAF0F7;
  border-radius: 13px;
  min-width: 370px;
  max-width: 97vw;
  padding: 32px 26px 20px 26px;
  box-shadow: 0 6px 44px 0 rgba(24,76,130,0.15);
  z-index: 3400;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.06rem;
}
.cookie-modal h2 {
  color: #fff;
  font-size: 1.18rem;
  text-transform: none;
  margin-bottom: 8px;
  letter-spacing: normal;
}
.cookie-modal-category {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.cookie-modal-category label {
  font-weight: 500;
  color: #EAF0F7;
}
.cookie-modal-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #181C21;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal-toggle:checked {
  background: #E28A00;
}
.cookie-modal-toggle:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #EAF0F7;
  border-radius: 50%;
  transition: transform 0.18s cubic-bezier(.5,.4,.38,.99);
  box-shadow: 0 1px 2px rgba(0,0,0,0.09);
}
.cookie-modal-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  padding-top: 15px;
  border-top: 1px solid #374151;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.14s;
  z-index: 3500;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #23272c;
  color: #E28A00;
}

/*--------------------------------------------------------------
  RESPONSIVE / MOBILE FIRST (FLEXBOX)
--------------------------------------------------------------*/
@media (max-width: 1020px) {
  .container {
    max-width: 95vw;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 860px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
  }
  .main-nav a {
    font-size: 0.99rem;
    padding: 6px;
  }
}
@media (max-width: 820px) {
  .hero {
    min-height: 250px;
    padding: 44px 0 40px 0;
  }
  .features ul {
    gap: 12px;
  }
  .card-container, .content-grid {
    gap: 15px;
  }
  .card-content {
    padding: 15px 10px 13px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 99vw;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 34px 0 34px 0;
  }
  .section {
    padding: 25px 7px;
    margin-bottom: 38px;
  }
  .features ul {
    flex-direction: column;
    gap: 11px;
  }
  .how-it-works ol {
    flex-direction: column;
    gap: 11px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 15px 9px;
    font-size: 0.96rem;
  }
  .card-container, .content-grid {
    gap: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.97rem;
    padding: 15px 10px;
  }
  .cookie-modal {
    min-width: 85vw;
    padding: 19px 6vw;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.02rem; }
  .cta-btn, .contact-cta .cta-btn, .services .cta-btn {
    font-size: 0.98rem;
    padding: 12px 11px;
  }
  .testimonial-card { font-size: 0.97rem; }
  .cookie-modal {
    min-width: 97vw;
    padding: 11px 2vw;
  }
}

/*--------------------------------------------------------------
  SCROLLBARS (For Dark UI feel)
--------------------------------------------------------------*/
html::-webkit-scrollbar {
  width: 11px;
  background-color: #23272c;
}
html::-webkit-scrollbar-thumb {
  background: #2c3440;
  border-radius: 10px;
}
html::-webkit-scrollbar-thumb:hover {
  background: #184C82;
}

/*--------------------------------------------------------------
  ANIMATIONS AND MICROS
--------------------------------------------------------------*/
.cta-btn, .cookie-btn {
  transition: box-shadow 0.18s, transform 0.11s, background 0.20s, color 0.12s;
}
.cta-btn:active, .cookie-btn:active {
  transform: translateY(1.5px) scale(0.98);
}
.card {
  transition: box-shadow 0.13s, transform 0.13s;
}
.card:active {
  transform: scale(0.99);
}

/*--------------------------------------------------------------
  INDUSTRIAL/MODERN METAL ACCENTS
--------------------------------------------------------------*/
.card, .features ul li, .hero {
  box-shadow:
    0 2px 10px 0 rgba(30,36,50,0.13),
    0 2px 4px 0 rgba(16, 33, 43, 0.12);
}
div, section, .card, .features ul li {
  border-radius: 9px;
}
.features ul li {
  border-left: 6px solid #E28A00;
  background-image: repeating-linear-gradient(120deg,rgba(59,65,75,0.07) 0 10px,transparent 13px 20px);
}

/*--------------------------------------------------------------
  PRINT STYLES (optional, minimal)
--------------------------------------------------------------*/
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  .container {
    max-width: none;
    width: 100%;
    padding: 0;
  }
}
