/* ============================================================
   schlaraffia.org Verbands-CMS – Frontend-Stylesheet v1.0
   Design: Dunkelblau #1a2e5a / Gold #e8b84b / Weiß
   ============================================================ */

:root {
  --blue-dark:   #1a2e5a;
  --blue-mid:    #1e3a73;
  --blue-light:  #2a4d9c;
  --gold:        #e8b84b;
  --gold-dark:   #c99a30;
  --gold-light:  #f5d070;
  --white:       #ffffff;
  --off-white:   #f8f8f6;
  --gray-light:  #e8e8e8;
  --gray-mid:    #888;
  --gray-dark:   #333;
  --text:        #2c2c2c;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(26,46,90,.12);
  --shadow-hover:0 8px 32px rgba(26,46,90,.22);
  --transition:  .25s ease;
  --max-width:   1200px;
  --header-h:    76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--blue-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.25; color: var(--blue-dark); }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 1rem; z-index: 9999; background: var(--gold); color: var(--blue-dark); padding: .5rem 1rem; border-radius: var(--radius); font-weight: 700; transition: top var(--transition); }
.skip-link:focus { top: 1rem; }

/* ── HEADER ──────────────────────────────────────────────── */
#site-header {
  background: var(--blue-dark);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo { display: flex; align-items: center; gap: .85rem; text-decoration: none; flex-shrink: 0; }
.logo-uhu  { font-size: 2.2rem; line-height: 1; filter: drop-shadow(0 0 8px rgba(232,184,75,.5)); }
.logo-title { font-size: 1.35rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; display: block; }
.logo-sub   { font-size: .75rem; color: var(--gold); letter-spacing: .06em; display: block; }

#main-nav ul { list-style: none; display: flex; gap: .1rem; align-items: center; }
#main-nav a  { color: rgba(255,255,255,.88); padding: .5rem .9rem; border-radius: var(--radius); font-size: .92rem; font-weight: 500; transition: background var(--transition), color var(--transition); white-space: nowrap; }
#main-nav a:hover, #main-nav a.active { background: rgba(232,184,75,.15); color: var(--gold); }
.nav-cta { background: rgba(232,184,75,.2) !important; color: var(--gold) !important; border: 1px solid rgba(232,184,75,.4); }

/* Dropdown */
.nav-has-sub { position: relative; }
.nav-sub { display: none; position: absolute; top: 100%; left: 0; background: var(--blue-mid); border-radius: var(--radius); min-width: 220px; box-shadow: var(--shadow-hover); padding: .5rem 0; z-index: 100; }
.nav-has-sub:hover .nav-sub { display: block; }
.nav-sub li { list-style: none; }
.nav-sub a  { padding: .55rem 1.25rem; display: block; color: rgba(255,255,255,.85) !important; font-size: .88rem; }
.nav-sub a:hover { background: rgba(255,255,255,.08); color: var(--gold) !important; }

.header-cta { margin-left: .5rem; }
#nav-toggle { display: none; background: none; border: 2px solid var(--gold); border-radius: var(--radius); padding: .4rem .55rem; cursor: pointer; flex-direction: column; gap: 5px; }
#nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); transition: all .3s; }
#nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle.open span:nth-child(2) { opacity: 0; }
#nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .65rem 1.5rem; border-radius: var(--radius); font-size: .925rem; font-weight: 600; font-family: inherit; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary   { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }
.btn-primary:hover { background: var(--blue-mid); color: var(--white); box-shadow: var(--shadow); }
.btn-gold      { background: var(--gold); color: var(--blue-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); color: var(--blue-dark); box-shadow: var(--shadow); }
.btn-outline   { background: transparent; color: var(--blue-dark); border-color: var(--blue-light); }
.btn-outline:hover { background: var(--blue-dark); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .4rem 1rem; font-size: .82rem; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Slideshow */
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
/* Dunkler Overlay damit Text lesbar bleibt */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,20,50,.72) 0%,
    rgba(20,40,90,.58) 50%,
    rgba(10,20,50,.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.2; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 580px; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hstat-val  { font-size: 1.7rem; font-weight: 800; color: var(--gold); display: block; line-height: 1; }
.hstat-lbl  { font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .04em; text-transform: uppercase; margin-top: .25rem; display: block; }

.hero-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: .85;
}
.hero-seal-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(232,184,75,.06);
  box-shadow: 0 0 40px rgba(232,184,75,.15), inset 0 0 40px rgba(232,184,75,.05);
}
.seal-uhu   { font-size: 4.5rem; line-height: 1; margin-bottom: .5rem; }
.seal-text  { font-size: .78rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.seal-year  { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.7); margin-top: .25rem; }

