/* ---- 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, main, 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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  color: #263238;
  background-color: #FAFAF9;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #263238;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD600;
  text-decoration: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Mukta', Georgia, 'Times New Roman', Times, serif;
  color: #263238;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }
blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #37474F;
  border-left: 4px solid #FFD600;
  padding-left: 20px;
  margin-bottom: 16px;
}
cite {
  font-size: 1rem;
  color: #8E9399;
  font-style: normal;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 800px) {
  .content-wrapper {
    gap: 32px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(38,50,56,0.07);
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(38,50,56,0.16);
}
.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;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(38,50,56,0.06);
  margin-bottom: 20px;
  border-left: 4px solid #FFD600;
  transition: box-shadow 0.18s;
}
.testimonial-card blockquote {
  margin-bottom: 0;
  font-style: italic;
  color: #37474F;
}
.testimonial-card cite {
  display: block;
  margin-left: 10px;
  color: #61636B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ---- HEADER ---- */
header {
  background: #fff;
  border-bottom: 1px solid #E2E5E7;
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  color: #263238;
  padding: 6px 0;
  text-decoration: none;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #FFD600;
}
header img[alt*="Zenith"] {
  height: 46px;
  margin-right: 4px;
  display: block;
}
.btn-primary {
  background-color: #FFD600;
  color: #263238;
  font-family: 'Mukta', serif;
  font-weight: 700;
  padding: 10px 32px;
  font-size: 1.1rem;
  border: none;
  outline: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(38,50,56,0.07);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  margin-left: 16px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #eec200;
  color: #263238;
  box-shadow: 0 4px 16px 0 rgba(38,50,56,0.19);
  text-decoration: none;
}
/* ---- HEADER RESPONSIVE / BURGER MENU ---- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #263238;
  cursor: pointer;
  z-index: 1300;
  margin-left: 16px;
}
@media (max-width: 950px) {
  header .container nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,50,56,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-105vw);
  transition: transform 0.33s cubic-bezier(.73,.11,.4,.96);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #FFD600;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 24px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Mukta', serif;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  width: 100%;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD600;
  color: #263238;
}
.mobile-menu.active {
  box-shadow: 0 0 0 100vw rgba(38,50,56,0.68);
}
@media (min-width: 951px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
/* ---- HERO SECTION ---- */
.hero {
  background: #FBFBF7;
  padding: 60px 0 40px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #EEE;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.23rem;
  color: #37474F;
  max-width: 590px;
  margin-bottom: 24px;
}
@media (max-width: 700px) {
  .hero {
    padding: 36px 0 24px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}
/* ---- FEATURES, HIGHLIGHTS, CARDS ---- */
.features ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(38,50,56,0.07);
  padding: 12px 20px;
  margin: 0;
}
.features ul li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.highlights .teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.highlights .teaser-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(38,50,56,0.07);
  padding: 24px 16px 20px 16px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
}
.highlights .teaser-grid h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.highlights .teaser-grid a {
  font-weight: 600;
  color: #263238;
  text-decoration: underline;
  transition: color 0.13s;
}
.highlights .teaser-grid a:hover {
  color: #FFD600;
}
@media (max-width: 900px) {
  .highlights .teaser-grid {
    flex-direction: column;
    gap: 14px;
  }
}
/* ---- NEWSLETTER SECTION ---- */
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.newsletter input[type="email"] {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 32px;
  border: 1px solid #E3E3DD;
  outline: none;
  flex: 2 1 220px;
  box-shadow: 0 1px 2px 0 rgba(38,50,56,0.05);
  margin-right: 6px;
  transition: border 0.18s;
}
.newsletter input[type="email"]:focus {
  border-color: #FFD600;
}
.newsletter ul {
  margin-top: 18px;
  list-style: disc inside;
  color: #61636B;
  font-size: 0.97rem;
}
.newsletter ul li {
  margin-bottom: 7px;
}
@media (max-width: 700px) {
  .newsletter form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .newsletter input[type="email"] {
    margin-right: 0;
  }
}
/* ---- LISTINGS (AUTO-TESTS, TESTFAHRTEN, STORIES, TIPPS) ---- */
.test-review-cards, .test-drive-list, .story-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.review-card, .test-drive-summary, .story-card, .tip-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(38,50,56,0.08);
  padding: 24px 18px 18px 18px;
  flex: 1 1 265px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  transition: box-shadow 0.18s;
}
.review-card:hover, .test-drive-summary:hover, .story-card:hover, .tip-card:hover {
  box-shadow: 0 8px 24px 0 rgba(38,50,56,0.12);
}
.review-card h3, .test-drive-summary h3, .story-card h3, .tip-card h3 {
  font-size: 1.17rem;
  margin-bottom: 8px;
}
.brand-tags, .thematic-tags, .location-tag, .editorial-pick {
  font-size: 0.96rem;
  color: #596170;
  background: #F4F4F4;
  border-radius: 5px;
  padding: 4px 10px;
  display: inline-block;
  margin-top: 7px;
  margin-right: 6px;
}
.editorial-pick {
  background: #FFD600;
  color: #263238;
  font-weight: 600;
}
@media (max-width: 860px) {
  .test-review-cards, .test-drive-list {
    flex-direction: column;
    gap: 14px;
  }
}
.resources .faq {
  background: #fdfced;
  border-radius: 8px;
  padding: 17px 17px 17px 24px;
  margin-bottom: 10px;
}
.resources .faq h3 {
  margin-bottom: 8px;
}
.resources .faq dt {
  font-weight: 700;
  color: #263238;
  margin-top: 7px;
}
.resources .faq dd {
  margin-left: 0;
  margin-bottom: 10px;
  color: #596170;
  margin-left: 8px;
}
.tip-card a {
  color: #263238;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 500;
}
.tip-card a:hover {
  color: #FFD600;
}
/* ---- CTA & INFO SECTIONS ---- */
.cta-testdrive, .cta-question {
  background: #FFFBEA;
  border-radius: 11px;
  padding: 38px 20px;
  margin-bottom: 40px;
  margin-top: 16px;
  text-align: center;
}
.cta-testdrive h2, .cta-question h2 {
  color: #263238;
}
.cta-testdrive .btn-primary, .cta-question .btn-primary {
  margin-top: 14px;
}
.cta-question .community-note {
  color: #8E9399;
  font-size: 0.98rem;
  margin-top: 12px;
}
/* ---- LEGAL & TEXT SECTIONS ---- */
.legal, .text-section {
  font-family: 'Roboto', serif;
  font-size: 1.13rem;
  color: #263238;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 6px 0 rgba(38,50,56,0.04);
  padding: 36px 20px 28px 20px;
  margin-bottom: 30px;
}
.legal h1, .legal h2, .legal h3, .text-section h1, .text-section h2, .text-section h3 {
  color: #263238;
}
.legal ul, .legal ol, .text-section ul {
  margin-bottom: 1.2em;
}
.legal ul li, .text-section ul li {
  margin-bottom: 0.6em;
}
.legal a {
  color: #FFD600;
  text-decoration: underline;
  transition: color 0.17s;
}
.legal a:hover, .legal a:focus {
  color: #263238;
}
/* ---- FOOTER ---- */
footer {
  background: #263238;
  color: #fff;
  padding: 32px 0 22px 0;
  font-size: 1rem;
  border-top: 3px solid #FFD600;
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
footer nav a {
  color: #FFD600;
  text-decoration: none;
  font-family: 'Mukta', serif;
  font-size: 1.02rem;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #FAFAF9;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: #d3d2ce;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}
footer p {
  color: #BDBDBD;
  font-size: 0.93rem;
  margin-top: 8px;
}
@media (max-width: 700px) {
  footer .container {
    gap: 13px;
    padding: 0 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  footer nav {
    gap: 13px;
  }
}
/* ---- SPACING FOR CARDS/SECTIONS ---- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section {
    padding: 26px 6px;
  }
}
section:last-child {
  margin-bottom: 0;
}
/* ---- MICRO-INTERACTIONS ---- */
.btn-primary, .review-card, .test-drive-summary, .story-card, .tip-card, .testimonial-card {
  transition: box-shadow 0.19s, background 0.18s, color 0.14s;
}
.btn-primary:focus, .review-card:focus, .test-drive-summary:focus, .story-card:focus, .tip-card:focus {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}
/* ---- COLORS & CONTRAST ---- */
.testimonial-card, .testimonial {
  background: #fff;
  color: #263238;
}
.testimonial-card blockquote, .testimonial blockquote {
  color: #37474F;
}
/* ---- MISCELLANEOUS ---- */
small {
  font-size: 0.96em;
  color: #7e7e77;
}
input, button {
  font: inherit;
}
::-webkit-input-placeholder { color: #8E9399; font-size: 1rem; }
::-moz-placeholder { color: #8E9399; font-size: 1rem; }
:-ms-input-placeholder { color: #8E9399; font-size: 1rem; }
::placeholder { color: #8E9399; font-size: 1rem; }
hr {
  border: none;
  height: 1px;
  background: #ececec;
  margin: 24px 0;
}
/* ---- COOKIE CONSENT BANNER ---- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe6;
  box-shadow: 0 -2px 12px 0 rgba(38,50,56,0.12);
  z-index: 20000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 20px 28px;
  gap: 20px;
  font-size: 1.02rem;
  border-top: 2px solid #FFD600;
  transition: transform 0.33s, opacity 0.18s;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner button {
  font-family: 'Mukta', serif;
  border-radius: 24px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.17s, color 0.13s;
}
.cookie-consent-banner .cookie-accept {
  background: #FFD600;
  color: #263238;
}
.cookie-consent-banner .cookie-reject {
  background: #dbdbdb;
  color: #263238;
}
.cookie-consent-banner .cookie-settings {
  background: transparent;
  color: #263238;
  border: 1.5px solid #FFD600;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  box-shadow: 0 2px 8px 0 rgba(38,50,56,0.13);
  outline: 1.5px solid #FFD600;
}
.cookie-consent-banner .cookie-text {
  flex: 2 1 300px;
  color: #44403C;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 8px 18px 8px;
    font-size: 0.98rem;
  }
}
/* ---- COOKIE PREFERENCES MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,50,56,0.40);
  z-index: 21000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 12px 48px 0 rgba(38,50,56,0.27);
  padding: 34px 26px 28px 26px;
  max-width: 400px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modalAppear 0.36s cubic-bezier(.73,.11,.4,.96);
}
@keyframes modalAppear {
  from { transform: scale(0.97) translateY(35px); opacity: 0.6; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Mukta', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #263238;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.06rem;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: #37474F;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #cecece;
  border-radius: 24px;
  transition: background 0.2s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #FFD600;
}
.cookie-modal .toggle-slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px 0 rgba(38,50,56,0.09);
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}
.cookie-modal .desc {
  color: #676869;
  font-size: 0.97rem;
  margin-top: 2px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 11px;
  margin-top: 6px;
}
.cookie-modal .modal-btns button {
  font-family: 'Mukta', serif;
  border-radius: 20px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: #FFD600;
  color: #263238;
  transition: background 0.14s;
}
.cookie-modal .modal-btns button:hover, .cookie-modal .modal-btns button:focus {
  background: #eec200;
  outline: 1.5px solid #FFD600;
}
.cookie-modal .modal-btns .cookie-cancel {
  background: #dbdbdb;
  color: #263238;
}
.cookie-modal .modal-btns .cookie-cancel:hover {
  background: #b6b6b6;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 10px;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #FFD600;
  cursor: pointer;
}
.cookie-modal-close:focus {
  outline: 1.5px solid #FFD600;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 7px 19px 7px;
  }
}
/* ---- RESPONSIVE ADJUSTMENTS ---- */
@media (max-width: 700px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 0.98rem; }
  section, .section {
    padding: 18px 4px;
  }
}
/* ---- END ---- */