:root {
  --bg: #F4F7FA;
  --surface: #FFFFFF;
  --text: #1B2838;
  --muted: #3D4F5F;
  --primary: #2266AA;
  --on_primary: #FFFFFF;
  --accent: #008B8B;
  --border: #CED4DA;
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--ff-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-top: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: #1a5288; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

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

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: 0.6rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255,255,255,0.92);
  transition: box-shadow 0.35s ease;
}
.site-header.scrolled { box-shadow: 0 2px 18px rgba(0,0,0,0.07); }

.brand {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.brand:hover { color: var(--primary); }

.nav-link-custom {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  padding: 0.4rem 0.85rem !important;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link-custom:hover,
.nav-link-custom:focus-visible { color: var(--primary); background: rgba(34,102,170,0.06); }

.btn-primary-custom {
  background: var(--primary);
  color: var(--on_primary);
  border: none;
  padding: 0.55rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background: #1b5288;
  color: var(--on_primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(34,102,170,0.3);
}
.btn-primary-custom:active { transform: translateY(0); }

.navbar-toggler { border: 1px solid var(--border); padding: 0.4rem 0.65rem; border-radius: 6px; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(0,139,139,0.25); outline: none; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: 0.9rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}
.site-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-inline: 0.35rem;
}
.site-footer a:hover { color: var(--primary); }
.footer-brand { font-family: var(--ff-heading); font-weight: 700; color: var(--text); }

/* ---------- SECTIONS ---------- */
section {
  position: relative;
  overflow: clip;
  padding-block: clamp(2.5rem, 5vw, 5rem);
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  section { padding-inline: 1.5rem; }
}

.section-container {
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* No-JS fallback: reveal is visible by default; JS adds the .reveal class to hide initially */
@supports not (selector(:has(*))) {
  .reveal { opacity: 1; transform: none; }
}

.reveal-stagger > * { opacity: 0; transform: translateY(22px); }
.reveal-stagger > *.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* ---------- HERO ---------- */
.hero-section {
  padding-block: clamp(3rem, 8vh, 6.5rem) clamp(3rem, 6vh, 5rem);
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.hero-stat-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.7rem 1.3rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.hero-stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.hero-subhead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 0.55rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--on_primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(34,102,170,0.25);
}
.hero-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.09);
  background: var(--surface);
}
@media (min-width: 992px) {
  .hero-image-wrapper { aspect-ratio: 5/4; }
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,139,139,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

/* ---------- VORTEILE ---------- */
.vorteile-section { background: var(--surface); }
.vorteile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .vorteile-grid { grid-template-columns: repeat(4, 1fr); }
}
.vorteil-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
}
.vorteil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  border-color: var(--accent);
}
.vorteil-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,139,139,0.1);
  border-radius: 10px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.vorteil-title {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.vorteil-body { font-size: 0.92rem; color: var(--muted); }

/* ---------- KURSANGEBOT ---------- */
.kursangebot-section { background: var(--bg); }
.kurs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 768px) {
  .kurs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .kurs-grid { grid-template-columns: repeat(3, 1fr); }
}
.kurs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.kurs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.1);
}
.kurs-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e9ecf0;
  position: relative;
}
.kurs-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kurs-card-label {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--primary);
  color: var(--on_primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.kurs-card-body {
  padding: 1.3rem 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kurs-card-title {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.kurs-card-text { font-size: 0.9rem; color: var(--muted); flex: 1; margin-bottom: 0.9rem; }
.kurs-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
}
.kurs-card-preis { font-weight: 700; color: var(--text); font-family: var(--ff-heading); font-size: 1.1rem; }
.kurs-card-cta {
  align-self: flex-start;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.kurs-card-cta:hover {
  background: var(--primary);
  color: var(--on_primary);
  box-shadow: 0 5px 16px rgba(34,102,170,0.25);
}

/* ---------- ARBEITSWEISE ---------- */
.arbeitsweise-section { background: var(--surface); }
.arbeitsweise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .arbeitsweise-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.arbeitsweise-image-wrapper {
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: #e9ecf0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.arbeitsweise-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steps-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.step-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on_primary);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
}
.step-content { flex: 1; }
.step-title { font-family: var(--ff-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.2rem; }
.step-body { font-size: 0.9rem; color: var(--muted); }

/* ---------- ZAHLEN ---------- */
.zahlen-section {
  background: linear-gradient(135deg, #1B2838 0%, #1f3348 100%);
  color: #fff;
}
.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  text-align: center;
}
@media (min-width: 768px) {
  .zahlen-grid { grid-template-columns: repeat(4, 1fr); }
}
.zahl-item { padding: 0.8rem; }
.zahl-number {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.zahl-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ---------- STIMMEN ---------- */
.stimmen-section { background: var(--bg); }
.stimmen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .stimmen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .stimmen-grid { grid-template-columns: repeat(3, 1fr); }
}
.stimme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.35s ease;
}
.stimme-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}
.stimme-avatar-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.9rem;
  background: #e9ecf0;
  flex-shrink: 0;
}
.stimme-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stimme-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.1rem;
  border-left: 3px solid var(--accent);
}
.stimme-name { font-weight: 700; font-size: 0.9rem; }
.stimme-role { font-size: 0.8rem; color: var(--muted); }

