/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #161E28;
}
body {
  min-height: 100vh;
  background: #161E28;
  color: #E3E6EA;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.01em;
  /* Futuristic touch */
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #BC860F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E3E6EA;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #F2F6FB;
  text-shadow: 0 0 8px #20334B44, 0 2px 12px #274d7640;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 6px; }
.subtitle {
  font-size: 1.25rem;
  color: #D0E1FF;
  margin-bottom: 28px;
  font-weight: 400;
}
p {
  margin-bottom: 18px;
  color: #E3E6EA;
  font-size: 1rem;
}
strong { color: #BC860F; }

/* Header & Navbar */
header {
  width: 100%;
  background: #1B2633;
  border-bottom: 1px solid #2E4054;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  gap: 32px;
}
header nav a {
  color: #E3E6EA;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 8px 2px;
  transition: color 0.18s;
}
header nav a:after {
  content: '';
  display: block;
  width: 0;
  border-bottom: 2px solid #BC860F;
  transition: width 0.3s;
  margin-top: 2px;
}
header nav a:hover:after, header nav a.active:after {
  width: 100%;
}
header nav a:hover, header nav a.active {
  color: #BC860F;
}
header img {
  height: 38px;
  width: auto;
}
/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  background: #25425A;
  color: #E3E6EA;
  border: 2px solid #BC860F;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 #BC860F10, 0 1.5px 5px #25425A33;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  margin-left: 28px;
  position: relative;
  overflow: hidden;
}
.cta-btn.primary {
  background: #BC860F;
  color: #25425A;
  border-color: #BC860F;
  text-shadow: 0 0 12px #fff3;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #FFD76A;
  color: #25425A;
  border-color: #FFD76A;
  box-shadow: 0 2px 14px #FFD76A60;
}
.cta-btn:hover, .cta-btn:focus {
  background: #20334b;
  color: #BC860F;
  border-color: #6CE8F1;
  box-shadow: 0 0 24px #6CE8F140, 0 0 8px #BC860F30;
}

/* Burger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #25425A;
  color: #BC860F;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 100;
  box-shadow: 0 0 9px #BC860F35;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #BC860F;
  color: #25425A;
}
/* Mobile Nav Overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #172533ee;
  z-index: 900;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.67,0,.33,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 44px 0 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 28px;
  margin-bottom: 16px;
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #FFD76A;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #E3E6EA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 2px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #25425A77;
  color: #FFD76A;
}

/* HERO Section */
.hero-section {
  background: linear-gradient(120deg, #20334B 70%, #25425A 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 2px solid #20334B55;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  text-shadow: 0px 0px 16px #25425A33;
}
.hero-section .subtitle {
  color: #E8F1FF;
}

/* Content spacing */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Flex containers - Features, Cards, Testimonials */
.feature-grid,
.services-list,
.testimonial-list,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.feature-grid > div, .feature-grid > li,
.services-list > div,
.testimonial-list > .testimonial-card {
  background: #223447;
  border: 2px solid #25425A;
  border-radius: 22px;
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 270px;
  box-shadow: 0 2px 26px #25425A0C, 0 0.5px 7px #BC860F20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover, .feature-grid > li:hover,
.services-list > div:hover,
.testimonial-card:hover {
  box-shadow: 0 2px 40px 0 #BC860F38, 0 0.5px 12px #25425A29;
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img, .services-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 6px #BC860F20);
}
.feature-grid h3, .services-list h3 { color: #FFD76A; font-size: 1.2rem; margin-bottom: 6px; }
.feature-grid p, .services-list p {
  font-size: 1rem;
  color: #E3E6EA;
}
.feature-grid strong, .services-list strong { color: #FFD76A; }

/services-list > div {
  background: #223447;
  border: 2px solid #25425A;
  border-radius: 22px;
  min-width: 220px;
  padding: 26px 19px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.services-list h3 a {
  color: #FFD76A;
}
.services-list h3 a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Cards, Testimonials */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #223447;
  border: 1.5px solid #25425A;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 24px #22344714, 0 0.5px 5px #BC860F22;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 #BC860F30, 0 0.5px 12px #20334B21;
  transform: translateY(-3px) scale(1.015);
}
.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #1B2633;
  border: 2px solid #BC860F;
  border-radius: 22px;
  padding: 20px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 6px #FFD76A18, 0 0.5px 7px #25425A18,0 0 0 2px #fff0;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 3px 20px #FFD76A60, 0 0.5px 11px #25425A14;
  transform: scale(1.020);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #2C3347;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #BC860F;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}
.stars {
  color: #F2B701;
  font-size: 1.32rem;
  letter-spacing: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list details {
  background: #223447;
  color: #E3E6EA;
  border: 1.5px solid #25425A;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px #25425A0a;
  padding: 18px 26px 14px 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-list details[open] {
  border-color: #BC860F;
  box-shadow: 0 3px 18px #BC860F33, 0 0.5px 8px #25425A12;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #FFD76A;
  outline: none;
  margin-bottom: 10px;
}
.faq-list details p {
  margin-top: 7px;
  font-size: 0.98rem;
}

/* Contact Details Section */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #E3E6EA;
  font-size: 1.1rem;
}
.contact-details img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 7px #BC860F22);
}
.contact-details a {
  color: #FFD76A;
}
.contact-details a:hover {
  color: #BC860F;
  text-decoration: underline;
}

/* Footer */
footer {
  background: #1B2633;
  border-top: 2px solid #223447;
  padding: 38px 0 15px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #E3E6EA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
footer nav a:hover {
  color: #FFD76A;
}
.footer-contact {
  color: #D0E1FF;
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 350px;
  margin-top: 7px;
}
.footer-contact a {
  color: #FFD76A;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #23394B;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  box-shadow: 0 -8px 32px #20334B44, 0 -2px 8px #BC860F15;
  border-radius: 18px 18px 0 0;
  font-size: 1rem;
  gap: 18px;
  animation: cookieAppear 0.6s cubic-bezier(.65,0,.43,1);
}
@keyframes cookieAppear {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 9px 18px;
  border-radius: 22px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  margin: 0 2px;
}
.cookie-banner .accept {
  background: #BC860F;
  color: #25425A;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFD76A;
}
.cookie-banner .reject {
  background: #223447;
  color: #FFD76A;
  border: 1.5px solid #FFD76A;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFD76A;
  color: #223447;
  border-color: #25425A;
}
.cookie-banner .settings {
  background: #23394B;
  color: #BC860F;
  border: 1.5px solid #BC860F;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #BC860F;
  color: #23394B;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #182333bb;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalAppear 0.38s cubic-bezier(.73,0,.29,1);
}
@keyframes modalAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-inner {
  background: #fff;
  color: #1B2633;
  border-radius: 24px;
  box-shadow: 0 0 36px #25425A45;
  padding: 34px 32px 22px 32px;
  min-width: 300px;
  max-width: 98vw;
  max-height: 98vh;
  overflow: auto;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cookie-modal-inner h2 {
  color: #BC860F;
  margin-bottom: 12px;
  font-size: 1.5rem;
}
.cookie-prefs-cat {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-top: 12px;
}
.cookie-prefs-cat label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 9px;
  background: #E3E6EA;
  color: #223447;
  padding: 8px 14px;
  border-radius: 18px;
}
.cookie-prefs-cat input[type=checkbox]:disabled + span {
  color: #BC860F;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 9px 18px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-actions .save {
  background: #BC860F;
  color: #25425A;
}
.cookie-modal-actions .save:focus, .cookie-modal-actions .save:hover {
  background: #FFD76A;
}
.cookie-modal-actions .cancel {
  background: #223447;
  color: #FFD76A;
  border: 1.5px solid #FFD76A;
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus {
  background: #FFD76A;
  color: #223447;
  border-color: #25425A;
}

/* Text sections, About, Datenschutz etc. */
.text-section {
  background: #20334b;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 2px 24px #25425A10;
  margin-bottom: 20px;
}
.text-section ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 25px;
}
.text-section li {
  margin-bottom: 12px;
  color: #FFD76A;
  font-size: 1rem;
  list-style: disc;
}
.text-section h3 {
  color: #FFD76A;
}

/* KEY UTILITY CLASSES FOR SPACING & LAYOUTS */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Responsive Design (Mobile First) */
@media (max-width: 1210px) {
  .container { max-width: 98vw; }
}
@media (max-width: 950px) {
  .feature-grid > div, .services-list > div, .testimonial-card {
    min-width: 100%;
    flex: 1 1 99%;
  }
  .footer-contact { max-width: 100%; }
  footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .container { padding-left: 11px; padding-right: 11px; }
  .section { padding: 24px 6px; margin-bottom: 32px; }
  .hero-section { padding-top: 36px; padding-bottom: 36px; }
  header .container {
    flex-direction: row;
    gap: 14px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  header nav {
    display: none;
  }
  .cta-btn { margin-left: 0; padding: 11px 21px; font-size: 1rem; }
  .mobile-menu-toggle { display: flex; }
  .feature-grid, .services-list, .testimonial-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .services-list > div, .testimonial-card {
    min-width: 92vw;
    flex: 1 1 100%;
  }
  .text-image-section { flex-direction: column; align-items: stretch; gap: 18px; }
  .contact-details { gap: 9px; }
  .text-section {
    padding: 18px 9px;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.97rem;
    padding: 14px 9px;
    gap: 8px;
  }
  .cookie-modal-inner {
    padding: 18px 7px 12px 7px;
    border-radius: 12px;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* Scrollbar styling (modern) */
::-webkit-scrollbar {
  width: 10px;
  background: #223447;
}
::-webkit-scrollbar-thumb {
  background: #25425A;
  border-radius: 8px;
}

/* Micro-interactions */
a, button, .cta-btn, summary {
  outline: none;
}
a:focus-visible, button:focus-visible, summary:focus-visible, .cta-btn:focus-visible {
  box-shadow: 0 0 0 3px #FFD76A55;
  border-radius: 5px;
  z-index: 2;
}

/* Decorative Neon Effect (subtle) */
.hero-section, .cta-btn.primary, .feature-grid > div:hover, .services-list > div:hover {
  box-shadow: 0 0 0.7em #FFD76A33, 0 2px 22px #25425A33;
}

/* Utility classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.center { text-align: center; }

/* Accessibility: high contrast on testimonials */
.testimonial-card {
  background: #fff;
  color: #1B2633;
}
.testimonial-card p {
  color: #2C3347;
}
.testimonial-card span {
  color: #BC860F;
}

/* End */
