/* ---------------------------------------
   GLOW TEK ASTROLOGIE - LUXURY PREMIUM CSS
   ---------------------------------------
   - Strictly flexbox layouts; NO grid/columns
   - Brand luxury-palette: blue, gold, refined
   - Elegant modern UI with premium feel
   - Responsive & accessible, mobile-first
-----------------------------------------*/

/* ---------- RESET & BASE ----------- */
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #FAFAFB;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #19224A;
  background: #FAFAFB;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- TYPOGRAPHY ----------- */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', 'Roboto', Arial, sans-serif;
  color: #19224A;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 8px;
  line-height: 1.1;
}
h1 {font-size: 2.5rem;}   /* 40px */
h2 {font-size: 2rem;}     /* 32px */
h3 {font-size: 1.5rem;}   /* 24px */
h4 {font-size: 1.25rem;}  /* 20px */
h5 {font-size: 1rem;}
h6 {font-size: 1rem;}
p,ul,ol,li,blockquote {
  font-size: 1rem;
  color: #23294d;
}
p + p {margin-top: 16px;}
ul,ol {
  margin-bottom: 24px;
  padding-left: 1.5em;
}
strong, b {
  font-weight: 600;
  color: #19224A;
}

.subheadline {
  font-size: 1.125rem;
  font-weight: 500;
  color: #A3B2E3;
  margin-bottom: 20px;
  letter-spacing: .02em;
  line-height: 1.5;
}

/* LUXURY EFFECTS */
.gold {
  color: #F9CB8F !important;
}

/* ---------- LINKS & BUTTONS ---------- */
a {
  color: #19224A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9CB8F;
}
.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 32px;
  font-family: 'Josefin Sans', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 32px;
  margin: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 16px rgba(25,34,74,.08);
  border: none;
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-primary {
  background: #F9CB8F;
  color: #19224A;
  box-shadow: 0 2px 16px rgba(249,203,143,0.08);
  border: 2px solid #F9CB8F;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #19224A;
  color: #F9CB8F;
  border-color: #19224A;
  outline: none;
  box-shadow: 0 7px 24px rgba(25,34,74,0.10);
}
.cta-secondary {
  background: #19224A;
  color: #F9CB8F;
  border: 2px solid #F9CB8F;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #F9CB8F;
  color: #19224A;
  border-color: #F9CB8F;
  outline: none;
  box-shadow: 0 7px 24px rgba(25,34,74,0.10);
}
button, .button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
button:focus, .button:focus {
  outline: 2px solid #A3B2E3;
  outline-offset: 2px;
}

/* ---------- LAYOUT CONTAINERS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.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: 24px;
  box-shadow: 0 2px 12px rgba(25,34,74,0.10);
  padding: 24px;
  min-width: 260px;
  max-width: 360px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}

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

/* ---------- HEADER & NAVIGATION ---------- */
header {
  background: #fff;
  border-bottom: 1px solid #ece8e1;
  font-family: 'Josefin Sans', Arial, sans-serif;
  padding: 0 0 6px 0;
  box-shadow: 0 3px 16px rgba(25,34,74,0.04);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  gap: 14px;
}
header img {
  height: 44px;
  min-width: 44px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  color: #19224A;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.main-nav a.cta-primary {
  margin-left: 20px;
  font-size: 1.05rem;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F9CB8F;
  border-bottom: 2px solid #F9CB8F;
  background: none;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #19224A;
  border: none;
  margin-left: 18px;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ECE5DA;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #19224A;
  color: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.6,0,0.2,1);
  box-shadow: 0 8px 50px rgba(25,34,74,0.13);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 25px 0 0 30px;
  font-size: 2rem;
  background: none;
  color: #F9CB8F;
  border: none;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #222D50;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 36px;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F9CB8F;
  border-bottom: 1px solid #F9CB8F;
}

