/* --- CSS RESET & BASE TYPOGRAPHY --- */
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;
  box-sizing: border-box;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F7F5F3;
  color: #23404B;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #23404B;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus { outline: 2px solid #CFB995; outline-offset: 2px; }
ul, ol { padding-left: 1.3em; margin-bottom: 1em; }
strong { font-weight: bold; }

/* --- BRAND FONTS (if not loaded via HTML, suggest loading via Google Fonts) --- */
h1, h2, h3, h4, h5, h6, .logo span, .footer-branding span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #23404B;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; margin-bottom: 6px; }
p, li, label, input, textarea { font-size: 1rem; }

/* Typography responsiveness */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #E4E8EB;
  position: sticky;
  top: 0;
  z-index: 1010;
}
.header-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 16px 14px;
  gap: 20px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #23404B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #CFB995;
  border-bottom: 2px solid #CFB995;
}
.cta-primary {
  background: #23404B;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 26px;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(35,64,75,0.07);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  margin-left: 8px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #CFB995;
  color: #23404B !important;
  transform: translateY(-1.5px) scale(1.03);
}
.cta-secondary {
  background: #CFB995;
  color: #23404B !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 22px;
  border: 2px solid #23404B;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.13s;
  margin-top: 10px;
  text-align: center;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #23404B;
  color: #fff !important;
  border-color: #CFB995;
  transform: translateY(-1.5px) scale(1.03);
}