/* ── SEKTIONEN ───────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--blue-dark); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .75rem; }
.section-header p  { font-size: 1.05rem; color: var(--gray-mid); max-width: 600px; margin: 0 auto; }
.section-label { display: inline-block; background: rgba(232,184,75,.15); color: var(--gold-dark); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .85rem; border-radius: 99px; margin-bottom: .75rem; }
.section-dark .section-label { background: rgba(232,184,75,.2); color: var(--gold); }

/* ── REYCH-SUCHE ─────────────────────────────────────────── */
.suche-section { padding: 4rem 0; background: var(--off-white); }
.suche-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.suche-input-row { display: flex; gap: .75rem; margin-bottom: 1.5rem; }
.suche-input {
  flex: 1;
  padding: .85rem 1.25rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}
.suche-input:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(42,77,156,.1); }
#suche-map { height: 360px; border-radius: var(--radius); border: 1px solid var(--gray-light); margin-top: 1.5rem; background: #e8f0e8; }
.suche-results { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.reych-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  padding: 1.25rem;
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.reych-card:hover { box-shadow: var(--shadow); border-color: var(--blue-light); }
.reych-dist { position: absolute; top: .75rem; right: .75rem; background: var(--blue-dark); color: var(--gold); font-size: .72rem; font-weight: 700; padding: .25rem .6rem; border-radius: 99px; }
.reych-nr   { font-size: .72rem; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .25rem; }
.reych-name { font-size: .95rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .25rem; }
.reych-city { font-size: .85rem; color: var(--gray-mid); margin-bottom: .75rem; }
.reych-type { display: inline-block; font-size: .7rem; font-weight: 700; padding: .15rem .5rem; border-radius: 99px; background: rgba(42,77,156,.1); color: var(--blue-light); margin-bottom: .75rem; }
.reych-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.reych-links a { font-size: .8rem; color: var(--blue-light); border: 1px solid var(--gray-light); padding: .25rem .65rem; border-radius: 99px; transition: all var(--transition); }
.reych-links a:hover { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }
.suche-empty { text-align: center; padding: 2rem; color: var(--gray-mid); }

/* ── FEATURES / CARDS ────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-top-color: var(--gold); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.feature-card p  { font-size: .9rem; color: var(--gray-mid); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before { content: '"'; font-size: 5rem; color: var(--gold); line-height: 1; position: absolute; top: .5rem; left: 1.25rem; font-family: Georgia, serif; }
.testimonial-text { font-size: .95rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: 1.25rem; padding-top: 1.5rem; }
.testimonial-name { font-weight: 700; color: var(--blue-dark); font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--gray-mid); }

/* ── VIDEO-SEKTION ───────────────────────────────────────── */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.video-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  transition: background var(--transition);
}
.video-thumb:hover::after { background: rgba(0,0,0,.15); }
.video-play {
  position: relative; z-index: 1;
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--transition);
}
.video-thumb:hover .video-play { transform: scale(1.1); }
.video-consent-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(26,46,90,.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; padding: 1.5rem; text-align: center;
}
.video-consent-overlay p { color: rgba(255,255,255,.8); font-size: .83rem; line-height: 1.5; }
.video-info { padding: 1.25rem; }
.video-info h4 { color: var(--white); font-size: .95rem; margin-bottom: .25rem; }
.video-meta  { color: rgba(255,255,255,.5); font-size: .8rem; }
.video-iframe-wrap { position: relative; aspect-ratio: 16/9; }
.video-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── GLOSSAR ─────────────────────────────────────────────── */
.glossar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.glossar-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.glossar-term { font-weight: 700; color: var(--blue-dark); font-size: .95rem; margin-bottom: .4rem; }
.glossar-def  { font-size: .88rem; color: var(--gray-dark); line-height: 1.6; }
.glossar-bsp  { font-size: .78rem; color: var(--gray-mid); margin-top: .4rem; font-style: italic; }
.glossar-bsp::before { content: '📌 '; }

