/* ==========================================================================
   Kompetenz Kompanie – Design System
   Basierend auf KomKom-Branding-Styleguide.html
   ========================================================================== */

:root {
  --orange: #E47A3D;
  --orange-light: #F3C09D;
  --cream: #FFF6F0;
  --peach: #FFEDE2;
  --gray-text: #70706F;
  --gray-dark: #363636;
  --gray-light: #DDDEDF;
  --gray-logo: #B2B2B2;
  --offwhite: #FDFDFD;
  --white: #FFFFFF;
  --black: #000000;

  --font: "Roboto Condensed", Arial, sans-serif;

  /* Fluide Typo-Skala aus dem Styleguide */
  --fs-h1: clamp(2.7rem, 6vw, 4.23rem);
  --fs-h2: clamp(2.4rem, 5vw, 3.52rem);
  --fs-h3: clamp(2.14rem, 4vw, 2.94rem);
  --fs-h4: clamp(1.9rem, 3.2vw, 2.45rem);
  --fs-h5: clamp(1.69rem, 2.6vw, 2.04rem);
  --fs-h6: clamp(1.5rem, 2.2vw, 1.7rem);
  --fs-body: clamp(1.5rem, 2.2vw, 1.7rem);
  --fs-body-m: clamp(1.15rem, 1.6vw, 1.3rem);
  --fs-small: clamp(1.33rem, 1.8vw, 1.42rem);

  --radius-card: 14px;
  --radius-pill: 32.5px;
  --shadow-card: 0 2px 8px rgba(54, 54, 54, .05);
  --shadow-card-hover: 0 18px 50px -12px rgba(228, 122, 61, .25);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  color: var(--gray-text);
  background: var(--cream);
  line-height: 1.6;
  font-size: var(--fs-body-m);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }

h1, h2, h3, h4, h5, h6 { font-weight: 400; line-height: 1.15; color: var(--gray-dark); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); font-weight: 500; text-transform: uppercase; color: var(--orange); letter-spacing: .3px; }
h3 { font-size: var(--fs-h3); color: var(--gray-text); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

section { position: relative; padding: clamp(72px, 10vw, 130px) 0; }

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head p { margin-top: 16px; font-size: var(--fs-body-m); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* --------------------------------------------------------------------------
   Buttons (Pill, Styleguide)
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--offwhite);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .5px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 18px 44px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), color .3s;
  will-change: transform;
  text-align: center;
}
.btn .btn-label { position: relative; z-index: 2; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gray-dark);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .45s var(--ease-out);
  z-index: 1;
}
.btn:hover { box-shadow: 0 14px 34px -10px rgba(228, 122, 61, .55); transform: translateY(-2px); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(0) scale(.98); }

.btn--outline { background: transparent; color: var(--orange); box-shadow: inset 0 0 0 2px var(--orange); }
.btn--outline::after { background: var(--orange); }
.btn--outline:hover { color: var(--offwhite); }
.btn--light { background: var(--offwhite); color: var(--orange); }
.btn--light::after { background: var(--peach); }
.btn--light:hover { color: var(--gray-dark); }
.btn--sm { padding: 12px 28px; font-size: 1.02rem; }
.btn--lg { padding: 22px 56px; font-size: 1.3rem; }

.btn-arrow { display: inline-block; transition: transform .35s var(--ease-out); position: relative; z-index: 2; }
.btn:hover .btn-arrow { transform: translateX(6px); }

.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--orange); font-size: 1.05rem;
  letter-spacing: .4px;
}
.link-more .btn-arrow { font-size: 1.1em; }
.link-more:hover .btn-arrow { transform: translateX(6px); }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s, box-shadow .4s, transform .45s var(--ease-out), height .4s;
  background: transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 246, 240, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(221, 222, 223, .6);
  height: 68px;
}
.site-header.is-hidden { transform: translateY(-110%); }

.header-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 46px; width: auto; transition: height .4s; }
.site-header.is-scrolled .logo img { height: 38px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: 1.04rem;
  color: var(--gray-dark);
  padding: 10px 14px;
  border-radius: 22px;
  position: relative;
  transition: color .25s, background .25s;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--peach); color: var(--orange); }
.main-nav a.is-active { color: var(--orange); font-weight: 700; }
.main-nav .btn { margin-left: 10px; }