/* Mobile hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #23404B;
  cursor: pointer;
  margin-left: 12px;
  padding: 6px 12px;
  transition: color 0.18s, background 0.2s;
  border-radius: 8px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f7f5f3;
  color: #CFB995;
}

/* --- MOBILE MENU PANEL --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(35,64,75,0.95);
  z-index: 1400;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.28s cubic-bezier(.65,.05,.35,1), opacity 0.18s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu:not(.open) {
  transform: translateX(-100%);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  color: #CFB995;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 1600;
  transition: color 0.2s;
  padding: 4px 8px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 70px;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  padding: 8px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #CFB995;
}

/* --- HERO SECTIONS --- */
.hero, .hero-leistungen, .hero-referenzen, .kontakt-hero, .thank-you-section, .blog-hero {
  background: linear-gradient(120deg,#23404B 75%, #CFB995 115%);
  color: #fff;
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container, .hero-leistungen .container, .hero-referenzen .container, .kontakt-hero .container, .thank-you-section .container, .blog-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1,
.hero-leistungen h1,
.hero-referenzen h1,
.kontakt-hero h1,
.thank-you-section h1,
.blog-hero h1 {
  color: #fff;
}
.hero .cta-primary, .hero-leistungen .cta-primary, .kontakt-hero .cta-primary, .thank-you-section .cta-primary, .blog-hero .cta-secondary {
  margin-top: 28px;
}
.hero p, .hero-leistungen p, .hero-referenzen p, .kontakt-hero p, .thank-you-section p, .blog-hero p {
  font-size: 1.25rem;
  color: #F7F5F3;
  margin-bottom: 8px;
}

/* --- SECTION GENERAL --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 40px 0 rgba(35,64,75,0.05);
}

@media (max-width: 768px) {
  .section, section {
    margin-bottom: 44px;
    padding: 24px 6px;
    border-radius: 10px;
  }
}

/* --- FLEX LAYOUTS --- */
.card-container,
.feature-grid,
.service-list,
.service-detail-list,
.testimonial-list,
.post-preview-grid,
.unique-points-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.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;
  padding: 20px;
  background: #f7f8fa;
  border: 1.5px solid #E4E8EB;
  border-radius: 16px;
  box-shadow: 0 3px 24px 0 rgba(35,64,75,0.07);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 320px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.testimonial-card:hover {
  border-color: #CFB995;
  box-shadow: 0 6px 36px 0 rgba(35,64,75,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 2px 10px 0 rgba(35,64,75,0.045);
  border: 1px solid #EEF0F2;
  min-width: 220px;
  flex: 1 1 250px;
  transition: box-shadow 0.18s, border 0.16s;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item:hover {
  box-shadow: 0 6px 26px 0 rgba(35,64,75,0.13);
  border: 1.5px solid #CFB995;
}

/* Service Cards – Leistungen */
.service-list {
  gap: 24px;
}
.service-item {
  background: #f7f8fa;
  border-radius: 14px;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 2px 10px 0 rgba(35,64,75,0.045);
  border: 1px solid #EAEAEA;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, border 0.16s;
}
.service-item:hover {
  box-shadow: 0 6px 24px 0 rgba(35,64,75,0.13);
  border: 1.5px solid #CFB995;
}
.service-item .price {
  margin-top: 12px;
  color: #23404B;
  background: #CFB99511;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

/* Service Details für Leistungen.html */
.service-detail-list {
  gap: 28px;
  margin-bottom: 20px;
}
.service-detail {
  background: #f7f8fa;
  border-radius: 14px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 10px 0 rgba(35,64,75,0.035);
  border: 1px solid #EAEAEA;
  min-width: 240px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, border 0.16s;
}
.service-detail:hover {
  border: 1.5px solid #CFB995;
  box-shadow: 0 6px 24px 0 rgba(35,64,75,0.11);
}
.service-detail .service-price {
  margin-top: 14px;
  color: #23404B;
  background: #CFB99511;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 8px;
}

/* --- BLOG POST PREVIEW CARDS --- */
.post-preview-grid {
  gap: 24px;
  margin-bottom: 16px;
}
.blog-post-preview {
  background: #fff;
  border-radius: 15px;
  border: 1.2px solid #E3E7EA;
  box-shadow: 0 1.5px 16px 0 rgba(35,64,75,0.04);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.13s, border 0.13s, background 0.11s;
}
.blog-post-preview.featured {
  border: 1.9px solid #CFB995;
  background: #F7F5F3;
}
.blog-post-preview:hover {
  border: 1.5px solid #CFB995;
  box-shadow: 0 6px 28px 0 rgba(35,64,75,0.13);
  background: #FCFCFB;
}
.read-more {
  color: #23404B;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 12px;
  transition: color 0.18s;
}
.read-more:hover, .read-more:focus {
  color: #CFB995;
  text-decoration: underline;
}

.categories-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.categories-filter a {
  color: #CFB995;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  padding: 2px 9px;
  border-radius: 7px;
  background: transparent;
  transition: background 0.12s, color 0.11s;
  border: 1px solid transparent;
}
.categories-filter a:hover, .categories-filter a:focus {
  color: #fff;
  background: #CFB995;
  border: 1px solid #CFB995;
}

/* --- NEWSLETTER CTA --- */
.newsletter-cta {
  background: #23404B;
  color: #fff;
  border-radius: 15px;
  padding: 36px 12px;
  margin-bottom: 60px;
  text-align: center;
}
.newsletter-cta h2,
.newsletter-cta p {
  color: #fff;
}

/* --- TESTIMONIAL SLIDER (Flex-wrap) --- */
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stars {
  color: #CFB995;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card p {
  color: #23404B;
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial-card strong {
  color: #23404B;
  font-size: 1rem;
}

/* --- CONTACT BLOCKS --- */
.contact-block {
  background: #F7F5F3;
  border-radius: 12px;
  padding: 22px 16px;
  border: 1px solid #E4E8EB;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #23404B;
}
.contact-block a {
  color: #23404B;
  font-weight: 700;
  text-decoration: underline;
}
.contact-block a:hover, .contact-block a:focus {
  color: #CFB995;
}

/* --- LISTS & ULs (USP, Benefits etc.) --- */
.philosophy-list, .usp-list, .unique-points-grid, .benefits-explained ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.philosophy-list li, .usp-list li, .unique-points-grid li, .benefits-explained li {
  background: #F7F5F3;
  color: #23404B;
  padding: 13px 17px;
  border-radius: 9px;
  font-size: 1rem;
  min-width: 180px;
  flex: 1 1 240px;
  margin-bottom: 8px;
  box-shadow: 0 1.5px 10px 0 rgba(35,64,75,0.025);
}

/* --- TEXT SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.text-section p, .text-section ul, .text-section ol {
  margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
  background: #23404B;
  color: #fff;
  padding: 32px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.footer-branding img {
  width: 38px;
  height: 38px;
}
.footer-branding span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: #fff;
}
.footer-nav, .legal-links, .social-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.footer-nav a, .legal-links a {
  color: #fff;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.88;
  transition: color 0.17s, opacity 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus,
.legal-links a:hover, .legal-links a:focus {
  color: #CFB995;
  opacity: 1;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-links img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(2);
  opacity: 0.78;
  transition: filter 0.17s, opacity 0.17s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: grayscale(0%) brightness(1.05);
  opacity: 1;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #23404B;
  color: #fff;
  padding: 20px 16px 20px 16px;
  box-shadow: 0 -4px 28px 0 rgba(35,64,75,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  transition: transform 0.35s cubic-bezier(.65,.05,.35,1), opacity 0.25s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .cookie-settings {
  border: none;
  background: #CFB995;
  color: #23404B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  margin-top: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.cookie-banner button.reject-all {
  background: #fff;
  color: #23404B;
  border: 1.2px solid #CFB995;
}
.cookie-banner button:hover, .cookie-banner button:focus,
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #23404B;
  color: #fff;
}
.cookie-banner button.reject-all:hover,
.cookie-banner button.reject-all:focus {
  background: #CFB995;
  color: #23404B;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 3000;
  background: rgba(35,64,75, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #23404B;
  border-radius: 15px;
  box-shadow: 0 8px 50px rgba(35,64,75,0.20);
  padding: 34px 30px 24px 30px;
  max-width: 420px;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-fadein 0.44s;
}
@keyframes cookie-fadein {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-content h3 {
  color: #23404B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-modal-content .cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.cookie-switch {
  width: 44px;
  height: 22px;
  border-radius: 11px;
  background: #CFB995;
  position: relative;
  transition: background 0.14s;
  margin-right: 6px;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s, background 0.15s;
  box-shadow: 0 0.5px 4px 0 rgba(35,64,75,0.09);
}
input[type='checkbox'].cookie-toggle:checked + .cookie-switch {
  background: #23404B;
}
input[type='checkbox'].cookie-toggle:checked + .cookie-switch:before {
  transform: translateX(22px);
  background: #CFB995;
}
input[type='checkbox'].cookie-toggle {
  display: none;
}
.cookie-modal-footer {
  margin-top: 20px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  background: #CFB995;
  color: #23404B;
  padding: 8px 20px;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.14s;
  cursor: pointer;
}
.cookie-modal-footer button:hover,
.cookie-modal-footer button:focus {
  background: #23404B;
  color: #fff;
}

/* --- FORM ELEMENTS & INPUT --- */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  border: 1.5px solid #E3E7EA;
  border-radius: 7px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  background: #fff;
  color: #23404B;
  transition: border 0.14s;
  outline: none;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #CFB995;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 920px;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 10px;
  }
  .header-container { gap: 12px; }
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 6px 10px 6px;
  }
  .logo img { height: 32px; }
  .main-nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .card-container, .feature-grid, .service-list, .testimonial-slider, .testimonial-list, .service-detail-list, .unique-points-grid, .post-preview-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-item, .testimonial-card, .blog-post-preview, .service-detail {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .content-grid { flex-direction: column; gap: 14px; }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav, .legal-links, .social-links {
    gap: 17px;
    font-size: 0.92rem;
    flex-wrap: wrap;
  }
  .footer-branding img { width: 32px; height: 32px; }
}
@media (max-width: 520px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section, section {
    padding: 13px 2px;
    border-radius: 6px;
  }
  .newsletter-cta {
    border-radius: 6px;
    padding: 14px 0;
  }
}

/* --- CTA-STEP & BUTTON SECTIONS --- */
.cta-step .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* --- OTHERS --- */
hidden, [hidden] { display: none !important; }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px dashed #CFB995;
  outline-offset: 1px;
}

/* --- UNIQUE POINTS GRID (REFERENZEN) --- */
.unique-points-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.unique-points-grid li {
  background: #fff;
  border: 1px solid #E4E8EB;
  color: #23404B;
  padding: 13px 17px;
  border-radius: 10px;
  margin-bottom: 8px;
  flex: 1 1 210px;
  box-shadow: 0 2px 12px 0 rgba(35,64,75,0.04);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
  background: #23404B12;
}
::-webkit-scrollbar-thumb {
  background: #CFB99544;
  border-radius: 10px;
}

/* --- ANIMATIONS/MICRO-INTERACTIONS --- */
.cta-primary, .cta-secondary, .footer-nav a, .main-nav a, .read-more, .categories-filter a, .cookie-banner button, .cookie-banner .cookie-settings {
  transition: background 0.18s, color 0.18s, border 0.16s, transform 0.13s, box-shadow 0.18s;
}

/* --- THANK YOU PAGE --- */
.thank-you-section .container {
  align-items: center;
  text-align: center;
}

/* Hide cookie banner/modal if not present */
.cookie-banner[hidden], .cookie-modal[hidden] {
  display: none !important;
}
