/* --- CSS RESET & BASE --- */
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A1A2E;
  background: #F1F1F1;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #0F3460;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #F53F6B;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: #0F3460;
}

/* --- GENERAL UTILITY --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADER / NAV --- */
header {
  background: #1A1A2E;
  box-shadow: 0 2px 12px rgba(10,24,68,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #F1F1F1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 18px;
  border-radius: 20px;
  transition: background 0.24s, color 0.2s;
}
header nav a.cta {
  background: #F53F6B;
  color: #fff;
  margin-left: 12px;
  font-weight: 800;
  font-size: 1.02rem;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(245,63,107,.09);
  transition: background .22s, box-shadow .18s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #0F3460;
  color: #fff;
  box-shadow: 0 4px 18px rgba(15,52,96,0.18);
}
header nav a:hover,
header nav a:focus {
  background: rgba(241,241,241,0.08);
  color: #F53F6B;
}
header img {
  height: 44px; /* Logo height */
}
.mobile-menu-toggle {
  display: none;
  background: #F53F6B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 6px;
  padding: 6px 14px 4px 14px;
  cursor: pointer;
  transition: background 0.18s, box-shadow .25s;
  margin-left: 24px;
  z-index: 41;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #0F3460;
}
@media (max-width: 1024px) {
  header .container {
    flex-direction: row;
    gap: 12px;
  }
}
@media (max-width: 870px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1A1A2E;
  z-index: 90;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.77,.18,.33,1.12);
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #0F3460;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  position: absolute;
  top: 20px;
  right: 26px;
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
  z-index: 99;
  transition: background .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F53F6B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 96px;
  padding: 0 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 0;
  transition: color .18s, background .23s;
  border-radius: 12px;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #F53F6B;
  background: rgba(245,63,107,0.05);
}
@media (max-width: 480px) {
  .mobile-nav {
    gap: 22px;
    padding: 0 18px;
    margin-top: 82px;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(130deg, #F1F1F1 60%, #fff 100%);
  display: flex;
  align-items: center;
  min-height: 370px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 740px;
  padding: 36px 0;
}
.hero h1 {
  color: #0F3460;
  font-size: 2.7rem;
  font-weight: 900;
  text-align: center;
}
.hero p {
  color: #1A1A2E;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 26px;
  text-align: center;
}
.hero .cta {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    margin-bottom: 30px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .container {
    padding: 22px 6px 30px 6px;
  }
}

/* --- FLEXIBLE CONTAINERS & CARDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(15,52,96,0.10);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  transition: box-shadow .23s, transform .19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 32px rgba(245,63,107,0.16);
  transform: translateY(-2px) scale(1.02);
}

.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  background: #fff;
  color: #1A1A2E;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(15,52,96, 0.12);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 22px;
  min-width: 240px;
  transition: box-shadow .2s;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #0F3460;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(245,63,107,.12);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HIGHLIGHTED FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(15,52,96,0.08);
  padding: 32px 22px;
  min-width: 240px;
  flex: 1 1 220px;
  transition: box-shadow .18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.feature-grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.feature-grid > div h3 {
  font-size: 1.1rem;
  color: #F53F6B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 7px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(245,63,107,0.11);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 180px;
    padding: 22px 13px;
    gap: 9px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .feature-grid > div {
    width: 100%;
    min-width: unset;
    max-width: 99vw;
  }
}

/* --- TEXT SECTIONS, LISTS, ICON ROWS --- */
.text-section {
  margin: 0 0 24px 0;
}
.text-section p {
  color: #233;
  font-weight: 500;
}
.text-section ul {
  margin-left: 20px;
  margin-bottom: 8px;
}
.text-section li {
  margin-bottom: 7px;
  font-weight: 600;
}
.value-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}

/* --- REVIEW & LIST STYLES (Autotests/Testfahrten) --- */
.review-list, .drive-report-list, .stories-list, .tip-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}
.review-list h3, .drive-report-list h3, .stories-list h3 {
  font-size: 1.2rem;
  color: #F53F6B;
  margin-top: 10px;
}
.review-list span {
  font-weight: 700;
  color: #F53F6B;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}
.criteria-overview, .test-drive-highlights, .tip-categories, .quick-guides, .author-profiles, .expert-profiles {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(15,52,96,0.07);
  padding: 18px;
  margin-bottom: 18px;
}
.rating-icons, .author-profiles, .expert-profiles {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.test-drive-highlights ul, .quick-guides ul, .tip-categories ul {
  margin-bottom: 0;
}

.insights-snippet {
  background: #FCE5EC;
  color: #800023;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 20px 0;
  font-weight: 700;
}

.reader-feedback {
  margin: 26px 0 0 0;
}

/* --- BUTTONS / CTA --- */
.cta, button.cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #F53F6B;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 12px 32px;
  border-radius: 32px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  margin: 0 0 0 0;
  text-transform: uppercase;
  box-shadow: 0 2px 22px rgba(245,63,107,0.13);
  transition: background 0.21s, box-shadow 0.17s, transform 0.15s;
  outline: none;
}
.cta:focus, .cta:hover, button.cta:hover, button.cta:focus {
  background: #0F3460;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 32px rgba(15,52,96,0.18);
  outline: none;
}

/* --- FOOTER --- */
footer {
  background: #0F3460;
  color: #fff;
  padding: 48px 0 24px 0;
  border-top: 4px solid #F53F6B;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 10px;
}
.footer-brand img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #F1F1F1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color .17s;
  margin-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F53F6B;
}
.footer-contact {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-contact img {
  height: 19px;
  width: 19px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-contact a {
  color: #F1F1F1;
  font-weight: 600;
  word-break: break-all;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #F53F6B;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social img {
  height: 28px;
  width: 28px;
  filter: brightness(98%) contrast(120%);
  transition: filter .16s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(110%) sepia(1) hue-rotate(-20deg) saturate(4);
}
@media (max-width: 850px) {
  footer .container {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    gap: 10px;
    padding: 0 8px;
  }
  .footer-nav, .footer-brand, .footer-social, .footer-contact {
    margin-bottom: 9px;
  }
}

/* --- MAP & FAQ Teaser (Kontakt) --- */
.map-embed {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15,52,96,0.06);
  font-weight: 700;
}
.faq-teaser {
  margin-top: 18px;
}
.faq-teaser a {
  font-weight: 800;
  color: #0F3460;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FCE5EC;
  padding: 7px 19px;
  box-shadow: 0 1px 4px rgba(245,63,107,0.07);
  border-radius: 20px;
  transition: background 0.2s;
}
.faq-teaser a:hover, .faq-teaser a:focus {
  background: #F53F6B;
  color: #fff;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 120;
  background: #1A1A2E;
  color: #fff;
  box-shadow: 0 -4px 32px rgba(15,52,96,.11);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  padding: 30px 30px 24px 30px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  min-height: 50px;
  transition: opacity .32s cubic-bezier(.68,-0.12,.49,1.12), transform .33s cubic-bezier(.68,-0.12,.49,1.12);
}
.cookie-consent-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner-content {
  flex: 1;
  color: #fff;
}
.cookie-consent-buttons {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner button,
.cookie-consent-banner .cookie-settings-btn {
  background: #F53F6B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 24px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  transition: background .18s, color .14s;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #0F3460;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus,
.cookie-consent-banner .cookie-settings-btn:hover, .cookie-consent-banner .cookie-settings-btn:focus {
  background: #fff;
  color: #F53F6B;
}
@media (max-width: 800px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 17px 10px 10px 10px;
    font-size: 0.95rem;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,35,54,0.74);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .36s cubic-bezier(.68,-0.12,.49,1.12);
}
.cookie-modal.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: #1A1A2E;
  border-radius: 22px;
  box-shadow: 0 10px 80px rgba(15,52,96,0.16);
  padding: 36px 34px 30px 34px;
  min-width: 310px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookiePop .34s cubic-bezier(.68, -0.12, .49, 1.12);
}
@keyframes cookiePop {0% {transform: scale(0.92); opacity: 0;} 100% {transform: scale(1); opacity:1;}}
.cookie-modal-content h2 {
  color: #0F3460;
  font-size: 1.6rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F53F6B;
  width: 19px;
  height: 19px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A2E;
}
.cookie-modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #F53F6B;
  color: #fff;
  border: none;
  font-size: 1.45rem;
  border-radius: 50%;
  width: 38px; height: 38px;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #0F3460;
}