.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 48px; height: 48px;
  position: relative;
  z-index: 1102;
}
.burger span {
  display: block; width: 26px; height: 2px; background: var(--gray-dark);
  margin: 6px auto; transition: transform .4s var(--ease-out), opacity .3s, background .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 32px 48px;
  clip-path: circle(0% at calc(100% - 48px) 42px);
  transition: clip-path .65s var(--ease-out);
  pointer-events: none;
}
.mobile-nav.is-open { clip-path: circle(150% at calc(100% - 48px) 42px); pointer-events: auto; }
.mobile-nav a {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  color: var(--gray-dark);
  padding: 10px 0;
  font-weight: 500;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .4s, transform .5s var(--ease-out), color .25s;
}
.mobile-nav.is-open a { opacity: 1; transform: none; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 28px; align-self: flex-start; opacity: 0; transform: translateY(24px); transition: opacity .4s .2s, transform .5s .2s var(--ease-out); }
.mobile-nav.is-open .btn { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .burger { display: block; }
}

/* --------------------------------------------------------------------------
   Page-Hero (Unterseiten)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(56px, 9vw, 110px)) 0 clamp(56px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-hero .kicker { opacity: 0; }
.page-hero h1 { max-width: 900px; color: var(--gray-dark); }
.page-hero .lead { max-width: 720px; margin-top: 20px; font-size: var(--fs-body-m); }
.page-hero .hero-cta { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
  will-change: transform;
}
.blob--peach { background: var(--peach); }
.blob--orange { background: rgba(228, 122, 61, .25); }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
  padding: 30px 30px 34px;
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
  will-change: transform;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: var(--orange-light); }

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

.icon-bubble {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--peach);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--orange);
  transition: transform .45s var(--ease-out), background .3s;
}
.card:hover .icon-bubble { transform: scale(1.12) rotate(-6deg); background: var(--orange); color: var(--offwhite); }
.card h4, .card h5 { color: var(--gray-dark); margin-bottom: 10px; }
.card p { font-size: 1.06rem; }
.card .link-more { margin-top: 16px; }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  background: var(--offwhite);
  white-space: nowrap;
}
.marquee-track { display: inline-flex; will-change: transform; }
.marquee-track span {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 0 28px;
  letter-spacing: 1px;
}
.marquee-track span em { font-style: normal; color: var(--orange); }

/* --------------------------------------------------------------------------
   Werte (01/02/03)
   -------------------------------------------------------------------------- */
.value-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid var(--gray-light);
  align-items: start;
}
.value-row:last-child { border-bottom: 1px solid var(--gray-light); }
.value-num {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  color: var(--peach);
  -webkit-text-stroke: 1.5px var(--orange);
  line-height: 1;
}
.value-row h3 { text-transform: uppercase; color: var(--orange); font-weight: 500; margin-bottom: 12px; font-size: var(--fs-h4); }
.value-row .value-claim { font-size: var(--fs-h6); color: var(--gray-dark); margin-bottom: 12px; }
@media (max-width: 640px) { .value-row { grid-template-columns: 1fr; gap: 8px; } }