/* ---------- FRAGEN ---------- */
.fragen-section { background: var(--surface); }
.faq-accordion { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0.4rem 1.1rem 0;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
  font-size: 1.1rem;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0 0.4rem;
}
.faq-answer.open { max-height: 400px; padding-bottom: 1.1rem; }

/* ---------- BUCHUNG ---------- */
.buchung-section { background: var(--bg); }
.booking-form-wrapper {
  max-width: 680px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 12px 36px rgba(0,0,0,0.05);
}
.booking-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.booking-form .form-control,
.booking-form .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: var(--surface);
  color: var(--text);
}
.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34,102,170,0.12);
  outline: none;
}
.booking-form textarea.form-control { min-height: 110px; resize: vertical; }
.wb-form-success {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ---------- DECORATIVE ASSETS ---------- */
.wb-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  filter: blur(40px);
}
.wb-deco-fx {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* ---------- COOKIE CONSENT ---------- */
.wb-cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.14);
  max-width: 94vw;
  width: 580px;
  font-size: 0.9rem;
}
.wb-cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--text); }
.wb-cookie-banner a { color: var(--primary); text-decoration: underline; font-weight: 500; }
.cookie-btn-group { display: flex; gap: 0.55rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--primary);
  color: var(--on_primary);
  border: none;
  padding: 0.5rem 1.15rem;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.cookie-btn-accept:hover { background: #1b5288; }
.cookie-btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1.05rem;
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.cookie-btn-decline:hover { border-color: var(--text); color: var(--text); }

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-inline: auto;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767px) {
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn-primary-custom,
  .hero-cta-group .btn-outline-custom { width: 100%; text-align: center; }
  .wb-cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 0.5rem;
    width: 94vw;
    padding: 1rem;
  }
  .cookie-btn-group { width: 100%; justify-content: center; }
  .kurs-card-cta { width: 100%; text-align: center; }
}
@media (min-width: 390px) and (max-width: 575px) {
  .vorteile-grid { grid-template-columns: 1fr; }
  .stimmen-grid { grid-template-columns: 1fr; }
}

/* ---------- ICON PLACEHOLDER ---------- */
.wb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3em;
  height: 1.3em;
  vertical-align: -0.15em;
}
/* ---------- UTILITY ---------- */
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

