/* ----------------------------
 CSS RESET & NORMALIZE
----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #131d22;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #131d22;
  color: #f1f3f4;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
a {
  color: #F4B400;
  text-decoration-skip-ink: auto;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 8px #F4B40080;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
h1, h2, h3, h4, h5 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F4B400;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #F4B400;
  color: #fff;
  background: #232f35;
  padding: 8px 20px;
  margin: 16px 0;
  font-style: italic;
  border-radius: 8px;
}
strong, b {
  color: #F4B400;
}

/* =============================
  LAYOUT CONTAINERS & FLEXBOX
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #161e23;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 #01161A18, 0 1.5px 2.5px 0 #0ff7d440;
  transition: box-shadow 0.3s;
}
@media (max-width: 900px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
}

/* =================================
  HEADER & MAIN NAVIGATION
================================== */
header {
  background: #1A2930;
  width: 100%;
  padding: 0;
  border-bottom: 2px solid #232f35;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
header img {
  height: 50px;
  max-width: 180px;
  margin-right: 30px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #F1F3F4;
  padding: 6px 12px;
  border-radius: 6px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a.active {
  background: #F4B400;
  color: #1A2930;
  box-shadow: 0 0 12px #F4B40060;
}
.cta-btn {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  letter-spacing: .5px;
  background: #F4B400;
  color: #1A2930;
  border: none;
  border-radius: 8px;
  font-size: 1.08rem;
  padding: 10px 32px;
  margin-left: 20px;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 #F4B40050;
  transition: background 0.15s, color 0.15s, transform 0.2s, box-shadow 0.15s;
  text-shadow: 0 1px 1px #fff8;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #0e242a;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 30px #F4B40088, 0 0.5px 1.5px #19FFF9;
}
@media (max-width: 1050px) {
  header .container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  nav {
    gap: 14px;
    flex-wrap: wrap;
  }
  .cta-btn {
    margin: 0 0 0 6px;
  }
}

/* =============================
  HERO SECTION
============================= */
.hero {
  background: linear-gradient(110deg, #1a2930 60%, #232f35 100%);
  padding: 70px 0 40px 0;
  width: 100%;
  border-bottom: 1.5px solid #232f35;
  margin-bottom: 40px;
  box-shadow: 0 4px 40px #F4B40022;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero h1 {
  color: #F4B400;
  font-family: 'Roboto Slab', serif;
  text-shadow: 0 6px 24px #f4b40022, 0 1.5px 1.5px #0ff7d4;
}
.hero p {
  color: #E5E5F1;
  font-size: 1.13rem;
  margin-bottom: 14px;
  text-shadow: 0 1px 4px #1a293090;
}
.hero .cta-btn {
  margin-top: 12px;
}
@media (max-width: 600px) {
  .hero {
    padding: 38px 0 18px 0;
    min-height: 180px;
  }
  .hero h1 { font-size: 2rem; }
}

/* ===============================
  FLEXBOX PATTERNS - CARDS, GRID
=============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px 0 0;
}
.card {
  background: #202E33;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 2px 24px 0 #0ff7d426;
  padding: 24px 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  min-width: 220px;
  color: #F1F3F4;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 30px #19fff966, 0 2px 6px #F4B40044;
  transform: translateY(-4px) 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F1F3F4;
  color: #181C28;
  border-radius: 12px;
  margin-bottom: 16px;
  min-width: 250px;
  box-shadow: 0 2px 16px 0 #0ff7d4aa;
  border-left: 4px solid #F4B400;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 32px #F4B40066, 0 0.5px 2px #19FFF9;
  transform: scale(1.02);
}
.testimonial-card blockquote {
  background: none;
  color: #181C28;
  margin: 0 12px 0 0;
  border-left: none;
  padding: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #46494D;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.feature-grid > div, .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #202E33;
  color: #F4B400;
  border-radius: 14px;
  gap: 15px;
  padding: 20px 18px 20px 18px;
  box-shadow: 0 2px 24px 0 #19fff94d;
  min-width: 210px;
  flex: 1;
  margin-bottom: 16px;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 8px #F4B40077);
}
.profile-card {
  background: #1a242a;
  border-radius: 12px;
  color: #F1F3F4;
  padding: 23px 18px 17px 18px;
  box-shadow: 0 3px 18px #0ff7d460;
  margin-right: 12px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.15s, transform 0.2s;
}
.profile-card:hover, .profile-card:focus {
  box-shadow: 0 7px 30px #F4B40060, 0 1.5px 3px #19FFF9;
  transform: translateY(-5px) scale(1.025);
}

/* =========================
  TABLES (Vergleichstabellen)
========================= */
table {
  width: 100%;
  border-collapse: collapse;
  background: #232f35;
  color: #F1F3F4;
  border-radius: 13px;
  margin: 26px 0 20px 0;
  overflow: hidden;
  font-size: 1rem;
  box-shadow: 0 2px 20px #0ff7d458;
}
thead {
  background: #1A2930;
}
th, td {
  padding: 12px 14px;
  text-align: left;
}
th {
  color: #F4B400;
  border-bottom: 2px solid #F4B40033;
  font-family: 'Roboto Slab', serif;
}
tr {
  border-bottom: 1px solid #35414899;
}
tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: #23343c;
  color: #F4B400;
}

/* =========================
  FOOTER STYLES
========================= */
footer {
  background: #1A2930;
  padding: 40px 0 10px 0;
  width: 100%;
  border-top: 2px solid #232f35;
  margin-top: 40px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.footer-grid > div {
  flex: 1 1 240px;
  margin-bottom: 18px;
}
.footer-grid img {
  height: 44px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 9px;
}
footer nav a {
  color: #F1F3F4;
  font-size: 1rem;
  transition: color 0.18s;
  padding: 0px 4px 3px 0;
}
footer nav a:hover {
  color: #F4B400;
}
footer h4 {
  color: #F4B400;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
footer li {
  font-size: 1rem;
  color: #e5e7f1;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}
footer li img {
  height: 21px;
  width: 21px;
  margin-bottom: 0;
}
footer p {
  color: #F1F3F4;
  font-size: 0.97rem;
  margin-bottom: 8px;
}
@media (max-width: 950px) {
  .footer-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ================================
  RESPONSIVE BREAKPOINTS
================================ */
@media (max-width: 900px) {
  .feature-grid, .profile-card, .card-container, .content-grid, .footer-grid {
    flex-direction: column !important;
  }
  .feature-grid, .content-grid, .card-container {
    gap: 22px !important;
  }
  .profile-card, .card, .feature-item {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98%;
    padding: 0 7px;
  }
  .text-image-section, .content-grid, .card-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 22px !important;
  }
  header img {
    height: 34px;
    margin-bottom: 6px;
  }
  .profile-card, .feature-grid > div, .card {
    width: 99%;
    min-width: 0;
  }
  .hero {
    padding: 24px 0 10px 0;
  }
  .footer-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    width: 100%;
  }
  .section {
    padding: 22px 4px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .hero {
    padding: 14px 0 2px 0;
  }
}

/* ================================
  BUTTONS & MICRO-INTERACTIONS
================================ */
button {
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
  transition: box-shadow 0.2s, background 0.2s, color 0.18s;
  border-radius: 8px;
}
button:focus {
  outline: 2px solid #F4B400;
}
.card button, .feature-grid button {
  background: #232F35;
  color: #F4B400;
  border: 1.5px solid #F4B40088;
  font-weight: 600;
  padding: 9px 20px;
  margin-top: 11px;
  box-shadow: 0 2px 14px 0 #19fff944;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.12s, box-shadow 0.12s, color 0.12s;
  letter-spacing: .03em;
}
.card button:hover,
.feature-grid button:hover {
  background: #F4B400;
  color: #161e23;
  box-shadow: 0 6px 25px #F4B40033, 0 1px 1px #19FFF9;
}

/* ================================
  MOBILE MENU
================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 26px;
  right: 22px;
  z-index: 1101;
  background: #1A2930;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: #F4B400;
  align-items: center;
  justify-content: center;
  transition: background 0.20s, box-shadow 0.17s;
  box-shadow: 0 1px 6px #F4B40020, 0 2px 4px #19fff935;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F4B400;
}
@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, header .cta-btn {
    display: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #18242b;
  z-index: 1200;
  transform: translateX(-105vw);
  transition: transform 0.31s cubic-bezier(.88,0,.42,1.04);
  box-shadow: 0 6px 70px #F4B40040, 0 2px 14px #0ff7d4aa;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 30px;
  top: 24px;
  font-size: 2.3rem;
  background: #1A2930;
  color: #F4B400;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #19fff933;
  z-index: 1220;
  border: none;
  transition: background 0.16s;
}
.mobile-menu-close:focus {
  outline: 2px solid #F4B400;
}
.mobile-nav {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #F1F3F4;
  letter-spacing: 0.025em;
  padding: 7px 18px 8px 0;
  border-radius: 6px;
  font-weight: 700;
  transition: color 0.18s, background 0.16s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #1A2930;
  background: #F4B400;
  box-shadow: 0 0 16px #F4B40044;
}

@media (min-width: 821px) {
  .mobile-menu,.mobile-menu-toggle {display:none;}
}

/* ================================
 COOKIE CONSENT BANNER & MODAL
================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #212E34;
  color: #F1F3F4;
  border-top: 2.5px solid #F4B400;
  box-shadow: 0 -8px 22px #F4B40044, 0 -2px 14px #19fff966;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 20px 22px 20px;
  z-index: 1800;
  font-size: 1.04rem;
  animation: cookieBannerIn 0.47s cubic-bezier(.7,-0.18,0,.97);
}
@keyframes cookieBannerIn {
  from {transform: translateY(50px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  flex: 1;
  color: #F1F3F4;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 17px;
}
.cookie-btn {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 7px;
  padding: 8px 22px;
  background: #F4B400;
  color: #1A2930;
  cursor: pointer;
  box-shadow: 0 2px 10px #F4B40022;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
  border: none;
  margin-left: 7px;
}
.cookie-btn.reject {
  background: #232f35;
  color: #F4B400;
  border: 1.2px solid #F4B400;
}
.cookie-btn.settings {
  background: #232f35;
  color: #F4B400;
  border: 1.2px solid #F4B40088;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #0e242a;
  box-shadow: 0 4px 22px #F4B40040;
}
.cookie-banner .cookie-btn:focus {
  outline: 2px solid #F4B400;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 8px;
  }
  .cookie-banner .cookie-actions { gap: 8px; }
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 2500;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #101417CC;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: fadeInCookieModal 0.33s;
}
@keyframes fadeInCookieModal { from {opacity: 0;} to {opacity: 1;} }
.cookie-modal {
  background: #1A2930;
  color: #F1F3F4;
  border-radius: 15px;
  max-width: 430px;
  width: 93vw;
  padding: 28px 26px 18px 26px;
  box-shadow: 0 8px 32px #F4B40040, 0 3px 8px #19FFF969;
  position: relative;
  z-index: 2550;
  animation: cookieModalIn 0.47s cubic-bezier(.57,-0.1,.49,1.1);
}
@keyframes cookieModalIn {
  from {transform: translateY(60px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal h2 {
  color: #F4B400;
  margin-bottom: 17px;
  font-size: 1.24rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: #F4B400;
  width: 20px;
  height: 20px;
}
.cookie-toggle {
  width: 48px;
  height: 26px;
  background: #101a28;
  border-radius: 16px;
  border: 1.2px solid #F4B400;
  position: relative;
  margin-right: 10px;
}
.cookie-toggle[aria-checked=true] {
  background: #F4B400;
}
.cookie-modal .cookie-btn {
  margin: 0 13px 0 0;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  color: #F4B400;
  font-size: 1.45rem;
  border: none;
  cursor: pointer;
}


/* =============================
  TYPOGRAPHY HIERARCHY & SPACING
============================= */
h1, h2, h3, h4, h5 {
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { margin-bottom: 16px; }
h2 { margin-bottom: 12px; }
section {
  margin-bottom: 60px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 12px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 600px) {
  .section:not(:last-child) {
    margin-bottom: 38px;
  }
}

/* =============================
  VISUAL ACCENTS & DECORATION
============================= */
hr {
  border: none;
  border-top: 1.5px solid #F4B40045;
  margin: 32px 0 22px 0;
}
::-webkit-scrollbar {
  width: 10px;
  background: #202E33;
}
::-webkit-scrollbar-thumb {
  background: #F4B400BB;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F4B400;
}

/*
  List and blockquote tweaks
*/
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 2px;
  color: #f1f3f4;
}
ul li strong, ol li strong {
  color: #F4B400;
}

/*
  Miscellaneous specific tweaks
*/
.chart-placeholder {
  background: #161E23;
  border-radius: 13px;
  box-shadow: 0 1px 12px #0ff7d438;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  margin-bottom: 18px;
}
.expert-commentary {
  background: #F1F3F4;
  color: #232f35;
  padding: 12px 18px;
  border-left: 4px solid #F4B400;
  border-radius: 9px;
  margin-bottom: 10px;
  font-size: 1.04em;
}

/*
  Focus styles
*/
a:focus, button:focus {
  outline: 2.5px solid #F4B400!important;
  outline-offset: 2px;
  background: #F4B40022;
}

/* Hide outline for mouse users */
:focus:not(:focus-visible) { outline: none; }

@media (hover:none) {
  a:hover,nav a:hover, .cta-btn:hover, .card:hover,.profile-card:hover, .feature-grid button:hover { text-shadow:none; box-shadow:none;}
}

/* ==============================
 BRAND FONT FACE (FALLBACK LINKS - only if not loaded)
============================== */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Slab'), url('https://fonts.gstatic.com/s/robotoslab/v33/BngMUXZYTXPIvIBgJJSb6ufN5qU.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), url('https://fonts.gstatic.com/s/opensans/v34/mem8YaGs126MiZpBA-UFUK0Udc1UAw.woff2') format('woff2');
}

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