/* ============================================================
   SEMA GEBÄUDEREINIGUNG  ·  Global Stylesheet v2.0
   Gültig für: index · leistungen · ueber-uns · karriere
               kontakt · impressum · datenschutz
   ============================================================ */


/* ──────────────────────────────────────────────────────────
   1. DESIGN-TOKENS
────────────────────────────────────────────────────────── */
:root {
  /* Markenfarben */
  --royal:        #1a2b6d;
  --royal-dark:   #0f1940;
  --royal-mid:    #1e3380;
  --royal-light:  #2e4baa;
  --royal-200:    #c5cde8;
  --royal-100:    #e6eaf6;
  --royal-50:     #f2f4fb;

  --gold:         #c8a63d;
  --gold-light:   #dbbf5c;
  --gold-dark:    #a88a28;
  --gold-bg:      rgba(200,166,61,.10);
  --gold-bg-str:  rgba(200,166,61,.18);

  --white:        #ffffff;
  --gray-50:      #f7f8fc;
  --gray-100:     #eef0f8;
  --gray-200:     #dde2ef;
  --gray-300:     #c4cbdf;
  --gray-400:     #9aa3c2;
  --gray-500:     #6b7599;
  --anthracite:   #1b1d2e;
  --text:         #1e2132;
  --text-muted:   #5c6480;

  /* Typografie */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-head:    'Montserrat', 'Inter', sans-serif;

  /* Fluid-Typskala (clamp) */
  --t-xs:   clamp(.75rem,  .70rem + .25vw, .875rem);
  --t-sm:   clamp(.875rem, .82rem + .28vw, 1rem);
  --t-base: clamp(1rem,    .94rem + .30vw, 1.125rem);
  --t-lg:   clamp(1.125rem,1.02rem + .52vw, 1.375rem);
  --t-xl:   clamp(1.25rem, 1.10rem + .75vw, 1.625rem);
  --t-2xl:  clamp(1.5rem,  1.30rem + 1.00vw,2rem);
  --t-3xl:  clamp(1.875rem,1.55rem + 1.62vw,2.75rem);
  --t-4xl:  clamp(2.25rem, 1.80rem + 2.25vw,3.5rem);

  /* Abstände */
  --s1:.25rem; --s2:.5rem;  --s3:.75rem; --s4:1rem;
  --s5:1.25rem;--s6:1.5rem; --s8:2rem;   --s10:2.5rem;
  --s12:3rem;  --s16:4rem;  --s20:5rem;  --s24:6rem;

  /* Layout */
  --max-w:     1280px;
  --px:        clamp(1rem, 4vw, 2rem);
  --header-h:  80px;

  /* Schatten */
  --sh-xs: 0 1px  4px rgba(26,43,109,.05);
  --sh-sm: 0 2px  8px rgba(26,43,109,.07);
  --sh-md: 0 4px 24px rgba(26,43,109,.10);
  --sh-lg: 0 8px 40px rgba(26,43,109,.14);
  --sh-xl: 0 16px 60px rgba(26,43,109,.18);
  --sh-gold:0 4px 20px rgba(200,166,61,.28);

  /* Radien */
  --r-xs:  .25rem;
  --r-sm:  .375rem;
  --r-md:  .75rem;
  --r-lg:  1.25rem;
  --r-xl:  2rem;
  --r-f:   9999px;

  /* Übergänge */
  --tr-f:  150ms cubic-bezier(.4,0,.2,1);
  --tr:    300ms cubic-bezier(.4,0,.2,1);
  --tr-s:  500ms cubic-bezier(.4,0,.2,1);

  /* Z-Ebenen */
  --z-drop:   100;
  --z-sticky: 200;
  --z-modal:  400;
}


/* ──────────────────────────────────────────────────────────
   2. RESET & BASISSTILE
────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg        { display: block; max-width: 100%; }
a               { color: inherit; text-decoration: none; }
ul, ol          { list-style: none; }
button          { cursor: pointer; border: none; background: none; font-family: inherit; }
input,textarea,
select          { font-family: inherit; font-size: inherit; }
address         { font-style: normal; }


/* ──────────────────────────────────────────────────────────
   3. TYPOGRAFIE
────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--anthracite);
}
h1 { font-size: var(--t-4xl); letter-spacing: -.03em; }
h2 { font-size: var(--t-3xl); letter-spacing: -.02em; }
h3 { font-size: var(--t-2xl); }
h4 { font-size: var(--t-xl);  }
h5 { font-size: var(--t-lg);  }
h6 { font-size: var(--t-base); font-weight: 600; }

p           { color: var(--text-muted); line-height: 1.8; }
strong      { font-weight: 600; color: var(--text); }
small       { font-size: var(--t-xs); }

/* Check-Liste (wiederverwendbar) */
.list-check { display: flex; flex-direction: column; gap: var(--s3); }
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.6;
}
.list-check li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: var(--r-f);
  background: var(--gold-bg);
  border: 1.5px solid var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a63d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}