html{overflow-x:clip}body{overflow-x:clip;max-width:100%}img,svg,video,canvas,iframe,table,pre,code{max-width:100%;height:auto}*{min-width:0}h1,h2,h3,h4,h5,h6,p,span,a,li,td,th,figcaption,blockquote{overflow-wrap:break-word}:where([class*='price' i],[class*='amount' i]){overflow-wrap:break-word;max-width:100%}html{scroll-padding-top:5rem}section[id]{scroll-margin-top:5rem}:where([class*='container' i],[class*='wrapper' i],[class*='inner' i],[class*='content' i],[class*='__wrap' i]):not([class*='swiper' i]):not([class*='leaflet' i]):not([class*='full' i]){margin-inline:auto}@media (max-width:640px){main [style*='grid-template-columns'],main [style*='repeat('],main [class*='grid' i],main [class*='cards' i],main [class*='feature' i],main [class*='cols' i],main [class*='columns' i],main [class*='two-col' i],main [class*='three-col' i],main [class*='split' i],main [class*='bento' i]{grid-template-columns:1fr!important}main [class*='card' i][class*='row' i],main [class*='timeline' i],main [class*='cardlist' i]{flex-direction:column!important;align-items:stretch!important}footer [class*='grid' i],footer [class*='cols' i],footer [class*='columns' i],footer [style*='grid-template-columns']{grid-template-columns:1fr!important}footer form{display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:.6rem!important}footer form input,footer form button{width:100%!important}}@media (min-width:769px){:where(.mobile-nav,.mobile-menu,.mobile-drawer,.nav-drawer,.drawer-nav,.offcanvas,.off-canvas,[class*='mobile-nav' i],[class*='mobile-menu' i],[class*='drawer' i],[class*='hamburger-menu' i],[class*='burger-menu' i]):not(.open):not(.active):not(.show):not(.is-open):not([aria-expanded='true']){display:none!important}:where(.hamburger,.burger,.nav-toggle,.menu-toggle,[class*='hamburger' i],[class*='burger' i],[aria-label*='menu' i][class*='toggle' i]){display:none!important}}@media (max-width:640px){main table{display:block;overflow-x:auto;max-width:100%}}.wb-icon{display:inline-flex;align-items:center;justify-content:center;line-height:0;vertical-align:middle}.wb-icon .wb-svg{width:1em;height:1em}a.btn-primary,button.btn-primary,.btn.btn-primary,.button.btn-primary,.btn--primary,.button--primary,.btn-cta,.cta-button,.cta-btn,.button-primary,a.btn.primary,button.btn.primary,[data-variant='primary'],[data-btn='primary'],.btn-primary>*,.btn--primary>*,.cta-button>*,.cta-btn>*{background-color:var(--primary)!important;color:var(--on_primary)!important;border-color:var(--primary)!important;-webkit-text-fill-color:var(--on_primary)!important}.btn-primary .wb-svg,.btn--primary .wb-svg,.cta-button .wb-svg,.cta-btn .wb-svg,.button-primary .wb-svg{color:var(--on_primary)!important;fill:currentColor}.wb-cookie{position:fixed;left:1rem;bottom:1rem;z-index:9999;max-width:min(330px,calc(100% - 2rem));display:flex;flex-direction:column;gap:.6rem;padding:.85rem 1rem;border-radius:12px;background:#111;color:#fff;box-shadow:0 10px 30px rgba(0,0,0,.25);font-size:.8rem;line-height:1.4}.wb-cookie[hidden]{display:none}.wb-cookie a{color:inherit;text-decoration:underline}.wb-cookie-msg{margin:0}.wb-cookie-act{display:flex;gap:.5rem;justify-content:flex-end}.wb-cookie-btn{cursor:pointer;border:0;border-radius:999px;padding:.4rem 1rem;font:inherit;font-weight:600;font-size:.78rem}.wb-cookie-decline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4)}.wb-cookie-accept{background:#fff;color:#111}.wb-legal[hidden]{display:none}.wb-legal{position:fixed;inset:0;z-index:10000;display:flex}.wb-legal-ov{position:absolute;inset:0;background:rgba(0,0,0,.55)}.wb-legal-panel{position:relative;margin:auto;background:var(--surface,#fff);color:var(--text,#111);max-width:680px;width:92%;max-height:85vh;overflow:auto;padding:2.2rem;border-radius:14px;box-shadow:0 24px 70px rgba(0,0,0,.35);font-size:.95rem;line-height:1.6}.wb-legal--drawer{justify-content:flex-end}.wb-legal--drawer .wb-legal-panel{margin:0;max-width:440px;width:90%;height:100%;max-height:none;border-radius:0}.wb-legal-x{position:absolute;top:.5rem;right:.7rem;border:0;background:transparent;color:inherit;font-size:1.7rem;line-height:1;cursor:pointer;padding:.1rem .5rem}.wb-legal-panel h1{margin-top:0}