/* --------------------------------------------------------------------------
   Termine
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 38px;
}
.filter-chip {
  font-family: var(--font);
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s var(--ease-out);
}
.filter-chip:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.filter-chip.is-active { background: var(--orange); border-color: var(--orange); color: var(--offwhite); }

.termin-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
  margin-bottom: 16px;
  will-change: transform;
}
.termin-card:hover { transform: translateY(-4px) scale(1.005); box-shadow: var(--shadow-card-hover); border-color: var(--orange-light); }

.termin-date {
  text-align: center;
  background: var(--peach);
  border-radius: 12px;
  padding: 12px 8px;
  transition: background .3s;
}
.termin-card:hover .termin-date { background: var(--orange); }
.termin-card:hover .termin-date * { color: var(--offwhite) !important; }
.termin-date .day { font-size: 1.9rem; font-weight: 700; color: var(--orange); line-height: 1; transition: color .3s; }
.termin-date .month { font-size: .92rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-dark); font-weight: 700; transition: color .3s; }
.termin-date .year { font-size: .8rem; color: var(--gray-text); transition: color .3s; }

.termin-info h5 { margin-bottom: 6px; font-size: 1.35rem; color: var(--gray-dark); }
.termin-meta { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .98rem; color: var(--gray-text); }
.termin-meta span { display: inline-flex; align-items: center; gap: 6px; }
.termin-tag {
  display: inline-block;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--orange);
  background: var(--peach);
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.termin-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

.spots {
  font-size: .9rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gray-text);
}
.spots .dot { width: 9px; height: 9px; border-radius: 50%; background: #6fbf73; animation: pulse 2s infinite; }
.spots.is-low { color: var(--orange); }
.spots.is-low .dot { background: var(--orange); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111, 191, 115, .45); }
  50% { box-shadow: 0 0 0 6px rgba(111, 191, 115, 0); }
}

@media (max-width: 820px) {
  .termin-card { grid-template-columns: 78px 1fr; }
  .termin-cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.testimonial-card .quote-mark { font-size: 3rem; line-height: .6; color: var(--orange); font-weight: 700; }
.testimonial-card p { font-size: 1.05rem; flex: 1; }
.testimonial-card .author { font-weight: 700; color: var(--gray-dark); }
.testimonial-card .author small { display: block; font-weight: 400; color: var(--gray-text); }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  cursor: pointer;
  will-change: transform;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.team-photo {
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  background: var(--peach);
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
  will-change: transform;
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-body { padding: 22px 24px 26px; }
.team-body h5 { color: var(--gray-dark); margin-bottom: 2px; }
.team-role { color: var(--orange); font-weight: 700; text-transform: uppercase; font-size: .9rem; letter-spacing: 1px; margin-bottom: 12px; }
.team-quali { font-size: .95rem; font-style: italic; margin-bottom: 10px; }
.team-bio { font-size: 1rem; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .6s var(--ease-out), opacity .5s, margin .4s; }
.team-card.is-open .team-bio { max-height: 600px; opacity: 1; margin-top: 8px; }
.team-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--orange); font-weight: 700; font-family: var(--font); font-size: .95rem;
  padding: 6px 0; display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: .5px;
}
.team-toggle .chev { transition: transform .4s var(--ease-out); display: inline-block; }
.team-card.is-open .team-toggle .chev { transform: rotate(180deg); }

/* --------------------------------------------------------------------------
   Stats / Counter
   -------------------------------------------------------------------------- */
.stats-band { background: var(--gray-dark); color: var(--offwhite); }
.stats-band .stat h3 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
}
.stats-band .stat p { color: var(--gray-light); margin-top: 8px; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   CTA-Band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--orange);
  border-radius: 24px;
  padding: clamp(44px, 7vw, 80px) clamp(28px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--offwhite); margin-bottom: 14px; }
.cta-band p { color: var(--peach); max-width: 640px; margin: 0 auto 30px; font-size: var(--fs-body-m); }
.cta-band .cta-circles { position: absolute; inset: 0; pointer-events: none; }
.cta-band .cta-circles i {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255, 246, 240, .18);
  will-change: transform;
}

/* --------------------------------------------------------------------------
   Steps (Zertifizierung / Anmeldung)
   -------------------------------------------------------------------------- */
.steps-line { position: relative; }
.step-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 28px;
  padding: 26px 0;
  align-items: start;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  position: relative; z-index: 2;
  transition: background .35s, color .35s, transform .4s var(--ease-out);
}
.step-item:hover .step-num { background: var(--orange); color: var(--offwhite); transform: scale(1.08); }
.step-item h5 { color: var(--gray-dark); padding-top: 14px; }
.step-item p { font-size: 1.04rem; margin-top: 6px; }
.steps-line::before {
  content: "";
  position: absolute;
  left: 31px; top: 40px; bottom: 40px;
  width: 2px;
  background: var(--gray-light);
}

/* --------------------------------------------------------------------------
   Akkordeon (Module)
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--gray-light); }
.acc-item { border-bottom: 1px solid var(--gray-light); }
.acc-head {
  width: 100%;
  background: none; border: none; cursor: pointer;
  font-family: var(--font);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px;
  text-align: left;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--gray-dark);
  transition: color .25s, padding-left .35s var(--ease-out);
}
.acc-head:hover { color: var(--orange); padding-left: 12px; }
.acc-head .acc-icon {
  flex: 0 0 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1;
  transition: transform .45s var(--ease-out), background .3s, color .3s;
}
.acc-item.is-open .acc-icon { transform: rotate(45deg); background: var(--orange); color: var(--offwhite); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease-out); }
.acc-body-inner { padding: 0 4px 24px; font-size: 1.06rem; max-width: 820px; }

/* --------------------------------------------------------------------------
   Formulare / Anmeldung Wizard
   -------------------------------------------------------------------------- */
