/* 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #fff;
  color: #162137;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 16px;
}
a {
  color: #245983;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #36AE8E;
}

/* BRAND VARIABLES (fallbacks hard-coded for compatibility) */
:root {
  --color-primary: #245983;
  --color-secondary: #36AE8E;
  --color-accent: #F2F2F2;
  --color-danger: #e03e49;
  --color-warning: #ffb400;
  --color-electric: #1FD6FF;
  --color-vibrant-yellow: #FFE347;
  --color-vibrant-purple: #8E54E9;
  --box-radius: 14px;
  --shadow: 0 4px 16px 0 rgba(36,89,131,0.07), 0 1.5px 6px 0 rgba(54,174,142,0.08);
}

/* TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #245983;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #36AE8E;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #245983;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #202a43;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
p.subheadline {
  font-size: 1.2rem;
  color: #245983;
  font-weight: 500;
  margin-bottom: 24px;
}
strong {
  color: #245983;
  font-weight: 700;
}

/* GENERAL CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  background: var(--color-accent);
  border-radius: var(--box-radius);
  padding: 32px 24px;
  margin-bottom: 28px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature {
  background: var(--color-accent);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 24px 20px;
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .26s, transform .18s;
}
.feature img {
  width: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0 3px 9px #1FD6FF33);
}
.feature:hover {
  box-shadow: 0 10px 32px 0 #36ae8e3b, 0 1px 3px 0 #1fd6ff29;
  transform: translateY(-6px) scale(1.028);
}

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

/* BUTTONS & CTA */
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 15px 38px;
  border-radius: 30px;
  background: linear-gradient(90deg, #1FD6FF 0%, #36AE8E 80%);
  color: #fff;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px 0 #36ae8e3a;
  transition: background .23s, box-shadow .21s, transform .17s;
  display: inline-block;
  margin-top: 16px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #36AE8E 0%, #1FD6FF 80%);
  box-shadow: 0 8px 24px 0 #24598328;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}

button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 22px;
  border: none;
  background: #245983;
  color: #fff;
  cursor: pointer;
  transition: background .20s, transform .13s;
}
button:hover, button:focus {
  background: #36AE8E;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
}

