/* === CSS RESET AND 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 {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #16385B;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.36, .66, .04, 1);
}
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16385B;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p, ul, ol, li { font-size: 1rem; color: #23384f; }
strong { font-weight: 600; }

/* RESPONSIVE TYPOGRAPHY */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.6rem; }
  p, ul, ol, li { font-size: 1.06rem }
}

/* === CONTAINER == */
.container {
  width: 100%;
  margin: 0 auto;
  gap: 0;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1200px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === GLOBAL SPACING PATTERNS (MANDATORY) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(22,56,91,0.06);
  padding: 28px 22px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s cubic-bezier(.36,.66,.04,1), transform 0.16s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(22,56,91,0.13);
  transform: translateY(-4px) 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-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F8FBFD;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(22,56,91,0.07);
  transition: box-shadow 0.18s cubic-bezier(.36,.66,.04,1), transform 0.13s;
  border-left: 4px solid #FFD700;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(22,56,91,0.12);
  transform: scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E6EEF5;
  box-shadow: 0 1px 8px rgba(22,56,91, 0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.logo img {
  display: block;
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #16385B;
  opacity: 0.92;
  padding: 2px 3px;
  border-radius: 3px;
  transition: background .15s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #FFD700;
  background: rgba(22,56,91,0.09);
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 28px;
  background: #16385B;
  color: #fff;
  border-radius: 22px;
  font-size: 1.09rem;
  font-weight: 700;
  transition: background 0.15s, box-shadow 0.16s, color 0.13s;
  border: none;
  box-shadow: 0 2px 8px rgba(22,56,91,0.08);
  outline: none;
  cursor: pointer;
  display: inline-block;
  margin-left: 32px;
  letter-spacing: 0.01em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD700;
  color: #16385B;
  box-shadow: 0 4px 14px rgba(22,56,91,0.15);
}
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 28px;
  background: #E6EEF5;
  color: #16385B;
  border-radius: 22px;
  font-size: 1.07rem;
  font-weight: 600;
  border: none;
  transition: background .13s, color .13s, box-shadow 0.11s;
  margin-top: 10px;
  outline: none;
  box-shadow: 0 2px 8px rgba(22,56,91,0.04);
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFD700;
  color: #16385B;
}

/* MOBILE NAVIGATION MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 7px 13px;
  color: #16385B;
  border-radius: 7px;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 121;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E6EEF5;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.36,.66,.04,1);
  box-shadow: -6px 0 24px rgba(22,56,91,0.07);
  display: flex;
  flex-direction: column;
  padding: 32px 26px 24px 26px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #16385B;
  font-size: 2rem;
  line-height: 1;
  padding: 9px 0 14px 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 130;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFD700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16385B;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 2px;
  transition: color 0.16s, background 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFD700;
  background: #E6EEF5;
}

@media (min-width: 1000px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==== HERO SECTION === */
.hero {
  background: linear-gradient(120deg, #E6EEF5 75%, #fff 100%);
  padding: 68px 0 56px 0;
  margin-bottom: 60px;
  min-height: 330px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  padding-top: 0;
  gap: 20px;
  text-align: center;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
.hero p {
  color: #23384f;
  margin-bottom: 18px;
}
.hero .btn-primary {
  margin-left: 0;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}

/* ==== FEATURES / SERVICES GRID === */
.features {
  padding: 0;
  margin-bottom: 60px;
  background: #fff;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: flex-start;
}
.feature {
  background: #F8FBFD;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(22,56,91,0.043);
  border: 1px solid #E6EEF5;
  padding: 30px 26px 26px 26px;
  min-width: 255px;
  max-width: 318px;
  flex: 1 1 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.feature img {
  width: 48px;
  height: 48px;
}
.feature h3 {
  margin-top: 6px;
  margin-bottom: 7px;
  font-size: 1.22rem;
  color: #16385B;
  font-weight: 600;
}
.feature p {
  color: #314360;
  font-size: 1rem;
  margin-bottom: 0;
}
.price {
  margin-top: 13px;
  font-weight: 700;
  color: #16385B;
  background: #FFD70013;
  padding: 2px 13px;
  border-radius: 8px;
  font-size: 1rem;
}
.feature:hover {
  box-shadow: 0 5px 20px rgba(22,56,91,0.13);
  transform: translateY(-4px) scale(1.019);
}

/* ==== TESTIMONIALS / BEWERTUNGEN === */
.testimonials, .kundenstimmen {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
}
.testimonials h2, .kundenstimmen h1 {
  text-align: center;
  margin-bottom: 36px;
  color: #16385B;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 26px;
}
.testimonial-card p, .testimonial-card .name {
  color: #1b2a42;
  font-size: 1.08rem;
}
.testimonial-card .name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2px;
  opacity: 0.90;
}
.testimonial-card .stars {
  font-size: 1.22rem;
  color: #FFD700;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  margin-top: 4px;
}
.star-rating-summary {
  text-align: center;
  font-size: 1.08rem;
  color: #16385B;
  margin-top: 0px;
  opacity: 0.81;
  font-weight: 600;
}
.testimonial-quotes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 10px 0;
}
.testimonial-quotes blockquote {
  color: #23384f;
  font-style: italic;
  background: #F8FBFD;
  border-left: 3px solid #FFD700;
  padding: 12px 22px;
  border-radius: 9px;
}

/* ==== CTA === */
.cta {
  background: #F8FBFD;
  border-radius: 18px;
  padding: 36px 0 58px 0;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* ==== TEAM / ABOUT ==== */
.about, .team-preview, .team {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
}
.team .coach-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 16px 0;
}
.coach {
  background: #F8FBFD;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(22,56,91,.048);
  border: 1px solid #E6EEF5;
  padding: 20px 18px 16px 18px;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.coach:hover {
  box-shadow: 0 4px 14px rgba(22,56,91,0.13);
  transform: scale(1.016);
}
.team-philosophy {
  margin-top: 24px;
  padding: 20px 18px;
  background: #E6EEF5;
  border-radius: 12px;
}
.team-philosophy h3 { margin-bottom: 8px; }

/* ==== LEISTUNGEN - SERVICE LIST === */
.services .service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.services .service-list li {
  background: #F8FBFD;
  border-radius: 15px;
  box-shadow: 0 1px 12px rgba(22,56,91,0.054);
  border: 1px solid #E6EEF5;
  padding: 20px 22px 19px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.14s;
  position: relative;
}
.services .service-list li:hover {
  box-shadow: 0 4px 15px rgba(22,56,91,0.11);
  transform: scale(1.013);
}

/* ==== FAQ === */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}
.faq-item {
  background: #F8FBFD;
  border-radius: 12px;
  padding: 20px 20px 13px 20px;
  flex: 1 1 320px;
  box-shadow: 0 1px 10px rgba(22,56,91,0.04);
  margin-bottom: 0;
  transition: box-shadow 0.17s, transform 0.12s;
}
.faq-item h3 {
  margin-bottom: 7px;
}
.faq-item:hover {
  box-shadow: 0 2px 16px rgba(22,56,91,0.12);
  transform: scale(1.012);
}

/* === KUNDENSTIMMEN / RATGEBER etc. === */
.article-overview {
  margin: 28px 0 8px 0;
}
.article-overview ul {
  list-style-type: disc;
}
.topics {
  margin-bottom: 16px;
}

.kontakt .contact-details,
.kontakt .map-placeholder {
  background: #F8FBFD;
  border-radius: 13px;
  padding: 18px 22px;
  box-shadow: 0 1px 9px rgba(22,56,91,.042);
  margin-bottom: 16px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
}
.map-placeholder img {
  width: 42px;
  height: 42px;
}

/* === LEGAL/INFO SECTIONS === */
.legal {
  background: #fff;
  padding: 60px 0;
  margin-bottom: 60px;
}
.legal h1 {
  margin-bottom: 25px;
}
.legal ul {
  margin-top: 11px;
}
.legal li {
  margin-bottom: 7px;
}

/* === THANK YOU PAGE === */
.thank-you {
  background: #F8FBFD;
  border-radius: 19px;
  padding: 58px 0 66px 0;
  margin-bottom: 80px;
  text-align: center;
}
.thank-you .content-wrapper {
  align-items: center;
}
.thank-you h1 {
  margin-bottom: 20px;
}

/* === FOOTER === */
footer {
  background: #16385B;
  color: #fff;
  font-size: 0.98rem;
  padding: 46px 0 32px 0;
  letter-spacing: 0.01em;
  border-top: 1px solid #E6EEF5;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-brand img {
  width: 42px;
  height: 42px;
}
.footer-brand span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}
.footer-links {
  display: flex;
  gap: 46px;
  flex-wrap: wrap;
}
.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a,
.footer-legal a {
  color: #E6EEF5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 2px;
  transition: color .13s, background .12s;
  opacity: 0.85;
}
.footer-nav a:hover,
.footer-legal a:hover,
.footer-nav a:focus,
.footer-legal a:focus {
  color: #FFD700;
  background: rgba(230,238,245, 0.06);
}
.footer-contact {
  max-width: 264px;
  margin-bottom: 14px;
}
#contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: 1rem;
}
#contact-snippet img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
#contact-snippet a {
  color: #FFD700;
  text-decoration: underline;
  transition: color .14s;
}
#contact-snippet a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a {
  opacity: 0.83;
  transition: opacity 0.15s;
}
.footer-social a:hover {
  opacity: 1;
}
.footer-social img {
  width: 28px;
  height: 28px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 999px) {
  .container { max-width: 800px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container { padding-left: 11px; padding-right: 11px; }
  .section { margin-bottom: 38px; padding: 30px 7px; }
  .features .feature-grid,
  .team .coach-profiles,
  .testimonial-slider, .testimonial-list {
    gap: 20px;
    flex-direction: column;
  }
  .feature, .coach {
    max-width: 100%;
    min-width: unset;
  }
  .faq-list {
    flex-direction: column;
    gap: 13px;
  }
  .footer-links { gap: 17px; }
  footer .container { gap: 15px; }
}
@media (max-width: 600px) {
  .hero {
    min-height: 215px;
    padding: 34px 0 22px 0;
  }
  .content-wrapper {
    padding-left: 2px;
    padding-right: 2px;
  }
  .testimonials, .kundenstimmen, .about, .team-preview, .team, .legal {
    padding-left: 0; padding-right: 0;
  }
  .cta { padding: 28px 0 38px 0; }
  .thank-you { padding: 32px 0 38px 0; }
  .map-placeholder { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-brand span { font-size: .96rem; }
}
@media (max-width: 500px) {
  .footer-brand img, .footer-social img { width: 28px; height: 28px; }
}

/* Text-image section responsive flex */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column !important; align-items: flex-start; gap: 18px; }
}