.field { margin-bottom: 20px; position: relative; }
.field label { display: block; font-size: .95rem; font-weight: 700; color: var(--gray-dark); margin-bottom: 7px; letter-spacing: .3px; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--gray-dark);
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  outline: none;
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(228, 122, 61, .14);
}
.field input.is-error, .field select.is-error { border-color: #d94f30; box-shadow: 0 0 0 4px rgba(217, 79, 48, .1); }
.field .err-msg { color: #d94f30; font-size: .85rem; margin-top: 5px; display: none; }
.field.show-error .err-msg { display: block; }

.check-row { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.check-row input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--orange); cursor: pointer; flex: 0 0 22px; }

.wizard { max-width: 820px; margin: 0 auto; }
.wizard-progress { display: flex; align-items: center; margin-bottom: 44px; }
.wp-step { display: flex; align-items: center; flex: 1; }
.wp-step:last-child { flex: 0; }
.wp-dot {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-light);
  color: var(--gray-text);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
  transition: all .4s var(--ease-out);
  position: relative;
}
.wp-label {
  position: absolute; top: 54px; left: 50%; transform: translateX(-50%);
  font-size: .8rem; font-weight: 700; letter-spacing: .4px;
  color: var(--gray-text); white-space: nowrap;
  transition: color .3s;
}
.wp-bar { flex: 1; height: 2px; background: var(--gray-light); margin: 0 8px; position: relative; overflow: hidden; }
.wp-bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.wp-step.is-done .wp-bar::after, .wp-step.is-active .wp-bar::after { transform: scaleX(1); }
.wp-step.is-active .wp-dot { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 0 6px rgba(228, 122, 61, .15); }
.wp-step.is-done .wp-dot { background: var(--orange); border-color: var(--orange); color: var(--offwhite); }
.wp-step.is-active .wp-label, .wp-step.is-done .wp-label { color: var(--orange); }
@media (max-width: 640px) { .wp-label { display: none; } }

.wizard-pane { display: none; }
.wizard-pane.is-active { display: block; animation: paneIn .55s var(--ease-out); }
@keyframes paneIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.wizard-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 36px; }

.summary-box { background: var(--peach); border-radius: var(--radius-card); padding: 26px 28px; margin-bottom: 24px; }
.summary-box h6 { color: var(--orange); text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; font-weight: 700; margin-bottom: 12px; }
.summary-box dl { display: grid; grid-template-columns: 160px 1fr; gap: 8px 16px; font-size: 1.02rem; }
.summary-box dt { color: var(--gray-text); }
.summary-box dd { color: var(--gray-dark); font-weight: 500; }
@media (max-width: 560px) { .summary-box dl { grid-template-columns: 1fr; gap: 2px; } .summary-box dt { margin-top: 8px; font-size: .88rem; } }

.select-cards .termin-card { cursor: pointer; border-width: 2px; }
.select-cards .termin-card.is-selected { border-color: var(--orange); background: var(--peach); }