/* ──────────────────────────────────────────────────────────
   4. LAYOUT-HELFER
────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.section    { padding-block: var(--s24); }
.section--sm{ padding-block: var(--s16); }
.section--lg{ padding-block: calc(var(--s24) + var(--s8)); }

.bg-gray    { background: var(--gray-50); }
.bg-royal   { background: var(--royal); }
.text-center{ text-align: center; }
.text-royal { color: var(--royal); }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s8); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s8); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s8); }

@media (max-width:1024px){ .grid-4 { grid-template-columns:repeat(2,1fr); } }
@media (max-width:768px) { .grid-3 { grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; }
}


/* ──────────────────────────────────────────────────────────
   5. SECTION-HEADER
────────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--s16); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--r-f);
  flex-shrink: 0;
}

.section-title { margin-bottom: var(--s4); }
.section-title .hl {
  color: var(--royal);
  position: relative;
  display: inline;
}
.section-title .hl::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--r-f);
}

.section-sub {
  font-size: var(--t-lg);
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
}


/* ──────────────────────────────────────────────────────────
   6. BUTTONS
────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: .875rem 2rem;
  font-size: var(--t-sm);
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .02em;
  border-radius: var(--r-sm);
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), border-color var(--tr-f), color var(--tr-f);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.btn:active { transform: scale(.97) !important; }
.btn--lg   { padding: 1.125rem 2.5rem; font-size: var(--t-base); }
.btn--sm   { padding: .6rem 1.25rem; font-size: var(--t-xs); }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: linear-gradient(135deg, var(--royal-mid), var(--royal));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,43,109,.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,43,109,.38);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--anthracite);
  box-shadow: var(--sh-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,166,61,.40);
}

.btn--outline {
  border-color: var(--royal);
  color: var(--royal);
  background: transparent;
}
.btn--outline:hover { background: var(--royal); color: var(--white); }

.btn--outline-gold {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn--outline-gold:hover { background: var(--gold); color: var(--anthracite); }

.btn--outline-white {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  background: transparent;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
}

.btn--ghost {
  color: var(--royal);
  background: transparent;
  padding-inline: var(--s4);
}
.btn--ghost:hover { background: var(--royal-100); }

/* Icon-Button */
.btn svg { flex-shrink: 0; transition: transform var(--tr-f); }
.btn:hover svg { transform: translateX(3px); }
.btn:has(.icon-left) svg { transform: none !important; }


/* ──────────────────────────────────────────────────────────
   7. BADGE / TAG
────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: .25rem .875rem;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--r-f);
}
.badge--royal { background: var(--royal-100); color: var(--royal); }
.badge--gold  { background: var(--gold-bg);   color: var(--gold-dark); }
.badge--green { background: #e6f6ec; color: #1a7a3c; }


/* ──────────────────────────────────────────────────────────
   8. CARDS (allgemein)
────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--royal-100), var(--gold-bg));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s6);
  color: var(--royal);
  transition: background var(--tr);
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { background: linear-gradient(135deg, var(--royal), var(--royal-mid)); color: var(--white); }

.card__title {
  font-size: var(--t-xl);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: var(--s3);
}
.card__text { color: var(--text-muted); line-height: 1.75; font-size: var(--t-sm); }


/* ──────────────────────────────────────────────────────────
   9. SERVICE-CARDS (index + leistungen)
────────────────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-100);
  display: flex;
  gap: var(--s6);
  align-items: flex-start;
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--royal), var(--gold));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--tr);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }
.service-card:hover::after { transform: scaleY(1); }

.service-card__icon {
  flex-shrink: 0;
  width: 68px; height: 68px;
  background: var(--royal-100);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--royal);
  transition: background var(--tr), color var(--tr);
}
.service-card__icon--gold { background: var(--gold-bg); color: var(--gold-dark); }
.service-card:hover .service-card__icon { background: var(--royal); color: var(--white); }
.service-card:hover .service-card__icon--gold { background: var(--gold); color: var(--anthracite); }

.service-card__content { flex: 1; min-width: 0; }
.service-card__title {
  font-size: var(--t-xl);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--anthracite);
  margin: var(--s2) 0 var(--s3);
}
.service-card__text  { color: var(--text-muted); line-height: 1.75; margin-bottom: var(--s4); font-size: var(--t-sm); }
.service-card__link  {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: var(--t-sm); font-weight: 700; color: var(--royal);
  transition: gap var(--tr-f), color var(--tr-f);
}
.service-card__link:hover { gap: var(--s3); color: var(--gold-dark); }

@media (max-width:640px) {
  .service-card { flex-direction: column; }
  .service-card__icon { width: 56px; height: 56px; }
}

/* ─ Detail-Karte (leistungen.html) */
.service-detail {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-100);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.service-detail__image {
  background: linear-gradient(135deg, var(--royal-dark), var(--royal-mid));
  display: flex; align-items: center; justify-content: center;
  padding: var(--s16);
  color: rgba(255,255,255,.15);
  min-height: 320px;
}
.service-detail__body { padding: var(--s10) var(--s12); }
.service-detail__icon {
  width: 64px; height: 64px;
  background: var(--royal-100);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--royal);
  margin-bottom: var(--s5);
}
.service-detail__title {
  font-size: var(--t-2xl);
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--anthracite);
  margin-bottom: var(--s4);
}
.service-detail__text  { color: var(--text-muted); line-height: 1.8; margin-bottom: var(--s6); font-size: var(--t-sm); }
.service-detail__list  { margin-bottom: var(--s8); }