/* ---------- HERO ----------- */
.hero {
  background: linear-gradient(135deg, #19224A 88%, #F9CB8F 100%);
  padding: 0;
  min-height: 370px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 330px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 12px;
}
.hero .subheadline {
  color: #F9CB8F;
  margin-bottom: 26px;
}
.hero .cta-primary {
  margin-top: 6px;
  box-shadow: 0 2px 24px rgba(249,203,143,0.17);
}

/* ---------- FEATURES SECTION ---------- */
.features .feature-grid, .features ul, .features .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.features .feature-grid li, .features ul li, .features .usp-list li {
  background: #fff;
  border-radius: 22px;
  padding: 28px 20px;
  box-shadow: 0 2px 16px rgba(25,34,74,.08);
  flex: 1 1 235px;
  min-width: 210px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #F9CB8F;
}
.features .feature-grid li img {
  height: 38px;
  margin-bottom: 14px;
}
.features h2 {
  margin-bottom: 16px;
  color: #19224A;
}
.features h3 {
  color: #A3B2E3;
  font-size: 1.1rem;
  font-weight: 600;
}

.features .usp-list li {
  border-left: 4px solid #A3B2E3;
  border-right: none;
}
.features .vision-statement {
  margin-top: 20px;
  background: #f9fafb;
  border-radius: 18px;
  padding: 24px 20px;
  font-style: italic;
  border-left: 4px solid #F9CB8F;
  color: #4B5178;
}

/* Custom grid for compatibility (Kompatibilitaets) methods */
.kompatibilitaets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.kompatibilitaets-grid > div {
  flex: 1 1 240px;
  min-width: 210px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(25,34,74,.07);
  padding: 24px 18px;
  border-left: 3px solid #A3B2E3;
  margin-bottom: 20px;
}

/* ---------- SERVICES LISTS ---------- */
.services .service-list {
  width: 100%;
  border-collapse: collapse;
  margin-top: 26px;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(25,34,74,0.07);
  overflow: hidden;
}
.services .service-list th,
.services .service-list td {
  padding: 18px 14px;
  text-align: left;
  border-bottom: 1px solid #ECE7DC;
}
.services .service-list th {
  background: #F9CB8F;
  color: #19224A;
  font-weight: 700;
}
.services .service-list tr:last-child td {
  border-bottom: none;
}
.services table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  margin-top: 18px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(25,34,74,.06);
}
.services table th,
.services table td {
  padding: 14px 12px;
  border-bottom: 1px solid #E0DEDE;
}
.services table th {
  background: #F9CB8F;
  color: #19224A;
  font-weight: 600;
}
.services table tr:last-child td {
  border-bottom: none;
}
.services ul {
  margin-bottom: 24px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services ol {
  margin-bottom: 24px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 3px 18px rgba(25,34,74,.08);
}
.testimonials h2 {
  margin-bottom: 26px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #FAFAFB;
  box-shadow: 0 2px 12px rgba(25,34,74,.06);
  margin-bottom: 20px;
  border-left: 6px solid #F9CB8F;
  min-height: 84px;
  width: 100%;
  max-width: 700px;
}
.testimonials .testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-style: italic;
  color: #2D3767;
  margin-bottom: 0;
  flex: 1;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  font-size: 1rem;
  color: #19224A;
}
.testimonial-meta strong {
  color: #19224A;
}
.testimonial-meta span:last-child {
  color: #F9CB8F;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
  align-self: flex-end;
}

/* ---------- CTA SECTION ---------- */
.cta {
  margin-bottom: 60px;
  padding: 40px 0 36px 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(25,34,74,0.06);
}
.cta .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