/* Success */
.success-wrap { text-align: center; padding: 40px 0 10px; }
.success-check {
  width: 110px; height: 110px; margin: 0 auto 30px;
}
.success-check circle {
  fill: none; stroke: var(--orange); stroke-width: 3;
  stroke-dasharray: 320; stroke-dashoffset: 320;
  animation: drawCircle 1s var(--ease-out) forwards;
}
.success-check path {
  fill: none; stroke: var(--orange); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 80; stroke-dashoffset: 80;
  animation: drawCheck .6s .7s var(--ease-out) forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: var(--gray-light);
  padding: clamp(56px, 8vw, 90px) 0 36px;
  margin-top: clamp(60px, 9vw, 110px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h6 { color: var(--white); font-weight: 700; font-size: 1.15rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.site-footer a { color: var(--gray-light); display: block; padding: 4px 0; font-size: 1rem; transition: color .25s, transform .3s var(--ease-out); }
.site-footer a:hover { color: var(--orange); transform: translateX(4px); }
.footer-brand p { font-size: 1rem; line-height: 1.7; }
.footer-brand .logo-foot { height: 52px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(221, 222, 223, .18);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .9rem; color: var(--gray-text);
}
.footer-claim { color: var(--orange); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Floating CTA Dock
   -------------------------------------------------------------------------- */
.cta-dock {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  transform: translateY(140%);
  transition: transform .6s var(--ease-out);
}
.cta-dock.is-visible { transform: none; }
.cta-dock .btn { box-shadow: 0 14px 40px -8px rgba(228, 122, 61, .55); padding: 16px 32px; }
@media (max-width: 640px) {
  .cta-dock { right: 16px; bottom: 16px; left: 16px; }
  .cta-dock .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   Reveal-Animationen (JS-gesteuert)
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(44px); will-change: transform, opacity; }
[data-reveal="left"] { transform: translateX(-54px); }
[data-reveal="right"] { transform: translateX(54px); }
[data-reveal="scale"] { transform: scale(.88); }
.no-js [data-reveal], .reduced-motion [data-reveal] { opacity: 1; transform: none; }

.split-lines .line-wrap { overflow: hidden; display: block; }
.split-lines .line-inner { display: block; transform: translateY(110%); will-change: transform; }

/* --------------------------------------------------------------------------
   Hero "Fall into the website" (Startseite)
   -------------------------------------------------------------------------- */
.dive-stage { height: 400vh; position: relative; }
.dive-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
}
.dive-layer {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  will-change: transform, opacity, filter;
}
.dive-hero-content { text-align: center; max-width: 1000px; padding: 0 24px; position: relative; z-index: 5; }
.dive-hero-content h1 {
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: .5px;
  line-height: 1.04;
}
.dive-hero-content .sub {
  margin-top: 22px;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray-dark);
  font-weight: 500;
}
.dive-hero-content .hero-desc {
  margin: 26px auto 0;
  max-width: 640px;
  font-size: var(--fs-body-m);
  color: var(--gray-text);
}

.dive-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(228, 122, 61, .35);
  will-change: transform, opacity;
}
.dive-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  filter: blur(2px);
}

.dive-scrollhint {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--gray-dark);
  font-size: .92rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 6;
}
.dive-scrollhint .mouse {
  width: 30px; height: 50px;
  border: 2px solid var(--orange);
  border-radius: 18px;
  margin: 0 auto 10px;
  position: relative;
}
.dive-scrollhint .mouse::after {
  content: "";
  position: absolute;
  top: 9px; left: 50%;
  width: 5px; height: 10px;
  margin-left: -2.5px;
  border-radius: 3px;
  background: var(--orange);
  animation: wheelDrop 1.8s infinite var(--ease-out);
}
@keyframes wheelDrop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.dive-deep {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  pointer-events: none;
}
.dive-deep .deep-word {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-dark);
  letter-spacing: 4px;
  position: absolute;
  white-space: nowrap;
}

/* Tunnel-Abschluss: Kreis öffnet die Seite */
.dive-exit {
  position: absolute; inset: 0;
  z-index: 8;
  background: var(--orange);
  clip-path: circle(0% at 50% 50%);
  display: flex; align-items: center; justify-content: center;
  will-change: clip-path;
}
.dive-exit .exit-claim {
  color: var(--offwhite);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Page transition overlay
   -------------------------------------------------------------------------- */
.page-transition {
  position: fixed; inset: 0;
  z-index: 2000;
  pointer-events: none;
  background: var(--orange);
  clip-path: circle(0% at 50% 50%);
}
.page-transition.is-in { animation: ptIn .55s var(--ease-out) forwards; }
.page-transition.is-out { animation: ptOut .7s .05s var(--ease-out) forwards; }
@keyframes ptIn { from { clip-path: circle(0% at 50% 50%); } to { clip-path: circle(150% at 50% 50%); } }
@keyframes ptOut { from { clip-path: circle(150% at 50% 50%); } to { clip-path: circle(0% at 50% 50%); } }

/* --------------------------------------------------------------------------
   Sonstiges
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.mb-2 { margin-bottom: 24px; }

::selection { background: var(--orange); color: var(--offwhite); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .dive-stage { height: auto !important; }
}