@media (max-width:900px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail__image { min-height: 200px; padding: var(--s10); }
}


/* ──────────────────────────────────────────────────────────
   10. TESTIMONIAL-KARTEN
────────────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-100);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--s2); left: var(--s5);
  font-size: 5rem; line-height: 1;
  color: var(--royal-100);
  font-family: Georgia, serif; font-weight: 700;
  pointer-events: none;
}
.testimonial-card__stars {
  color: var(--gold); font-size: var(--t-sm);
  margin-bottom: var(--s2); letter-spacing: .05em;
}
.testimonial-card__text {
  font-size: var(--t-sm); color: var(--text-muted);
  line-height: 1.8; margin-bottom: var(--s6);
  padding-top: var(--s8); flex: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: var(--s3); }
.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: var(--r-f);
  background: linear-gradient(135deg, var(--royal-100), var(--royal-200));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800;
  font-size: var(--t-xs); color: var(--royal); flex-shrink: 0;
}
.testimonial-card__name    { font-weight: 700; font-size: var(--t-sm); color: var(--anthracite); }
.testimonial-card__company { font-size: var(--t-xs); color: var(--text-muted); }


/* ──────────────────────────────────────────────────────────
   11. TEAM-KARTEN (ueber-uns.html)
────────────────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: transform var(--tr), box-shadow var(--tr);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }

.team-card__photo {
  height: 220px;
  background: linear-gradient(135deg, var(--royal-100), var(--royal-200));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo-placeholder {
  width: 88px; height: 88px;
  border-radius: var(--r-f);
  background: var(--royal-200);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800;
  font-size: var(--t-2xl); color: var(--royal);
}
.team-card__body   { padding: var(--s6) var(--s6) var(--s8); }
.team-card__name   { font-size: var(--t-lg); font-family: var(--font-head); font-weight: 800; color: var(--anthracite); margin-bottom: var(--s1); }
.team-card__role   { font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dark); margin-bottom: var(--s4); }
.team-card__bio    { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.7; }


/* ──────────────────────────────────────────────────────────
   12. WERTE-KARTEN (ueber-uns.html)
────────────────────────────────────────────────────────── */
.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s8);
  border: 1.5px solid var(--gray-200);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh-gold);
  transform: translateY(-3px);
}
.value-card__num {
  font-size: var(--t-4xl);
  font-family: var(--font-head);
  font-weight: 900;
  background: linear-gradient(135deg, var(--royal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--s3);
}
.value-card__title { font-size: var(--t-lg); font-family: var(--font-head); font-weight: 700; color: var(--anthracite); margin-bottom: var(--s3); }
.value-card__text  { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.75; }


/* ──────────────────────────────────────────────────────────
   13. JOB-KARTEN (karriere.html)
────────────────────────────────────────────────────────── */
.job-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: var(--s6);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.job-card:hover {
  border-color: var(--royal-light);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.job-card__icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  background: var(--royal-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--royal);
}
.job-card__body   { flex: 1; }
.job-card__title  { font-size: var(--t-lg); font-family: var(--font-head); font-weight: 700; color: var(--anthracite); margin-bottom: var(--s2); }
.job-card__meta   { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s3); }
.job-card__tag    {
  display: inline-flex; align-items: center; gap: var(--s1);
  padding: .2rem .7rem;
  font-size: var(--t-xs); font-weight: 600;
  background: var(--gray-50); color: var(--text-muted);
  border-radius: var(--r-f); border: 1px solid var(--gray-200);
}
.job-card__text   { font-size: var(--t-sm); color: var(--text-muted); }
.job-card__cta    { flex-shrink: 0; }

@media (max-width:640px) {
  .job-card { flex-direction: column; align-items: flex-start; }
  .job-card__cta { width: 100%; }
  .job-card__cta .btn { width: 100%; justify-content: center; }
}