/* --- SPACING + VISUAL HIERARCHY --- */
main section {
  margin-bottom: 60px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  main section {
    margin-bottom: 30px;
    padding-top: 10px;
  }
  .section {
    margin-bottom: 30px;
    padding: 22px 6px;
  }
}

/* --- SHADOWS, RADIUS, HOVER EFFECTS --- */
.card, .feature-grid > div, .criteria-overview, .test-drive-highlights, .tip-categories, .quick-guides, .author-profiles, .expert-profiles {
  box-shadow: 0 2px 16px rgba(15,52,96,0.07);
  border-radius: 14px;
  background: #fff;
  transition: box-shadow .23s, transform .16s;
}
.card:hover, .feature-grid > div:hover, .criteria-overview:hover, .test-drive-highlights:hover, .tip-categories:hover, .quick-guides:hover, .author-profiles:hover, .expert-profiles:hover {
  box-shadow: 0 8px 24px rgba(245,63,107,0.10);
  transform: scale(1.01);
}

/* --- COLORS & GEOMETRIC ACCENTS --- */
hr {
  border: none;
  border-top: 3px solid #F53F6B;
  border-radius: 2px;
  margin: 24px 0 24px 0;
}

/* --- FORMS, INPUTS, INTERACTIVE ELEMENTS --- */
input[type="text"], input[type="email"], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 11px;
  border: 2px solid #F1F1F1;
  padding: 10px;
  margin-bottom: 16px;
  width: 100%;
  transition: border-color .16s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #F53F6B;
  outline: none;
}

/* --- MEDIA QUERIES FOR RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .feature-grid { gap: 14px; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .card { padding: 18px 8px; }
}

/* --- VISUAL OVERRIDES --- */
.em {
  font-style: italic;
  color: #F53F6B;
}

/* ---- ACCESSIBILITY ---- */
a:focus-visible, button:focus-visible {
  outline: 3px solid #F53F6B;
  outline-offset: 1px;
}

@media (max-width: 480px) {
  .cookie-modal-content { padding: 16px 10px; min-width: 90vw; }
}

/* --- MINIMAL GEOMETRIC SHAPES/ACCENTS FOR MODERN_BOLD --- */
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 29px;
  height: 4px;
  background: #F53F6B;
  border-radius: 4px;
  margin-bottom: 16px;
  z-index: 2;
}
.section {
  position: relative;
}
@media (max-width: 700px) {
  .section::before {
    width: 19px;
    height: 3px;
    margin-bottom: 7px;
  }
}
/* Hide geometric accents on very small sections */
.section:empty::before { display: none; }

/* === END OF STYLE === */

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Roboto:wght@400;500;700&display=swap');