/* ---------- ABOUT & CONTACT PAGES ---------- */
.about .content-wrapper,
.contact .content-wrapper{
  gap: 24px;
}
.about .text-section, .legal .text-section {
  margin-bottom: 32px;
  font-size: 1.06rem;
  color: #23294d;
  line-height: 1.65;
}
.about .expert-team {
  margin-top: 10px;
  background: #f1f5fa;
  border-radius: 20px;
  padding: 18px;
  border-left: 4px solid #A3B2E3;
  color: #1d2351;
}
.about .expert-team h2 {
  color: #19224A;
}
.about .expert-team ul {
  margin: 12px 0 0 0;
  gap: 8px;
  list-style: disc inside;
}
.vision-statement {
  background: #f7f5f3;
  border-left: 3px solid #F9CB8F;
  border-radius: 12px;
  padding: 22px 15px;
  margin-top: 18px;
  color: #3e4365;
  font-style: italic;
  max-width: 650px;
}
.contact .content-wrapper ul {
  margin: 14px 0 14px 0;
  gap: 8px;
  list-style: disc inside;
}
.cta-block {
  margin-top: 22px;
}
.trust-signals {
  margin-top: 20px;
  background: #f9fafc;
  border-radius: 14px;
  padding: 14px 16px;
  border-left: 3px solid #A3B2E3;
  color: #42505d;
}
.trust-signals ul {
  gap: 6px;
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  margin-bottom: 60px;
  padding: 40px 0;
}
.legal .content-wrapper {
  gap: 24px;
}
.legal h1 {
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.2rem;
  color: #A3B2E3;
  font-weight: 600;
  margin: 18px 0 8px 0;
}
.legal ul {
  margin-top: 6px;
  margin-bottom: 16px;
  gap: 7px;
  list-style: disc;
}
.legal a {
  color: #A3B2E3;
}

/* ---------- FOOTER ---------- */
footer {
  background: #19224A;
  color: #fff;
  padding: 0 0 0 0;
  font-size: 1rem;
  font-family: 'Josefin Sans', Arial, sans-serif;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 32px 20px 16px 20px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  border-bottom: 1px solid #2d3760;
  padding-bottom: 18px;
  margin-bottom: 20px;
}
.footer-top img {
  height: 40px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.88;
  transition: opacity .16s, color .17s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9CB8F;
  opacity: 1;
  border-bottom: 2px solid #F9CB8F;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
  color: #c3c9e3;
}
.footer-contact a {
  color: #A3B2E3;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a img {
  width: 28px; height: 28px;
  filter: grayscale(.05) brightness(1);
  transition: filter .18s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 0 4px #F9CB8F) brightness(1.2);
}
.footer-bottom {
  text-align: center;
  font-size: .95rem;
  color: #c6cee8;
  border-top: 1px solid #263064;
  padding: 16px 0;
}