/* Benefit-Karte (karriere.html) */
.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s8);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  transition: transform var(--tr), box-shadow var(--tr);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.benefit-card__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  margin-top: 2px;
}
.benefit-card__title { font-size: var(--t-base); font-family: var(--font-head); font-weight: 700; color: var(--anthracite); margin-bottom: var(--s1); }
.benefit-card__text  { font-size: var(--t-sm); color: var(--text-muted); }

/* File-Upload (karriere.html) */
.file-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--r-md);
  padding: var(--s10) var(--s8);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--tr), background var(--tr);
  position: relative;
}
.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--royal);
  background: var(--royal-50);
}
.file-upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}
.file-upload-area__icon { color: var(--gray-400); margin: 0 auto var(--s3); }
.file-upload-area__text { font-size: var(--t-sm); font-weight: 600; color: var(--text-muted); }
.file-upload-area__hint { font-size: var(--t-xs); color: var(--gray-400); margin-top: var(--s1); }
.file-upload-area__name { font-size: var(--t-sm); color: var(--royal); font-weight: 600; margin-top: var(--s2); display: none; }


/* ──────────────────────────────────────────────────────────
   14. FORMULAR-ELEMENTE (global)
────────────────────────────────────────────────────────── */
.form-group { margin-bottom: var(--s6); }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
@media (max-width:640px){ .form-row { grid-template-columns: 1fr; } }

.form-label {
  display: block;
  font-size: var(--t-sm); font-weight: 600;
  color: var(--anthracite); margin-bottom: var(--s2);
}
.form-label .req { color: var(--gold-dark); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .875rem 1.125rem;
  font-size: var(--t-sm); color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: border-color var(--tr-f), box-shadow var(--tr-f);
  outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(26,43,109,.08);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.08);
}
.form-error { font-size: var(--t-xs); color: #c53030; margin-top: var(--s1); display: none; }
.form-error.visible { display: block; }

.form-textarea    { resize: vertical; min-height: 130px; }
.form-help        { font-size: var(--t-xs); color: var(--gray-500); margin-top: var(--s1); }

/* Select arrow */
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 6px;
  background: var(--gray-400);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

/* Checkbox */
.form-check { display: flex; align-items: flex-start; gap: var(--s3); }
.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--royal);
  cursor: pointer;
}
.form-check label { font-size: var(--t-sm); color: var(--text-muted); cursor: pointer; }
.form-check label a { color: var(--royal); text-decoration: underline; }


/* ──────────────────────────────────────────────────────────
   15. HEADER / NAVIGATION
────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--sh-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--s8);
}

.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.header__logo img,
.header__logo svg { height: 52px; width: auto; }

/* Desktop-Nav */
.nav { display: flex; align-items: center; gap: var(--s1); }

.nav__link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: var(--s2) var(--s4);
  font-size: var(--t-sm); font-weight: 600;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: color var(--tr-f), background var(--tr-f);
}
.nav__link:hover,
.nav__link.active { color: var(--royal); background: var(--royal-100); }
.nav__link svg { opacity: .6; transition: transform var(--tr-f); }

/* Dropdown */
.nav__item--dd { position: relative; }
.nav__item--dd:hover .nav__link svg,
.nav__item--dd:focus-within .nav__link svg { transform: rotate(180deg); opacity: 1; }

.nav__dd {
  position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-200);
  padding: var(--s2);
  min-width: 230px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
  z-index: var(--z-drop);
}
.nav__item--dd:hover .nav__dd,
.nav__item--dd:focus-within .nav__dd {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dd-link {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s3) var(--s4);
  font-size: var(--t-sm); font-weight: 500; color: var(--text);
  border-radius: var(--r-sm);
  transition: color var(--tr-f), background var(--tr-f);
}
.nav__dd-link:hover { color: var(--royal); background: var(--gray-50); }
.nav__dd-link svg   { color: var(--gold); flex-shrink: 0; opacity: .85; }

.header__cta { flex-shrink: 0; }

/* Mobile-Toggle */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--s2); border-radius: var(--r-sm);
  transition: background var(--tr-f);
}
.nav__toggle:hover { background: var(--gray-100); }
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--anthracite); border-radius: var(--r-f);
  transition: transform var(--tr), opacity var(--tr);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.9px,4.9px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.9px,-4.9px); }

/* Mobile-Nav-Panel */
.nav__mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: var(--s4) var(--px) var(--s6);
  box-shadow: var(--sh-lg);
  animation: slideDown .25s ease;
}
.nav__mobile.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s3) var(--s2);
  font-size: var(--t-base); font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--tr-f), padding-left var(--tr-f);
}
.nav__mobile-link:hover { color: var(--royal); padding-left: var(--s4); }
.nav__mobile-cta { margin-top: var(--s5); width: 100%; justify-content: center; }