/* ── MITMACHEN ───────────────────────────────────────────── */
.mitmachen-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.step-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
}
.step-num   { width: 48px; height: 48px; background: var(--gold); color: var(--blue-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; margin: 0 auto 1rem; }
.step-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.step-card p  { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.6; }
.mitmachen-cta {
  background: rgba(232,184,75,.1);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.mitmachen-cta h3 { color: var(--white); font-size: 1.4rem; margin-bottom: .75rem; }
.mitmachen-cta p  { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }

/* ── INFOBOX ─────────────────────────────────────────────── */
.info-box {
  background: rgba(232,184,75,.08);
  border: 1px solid rgba(232,184,75,.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.info-box p { font-size: .95rem; }

/* ── PAGE LAYOUT ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 3.5rem 0;
  text-align: center;
  margin-bottom: 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1.05rem; }
.page-content { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.page-content h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; color: var(--blue-dark); }
.page-content p  { margin-bottom: 1rem; }
.page-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { margin-bottom: .4rem; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb { background: #f5f5f3; }
.breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; padding: .6rem 1.5rem; font-size: .82rem; color: var(--gray-mid); }
.breadcrumb-inner a { color: var(--blue-light); }
.breadcrumb-inner .sep { margin: 0 .4rem; color: var(--gray-light); }

/* ── ARTICLE-CARDS ───────────────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.article-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.article-card-img { aspect-ratio: 16/9; background: var(--blue-dark); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.article-card-body { padding: 1.25rem; }
.article-date { font-size: .75rem; color: var(--gray-mid); margin-bottom: .5rem; }
.article-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.article-card p  { font-size: .88rem; color: var(--gray-mid); }
.article-card-foot { padding: .75rem 1.25rem; border-top: 1px solid var(--gray-light); }

/* ── KONTAKT ─────────────────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.kontakt-form .form-group { margin-bottom: 1rem; }
.kontakt-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .3rem; color: var(--gray-dark); }
.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
  width: 100%; padding: .7rem 1rem; border: 1px solid var(--gray-light); border-radius: var(--radius);
  font-size: .95rem; font-family: inherit; transition: border-color var(--transition);
}
.kontakt-form input:focus,
.kontakt-form textarea:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(42,77,156,.1); }
.kontakt-form textarea { min-height: 130px; resize: vertical; }
.kontakt-info p { margin-bottom: .75rem; font-size: .95rem; }
.kontakt-info strong { color: var(--blue-dark); }

/* ── REYCHE-LISTE (Seite) ────────────────────────────────── */
.reyche-table table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.reyche-table th { background: var(--blue-dark); color: var(--white); padding: .75rem 1rem; text-align: left; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.reyche-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--gray-light); }
.reyche-table tr:hover td { background: var(--off-white); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer-stats { background: var(--blue-mid); padding: 2rem 0; }
.footer-stats-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.footer-stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.fstat-icon { font-size: 1.5rem; }
.fstat-val  { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.fstat-lbl  { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .04em; }

#site-footer { background: var(--blue-dark); color: rgba(255,255,255,.75); }
.footer-grid { max-width: var(--max-width); margin: 0 auto; padding: 3.5rem 1.5rem 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-about p { font-size: .88rem; line-height: 1.65; margin: 1rem 0; color: rgba(255,255,255,.6); }
.footer-logo { display: flex; align-items: center; gap: .75rem; }
.footer-uhu  { font-size: 2rem; }
.footer-logo-title { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-logo-sub   { font-size: .73rem; color: var(--gold); }
.footer-nav h4 { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a  { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: .5rem; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }
.footer-spruch { font-size: .83rem; color: var(--gold); opacity: .7; }

/* ── COOKIE-BANNER ───────────────────────────────────────── */
#cookie-banner { display: none; position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 9000; background: var(--blue-dark); color: rgba(255,255,255,.85); padding: 1.25rem 1.75rem; border-radius: var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,.35); max-width: 600px; width: calc(100% - 3rem); border: 1px solid rgba(232,184,75,.3); }
#cookie-banner p { font-size: .85rem; margin-bottom: .85rem; }
#cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: .75rem; }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 8000; display: flex; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(4px); }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; max-width: 480px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-mid); }
.modal h3 { color: var(--blue-dark); margin-bottom: .5rem; }
.modal-lead { color: var(--gray-mid); font-size: .9rem; margin-bottom: 1.5rem; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid      { grid-template-columns: 1fr 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .hero-content       { grid-template-columns: 1fr; }
  .hero-seal          { display: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #main-nav, .header-cta { display: none; }
  #nav-toggle { display: flex; }
  #main-nav.open { display: flex; position: fixed; inset: var(--header-h) 0 0; background: var(--blue-dark); flex-direction: column; padding: 1.5rem; overflow-y: auto; z-index: 999; }
  #main-nav.open ul { flex-direction: column; gap: 0; }
  #main-nav.open a { padding: .9rem 1rem; font-size: 1rem; }
  #main-nav.open .nav-sub { position: static; display: block; box-shadow: none; background: rgba(0,0,0,.2); }
  .features-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mitmachen-steps   { grid-template-columns: 1fr; }
  .glossar-grid      { grid-template-columns: 1fr; }
  .articles-grid     { grid-template-columns: 1fr; }
  .kontakt-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .hero-btns         { flex-direction: column; }
  .hero-stats        { gap: 1.5rem; }
  .suche-input-row   { flex-direction: column; }
}