/* ---------- COOKIE CONSENT BANNER ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #fffbe4;
  color: #19224A;
  z-index: 9999;
  box-shadow: 0 -2px 14px rgba(25,34,74,0.13);
  padding: 22px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(0.6,0,0.25,1);
  transform: translateY(0);
}
#cookie-banner.hide {
  transform: translateY(120%);
}
#cookie-banner .banner-text {
  flex: 1 1 220px;
  max-width: 600px;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
#cookie-banner button {
  border-radius: 20px;
  border: none;
  padding: 10px 22px;
  background: #F9CB8F;
  color: #19224A;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.16s, color 0.16s;
  margin-right: 3px;
}
#cookie-banner .cookie-settings {
  background: #A3B2E3;
  color: #19224A;
  border: none;
}
#cookie-banner button:hover,
#cookie-banner button:focus {
  background: #19224A;
  color: #F9CB8F;
}
#cookie-banner .cookie-settings:hover,
#cookie-banner .cookie-settings:focus {
  background: #F9CB8F;
  color: #19224A;
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,32,44,0.53);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .32s cubic-bezier(.7,.05,.43,.99);
}
@keyframes modalFadeIn {
  from {opacity:0;} to {opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: #19224A;
  max-width: 410px;
  width: 94vw;
  border-radius: 22px;
  padding: 36px 24px 24px 24px;
  box-shadow: 0 9px 44px rgba(25,34,74,0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: #19224A;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  font-size: 1.5rem;
  color: #A3B2E3;
  background: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F9CB8F;
}

/* ----------- CONFIRMATION PAGE ----------- */
.confirmation {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(25,34,74,0.06);
}
.confirmation .content-wrapper {
  align-items: center;
  gap: 15px;
}
.confirmation h1 {
  color: #F9CB8F;
}
.confirmation .links {
  margin-top: 28px;
}
.confirmation .links a {
  display: inline-block;
  margin: 8px 12px 0 0;
  font-family: 'Josefin Sans', Arial, sans-serif;
  font-size: 1.03rem;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px;}
  .content-grid { flex-direction: column; gap: 24px;}
}
@media (max-width: 900px) {
  .main-nav { gap: 9px; }
  .hero .container { min-height: 242px; }
  .features .feature-grid, .features .usp-list { gap: 18px; }
  .kompatibilitaets-grid { gap: 14px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 6px;
    height: 60px; min-height: 60px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; } 
  .content-wrapper, .card-container, .content-grid, .features .feature-grid, .features .usp-list, .kompatibilitaets-grid, .footer-top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px;
  }
  .card-container, .content-grid, .features .feature-grid, .features .usp-list, .kompatibilitaets-grid {
    gap: 18px;
  }
  .hero {
    min-height: 210px;
  }
  .hero .container {
    min-height: 160px;
    padding-top: 24px;
    padding-bottom: 26px;
  }
  .section, .testimonials, .cta, .services, .legal, .about, .contact {
    padding: 26px 6vw !important;
    margin-bottom: 36px;
  }
  .features .feature-grid li, .features .usp-list li, .kompatibilitaets-grid > div {
    max-width: 100%;
    min-width: 0;
    border-radius: 18px;
    padding: 22px 10px;
  }
  .testimonials .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
  }
  .cta .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer .container { padding: 26px 5vw 10px 5vw; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero h1, h1 { font-size: 1.43rem; }
  h2 { font-size: 1.14rem; }
  .cta-primary, .cta-secondary { padding: 12px 16px; font-size: 1rem; }
  header img, .footer-top img { height: 30px; }
  .testimonial-card p { font-size: 1rem; }
  .mobile-nav a { font-size: 1rem; }
  .confirmation h1 { font-size: 1.25rem; }
  .footer-contact, .footer-bottom { font-size: .95rem; }
  .services table th, .services table td { font-size: .98rem; padding: 10px 8px; }
  .services .service-list th, .services .service-list td { padding: 10px 8px; font-size: .97rem; }
  .cookie-modal { padding: 18px 7vw 14px 7vw; }
  #cookie-banner { flex-direction: column; gap: 13px; padding: 13px 4vw; font-size: .98rem; }
}

/* ---------- UTILITIES ---------- */
.text-section { margin-bottom: 20px; }
.gold-accent {
  color: #F9CB8F !important;
}
.bg-white { background: #fff !important; }
.bg-blue { background: #19224A !important; color: #fff !important; }

/* Focus accessibility */
:focus-visible { outline: 2px solid #A3B2E3; outline-offset: 3px; }

/* Subtle border for cards */
.card, .features .feature-grid li, .features .usp-list li, .kompatibilitaets-grid > div {
  border: 1px solid #ECE7DC;
}

/* Subtle hover for cards */
.card:hover, .features .feature-grid li:hover, .features .usp-list li:hover, .kompatibilitaets-grid > div:hover {
  box-shadow: 0 7px 32px rgba(25,34,74,0.13);
  transform: translateY(-2px) scale(1.012);
  transition: box-shadow .23s, transform .21s;
  border-color: #F9CB8F;
}
.card:active { transform: scale(.98) }

/* Transitions for all interactive elements */
a, button, .card, input, textarea, .cta-primary, .cta-secondary {
  transition: color .16s, background .18s, box-shadow .17s, border-color .15s;
}

/* Z-index fix for mobile nav/cookie/modal */
.mobile-menu, .cookie-modal-backdrop, #cookie-banner { z-index: 11000; }

/* Hide body scroll when modal/menu open (to be toggled by JS) */
body.modal-open, body.mobile-menu-open {
  overflow: hidden;
}