@media (max-width:1024px) {
  .nav, .header__cta { display: none; }
  .nav__toggle { display: flex; }
}


/* ──────────────────────────────────────────────────────────
   16. HERO-SECTION (index.html)
────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(140deg, var(--royal-dark) 0%, var(--royal) 55%, var(--royal-mid) 100%);
  position: relative; overflow: hidden;
  padding-top: var(--header-h);
}
/* Grid-Muster */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Gold-Glow */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 68% 50%, rgba(200,166,61,.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
  width: 100%; max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: var(--s20);
  position: relative; z-index: 1;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--s3);
  font-size: var(--t-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold); margin-bottom: var(--s5);
}
.hero__eyebrow::before {
  content: ''; display: block; width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--r-f); flex-shrink: 0;
}

.hero__title {
  font-size: var(--t-4xl); font-family: var(--font-head); font-weight: 800;
  color: var(--white); line-height: 1.08;
  margin-bottom: var(--s6); letter-spacing: -.025em;
}
.hero__title .tg {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: var(--t-lg); color: rgba(255,255,255,.80);
  line-height: 1.8; margin-bottom: var(--s10); max-width: 520px;
}

.hero__ctas { display: flex; gap: var(--s4); flex-wrap: wrap; }

.hero__trust { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s10); }
.hero__trust-item {
  display: flex; align-items: center; gap: var(--s3);
  font-size: var(--t-sm); font-weight: 500;
  color: rgba(255,255,255,.82);
}
.hero__trust-icon { flex-shrink: 0; color: var(--gold); }

/* Visual rechts */
.hero__visual { position: relative; }
.hero__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
}
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--s3); color: rgba(255,255,255,.38);
  font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .08em;
}

/* Schwebende Badges */
.hero__badge {
  position: absolute;
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--s3) var(--s5); box-shadow: var(--sh-xl);
  display: flex; align-items: center; gap: var(--s3);
  z-index: 2; animation: float-badge 4s ease-in-out infinite;
}
.hero__badge:nth-child(2) { bottom: -18px; left: -22px; }
.hero__badge:nth-child(3) { bottom: 26px; right: -22px; animation-delay: 2s; }

@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

.hero__badge-icon {
  width: 42px; height: 42px;
  background: var(--royal-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--royal); flex-shrink: 0;
}
.hero__badge-icon--gold { background: var(--gold-bg); color: var(--gold-dark); }
.hero__badge-lbl { font-size: .62rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; }
.hero__badge-val { font-size: var(--t-base); font-family: var(--font-head); font-weight: 800; color: var(--anthracite); line-height: 1.1; }

/* Scroll-Pfeil */
.hero__scroll {
  position: absolute; bottom: var(--s8); left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.hero__scroll-dot {
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,.28); border-radius: var(--r-f);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  animation: bounce-y 2.2s ease-in-out infinite;
}
@keyframes bounce-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

@media (max-width:1024px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; padding-block: var(--s16); }
  .hero__sub       { margin-inline: auto; }
  .hero__ctas      { justify-content: center; }
  .hero__trust     { align-items: center; }
  .hero__visual    { order: -1; }
  .hero__img-wrap  { max-height: 220px; }
}


/* ──────────────────────────────────────────────────────────
   17. ZERTIFIZIERUNGSLEISTE
────────────────────────────────────────────────────────── */
.cert-bar {
  background: var(--royal-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding-block: var(--s5);
}
.cert-bar__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem);
}
.cert-bar__item {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--t-sm); font-weight: 700;
  color: var(--royal); opacity: .72;
  transition: opacity var(--tr-f);
}
.cert-bar__item:hover { opacity: 1; }
.cert-bar__item svg   { color: var(--gold); }


/* ──────────────────────────────────────────────────────────
   18. COUNTER-SEKTION
────────────────────────────────────────────────────────── */
.counters {
  background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 100%);
  padding-block: var(--s20); position: relative; overflow: hidden;
}
.counters::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,166,61,.07) 0%, transparent 65%);
  pointer-events: none;
}
.counters__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: var(--s8); text-align: center; position: relative; z-index: 1;
}
.counter__number {
  font-size: var(--t-4xl); font-family: var(--font-head); font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: var(--s2);
}
.counter__suffix { color: var(--gold); }
.counter__bar    { width: 32px; height: 2px; background: var(--gold); border-radius: var(--r-f); margin: var(--s3) auto; }
.counter__label  { font-size: var(--t-xs); color: rgba(255,255,255,.68); font-weight: 600; text-transform: uppercase; letter-spacing: .09em; }

@media (max-width:768px) { .counters__grid { grid-template-columns: repeat(2,1fr); gap: var(--s10); } }