/* HERO SECTION */
.hero {
  width: 100%;
  background: linear-gradient(115deg, #1FD6FF 0 20%, #F2F2F2 100%);
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 56px 0 46px 0;
}
.hero h1 {
  color: #245983;
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero .cta-btn {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .hero {
    padding: 42px 0 38px 0;
    min-height: 220px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 550px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero {
    min-height: 120px;
    padding: 28px 0 12px 0;
  }
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.testimonial-card {
  background: #fff;
  color: #222;
  border-radius: var(--box-radius);
  box-shadow: 0 5px 20px 0 #1FD6FF0E, 0 1.5px 5px 0 #24598319;
  padding: 28px 26px 22px 26px;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .13s;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.5;
  color: #245983;
}
.testimonial-meta {
  font-size: 0.95rem;
  color: #36AE8E;
  font-weight: 500;
  margin-top: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px 0 #36ae8e36, 0 2px 7px 0 #1fd6ff2c;
  transform: translateY(-4px) scale(1.017);
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0 18px 0;
  background: var(--color-accent);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  font-size: 1.06rem;
  padding: 16px 12px;
  text-align: left;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  background: #36AE8E;
}
.pricing-table tr:nth-child(even) td {
  background: #f7fcfb;
}
.pricing-table tr:nth-child(odd) td {
  background: #fff;
}
.pricing-table td {
  color: #245983;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* FAQ */
.accordion-faq, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F2F2F2;
  color: #222;
  border-radius: 10px;
  padding: 20px 18px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  box-shadow: 0 1px 5px 0 #1FD6FF13;
  margin-bottom: 12px;
  transition: box-shadow .21s, background .14s;
}
.faq-item strong {
  color: #36AE8E;
}
.faq-item:hover {
  box-shadow: 0 2px 16px 0 #36AE8E14;
  background: #eafcf7;
}

/* USE CASE ICONS (Fahrzeugauswahl) */
.use-case-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 18px 0;
}
.use-case-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1fd6ff13;
  border-radius: 19px;
  font-size: 1.08rem;
  color: #245983;
  padding: 7px 19px 7px 11px;
  font-weight: 500;
}
.use-case-icons img {
  height: 26px;
}

/* PROCESS DIAGRAM (ablauf) */
.process-diagram {
  margin: 32px 0 0 0;
  display: flex;
}
.process-diagram img {
  max-width: 325px;
  width: 90vw;
  margin: 0 auto;
}

/* MAP EMBED (kontakt) */
.map-embed {
  background: #1fd6ff11;
  border-radius: var(--box-radius);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 18px;
  margin-top: 14px;
}
.map-embed img {
  width: 64px;
}

/* FOOTER */
footer {
  background: #245983;
  color: #fff;
  padding-top: 38px;
  margin-top: 64px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  border-bottom: 1px solid #36AE8E22;
  padding-bottom: 24px;
  margin-bottom: 0;
}
.footer-main a img {
  max-width: 64px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color .19s;
  margin-bottom: 2px;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #1FD6FF;
}
.contact-snippet {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.contact-snippet img {
  height: 17px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 2px;
}
.contact-snippet a {
  color: #1FD6FF;
  word-break: break-word;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 19px;
  align-items: center;
  margin-top: 12px;
}
.social-media a img {
  height: 27px;
  width: 27px;
  filter: drop-shadow(0 4px 8px #1FD6FF33);
  transition: filter .17s, transform .17s;
}
.social-media a:hover img {
  filter: drop-shadow(0 6px 14px #FFE34766) brightness(1.15);
  transform: scale(1.14);
}
.footer-bottom {
  padding: 19px 0 8px 0;
  color: #aadffe;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 950px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .footer-main {
    gap: 11px;
  }
  .footer-main a img {
    max-width: 44px;
  }
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 22px 0 #1fd6ff18;
  position: sticky;
  top: 0;
  z-index: 101;
  width: 100%;
}
header .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  position: relative;
}
header a img {
  height: 42px;
  margin-right: 15px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  color: #245983;
  letter-spacing: 0.01em;
  padding: 8px 8px;
  border-radius: 4px;
  position: relative;
  transition: color .17s, background .13s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #36AE8E;
}
.mobile-menu-toggle {
  background: #245983;
  color: #fff;
  font-size: 2rem;
  border-radius: 9px;
  border: none;
  margin-left: auto;
  padding: 5px 14px 2px 14px;
  display: none;
  z-index: 201;
  box-shadow: 0 2px 8px 0 #1fd6ff44;
  transition: background .17s, color .18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #36AE8E;
  color: #fff;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 13px;
  }
  header .container {
    gap: 12px;
  }
}
@media (max-width: 820px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .cta-btn {
    display: none;
  }
}
@media (min-width: 821px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none!important; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #245983E8;
  z-index: 301;
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(0.7,0,0.25,1);
  display: flex;
  flex-direction: column;
  gap: 34px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 2px 0 24px 0 #36ae8e3a, 0 2px 8px 0 #ffe34730;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 28px;
  margin-right: 24px;
  background: #36AE8E;
  font-size: 2.2rem;
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .17s, color .18s;
  z-index: 312;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e03e49;
  color: #fff;
}
.mobile-nav {
  margin-top: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.30rem;
  color: #fff;
  padding: 10px 0;
  margin-bottom: 5px;
  border-radius: 8px;
  transition: color .16s, background .13s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #36AE8E;
  background: #fff2ab11;
}

/* General lists */
li {
  margin-bottom: 9px;
}
ul li:last-child, ol li:last-child { margin-bottom: 0; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  color: #245983;
  border-top: 3px solid #36AE8E;
  box-shadow: 0 -3px 24px 0 #24598321;
  z-index: 5500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 18px 28px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: transform .33s cubic-bezier(0.7,0,0.23,1);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .banner-message {
  flex: 1 1 340px;
  min-width: 180px;
  margin-right: 16px;
}
.cookie-banner .banner-actions {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  border-radius: 18px;
  padding: 8px 20px;
  border: none;
  background: #245983;
  color: #fff;
  font-weight: 600;
  transition: background .17s, color .12s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #36AE8E;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #1FD6FF;
  color: #245983;
}
.cookie-btn.reject {
  background: #e03e49;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffb400;
  color: #fff;
}
.cookie-btn.settings {
  background: #245983;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #8E54E9;
}

@media (max-width: 690px) {
  .cookie-banner {
    flex-direction: column;
    gap: 19px;
    padding: 14px 10px;
    align-items: flex-start;
  }
  .cookie-banner .banner-message { margin-right: 0; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  z-index: 5600;
  background: rgba(36,89,131,0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s cubic-bezier(0.7,0,0.5,1);
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  padding: 38px 30px 26px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(36,89,131,0.17), 0 2px 10px #1fd6ff24;
  min-width: 290px;
  max-width: 98vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalPopIn .34s cubic-bezier(0.7,0,0.25,1);
}
@keyframes modalPopIn {
  0% {transform: scale(0.8) translateY(50px);opacity: 0;}
  100% {transform:scale(1) translateY(0);opacity:1;}
}
.cookie-modal h2 {
  margin-bottom: 0;
  color:#36AE8E;
  font-size: 1.34rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}
.cookie-category label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #245983;
  font-weight: 500;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  background: #F2F2F2;
  border-radius: 13px;
  position: relative;
  margin-right: 9px;
  outline: none;
  border: 1px solid #1FD6FF44;
  cursor: pointer;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-indicator {
  position: absolute;
  left: 3px;
  top: 2.7px;
  width: 15px;
  height: 15px;
  background: #36AE8E;
  border-radius: 50%;
  transition: left .2s, background .18s;
}
.cookie-switch input:checked + .cookie-switch-indicator {
  left: 19px;
  background: #1FD6FF;
}
.cookie-category .locked {
  font-size: 1.1rem;
  margin-left: 4px;
  color: #b7b7b7;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1rem;
}

/* UTILITIES */
.gap-20 { gap: 20px!important; }
.mt-20 { margin-top: 20px!important; }
.mb-24 { margin-bottom: 24px!important; }

/* Table responsive wrap */
@media (max-width: 600px) {
  .pricing-table, .pricing-table th, .pricing-table td {
    font-size: 0.97rem !important;
    padding: 8px !important;
  }
}

/* Responsive general layout */
@media (max-width: 1000px) {
  .container { max-width: 98vw; }
}
@media (max-width: 800px) {
  .feature-grid, .testimonial-slider, .use-case-icons {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 550px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .section, .text-section, .card, .feature {
    padding: 16px 9px !important;
  }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
}

/* Vibrant energetic accent elements and transitions */
.feature, .testimonial-card, .faq-item, .card {
  border-left: 8px solid #1FD6FF;
  border-radius: var(--box-radius);
}
.feature-item::before, .faq-item::before {
  display: none !important;
}

.cta-btn, .feature, .testimonial-card, .card, .faq-item {
  transition: box-shadow .21s, background .18s, transform .17s !important;
}

/* Selection & focus states */
::selection {
  background: #1FD6FF;
  color: #fff;
}
a:focus, button:focus {
  outline: 2px solid #1FD6FF;
  outline-offset: 2px;
}

/* SCROLLBAR */
body::-webkit-scrollbar {
  width: 12px;
  background: #F2F2F2;
}
body::-webkit-scrollbar-thumb {
  background: #36AE8E;
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #1FD6FF;
}

/* Animations for micro-interactions */
@media (prefers-reduced-motion: no-preference) {
  .cta-btn,
  .feature,
  .testimonial-card,
  .faq-item,
  .card,
  .cookie-btn,
  .mobile-menu-close {
    transition: 
      box-shadow .21s cubic-bezier(.4,0,.2,1), 
      background .17s cubic-bezier(.4,0,.2,1), 
      color .15s cubic-bezier(.4,0,.2,1),
      transform .19s cubic-bezier(.4,0,.2,1);
  }
}

/* END Vibrant Energetic CSS for Nominsues MobilitätsFinder */