/* CSS RESET & 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F6F7FA;
  color: #23305A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; border-radius: 12px; }
a { color: #23305A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #E9A531; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23305A;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, ol { margin-bottom: 18px; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
ul, ol { padding-left: 20px; }
strong { color: #23305A; font-weight: 700; }
em { color: #E9A531; }
cite { color: #23305A; font-size: 0.98em; }
blockquote { border-left: 4px solid #E9A531; padding-left: 12px; color: #23305A; font-style: italic; margin-bottom: 18px; }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(233,165,49,0.07), 0 1.5px 5px 0 rgba(35,48,90,0.04);
}

/* CARD & FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(233,165,49,0.12), 0 0.5px 2px 0 rgba(35,48,90,0.05);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 6px 28px 0 rgba(233,165,49,0.21), 0 2px 8px 0 rgba(35,48,90,0.09);
}

.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;
  background: #fff8ec;
  border-radius: 16px;
  box-shadow: 0 1.5px 6px 0 rgba(35,48,90,0.08);
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 380px;
  color: #23305A;
}

.testimonial-row, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(233,165,49,0.09);
  padding: 22px 20px;
  min-width: 210px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.feature-item:hover {
  box-shadow: 0 4px 14px 0 rgba(233,165,49,0.15);
}

/* HERO */
.hero {
  background: linear-gradient(92deg, #FFE8B2 0%, #fff6db 100%);
  padding: 64px 0 48px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 1.5px 6px 0 rgba(233,165,49,0.08);
}
.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 16px;
  color: #23305A;
}
.hero p {
  font-size: 1.125rem;
  color: #513d15;
  margin-bottom: 26px;
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E9A531;
  color: #23305A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 30px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(233,165,49,0.13);
  transition: background 0.17s, color 0.17s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: #23305A;
  color: #fff6db;
  box-shadow: 0 3px 14px rgba(35,48,90,0.15);
  transform: translateY(-2px) scale(1.03);
}

/* NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ebe7e0;
  box-shadow: 0 2px 10px 0 rgba(233,165,49,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #23305A;
  padding: 7px 18px;
  border-radius: 32px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFE8B2;
  color: #E9A531;
}
.main-nav .cta {
  background: #E9A531;
  color: #23305A;
  margin-left: 8px;
  font-size: 1rem;
  padding: 8px 24px;
  box-shadow: none;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #23305A;
  color: #FFE8B2;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #E9A531;
  padding: 7px 10px;
  border-radius: 12px;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.15s, color 0.12s;
  z-index: 1002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFE8B2;
  color: #23305A;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fffbe8;
  box-shadow: 0 0 24px 0 rgba(35,48,90,0.13);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: block;
  margin: 22px 18px 10px 18px;
  align-self: flex-end;
  background: #FFE8B2;
  color: #23305A;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.16s, color 0.12s;
  z-index: 2011;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9A531;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
  padding: 0 18px 30px 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #23305A;
  background: none;
  border-radius: 18px;
  padding: 17px 12px;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9A531;
  color: #fff;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #ebe7e0;
  padding: 24px 0 16px 0;
  box-shadow: 0 -1.5px 8px 0 rgba(35,48,90,0.08);
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #23305A;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 10px;
  background: none;
  transition: background 0.10s, color 0.10s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFE8B2;
  color: #E9A531;
}
.footer-contact {
  font-size: 0.97rem;
  color: #23305A;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 210px;
}
.social-media {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-media img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.1) contrast(1.2);
  transition: filter 0.14s, transform 0.1s;
}
.social-media a:hover img,
.social-media a:focus img {
  filter: none;
  transform: scale(1.07);
}

/* TESTIMONIALS & RATING */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.testimonial-card {
  box-shadow: 0 2px 12px 0 rgba(233,165,49,0.08);
  background: #fff7ea;
  color: #23305A;
  border-radius: 16px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #23305A;
  font-size: 1.08em;
}
.testimonial-card cite {
  color: #B78923;
  margin-left: 12px;
  font-style: normal;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-weight: 600;
  color: #23305A;
  font-size: 1.18em;
}
.star-rating img {
  width: 22px;
  height: 22px;
  vertical-align: bottom;
  margin-right: 2px;
}

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #23305A;
  font-size: 1.03em;
}
input[type="text"],
input[type="email"],
textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fffbe8;
  color: #23305A;
  border: 1.5px solid #E9A531;
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 1rem;
  transition: border 0.14s, box-shadow 0.14s;
  box-shadow: 0 1.5px 7px 0 rgba(233,165,49,0.08);
  outline: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1.5px solid #23305A;
  box-shadow: 0 3px 14px 0 rgba(35,48,90,0.09);
}
textarea {
  min-height: 100px;
  resize: vertical;
}
button[type="submit"], button:not([class]) {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  background: #E9A531;
  color: #23305A;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
  box-shadow: 0 1.5px 6px 0 rgba(233,165,49,0.10);
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
button[type="submit"]:hover, button:not([class]):hover,
button[type="submit"]:focus, button:not([class]):focus {
  background: #23305A;
  color: #fff;
}

/* =========== COOKIE CONSENT BANNER =========== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff8ec;
  border-top: 2px solid #E9A531;
  box-shadow: 0 -3px 16px 0 rgba(233,165,49,0.13);
  padding: 24px 30px 20px 30px;
  gap: 28px;
  z-index: 3000;
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  flex: 1 1 220px;
  color: #23305A;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  background: #E9A531;
  color: #23305A;
  margin-left: 0;
  transition: background 0.14s, color 0.13s, transform 0.14s;
  cursor: pointer;
}
.cookie-btn.reject {
  background: #fff;
  color: #E9A531;
  border: 1.5px solid #E9A531;
}
.cookie-btn.settings {
  background: #f3f4fa;
  color: #23305A;
  border: 1.5px solid #E9A531;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #23305A;
  color: #fff;
  transform: translateY(-1px);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,48,90,0.13);
  z-index: 3050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(233,165,49,0.19);
  padding: 28px 30px;
  min-width: 300px;
  max-width: 96vw;
  color: #23305A;
  z-index: 3060;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popup-bounce 0.42s cubic-bezier(0.77,0,0.175,1);
}
@keyframes popup-bounce {
  0% { transform: scale(0.8); opacity: 0; }
  70% { transform: scale(1.07); opacity: 1; }
  100% { transform: scale(1); }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex; align-items: center; gap: 14px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-category input[type=checkbox] {
  accent-color: #E9A531;
}
.cookie-category .always-on {
  color: #A5A5A5;
  font-size: .98em;
  margin-left: 10px;
  font-style: italic;
}
.cookie-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 16px;
  background: #FFE8B2;
  color: #23305A;
  font-size: 1.25rem;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E9A531;
  color: #fff;
}

/* RESPONSIVENESS (Mobile-First) */
@media (max-width: 1020px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .footer-contact, .social-media {
    min-width: 0;
  }
  footer .container {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .section, .hero { padding: 24px 8px; }
  .feature-grid, .testimonial-row, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .card, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 36px 0 28px 0;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.26rem; }
}

@media (max-width: 540px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 7px 16px 7px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 7px;
  }
  .cookie-modal {
    padding: 14px 7vw;
    min-width: unset;
  }
}

/* Micro-interaction for icons */
img[alt^="Fahrzeug"], img[alt$="icon"] {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  background: #fffbe8;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(233,165,49,0.10);
  padding: 4px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.feature-item:hover img[alt$="icon"] {
  box-shadow: 0 2px 8px 0 rgba(233,165,49,0.19);
  transform: scale(1.07);
}

/* =========== UTILITY CLASSES =========== */
.hide {display: none!important;}

/* VISUAL HIERARCHY SPACING */
main>section, .section {
  margin-bottom: 60px;
}
.content-wrapper>h2 {
  margin-top: 0;
  margin-bottom: 18px;
}
.content-wrapper>p, .content-wrapper>ul, .content-wrapper>ol {
  margin-bottom: 12px;
}

/* Section CTA parallax effect */
.section.cta, section.cta {
  background: #23305A;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 rgba(35,48,90,0.24);
  text-align: center;
  margin-bottom: 60px;
}
.section.cta h2, section.cta h2, .section.cta p, section.cta p {
  color: #fff;
}
.section.cta .cta, section.cta .cta {
  background: #E9A531;
  color: #23305A;
  margin-top: 8px;
}
.section.cta .cta:hover, section.cta .cta:hover {
  background: #fff;
  color: #E9A531;
}

/* =========== END =========== */