/* ──────────────────────────────────────────────────────────
   19. PROZESS-SEKTION
────────────────────────────────────────────────────────── */
.process__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: var(--s8); counter-reset: step;
}
.process__item { position: relative; text-align: center; counter-increment: step; }
.process__item:not(:last-child)::after {
  content: '';
  position: absolute; top: 32px;
  left: calc(50% + 38px); right: calc(-50% + 38px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gray-200));
}
.process__icon {
  width: 64px; height: 64px; border-radius: var(--r-f);
  background: linear-gradient(135deg, var(--royal), var(--royal-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s5); color: var(--white);
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(26,43,109,.25);
  transition: transform var(--tr), box-shadow var(--tr);
}
.process__item:hover .process__icon { transform: scale(1.08); box-shadow: 0 8px 24px rgba(26,43,109,.35); }
.process__icon::before {
  content: counter(step);
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; background: var(--gold);
  border-radius: var(--r-f); font-size: .65rem; font-weight: 800;
  font-family: var(--font-head); color: var(--anthracite);
  display: flex; align-items: center; justify-content: center;
}
.process__title { font-size: var(--t-base); font-family: var(--font-head); font-weight: 700; color: var(--anthracite); margin-bottom: var(--s2); }
.process__text  { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.7; }

@media (max-width:768px) { .process__grid { grid-template-columns: repeat(2,1fr); } .process__item::after { display:none; } }
@media (max-width:480px) { .process__grid { grid-template-columns: 1fr; } }


/* ──────────────────────────────────────────────────────────
   20. PAGE-HERO (Unterseiten-Hero)
────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--royal-dark) 0%, var(--royal) 100%);
  padding-top: calc(var(--header-h) + var(--s16));
  padding-bottom: var(--s16);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.page-hero__inner  { position: relative; z-index: 1; max-width: 760px; }
.page-hero__title  {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--s5);
}
.page-hero__sub {
  font-size: var(--t-base);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: var(--s8);
  max-width: 620px;
}
.page-hero__links { display: flex; gap: var(--s4); flex-wrap: wrap; }

/* Impressum / Datenschutz: einfache Sektion unter Header */
.section:first-of-type { padding-top: calc(var(--header-h) + var(--s12)); }

/* ──────────────────────────────────────────────────────────
   20b. PAGE-BANNER (Unterseiten)
────────────────────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(140deg, var(--royal-dark) 0%, var(--royal) 100%);
  padding-top: calc(var(--header-h) + var(--s16));
  padding-bottom: var(--s16);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px; pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,166,61,.07) 0%, transparent 55%);
  pointer-events: none;
}
.page-banner__inner { position: relative; z-index: 1; }
.page-banner__eyebrow {
  font-size: var(--t-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--gold); margin-bottom: var(--s3);
}
.page-banner__title {
  font-size: var(--t-3xl); font-family: var(--font-head); font-weight: 800;
  color: var(--white); margin-bottom: var(--s4); letter-spacing: -.02em;
}
.page-banner__sub {
  font-size: var(--t-lg); color: rgba(255,255,255,.75);
  max-width: 620px; line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: var(--s2); margin-bottom: var(--s5); }
.breadcrumb__item { font-size: var(--t-xs); color: rgba(255,255,255,.50); }
.breadcrumb__item a { color: rgba(255,255,255,.62); transition: color var(--tr-f); }
.breadcrumb__item a:hover { color: var(--gold); }
.breadcrumb__sep  { color: rgba(255,255,255,.30); }


/* ──────────────────────────────────────────────────────────
   21. CTA-BANNER
────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-mid) 100%);
  padding-block: var(--s20); text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(200,166,61,.09) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__title {
  font-size: var(--t-3xl); font-family: var(--font-head); font-weight: 800;
  color: var(--white); margin-bottom: var(--s4); letter-spacing: -.02em;
}
.cta-banner__sub {
  font-size: var(--t-lg); color: rgba(255,255,255,.78);
  max-width: 560px; margin-inline: auto; margin-bottom: var(--s10);
}
.cta-banner__btns { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; }


/* ──────────────────────────────────────────────────────────
   22. KONTAKT-LAYOUT
────────────────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s16); align-items: start;
}
@media (max-width:1024px) { .contact-split { grid-template-columns: 1fr; } }

.contact-info  { padding: var(--s10); background: var(--gray-50); border-radius: var(--r-xl); border: 1px solid var(--gray-200); }
.contact-form  { padding: var(--s10); background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-lg); border: 1px solid var(--gray-100); }

.contact-item  { display: flex; align-items: flex-start; gap: var(--s4); margin-bottom: var(--s6); }
.contact-item:last-child { margin-bottom: 0; }
.contact-item__icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--royal-100); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--royal); margin-top: 2px;
}
.contact-item__label { font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: var(--s1); }
.contact-item__value { font-size: var(--t-sm); color: var(--text); font-weight: 500; line-height: 1.6; }
.contact-item__value a { color: var(--royal); transition: color var(--tr-f); }
.contact-item__value a:hover { color: var(--gold-dark); }

/* Map-Placeholder */
.map-placeholder {
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--royal-100), var(--royal-50));
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
  margin-top: var(--s6); color: var(--text-muted);
  flex-direction: column; gap: var(--s3);
  font-size: var(--t-sm); font-weight: 500;
}
.map-placeholder svg { color: var(--royal); opacity: .4; }