/* ==== INTERACTIVE: TRANSITIONS & MICRO-INTERACTIONS ===  */
.card, .feature, .coach, .faq-item, .testimonial-card, .services .service-list li {
  transition: box-shadow .17s cubic-bezier(.36,.66,.04,1), transform .13s cubic-bezier(.36,.66,.04,1);
}

/* === SELECTION COLOR === */
::selection {
  background: #FFD700;
  color: #16385B;
}

/* === FOCUS STATES === */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #FFD700;
  outline-offset: 1px;
  z-index: 2;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #16385B;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -2px 16px rgba(22,56,91,0.23);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  animation: cookieSlideIn 0.36s ease;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0%); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 21px;
  padding: 9px 21px;
  cursor: pointer;
  transition: background .14s, color .16s, box-shadow 0.13s;
}
.cookie-banner .accept {
  background: #FFD700;
  color: #16385B;
}
.cookie-banner .reject {
  background: #E6EEF5;
  color: #16385B;
}
.cookie-banner .settings {
  background: transparent;
  color: #FFD700;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  box-shadow: 0 2px 8px rgba(22,56,91,0.13);
}

/* ==== COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 70%) scale(1);
  background: #fff;
  color: #16385B;
  z-index: 10000;
  min-width: 340px;
  max-width: 95vw;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(22,56,91,0.18);
  padding: 38px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.26s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.06rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #FFD700;
  width: 18px; height: 18px;
  margin-right: 3px;
}
.cookie-category .essential {
  color: #16385B;
  background: #F8FBFD;
  border-radius: 7px;
  padding: 4px 9px;
  font-weight: 600;
  margin-left: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 24px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #16385B;
  font-size: 1.6rem;
  position: absolute;
  top: 13px;
  right: 16px;
  cursor: pointer;
  padding: 5px 9px;
  border-radius: 6px;
  transition: color 0.14s, background 0.12s;
  z-index: 10;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #FFD700;
  background: #E6EEF5;
}
@media (max-width: 430px) {
  .cookie-modal { min-width: 0; padding: 23px 7px 19px 7px; }
}

/* === OVERLAYS === */
.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,56,91,0.19);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* === SCROLL BAR === */
::-webkit-scrollbar {
  width: 11px;
  background: #F8FBFD;
}
::-webkit-scrollbar-thumb {
  background: #E6EEF5;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c3d9ec;
}

/* === PRINT ADJUST === */
@media print {
  *, *:before, *:after { box-shadow: none !important; background: #fff !important; color: #000 !important; }
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