/* Multi-Step-Form */
.step-form__header { margin-bottom: var(--s8); }
.step-form__title  { font-size: var(--t-2xl); font-family: var(--font-head); font-weight: 800; color: var(--anthracite); margin-bottom: var(--s2); }
.step-form__desc   { font-size: var(--t-sm); color: var(--text-muted); }

/* Progress */
.progress-bar { display: flex; align-items: center; gap: 0; margin-bottom: var(--s10); }
.progress-step { display: flex; align-items: center; flex: 1; }
.progress-step:last-child { flex: 0; }

.progress-num {
  width: 36px; height: 36px;
  border-radius: var(--r-f);
  background: var(--gray-200); color: var(--gray-500);
  font-weight: 800; font-family: var(--font-head); font-size: var(--t-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  transition: background var(--tr), color var(--tr), box-shadow var(--tr);
}
.progress-step.active .progress-num { background: var(--royal); color: var(--white); box-shadow: 0 0 0 4px var(--royal-100); }
.progress-step.done .progress-num   { background: var(--gold); color: var(--anthracite); }
.progress-step.done .progress-num::after {
  content: '✓';
  position: absolute; font-size: .75rem;
}

.progress-lbl {
  font-size: var(--t-xs); font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em;
  margin-left: var(--s3); white-space: nowrap;
}
.progress-step.active .progress-lbl { color: var(--royal); }

.progress-line {
  flex: 1; height: 2px; background: var(--gray-200);
  margin-inline: var(--s3);
  transition: background var(--tr);
}
.progress-line.done { background: var(--gold); }

.step-panel        { display: none; }
.step-panel.active { display: block; animation: fadeInPanel .3s ease; }
@keyframes fadeInPanel { from { opacity:0; transform: translateX(12px); } to { opacity:1; transform: translateX(0); } }

.step-nav { display: flex; align-items: center; justify-content: space-between; margin-top: var(--s8); gap: var(--s4); }

/* Option-Karten (Step 1) */
.option-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s3); }
.option-card label {
  display: flex; align-items: center; gap: var(--s4);
  padding: var(--s4) var(--s5);
  border: 2px solid var(--gray-200); border-radius: var(--r-md);
  cursor: pointer;
  font-size: var(--t-sm); font-weight: 600; color: var(--text);
  background: var(--white);
  transition: border-color var(--tr-f), background var(--tr-f), color var(--tr-f);
}
.option-card label svg { color: var(--gray-300); flex-shrink: 0; transition: color var(--tr-f); }
.option-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.option-card input:checked + label { border-color: var(--royal); background: var(--royal-50); color: var(--royal); }
.option-card input:checked + label svg { color: var(--royal); }
.option-card label:hover { border-color: var(--royal-light); }
@media (max-width:500px) { .option-grid { grid-template-columns: 1fr; } }

/* Range-Slider */
.range-wrap { position: relative; }
.range-display {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--royal-100); color: var(--royal);
  padding: .3rem .8rem; border-radius: var(--r-f);
  font-size: var(--t-sm); font-weight: 800; font-family: var(--font-head);
  margin-bottom: var(--s4);
}

input[type="range"] {
  width: 100%; height: 6px;
  border-radius: var(--r-f);
  background: var(--gray-200);
  outline: none; -webkit-appearance: none; appearance: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: var(--r-f);
  background: var(--royal); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--royal); cursor: pointer;
  transition: transform var(--tr-f);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: var(--r-f);
  background: var(--royal); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--royal); cursor: pointer;
}


/* ──────────────────────────────────────────────────────────
   23. ACCORDION
────────────────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: var(--s4); }
.accordion__item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--gray-200); overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.accordion__item.open { border-color: var(--royal-light); box-shadow: var(--sh-sm); }

.accordion__trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: var(--s4);
  padding: var(--s6) var(--s8);
  background: none; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-size: var(--t-base);
  font-weight: 700; color: var(--anthracite);
  transition: color var(--tr-f);
}
.accordion__trigger:hover { color: var(--royal); }
.accordion__chevron {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: var(--r-f); background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--royal);
  transition: transform var(--tr), background var(--tr), color var(--tr);
}
.accordion__item.open .accordion__chevron {
  transform: rotate(180deg);
  background: var(--royal); color: var(--white);
}
.accordion__body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 var(--s8);
}
.accordion__item.open .accordion__body { max-height: 800px; padding: 0 var(--s8) var(--s6); }
.accordion__body p   { margin-bottom: var(--s3); font-size: var(--t-sm); }
.accordion__body ul  { padding-left: var(--s6); }
.accordion__body li  { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.9; }


/* ──────────────────────────────────────────────────────────
   24. FOOTER
────────────────────────────────────────────────────────── */
.footer {
  background: var(--royal-dark); color: var(--white);
  padding-top: var(--s20); padding-bottom: var(--s8);
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: var(--s12); margin-bottom: var(--s16);
}
.footer__logo  { height: 52px; width: auto; margin-bottom: var(--s5); }
.footer__stmt  { color: rgba(255,255,255,.65); font-size: var(--t-sm); line-height: 1.8; }

.footer__col-title {
  font-family: var(--font-head); font-size: var(--t-xs); font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold); margin-bottom: var(--s6);
}
.footer__link {
  display: block; padding: .25rem 0;
  font-size: var(--t-sm); color: rgba(255,255,255,.65);
  transition: color var(--tr-f), padding-left var(--tr-f);
}
.footer__link:hover { color: var(--gold-light); padding-left: var(--s2); }

.footer__contact-item { display: flex; align-items: flex-start; gap: var(--s3); margin-bottom: var(--s4); }
.footer__ci-icon { flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; color: var(--gold); }
.footer__contact-item a { color: rgba(255,255,255,.65); transition: color var(--tr-f); font-size: var(--t-sm); }
.footer__contact-item a:hover { color: var(--gold-light); }
.footer__contact-item div { font-size: var(--t-sm); color: rgba(255,255,255,.65); line-height: 1.6; }

.footer__badges { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s6); }
.footer__badge  {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: .3rem .7rem;
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-sm);
  font-size: var(--t-xs); font-weight: 600;
  color: rgba(255,255,255,.62); letter-spacing: .04em;
  transition: border-color var(--tr-f), color var(--tr-f);
}
.footer__badge:hover { border-color: rgba(200,166,61,.5); color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: var(--s6);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s4);
}
.footer__copy         { font-size: var(--t-xs); color: rgba(255,255,255,.42); }
.footer__legal-links  { display: flex; gap: var(--s6); }
.footer__legal-link   {
  font-size: var(--t-xs); color: rgba(255,255,255,.42);
  transition: color var(--tr-f);
}
.footer__legal-link:hover { color: var(--gold-light); }

@media (max-width:1024px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s10); } }
@media (max-width:640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}


/* ──────────────────────────────────────────────────────────
   25. IMPRESSUM / DATENSCHUTZ – Prose-Layout
────────────────────────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin-inline: auto;
}
.legal-content h2  { font-size: var(--t-xl); margin: var(--s10) 0 var(--s3); padding-top: var(--s6); border-top: 1px solid var(--gray-200); }
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3  { font-size: var(--t-base); font-weight: 700; color: var(--royal); margin: var(--s6) 0 var(--s2); }
.legal-content p   { margin-bottom: var(--s4); }
.legal-content ul  { padding-left: var(--s6); list-style: disc; margin-bottom: var(--s4); }
.legal-content li  { font-size: var(--t-sm); color: var(--text-muted); margin-bottom: var(--s2); line-height: 1.7; }
.legal-content a   { color: var(--royal); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-dark); }


/* ──────────────────────────────────────────────────────────
   26. SCROLL-REVEAL ANIMATION
────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .40s; }
.reveal-delay-5 { transition-delay: .50s; }


/* ──────────────────────────────────────────────────────────
   27. BARRIEREFREIHEIT & GLOBALE UTILS
────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
::selection { background: rgba(26,43,109,.14); color: var(--royal-dark); }
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--royal-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--royal); }


/* ──────────────────────────────────────────────────────────
   28. SUCCESS / ERROR STATES
────────────────────────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: var(--s16) var(--s8);
}
.form-success__icon {
  width: 72px; height: 72px;
  background: #e6f6ec; border-radius: var(--r-f);
  display: flex; align-items: center; justify-content: center;
  color: #1a7a3c; margin: 0 auto var(--s5);
}
.form-success__title { font-size: var(--t-2xl); font-family: var(--font-head); font-weight: 800; color: var(--anthracite); margin-bottom: var(--s3); }
.form-success__text  { color: var(--text-muted); font-size: var(--t-sm); }


/* ──────────────────────────────────────────────────────────
   29. PRINT
────────────────────────────────────────────────────────── */
@media print {
  .header,.footer,.hero__scroll,.cta-banner,.cert-bar { display: none !important; }
  body { font-size: 11pt; }
  h1,h2,h3,h4 { color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
}
