:root {
  --sky: #7f90ad;
  --navy: #0a283a;
  --blue: #374b66;
  --orange: #e48c60;
  --beige: #ebe8e5;
  --taupe: #d7ccc2;
  --dark: #4b4541;
  --white: #ffffff;
  --off: #f8f7f5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }
main { min-height: 100vh; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(10, 40, 58, 0.08); }

.nav-logo { text-decoration: none; display: flex; align-items: center; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a,
.nav-links button {
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-links form { margin: 0; }
.nav-links a:hover,
.nav-links button:hover { color: var(--orange); }

.nav-btn {
  background: var(--orange) !important;
  color: white !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: background 0.2s !important;
}
.nav-btn:hover { background: #d4784e !important; }

.hero {
  padding-top: 88px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-glow1 {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 144, 173, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: -120px;
  left: 30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 140, 96, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: 60% top;
  background-repeat: no-repeat;
}
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 40, 58, 0.97) 0%, rgba(10, 40, 58, 0.82) 45%, rgba(10, 40, 58, 0.45) 75%, rgba(10, 40, 58, 0.25) 100%),
    linear-gradient(to bottom, rgba(10, 40, 58, 0.3) 0%, transparent 30%, transparent 65%, rgba(10, 40, 58, 0.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 100px 80px 80px;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 18px;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}
.hero-h1 {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}
.hero-h1 .highlight { color: var(--orange); }
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.6s 0.3s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s forwards;
}
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: none;
  font-family: 'Poppins', sans-serif;
  border: 0;
  cursor: pointer;
}
.btn-primary:hover { background: #d4784e; box-shadow: none; }
.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.6); color: white; background: rgba(255, 255, 255, 0.06); }

.hero-stats-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
.stat-box { padding: 32px 48px; border-right: 1px solid rgba(255, 255, 255, 0.08); transition: background 0.25s; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(255, 255, 255, 0.04); }
.stat-num { font-size: 40px; font-weight: 800; color: var(--orange); letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 13px; font-weight: 400; color: rgba(255, 255, 255, 0.45); margin-top: 8px; }

.about { padding: 80px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1400px; margin: 0 auto; }
.about-label { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.about-h2 { font-size: clamp(34px, 3vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--navy); margin-bottom: 24px; }
.about-h2 span { color: var(--sky); }
.about-body { font-size: 16px; line-height: 1.75; color: var(--blue); font-weight: 400; margin-bottom: 16px; }
.about-blockquote { margin: 36px 0; background: var(--off); border-left: 4px solid var(--orange); padding: 20px 24px; border-radius: 0 10px 10px 0; font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.5; }
.about-body strong { color: var(--navy); font-weight: 700; }
.audience-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.aud-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: var(--blue);
  line-height: 1.5;
  transition: border-color .2s;
}
.aud-item:hover { border-color: var(--taupe); }
.aud-item strong { color: var(--navy); font-weight: 700; }
.aud-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 4px; }

.workshops-page #wer-ich-bin .audience-list.audience-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}
.workshops-page #wer-ich-bin .aud-item.aud-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: var(--off);
  min-height: 0;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.workshops-page #wer-ich-bin .aud-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.workshops-page #wer-ich-bin .aud-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workshops-page #wer-ich-bin .aud-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
.workshops-page #wer-ich-bin .aud-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--blue);
}
.workshops-page #wer-ich-bin .aud-item.aud-card:hover {
  border-color: var(--taupe);
  box-shadow: 0 4px 12px rgba(10, 40, 58, 0.04);
  transform: translateY(-1px);
}
.workshops-page #wer-ich-bin {
  display: flex;
  align-items: stretch;
  gap: 80px;
}
.workshops-page #wer-ich-bin > .reveal {
  flex: 1 1 0;
  min-width: 0;
}
.workshops-page #wer-ich-bin > .reveal:first-child {
  display: block;
}
.workshops-page #wer-ich-bin > .reveal:last-child {
  display: flex;
  align-self: stretch;
}
.workshops-page #wer-ich-bin .about-visual {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--navy);
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: background .18s, color .18s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline svg { width: 14px; height: 14px; }
.about-visual { border-radius: 20px; aspect-ratio: 4/5; position: relative; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; border-radius: 20px; }
.about-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 65%, rgba(10, 40, 58, 0.45) 100%); border-radius: 20px; z-index: 1; pointer-events: none; }
.about-chip { position: absolute; bottom: 28px; left: 28px; right: 28px; background: rgba(10, 40, 58, 0.55); backdrop-filter: blur(14px); border-radius: 12px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; z-index: 2; }
.workshops-page #wer-ich-bin .about-image-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  border-radius: 0 0 20px 20px;
  text-decoration: none;
  background: var(--navy);
  color: #fff;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transition: background .2s;
}
.workshops-page #wer-ich-bin .about-image-btn span {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}
.workshops-page #wer-ich-bin .about-image-btn:hover {
  background: #11374c;
}
.chip-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.chip-text { font-size: 13px; font-weight: 500; color: white; line-height: 1.35; }

.features-section { background: var(--off); padding: 80px 80px; }
.features-inner { max-width: 1240px; margin: 0 auto; }
.features-head { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 48px; }
.feat-label { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.feat-h2 { font-size: clamp(32px, 3vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--navy); }
.feat-h2 span { color: var(--sky); }
.feat-sub { font-size: 16px; color: var(--blue); line-height: 1.72; font-weight: 400; max-width: 640px; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; }
.feat-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.feat-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.features-grid .feat-card.reveal.visible {
  transition: border-color .25s ease, transform .25s ease;
}
.features-grid .feat-card.reveal.visible:hover {
  transform: translateY(-4px);
}
.feat-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(127, 144, 173, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.feat-text { font-size: 14px; color: var(--blue); line-height: 1.72; font-weight: 400; }
.offers { padding: 80px 80px; max-width: 1400px; margin: 0 auto; }
.offers-head { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 56px; gap: 18px; }
.off-label { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.off-h2 { font-size: clamp(32px, 3vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--navy); }
.off-h2 span { color: var(--sky); }
.off-sub { font-size: 15px; color: var(--blue); max-width: 720px; line-height: 1.65; }
.offers-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 400px)); justify-content: center; gap: 16px; }
.offer-card { border-radius: 16px; overflow: hidden; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.offer-card-link { display: block; text-decoration: none; color: inherit; }
.offer-card-link:visited, .offer-card-link:hover, .offer-card-link:active { text-decoration: none; color: inherit; }
.offer-card-link:focus-visible { outline: 2px solid rgba(228,140,96,0.75); outline-offset: 3px; }
.offer-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(10, 40, 58, 0.15); }
.offer-body { padding: 360px 36px 36px; min-height: 660px; display: flex; flex-direction: column; justify-content: flex-start; position: relative; }
.offer-card:nth-child(1) .offer-body { background: linear-gradient(160deg, #1a3a52 0%, #0a283a 100%); }
.offer-card:nth-child(2) .offer-body { background: linear-gradient(160deg, #4d6580 0%, #2a3d54 100%); }
.offer-card:nth-child(3) .offer-body { background: linear-gradient(160deg, #7a4030 0%, #3d2418 100%); }
.offer-tag { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; min-height: 14px; }
.offer-title { font-size: 28px; font-weight: 800; color: white; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
.offer-desc { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 12px; min-height: 100px; }
.offer-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: white; text-decoration: none; border: 2px solid rgba(255, 255, 255, 0.3); padding: 10px 20px; border-radius: 8px; width: fit-content; transition: background 0.25s, gap 0.2s; letter-spacing: 0.02em; margin-top: auto; }
.offer-link:hover, .offer-card-link:hover .offer-link, .offer-card:hover .offer-link, .offer-card-link:focus-visible .offer-link, .offer-card:focus-visible .offer-link { background: rgba(255, 255, 255, 0.15); gap: 14px; }



.testimonials { background: var(--navy); padding: 80px 80px; }
.testi-inner { max-width: 1240px; margin: 0 auto; }
.testi-head { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 64px; }
.testi-label { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.testi-h2 { font-size: clamp(32px,3vw,50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: white; }
.testi-h2 span { color: var(--sky); }
.testi-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: none; width: 100%; }
.testi-grid { display: grid; gap: 16px; }
.testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px 40px; display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: center; transition: background .25s, border-color .25s, transform .25s; }
.testi-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(127,144,173,0.4); transform: translateY(-3px); }
.testi-card-left { display: flex; justify-content: center; align-items: center; }
.testi-av { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 700; color: white; border: 2px solid rgba(127,144,173,0.3); }
.testi-photo { width: 116px; height: 116px; object-fit: cover; object-position: center; display: block; border-radius: 50%; border: 3px solid rgba(127,144,173,0.5); background: rgba(255,255,255,0.04); }
.testi-card-right { display: flex; flex-direction: column; }
.testi-quote-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(228,140,96,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.testi-quote-icon svg { width: 16px; height: 16px; display: block; }
.testi-text { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.72); font-weight: 400; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; flex-direction: column; gap: 2px; }
.testi-name { font-size: 14px; font-weight: 700; color: white; }
.testi-role { font-size: 12px; color: var(--sky); font-weight: 400; }

.cta-section { padding: 80px; }
.cta-box { background: var(--orange); border-radius: 20px; padding: 72px 80px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; overflow: hidden; max-width: 1400px; margin: 0 auto; }
.cta-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.cta-h2 { font-size: clamp(30px,3vw,48px); font-weight: 800; color: white; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 500px; font-weight: 400; }
.cta-btn { background: white; color: var(--orange); padding: 20px 44px; border-radius: 12px; font-size: 16px; font-weight: 800; text-decoration: none; white-space: nowrap; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 8px 24px rgba(0,0,0,0.15); letter-spacing: -0.01em; }

.site-footer { background: var(--navy); padding: 72px 80px 36px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
.footer-logo { display: inline-flex; align-items: center; text-decoration: none; margin-bottom: 14px; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 14px; color: rgba(255, 255, 255, 0.4); line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--sky); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.45); text-decoration: none; }
.footer-col a:hover { color: white; }

.page-shell { max-width: 1240px; margin: 0 auto; padding: 140px 80px 80px; }
.page-shell.narrow { max-width: 780px; }
.page-shell h1 { font-size: clamp(36px, 4vw, 54px); letter-spacing: -0.03em; margin-bottom: 16px; }
.page-shell p { font-size: 16px; line-height: 1.7; color: var(--blue); margin-bottom: 24px; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
label { display: grid; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.2; }
input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]), textarea, select { width: 100%; min-height: 52px; padding: 14px 18px; border-radius: 10px; border: 1.5px solid var(--beige); background: var(--off); font-size: 16px; line-height: 1.25; color: var(--navy); font-family: "Poppins", sans-serif; transition: border-color .2s, box-shadow .2s, background-color .2s; outline: none; }
textarea { min-height: 140px; resize: vertical; }

.dash-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dash-card { background: var(--off); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 16px; padding: 28px; }
.dash-card h2 { margin-bottom: 14px; font-size: 24px; }
.product-row { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #dce2e9; padding-top: 14px; margin-top: 14px; }
.progress-wrap { width: min(300px, 100%); }
.progress-bar { margin-bottom: 8px; background: #dde3ea; border-radius: 999px; height: 10px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--orange), #d4784e); }

.flash { max-width: 1240px; margin: 104px auto 0; padding: 12px 16px; border-radius: 10px; font-weight: 600; }
.flash-success { background: #def6e6; color: #17613c; }
.flash-error { background: #f9e0e0; color: #762626; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s, transform 0.65s; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

.burger {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.burger span {
  position: absolute;
  left: 50%;
  width: 30px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform .25s, opacity .25s, top .25s, background .25s;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 29px; }
.burger.open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 1100px) {
  nav { padding: 0 22px; }
  .hero-inner, .about, .features-section, .offers, .testimonials, .cta-section, .site-footer, .page-shell { padding-left: 22px; padding-right: 22px; }
  .hero-inner { padding-top: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .about, .features-head, .offers-grid, .testi-head, .cta-box, .footer-top, .hero-stats-bar, .dash-grid { grid-template-columns: 1fr; }
  .hero-stats-bar .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .hero-stats-bar .stat-box:last-child {
    border-bottom: none;
  }
  .offers-head { flex-direction: column; align-items: flex-start; }
  .product-row { flex-direction: column; }
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 96px;
    left: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(10,40,58,0.08);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(10,40,58,0.18);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity .22s ease, transform .24s ease, visibility .22s;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: flex; width: 100%; padding: 12px 14px; border-radius: 10px; }
  .nav-links a:hover { background: rgba(10,40,58,0.05); }
  .nav-links .nav-btn { width: 100%; justify-content: center; padding: 12px 16px; margin-top: 6px; }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .testi-card { grid-template-columns: 1fr; }
  .testi-card-left { justify-content: center; align-items: center; margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-social { align-items: flex-start; }
}

/* Offers illustration animations from original template */
.offer-illustration {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.offer-illustration svg { width: 100%; height: 100%; transform: translateY(-2%); }
.offer-body::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  pointer-events: none;
}
.offer-icon-wrap, .offer-tag, .offer-title, .offer-desc, .offer-link { position: relative; z-index: 2; }
.offer-icon-wrap {
  position: absolute;
  top: 32px;
  left: 36px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.offer-link::after { content: none; }
.offer-link svg { width: 15px; height: 15px; flex: 0 0 auto; }

@keyframes floatUp   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes pulse     { 0%,100%{opacity:.7} 50%{opacity:1} }
@keyframes spin      { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes spinSlow  { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
@keyframes blink     { 0%,100%{opacity:1} 50%{opacity:.3} }
.il-float  { animation: floatUp 4s ease-in-out infinite; }
.il-float2 { animation: floatDown 5s ease-in-out infinite; }
.il-pulse  { animation: pulse 3s ease-in-out infinite; }
.il-spin   { transform-origin: 50% 50%; animation: spin 12s linear infinite; }
.il-spin-r { transform-origin: 50% 50%; animation: spinSlow 18s linear infinite; }
.il-blink  { animation: blink 2.4s ease-in-out infinite; }



.footer-logout { background: transparent; border: 0; color: rgba(255, 255, 255, 0.45); padding: 0; font: inherit; cursor: pointer; }
.footer-logout:hover { color: white; }




.cta-box::before { content: ""; position: absolute; top: -100px; right: 200px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.08); pointer-events: none; }
.cta-btn:hover { color: var(--orange); transform: translateY(-2px); box-shadow: 0 0 0 2px rgba(255,255,255,0.28), 0 0 26px rgba(255,255,255,0.32), 0 14px 34px rgba(0,0,0,0.22); }



@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 46px 26px; gap: 26px; }
  .cta-box::before { right: -70px; width: 220px; height: 220px; top: 50%; transform: translateY(-50%); }
  .cta-h2 { font-size: clamp(34px, 10vw, 46px); }
  .cta-btn { width: 100%; min-width: 0; }
}

.nav-logo-img { height: 68px; width: auto; display: block; }

.footer-logo-img { height: 60px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .96; }






.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; margin-top: 36px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-meta { display: flex; align-items: flex-end; gap: 24px; }
.footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.footer-social a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-social a:hover { color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }










@media (max-width: 1100px) {
  nav { padding: 0 22px; }
  .hero-inner, .about, .features-section, .offers, .testimonials, .cta-section, .site-footer, .page-shell { padding-left: 22px; padding-right: 22px; }
  .hero-inner { padding-top: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .about, .features-head, .offers-grid, .testi-head, .cta-box, .footer-top, .hero-stats-bar, .dash-grid { grid-template-columns: 1fr; }
  .hero-stats-bar .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .hero-stats-bar .stat-box:last-child {
    border-bottom: none;
  }
  .offers-head { flex-direction: column; align-items: flex-start; }
  .product-row { flex-direction: column; }
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 96px;
    left: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(10,40,58,0.08);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(10,40,58,0.18);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity .22s ease, transform .24s ease, visibility .22s;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: flex; width: 100%; padding: 12px 14px; border-radius: 10px; }
  .nav-links a:hover { background: rgba(10,40,58,0.05); }
  .nav-links .nav-btn { width: 100%; justify-content: center; padding: 12px 16px; margin-top: 6px; }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .testi-card { grid-template-columns: 1fr; }
  .testi-card-left { justify-content: center; align-items: center; margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-social { align-items: flex-start; }
}





input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"])::placeholder, textarea::placeholder { color: #6c7680; opacity: 1; }

input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):focus, input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible { outline: none; border-color: var(--sky); background: #f7f7f6; box-shadow: 0 0 0 3px rgba(127, 144, 173, 0.15); }

select { appearance: auto; }















/* Force readable hover text for Stresstest button */
.cta-section .cta-btn:hover,
.cta-box .cta-btn:hover {
  color: var(--orange) !important;
  background: #ffffff !important;
}














































@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
}
























@media (max-width: 1100px) {
  .workshops-page #wer-ich-bin > .reveal {
    height: auto;
  }
  .workshops-page #wer-ich-bin .about-visual {
    aspect-ratio: 4 / 5;
    min-height: 420px;
    height: auto;
  }
}



@media (max-width: 1100px) {
  .workshops-page #wer-ich-bin {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .workshops-page #wer-ich-bin > .reveal:last-child {
    display: block;
  }
}

@media (min-width: 1101px) {
  section#wer-ich-bin.about {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 80px !important;
  }
  section#wer-ich-bin.about > .reveal {
    min-width: 0;
  }
  section#wer-ich-bin.about > .reveal:last-child {
    display: flex !important;
    align-self: stretch !important;
  }
  section#wer-ich-bin.about > .reveal:last-child .about-visual {
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }
}

/* Workshops Page Start */
.content-page {
  --sky: #7F90AD;
  --navy: #0A283A;
  --blue: #374B66;
  --orange: #E48C60;
  --beige: #EBE8E5;
  --taupe: #D7CCC2;
  --dark: #4B4541;
  --white: #FFFFFF;
  --off: #F8F7F5;
  --wrap: 1240px;
  --nav-h: 88px;
}

.content-page img {
  display: block;
  max-width: 100%;
}

@scope (.content-page) {
.wrap{max-width:var(--wrap);margin:0 auto;}
.sec-label{font-size:12px;font-weight:700;color:var(--orange);letter-spacing:0.10em;text-transform:uppercase;margin-bottom:16px;display:block;}
.sec-h2{font-size:clamp(32px,3vw,50px);font-weight:800;letter-spacing:-0.03em;line-height:1.1;color:var(--navy);}
.sec-h2 span{color:var(--sky);}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .65s ease,transform .65s ease;}
.reveal.visible{opacity:1;transform:none;}
.d1{transition-delay:.10s}.d2{transition-delay:.20s}.d3{transition-delay:.30s}.d4{transition-delay:.40s}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}


.btn-primary{display:inline-flex;align-items:center;gap:9px;background:var(--orange);color:white;padding:16px 32px;border-radius:10px;font-size:15px;font-weight:700;text-decoration:none;font-family:'Poppins',sans-serif;transition:background .2s,transform .15s;border:none;cursor:pointer;}
.btn-primary:hover{background:#d4784e;transform:translateY(-2px);}
.btn-primary svg{width:15px;height:15px;}
.btn-hero-ghost{background:transparent;color:rgba(255,255,255,0.80);padding:16px 32px;border-radius:10px;font-size:15px;font-weight:600;text-decoration:none;font-family:'Poppins',sans-serif;border:2px solid rgba(255,255,255,0.20);transition:border-color .2s,background .2s,color .2s;}
.btn-hero-ghost:hover{border-color:rgba(255,255,255,0.60);color:white;background:rgba(255,255,255,0.06);}
.btn-outline{display:inline-flex;align-items:center;gap:8px;border:1.5px solid var(--navy);border-radius:10px;padding:14px 26px;font-size:14px;font-weight:700;color:var(--navy);text-decoration:none;transition:background .18s,color .18s;width:fit-content;}
.btn-outline:hover{background:var(--navy);color:white;}
.btn-outline svg{width:14px;height:14px;}


.hero{padding-top:var(--nav-h, 88px);min-height:62vh;display:flex;flex-direction:column;justify-content:center;background:var(--navy);position:relative;overflow:hidden;}
.hero-glow1{position:absolute;top:-160px;right:-160px;width:700px;height:700px;border-radius:50%;background:radial-gradient(circle,rgba(127,144,173,0.18) 0%,transparent 65%);pointer-events:none;}
.hero-glow2{position:absolute;bottom:-120px;left:30%;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(228,140,96,0.12) 0%,transparent 65%);pointer-events:none;}
.hero-bg{position:absolute;top:calc(-1 * var(--nav-h, 88px));left:0;right:0;bottom:0;z-index:0;background-image:url('/assets/img/hero_workshops.jpg');background-size:cover;background-position:65% top;}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(to right,rgba(10,40,58,0.97) 0%,rgba(10,40,58,0.84) 42%,rgba(10,40,58,0.50) 68%,rgba(10,40,58,0.22) 100%),linear-gradient(to bottom,rgba(10,40,58,0.25) 0%,transparent 28%,transparent 62%,rgba(10,40,58,0.75) 100%);}
.hero-inner{position:relative;z-index:1;width:100%;max-width: calc(var(--wrap, 1240px) + 160px);margin:0 auto;padding:72px 80px 64px;}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.08);border-radius:100px;border:1px solid rgba(255,255,255,0.12);padding:7px 18px;width:fit-content;font-size:12px;font-weight:600;color:rgba(255,255,255,0.70);letter-spacing:0.06em;text-transform:uppercase;margin-bottom:28px;opacity:0;animation:fadeUp .6s .10s forwards;}
.hero-badge::before{content:'';width:8px;height:8px;border-radius:50%;background:var(--orange);flex-shrink:0;}
.hero-h1{font-size:clamp(40px,5.5vw,72px);font-weight:800;line-height:1.04;letter-spacing:-0.04em;color:white;margin-bottom:22px;max-width:680px;opacity:0;animation:fadeUp .6s .20s forwards;}
.hero-h1 .hl{color:var(--orange);}
.hero-sub{font-size:17px;line-height:1.70;color:rgba(255,255,255,0.58);max-width:540px;margin-bottom:40px;opacity:0;animation:fadeUp .6s .30s forwards;}
.hero-actions{display:flex;gap:14px;align-items:center;flex-wrap:wrap;opacity:0;animation:fadeUp .6s .40s forwards;}


.problem-sec{background:var(--off);padding:80px 80px;}
.problem-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.prob-body{font-size:16px;line-height:1.80;color:var(--blue);margin-top:20px;margin-bottom:18px;}
.prob-body strong{color:var(--navy);font-weight:700;}
.prob-quote{margin-top:32px;padding:20px 24px;background:var(--white);border-left:4px solid var(--orange);border-radius:0 12px 12px 0;font-size:15px;font-style:italic;color:var(--navy);line-height:1.65;}
.stat-stack{display:flex;flex-direction:column;gap:14px;}
.stat-card{background:var(--white);border-radius:16px;border:1px solid rgba(0,0,0,0.06);padding:28px 32px;display:grid;grid-template-columns:auto 1fr;gap:24px;align-items:center;transition:border-color .25s,transform .25s;}
.stat-card:hover{border-color:var(--orange);transform:translateX(5px);}
.stat-big{font-size:46px;font-weight:800;color:var(--orange);letter-spacing:-0.04em;line-height:1;white-space:nowrap;}
.stat-big sup{font-size:22px;vertical-align:super;}
.stat-info strong{display:block;font-size:14px;font-weight:700;color:var(--navy);margin-bottom:3px;line-height:1.4;}
.stat-info p{font-size:13px;color:var(--blue);line-height:1.55;}
.stat-src{font-size:11px;color:var(--taupe);margin-top:6px;display:block;}


.angebot-sec{padding:80px 80px;background:var(--white);}
.angebot-intro{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;margin-bottom:64px;}
.angebot-body{font-size:16px;line-height:1.80;color:var(--blue);margin-top:18px;}
.angebot-body strong{color:var(--navy);font-weight:700;}
.focus-list{display:flex;flex-direction:column;gap:10px;margin-top:22px;}
.focus-item{display:flex;align-items:flex-start;gap:11px;font-size:16px;color:var(--blue);line-height:1.8;}
.focus-dot{width:7px;height:7px;border-radius:50%;background:var(--orange);flex-shrink:0;margin-top:.55em;}
.focus-item strong{color:var(--navy);font-weight:600;}
.angebot-quote{margin-top:24px;padding:18px 22px;background:var(--off);border-left:4px solid var(--orange);border-radius:0 12px 12px 0;font-size:14px;font-style:italic;color:var(--dark);line-height:1.7;}
.format-divider{display:flex;align-items:center;gap:20px;margin-bottom:32px;}
.fmt-line{flex:1;height:1px;background:var(--beige);}
.fmt-label{font-size:11px;font-weight:700;color:var(--sky);letter-spacing:0.14em;text-transform:uppercase;white-space:nowrap;}


.format-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.fmt-card{
  border-radius:20px;overflow:hidden;position:relative;
  padding:44px 36px;
  display:flex;flex-direction:column;
  transition:transform .25s,box-shadow .25s;
}
.fmt-card:hover{transform:translateY(-8px);box-shadow:0 20px 60px rgba(10,40,58,0.15);}

.fmt-card.c1{background:var(--navy);}
.fmt-card.c2{background:var(--blue);}
.fmt-card.c3{background:var(--sky);}

.fmt-card::before{
  content:'';position:absolute;top:-40px;right:-40px;
  width:180px;height:180px;border-radius:50%;
  background:rgba(255,255,255,0.06);pointer-events:none;
}
.fmt-card-icon{
  width:52px;height:52px;border-radius:14px;
  background:rgba(255,255,255,0.12);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.90);
  margin-bottom:28px;
}
.fmt-card-icon svg{
  width:24px;
  height:24px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.fmt-card-tag{display:inline-block;font-size:10px;font-weight:700;letter-spacing:0.10em;text-transform:uppercase;color:rgba(255,255,255,0.50);margin-bottom:14px;}
.fmt-card-title{font-size:22px;font-weight:800;color:white;letter-spacing:-0.02em;margin-bottom:18px;}
.fmt-card-desc{font-size:14px;color:rgba(255,255,255,0.70);line-height:1.75;flex:1;}
.fmt-card-result{
  margin-top:28px;padding:16px 18px;
  background:rgba(255,255,255,0.08);border-radius:10px;
  font-size:13px;color:rgba(255,255,255,0.80);line-height:1.55;font-style:italic;
}


.testi-sec{background:var(--navy);padding:80px 80px;}
.testi-head{margin-bottom:64px;}
.testi-h2{color:white;}
.testi-h2 span{color:var(--sky);}
.testi-desc{font-size:15px;color:rgba(255,255,255,0.45);line-height:1.72;margin-top:14px;max-width:640px;}
.testi-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.testi-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:32px 32px 28px;
  display:flex;flex-direction:column;
  transition:background .25s,border-color .25s,transform .25s;
}
.testi-card:hover{background:rgba(255,255,255,0.09);border-color:rgba(127,144,173,0.35);transform:translateY(-3px);}

.testi-quote-icon{margin-bottom:20px;}
.testi-quote-icon svg{width:28px;height:28px;}
.testi-text{font-size:15px;line-height:1.80;color:rgba(255,255,255,0.72);font-style:italic;flex:1;}


.wer-sec{padding:80px 80px;background:var(--white);}
.wer-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:stretch;}
.wer-text{display:flex;flex-direction:column;}
.wer-body{font-size:16px;line-height:1.78;color:var(--blue);margin-bottom:16px;margin-top:20px;}
.wer-body strong{color:var(--navy);font-weight:700;}

.aud-stack{display:flex;flex-direction:column;gap:12px;margin:24px 0 36px;}
.aud-card{
  display:flex;align-items:center;gap:18px;
  padding:20px 22px;
  background:var(--off);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:14px;
  transition:border-color .2s,transform .2s;
}
.aud-card:hover{border-color:var(--taupe);transform:translateX(4px);}
.aud-icon{
  flex-shrink:0;
  width:48px;height:48px;border-radius:12px;
  background:rgba(127,144,173,0.12);
  border:1px solid var(--beige);
  color:var(--sky);
  display:flex;align-items:center;justify-content:center;
}
.aud-icon svg{
  width:21px;
  height:21px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.aud-text-wrap{}
.aud-title{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:4px;}
.aud-desc{font-size:13px;color:var(--blue);line-height:1.55;}

.wer-photo-col{display:flex;flex-direction:column;align-items:flex-start;gap:0;height:100%;}
.wer-photo-wrap{
  width:100%;
  flex:1;
  border-radius:20px;
  overflow:hidden;
  position:relative;
}
.wer-photo-wrap img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top;}
.wer-photo-wrap::before{content:'';position:absolute;inset:0;z-index:1;background:linear-gradient(to bottom,transparent 60%,rgba(10,40,58,0.50) 100%);}
.wer-chip{position:absolute;bottom:20px;left:16px;right:16px;z-index:2;background:rgba(10,40,58,0.60);backdrop-filter:blur(14px);border-radius:10px;padding:14px 16px;display:flex;align-items:center;gap:10px;}
.chip-dot{width:8px;height:8px;border-radius:50%;background:var(--orange);flex-shrink:0;}
.chip-text{font-size:12px;font-weight:500;color:white;line-height:1.35;}


.logos-sec{background:var(--off);border-top:1px solid var(--beige);border-bottom:1px solid var(--beige);padding:80px 80px;}
.logos-inner{max-width:var(--wrap);margin:0 auto;}
.logos-label{text-align:center;font-size:11px;font-weight:700;color:var(--sky);letter-spacing:0.14em;text-transform:uppercase;margin-bottom:40px;}
.logos-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.logo-card{
  background:var(--white);border-radius:16px;
  border:1px solid var(--beige);
  padding:18px 28px;
  display:flex;align-items:center;justify-content:center;
  transition:transform .2s;
}
.logo-card:hover{transform:translateY(-3px);}
.logo-card img{height:auto;width:55%;max-width:130px;object-fit:contain;}


.kontakt-sec{padding:80px 80px;background:var(--white);}
.kontakt-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.kontakt-body{font-size:16px;line-height:1.78;color:var(--blue);margin-top:16px;margin-bottom:32px;}

.contact-rows{display:flex;flex-direction:column;gap:28px;}
.contact-row{display:flex;align-items:center;gap:16px;}
.contact-row-icon{
  width:48px;height:48px;border-radius:12px;flex-shrink:0;
  background:rgba(127,144,173,0.12);
  display:flex;align-items:center;justify-content:center;
}
.contact-row-icon svg{width:20px;height:20px;color:var(--sky);stroke:currentColor;}
.contact-row-text{}
.cr-label{font-size:11px;font-weight:700;color:var(--sky);letter-spacing:0.08em;text-transform:uppercase;margin-bottom:3px;}
.cr-value{font-size:15px;font-weight:600;color:var(--navy);line-height:1.4;}
.cr-value a{color:inherit;text-decoration:none;}
.cr-value a:hover{color:var(--orange);}

.form-card{background:var(--off);border:1.5px solid var(--beige);border-radius:20px;padding:44px 40px;}
.form-title{font-size:17px;font-weight:700;color:var(--navy);margin-bottom:26px;}
.fg{margin-bottom:14px;}
.fg label{display:block;font-size:12px;font-weight:600;color:var(--dark);margin-bottom:6px;}
.fg input,.fg select,.fg textarea{width:100%;font-family:'Poppins',sans-serif;font-size:14px;color:var(--navy);background:var(--white);border:1.5px solid var(--beige);border-radius:10px;padding:13px 16px;outline:none;transition:border-color .18s;-webkit-appearance:none;appearance:none;}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--sky);}
.fg textarea{resize:vertical;min-height:100px;}
.fg-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.fg select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237F90AD' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:36px;}

.btn-submit{width:100%;margin-top:8px;background:var(--orange);color:white;border:none;border-radius:12px;padding:16px 28px;font-family:'Poppins',sans-serif;font-size:15px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:background .2s,transform .15s;}
.btn-submit:hover{background:#d4784e;transform:translateY(-2px);}
.btn-submit svg{width:14px;height:14px;}


.faq-sec{background:var(--off);border-top:1px solid var(--beige);padding:80px 80px;}
.faq-head{margin-bottom:56px;}
.faq-desc{font-size:16px;color:var(--blue);line-height:1.72;margin-top:14px;max-width:640px;}
.content-page.workshops-page .faq-desc{white-space:normal;max-width:none;width:100%;}
.faq-wrap{max-width:var(--wrap);margin:0 auto;}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:start;}
.faq-item{
  background:var(--white);
  border:1px solid var(--beige);
  border-radius:14px;
  overflow:hidden;
  transition:box-shadow .2s,border-color .2s;
}
.faq-item:hover{box-shadow:0 4px 20px rgba(10,40,58,0.06);border-color:var(--taupe);}
.faq-q{
  all:unset;cursor:pointer;width:100%;box-sizing:border-box;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:22px 24px;
  font-size:15px;font-weight:600;color:var(--navy);line-height:1.45;
  user-select:none;
}
.faq-chevron{
  width:28px;height:28px;border-radius:8px;flex-shrink:0;
  background:transparent;
  display:flex;align-items:center;justify-content:center;
  transition:background .25s,transform .3s;
}
.faq-chevron svg{width:16px;height:16px;stroke:var(--taupe);stroke-width:2.5;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:stroke .25s;}
.faq-item:hover .faq-chevron svg{stroke:var(--orange);}
.faq-item.open .faq-chevron{background:var(--orange);transform:rotate(180deg);}
.faq-item.open .faq-chevron svg{stroke:white;}
.faq-a{
  max-height:0;overflow:hidden;
  font-size:14px;color:var(--blue);line-height:1.75;
  padding:0 24px;
  transition:max-height .35s ease,padding .25s;
}
.faq-item.open .faq-a{max-height:400px;padding:0 24px 24px;}


.cta-sec{padding:80px;}
.cta-box{background:var(--orange);border-radius:20px;padding:72px 80px;display:grid;grid-template-columns:1fr auto;gap:60px;align-items:center;position:relative;overflow:hidden;max-width:1400px;margin:0 auto;}
.cta-box::before{content:'';position:absolute;top:-100px;right:200px;width:400px;height:400px;border-radius:50%;background:rgba(255,255,255,0.08);pointer-events:none;}
.cta-box::after{content:'';position:absolute;bottom:-80px;left:-60px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,0.06);pointer-events:none;}
.cta-eyebrow{font-size:12px;font-weight:700;color:rgba(255,255,255,0.70);letter-spacing:0.10em;text-transform:uppercase;margin-bottom:12px;}
.cta-h2{font-size:clamp(28px,3vw,44px);font-weight:800;letter-spacing:-0.03em;line-height:1.1;color:white;margin-bottom:12px;}
.cta-sub{font-size:16px;color:rgba(255,255,255,0.75);line-height:1.65;max-width:500px;}
.cta-right{display:flex;flex-direction:column;align-items:center;gap:10px;position:relative;z-index:1;flex-shrink:0;}
.cta-note{font-size:12px;color:rgba(255,255,255,0.55);}

.btn-white{display:inline-flex;align-items:center;gap:9px;background:white;color:var(--orange);padding:16px 36px;border-radius:10px;font-size:15px;font-weight:800;text-decoration:none;white-space:nowrap;transition:transform .15s,background .2s,color .2s;}
.btn-white:hover{background:var(--navy);color:white;transform:translateY(-2px);}


@media(max-width:1100px){
  .problem-grid,.angebot-intro,.wer-grid,.kontakt-grid{grid-template-columns:1fr;}
  .wer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:900px){
  .format-grid,.testi-grid,.faq-grid{grid-template-columns:1fr;}
  .cta-box{grid-template-columns:1fr;padding:48px 36px;}
  .cta-right{align-items:flex-start;}
  .wer-grid{grid-template-columns:1fr;}
  .wer-photo-col{margin-top:40px;}
  .wer-photo-wrap{aspect-ratio:4/3;}
}
@media(max-width:768px){
  .hero-inner{padding:56px 24px 48px;}
  .hero-h1{font-size:34px;}
  .problem-sec,.angebot-sec,.testi-sec,.wer-sec,.logos-sec,.kontakt-sec,.faq-sec{padding-left:24px;padding-right:24px;}
  .cta-sec{padding:40px 24px;}
  .fg-row{grid-template-columns:1fr;}
  .form-card{padding:28px 20px;}
  .faq-q{padding:18px 20px;}
  .faq-a{padding:0 20px;}
  .faq-item.open .faq-a{padding:0 20px 20px;}
  .logos-grid{grid-template-columns:1fr 1fr;}
}
}
/* Workshops Page End */




.content-page .testi-sec {
  background: var(--navy);
  padding: 80px 80px;
}

.content-page .testi-head {
  margin-bottom: 64px;
}

.content-page .testi-h2 {
  color: #fff;
}

.content-page .testi-h2 span {
  color: var(--sky);
}

.content-page .testi-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.72;
  margin-top: 14px;
  max-width: 640px;
}

.content-page.workshops-page .testi-desc {
  max-width: none;
  white-space: nowrap;
}

.content-page .testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.content-page .testi-grid .testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 32px 28px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.content-page .testi-grid .testi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(127, 144, 173, 0.35);
  transform: translateY(-3px);
}

.content-page .testi-quote-icon {
  display: inline-block;
  align-self: flex-start;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 1;
}

.content-page .testi-quote-icon::before {
  content: none;
}

.content-page .testi-quote-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.content-page .testi-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  width: 100%;
  flex: 1;
}

@media (max-width: 900px) {
  .content-page .testi-grid {
    grid-template-columns: 1fr;
  }

  .content-page .testi-grid .testi-card {
    padding: 22px 20px 18px;
  }
}

@media (max-width: 768px) {
  .content-page .testi-sec {
    padding-left: 24px;
    padding-right: 24px;
  }

  .content-page.workshops-page .testi-desc {
    white-space: normal;
  }
}
/* Workshops contact fields: final background/focus parity */
.content-page .kontakt-sec .fg input,
.content-page .kontakt-sec .fg select,
.content-page .kontakt-sec .fg textarea {
  background-color: var(--white) !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--beige) !important;
  box-shadow: none !important;
}

.content-page .kontakt-sec .fg input:hover,
.content-page .kontakt-sec .fg select:hover,
.content-page .kontakt-sec .fg textarea:hover {
  background-color: var(--white) !important;
}

.content-page .kontakt-sec .fg input:focus,
.content-page .kontakt-sec .fg select:focus,
.content-page .kontakt-sec .fg textarea:focus,
.content-page .kontakt-sec .fg input:focus-visible,
.content-page .kontakt-sec .fg select:focus-visible,
.content-page .kontakt-sec .fg textarea:focus-visible {
  background-color: var(--white) !important;
  border-color: var(--sky) !important;
  box-shadow: 0 0 0 3px rgba(127, 144, 173, 0.15) !important;
}

.content-page .kontakt-sec .fg input:-webkit-autofill,
.content-page .kontakt-sec .fg input:-webkit-autofill:hover,
.content-page .kontakt-sec .fg input:-webkit-autofill:focus,
.content-page .kontakt-sec .fg textarea:-webkit-autofill,
.content-page .kontakt-sec .fg select:-webkit-autofill {
  -webkit-text-fill-color: var(--navy) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
  box-shadow: 0 0 0 1000px var(--white) inset !important;
}




@media (max-width: 768px) {
  .content-page .hero-actions .btn-hero-ghost {
    width: 100%;
    justify-content: center;
    display: flex;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .content-page .logos-grid {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 768px) {
  .content-page .cta-right {
    align-items: center;
    width: 100%;
  }

  .content-page .cta-note {
    width: 100%;
    text-align: center;
  }
}




.content-page .hero-bg {
  top: 0;
}


@media (max-width: 768px) {
  .content-page .problem-grid {
    gap: 32px;
  }

  .content-page .prob-quote {
    margin-top: 32px;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .content-page .angebot-intro {
    gap: 24px;
    margin-bottom: 40px;
  }

  .content-page .angebot-intro > .reveal.d1 > p {
    margin-top: 0 !important;
  }
}

.content-page .wer-photo-btn {
  display: none;
}

@media (max-width: 900px) {
  .content-page .wer-grid {
    gap: 24px;
  }

  .content-page .wer-photo-col {
    margin-top: 0;
  }

  .content-page .wer-photo-wrap {
    aspect-ratio: 4 / 5;
    min-height: 480px;
  }

  .content-page .wer-text > .btn-outline {
    display: none;
  }

  .content-page .wer-photo-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }
}

@media (max-width: 900px) {
  .content-page .kontakt-grid {
    gap: 32px;
  }

  .content-page .contact-rows {
    gap: 20px;
  }

  .content-page .contact-row {
    margin-bottom: 0;
  }
}

.content-page .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content-page .stat-card {
  min-height: 166px;
}

.content-page .stat-info strong {
  margin-bottom: 0;
}

.content-page .stat-info p {
  display: none;
}

/* Workshops hero image hard-fix */
.content-page .hero {
  position: relative;
  overflow: hidden;
}

.content-page .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('/assets/img/hero_about_me.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.content-page .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,40,58,0.97) 0%, rgba(10,40,58,0.84) 42%, rgba(10,40,58,0.50) 68%, rgba(10,40,58,0.22) 100%),
              linear-gradient(to bottom, rgba(10,40,58,0.25) 0%, transparent 28%, transparent 62%, rgba(10,40,58,0.75) 100%);
}

.content-page.workshops-page .hero-bg {
  background-image: url('/assets/img/hero_workshops.jpg');
  background-position: 65% top;
}

.content-page .hero-inner {
  position: relative;
  z-index: 1;
}

.content-page .kontakt-sec .form-feedback {
  display: none;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.content-page .kontakt-sec .form-feedback.visible {
  display: block;
}

.content-page .kontakt-sec .form-feedback.is-success {
  background: #def6e6;
  color: #17613c;
  border: 1px solid #b9e5c8;
}

.content-page .kontakt-sec .form-feedback.is-error {
  background: #f9e0e0;
  color: #762626;
  border: 1px solid #efc1c1;
}

.content-page .kontakt-sec .field-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
  color: #b8473d;
}

.content-page .kontakt-sec .field-error.visible {
  display: block;
}

.content-page .kontakt-sec input.is-invalid,
.content-page .kontakt-sec select.is-invalid,
.content-page .kontakt-sec textarea.is-invalid {
  border-color: #cf5e54 !important;
  box-shadow: 0 0 0 3px rgba(207, 94, 84, 0.12) !important;
}

.content-page .kontakt-sec .btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* 404 page */
.error404-page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 176px 80px 80px;
}

.error404-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.error404-glow-1 {
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(127, 144, 173, 0.1) 0%, transparent 65%);
}

.error404-glow-2 {
  bottom: -150px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(228, 140, 96, 0.08) 0%, transparent 65%);
}

.error404-glow-3 {
  top: 40%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(127, 144, 173, 0.06) 0%, transparent 65%);
}

.error404-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  opacity: 0;
  animation: fadeUp .6s .20s forwards;
}

.error404-num {
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--beige);
  margin-bottom: 24px;
}

.error404-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 100px;
  border: 1px solid var(--beige);
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .6s .10s forwards;
}

.error404-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.error404-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.error404-title span {
  color: var(--orange);
}

.error404-sub {
  font-size: 16px;
  line-height: 1.72;
  color: var(--blue);
  max-width: 480px;
  margin: 0 auto 40px;
}

.error404-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.error404-actions .btn-primary svg {
  width: 15px;
  height: 15px;
}

.error404-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--beige);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.error404-actions .btn-ghost:hover {
  border-color: var(--navy);
  background: var(--white);
}

.error404-links {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--beige);
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.error404-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  transition: color 0.2s;
}

.error404-link:hover {
  color: var(--orange);
}

.error404-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--beige);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.error404-link:hover .error404-link-icon {
  background: rgba(228, 140, 96, 0.1);
  border-color: var(--orange);
}

.error404-link-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .error404-page {
    padding: 96px 24px 60px;
    min-height: calc(100vh - 72px);
  }

  .error404-links {
    gap: 18px;
  }
}

.content-page .kontakt-sec .fg select {
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237F90AD' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px 12px !important;
  padding-right: 36px !important;
}
/* 404 layout */
.error404-modern-page {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 80px 80px;
}

.error404-modern-inner {
  max-width: 1240px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.error404-modern-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.error404-modern-code {
  font-size: clamp(100px, 15vw, 180px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--beige);
  margin-bottom: 32px;
}

.error404-modern-title {
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}

.error404-modern-title span {
  color: var(--sky);
}

.error404-modern-body {
  font-size: 16px;
  line-height: 1.78;
  color: var(--blue);
  margin-top: 16px;
  max-width: 440px;
}

.error404-modern-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.error404-modern-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.error404-modern-primary:hover {
  background: #d4784e;
  transform: translateY(-2px);
}

.error404-modern-primary svg {
  width: 15px;
  height: 15px;
}

.error404-modern-nav-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.error404-modern-nav-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.error404-modern-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--off);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
}

.error404-modern-nav-card:hover {
  border-color: var(--orange);
  transform: translateX(6px);
}

.error404-modern-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(127, 144, 173, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error404-modern-nav-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.error404-modern-nav-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.error404-modern-nav-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.error404-modern-nav-desc {
  font-size: 12px;
  color: var(--blue);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .error404-modern-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .error404-modern-page {
    padding: 104px 24px 60px;
  }

  .error404-modern-actions {
    width: 100%;
  }

  .error404-modern-actions .error404-modern-primary {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .workshops-page #wer-ich-bin .wer-grid {
    width: 100%;
    max-width: 100%;
  }

  .workshops-page #wer-ich-bin .wer-text,
  .workshops-page #wer-ich-bin .wer-photo-col,
  .workshops-page #wer-ich-bin .wer-photo-wrap,
  .workshops-page #wer-ich-bin .wer-photo-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .workshops-page #wer-ich-bin .wer-photo-btn {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .workshops-page section#wer-ich-bin.wer-sec {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Navigation active states */
.nav-links a.is-active {
  color: var(--orange);
  font-weight: 700;
}

.nav-links .nav-btn.is-active {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

@media (max-width: 1100px) {
  .nav-links a.is-active {
    background: rgba(228, 140, 96, 0.12);
  }
}

/* Mobile menu blur reliability fix */
@media (max-width: 1100px) {
  #mainNav .nav-links {
    position: fixed;
    top: 96px;
    left: 14px;
    right: 14px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: hidden;
    isolation: isolate;
    z-index: 101;
  }

  #mainNav .nav-links::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  #mainNav .nav-links > li {
    position: relative;
    z-index: 1;
  }
}

/* Mobile nav blur final override */
@media (max-width: 1100px) {
  #mainNav {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  #mainNav .nav-links,
  #mainNav .nav-links.open {
    position: fixed !important;
    top: 96px !important;
    left: 14px !important;
    right: 14px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    transform: none !important;
    will-change: backdrop-filter;
  }

  #mainNav .nav-links::before {
    content: none !important;
  }
}

/* Mobile menu decoupled from nav for reliable backdrop-filter */
.nav-links-desktop {
  display: flex;
}

.mobile-nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1100px) {
  #mainNav .nav-links-desktop {
    display: none !important;
  }

  #mainNav .burger {
    display: flex;
  }

  #mobileMenu.mobile-nav-links {
    position: fixed;
    top: 96px;
    left: 14px;
    right: 14px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(10, 40, 58, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(10, 40, 58, 0.18);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s;
  }

  #mobileMenu.mobile-nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #mobileMenu.mobile-nav-links li {
    width: 100%;
  }

  #mobileMenu.mobile-nav-links a {
    display: flex;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
  }

  #mobileMenu.mobile-nav-links a:hover {
    background: rgba(10, 40, 58, 0.05);
  }

  #mobileMenu.mobile-nav-links .nav-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    margin-top: 6px;
  }
}

.mobile-nav-links a.is-active {
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 1100px) {
  #mobileMenu.mobile-nav-links a.is-active {
    background: rgba(228, 140, 96, 0.12);
    font-weight: 700;
  }
}

/* Mobile menu link color/reset */
#mobileMenu.mobile-nav-links a,
#mobileMenu.mobile-nav-links a:visited {
  color: var(--blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

#mobileMenu.mobile-nav-links a:hover,
#mobileMenu.mobile-nav-links a:focus-visible {
  color: var(--orange);
  text-decoration: none;
}

#mobileMenu.mobile-nav-links .nav-btn,
#mobileMenu.mobile-nav-links .nav-btn:visited {
  color: #fff !important;
  text-decoration: none !important;
}

/* Homepage hero stats mobile: 3 columns in one glass panel */
@media (max-width: 768px) {
  .hero > .hero-stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background: rgba(122, 142, 157, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
  }

  .hero > .hero-stats-bar .stat-box {
    min-height: 116px;
    padding: 22px 10px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: none;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero > .hero-stats-bar .stat-box:last-child {
    border-right: none;
  }

  .hero > .hero-stats-bar .stat-num {
    font-size: 56px;
    line-height: 1;
  }

  .hero > .hero-stats-bar .stat-label {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Home hero badge top spacing aligned to workshops hero */
.hero .hero-bg-img + .hero-inner {
  padding-top: 72px;
}

@media (max-width: 768px) {
  .hero .hero-bg-img + .hero-inner {
    padding-top: 56px;
  }
}

/* Home hero stats mobile/tablet override: keep 3 columns */
@media (max-width: 1100px) {
  .hero > .hero-stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0;
    margin: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background: rgba(122, 142, 157, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
  }

  .hero > .hero-stats-bar .stat-box {
    min-height: 116px;
    padding: 22px 10px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-bottom: none !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero > .hero-stats-bar .stat-box:last-child {
    border-right: none !important;
  }

  .hero > .hero-stats-bar .stat-num {
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1;
  }

  .hero > .hero-stats-bar .stat-label {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Home hero stats mobile fine-tuning */
@media (max-width: 1100px) {
  .hero > .hero-stats-bar {
    margin: 0 24px 20px;
  }

  .hero > .hero-stats-bar .stat-box {
    min-height: 96px;
    padding: 16px 10px 14px;
  }

  .hero > .hero-stats-bar .stat-num {
    font-size: clamp(30px, 5vw, 42px);
  }

  .hero > .hero-stats-bar .stat-label {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.25;
  }
}

/* Home hero stats mobile full-width strip */
@media (max-width: 1100px) {
  .hero > .hero-stats-bar {
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: 100%;
  }
}

/* Home hero stats: reduce gap above strip on mobile */
@media (max-width: 1100px) {
  .hero .hero-bg-img + .hero-inner {
    padding-bottom: 24px;
  }
}

/* Legal pages (Impressum + Datenschutz) */
.legal-page-header {
  padding: calc(var(--nav-h, 88px) + 56px) 80px 48px;
  background: var(--off);
  border-bottom: 1px solid var(--beige);
}

.legal-page-header-inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
}

.legal-sec-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.legal-sec-h1 {
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}

.legal-sec,
.privacy-sec {
  padding: 64px 80px 80px;
}

.legal-inner,
.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h2,
.privacy-inner h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}

.legal-inner h2:first-child,
.privacy-inner h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-inner h3,
.privacy-inner h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-inner h4,
.privacy-inner h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--sky);
  margin: 24px 0 10px;
}

.legal-inner p,
.privacy-inner p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--blue);
  margin-bottom: 14px;
}

.privacy-inner ul {
  margin: 0 0 14px 20px;
  padding: 0;
}

.privacy-inner li {
  font-size: 15px;
  line-height: 1.78;
  color: var(--blue);
  margin-bottom: 6px;
}

.legal-inner strong,
.privacy-inner strong {
  color: var(--navy);
  font-weight: 700;
}

.legal-inner a,
.privacy-inner a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}

.legal-inner a:hover,
.privacy-inner a:hover {
  color: #d4784e;
}

@media (max-width: 768px) {
  .legal-page-header {
    padding: calc(var(--nav-h, 88px) + 40px) 24px 36px;
  }

  .legal-sec,
  .privacy-sec {
    padding: 48px 24px 60px;
  }
}

/* Global stacking fix: nav must stay above all hero layers */
#mainNav,
nav {
  z-index: 5000 !important;
}

.hero,
.content-page .hero {
  z-index: 1;
}

.hero-bg-img,
.hero-bg,
.hero-glow1,
.hero-glow2 {
  z-index: 0;
}

.hero-inner,
.hero-stats-bar {
  z-index: 1;
}


/* Legal header horizontal spacing aligned with workshop hero container */
.legal-page-header {
  padding-left: 0;
  padding-right: 0;
}

.legal-page-header-inner {
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

@media (max-width: 768px) {
  .legal-page-header-inner {
  width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Footer V2 (reference-aligned) */
.site-footer.footer-v2 {
  background: var(--navy);
  padding: 0;
  border-top: none;
}
.site-footer.footer-v2 .f-inner {
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}
.site-footer.footer-v2 .f-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0 40px;
}
.site-footer.footer-v2 .f-logo {
  display: inline-flex;
  text-decoration: none;
}
.site-footer.footer-v2 .f-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.site-footer.footer-v2 .f-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  max-width: 320px;
}
.site-footer.footer-v2 .f-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.site-footer.footer-v2 .f-social-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer.footer-v2 .f-social-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer.footer-v2 .f-social-link:hover {
  color: rgba(255, 255, 255, 0.92);
}
.site-footer.footer-v2 .f-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  width: 200px;
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.site-footer.footer-v2 .f-social-link:hover .f-social-icon {
  background: rgba(228, 140, 96, 0.15);
  border-color: rgba(228, 140, 96, 0.30);
}
.site-footer.footer-v2 .f-social-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer.footer-v2 .f-social-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.site-footer.footer-v2 .f-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.site-footer.footer-v2 .f-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.site-footer.footer-v2 .f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}
.site-footer.footer-v2 .f-legal {
  display: flex;
  gap: 24px;
}
.site-footer.footer-v2 .f-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer.footer-v2 .f-legal a:hover {
  color: rgba(255, 255, 255, 0.70);
}

@media (max-width: 768px) {
  .site-footer.footer-v2 {
    padding: 0;
  }
  .site-footer.footer-v2 .f-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-footer.footer-v2 .f-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 36px 0 32px;
  }
  .site-footer.footer-v2 .f-tagline {
    max-width: 100%;
  }
  .site-footer.footer-v2 .f-social {
    align-items: center;
  }
  .site-footer.footer-v2 .f-social-title {
    text-align: center;
  }
  .site-footer.footer-v2 .f-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .site-footer.footer-v2 .f-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* About page (reference-aligned, template scoped) */
.about-page {
  background: var(--white);
}
.about-page .section-pad {
  padding: 80px 80px;
}
.about-page .section-pad-sm {
  padding: 64px 80px;
}
.about-page .about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.about-page .about-heading {
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}
.about-page .about-heading span {
  color: var(--sky);
}
.about-page .about-copy {
  font-size: 16px;
  line-height: 1.8;
  color: var(--blue);
  margin-top: 16px;
}
.about-page .about-copy strong {
  color: var(--navy);
}

.about-page .about-hero {
  padding-top: var(--nav-h, 88px);
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.about-page .about-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about-page .about-hero-glow-1 {
  top: -160px;
  right: -160px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(127, 144, 173, 0.18) 0%, transparent 65%);
}
.about-page .about-hero-glow-2 {
  bottom: -120px;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(228, 140, 96, 0.12) 0%, transparent 65%);
}
.about-page .about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('/assets/img/about.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.about-page .about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 40, 58, 0.97) 0%, rgba(10, 40, 58, 0.84) 42%, rgba(10, 40, 58, 0.50) 68%, rgba(10, 40, 58, 0.22) 100%), linear-gradient(to bottom, rgba(10, 40, 58, 0.25) 0%, transparent 28%, transparent 62%, rgba(10, 40, 58, 0.75) 100%);
}
.about-page .about-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding: 72px 80px 64px;
}
.about-page .about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 18px;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .6s .10s forwards;
}
.about-page .about-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.about-page .about-hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 22px;
  max-width: 680px;
  opacity: 0;
  animation: fadeUp .6s .20s forwards;
}
.about-page .about-hero-title span {
  color: var(--orange);
}
.about-page .about-hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 540px;
  opacity: 0;
  animation: fadeUp .6s .30s forwards;
}

.about-page .about-intro-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}
.about-page .about-intro-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 40, 58, 0.12);
}
.about-page .about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-page .about-intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(10, 40, 58, 0.35) 100%);
}
.about-page .about-intro-chip {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(10, 40, 58, 0.60);
  backdrop-filter: blur(14px);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-page .about-intro-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.about-page .about-intro-chip-text {
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.about-page .about-quote {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-page .about-quote::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 140, 96, 0.12) 0%, transparent 65%);
}
.about-page .about-quote-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.about-page .about-quote-mark {
  font-size: 100px;
  line-height: 0.65;
  color: var(--orange);
  font-family: Georgia, serif;
  user-select: none;
}
.about-page .about-quote-text {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: white;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.about-page .about-quote-text em {
  font-style: normal;
  color: var(--orange);
}
.about-page .about-quote-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.40);
  margin-top: 12px;
}

.about-page .about-why {
  background: var(--off);
}
.about-page .about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-page .about-target-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 48px;
}
.about-page .about-target-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  transition: border-color .25s, transform .25s;
}
.about-page .about-target-card:hover {
  border-color: var(--orange);
  transform: translateX(6px);
}
.about-page .about-target-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(127, 144, 173, 0.12);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}
.about-page .about-target-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .about-target-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-page .about-target-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--blue);
}

.about-page .about-offers {
  border-top: 1px solid var(--beige);
}
.about-page .about-offers-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.about-page .about-offer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--off);
  border: 1.5px solid var(--beige);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.about-page .about-offer-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 40, 58, 0.08);
}
.about-page .about-offer-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}
.about-page .about-offer-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .about-offer-icon-company {
  background: rgba(10, 40, 58, 0.08);
  border-color: rgba(10, 40, 58, 0.18);
  color: var(--navy);
}
.about-page .about-offer-icon-course {
  background: rgba(10, 40, 58, 0.08);
  border-color: rgba(10, 40, 58, 0.18);
  color: var(--navy);
}
.about-page .about-offer-icon-guide {
  background: rgba(10, 40, 58, 0.08);
  border-color: rgba(10, 40, 58, 0.18);
  color: var(--navy);
}
.about-page .about-offer-icon-course svg {
  width: 26px;
  height: 26px;
}
.about-page .about-offer-icon-course svg path:last-child {
  fill: currentColor;
  stroke: none;
}
.about-page .about-offer-card:hover .about-offer-icon {
  color: var(--orange);
  border-color: rgba(228, 140, 96, 0.40);
}
.about-page .about-offer-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-page .about-offer-content {
  flex: 1;
}
.about-page .about-offer-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.about-page .about-offer-content p {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.55;
}
.about-page .about-offer-card:hover .about-offer-arrow {
  background: var(--orange);
}
.about-page .about-offer-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy);
  stroke-width: 2.5;
  fill: none;
}
.about-page .about-offer-card:hover .about-offer-arrow svg {
  stroke: white;
}

.about-page .about-method {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-page .about-method::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 144, 173, 0.12) 0%, transparent 65%);
}
.about-page .about-heading-light {
  color: white;
}
.about-page .about-method-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.about-page .about-method-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: background .25s, border-color .25s, transform .25s;
}
.about-page .about-method-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(127, 144, 173, 0.30);
  transform: translateY(-5px);
}
.about-page .about-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(228, 140, 96, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.about-page .about-method-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .about-method-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.about-page .about-method-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.72;
  flex: 1;
}
.about-page .about-method-quote {
  margin-top: 48px;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.55;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-page .about-method-quote span {
  color: var(--orange);
  font-style: normal;
}

.about-page .about-personal-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
}
.about-page .about-personal-highlight {
  margin: 28px 0;
  padding: 24px 28px 24px 36px;
  position: relative;
  background: var(--off);
  border-radius: 16px;
  border: 1px solid var(--beige);
  font-size: 15px;
  color: var(--navy);
  line-height: 1.65;
}
.about-page .about-personal-highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 2px;
  background: var(--orange);
}
.about-page .about-personal-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-page .about-personal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-page .about-personal-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 40, 58, 0.40) 100%);
}
.about-page .about-personal-image-wrap {
  position: relative;
}
.about-page .about-personal-float {
  position: absolute;
  bottom: -16px;
  left: -20px;
  z-index: 2;
  background: var(--navy);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 280px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.55;
  font-style: italic;
}

.about-page .about-cta {
  padding-top: 0;
}
.about-page .about-cta-box {
  background: var(--orange);
  border-radius: 20px;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-page .about-cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.about-page .about-cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.about-page .about-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-page .about-cta-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
  margin-bottom: 12px;
}
.about-page .about-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 520px;
}
.about-page .about-cta-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.about-page .about-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  color: var(--orange);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, background .2s, color .2s;
}
.about-page .about-btn-white:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}
.about-page .about-cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1100px) {
  .about-page .section-pad,
  .about-page .section-pad-sm {
    padding-left: 22px;
    padding-right: 22px;
  }
  .about-page .about-intro-grid,
  .about-page .about-why-grid,
  .about-page .about-personal-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-page .about-intro-image,
  .about-page .about-personal-image-wrap {
    max-width: 440px;
  }
  .about-page .about-method-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-page .about-hero-inner {
    padding: 56px 24px 48px;
  }
  .about-page .about-hero-title {
    font-size: 34px;
  }
  .about-page .section-pad,
  .about-page .section-pad-sm {
    padding: 60px 22px;
  }
  .about-page .about-method-grid,
  .about-page .about-offers-grid {
    grid-template-columns: 1fr;
  }
  .about-page .about-quote-mark {
    font-size: 64px;
  }
  .about-page .about-quote-inner {
    gap: 16px;
  }
  .about-page .about-cta {
    padding-top: 32px;
  }
  .about-page .about-cta-box {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 24px;
  }
  .about-page .about-cta-side,
  .about-page .about-cta-side .cta-btn {
    width: 100%;
    align-items: stretch;
    text-align: center;
    justify-content: center;
  }
  .about-page .about-personal-float {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 16px;
    max-width: 100%;
  }
  .about-page .about-target-list {
    margin-top: 0;
  }
  .about-page .about-target-list .about-target-card:first-child {
    margin-top: 0;
  }

  .about-page .about-intro-grid > :not(.about-intro-image) {
    order: 1;
  }

  .about-page .about-intro-grid > .about-intro-image {
    order: 2;
  }
}

/* About page final alignment (hero + offers) */
.about-page .about-offers-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.about-page .about-offer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--off);
  border: 1.5px solid var(--beige);
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.about-page .about-offer-content { flex: 1; }
.about-page .about-offer-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.about-page .about-offer-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.about-page .about-offer-content p {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-page .about-offers-grid {
    grid-template-columns: 1fr;
  }
}
.about-page .hero {
  position: relative;
  overflow: hidden;
}
.about-page .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('/assets/img/hero_about_me.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 65% top;
}
.about-page .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,40,58,0.97) 0%, rgba(10,40,58,0.84) 42%, rgba(10,40,58,0.50) 68%, rgba(10,40,58,0.22) 100%),
              linear-gradient(to bottom, rgba(10,40,58,0.25) 0%, transparent 28%, transparent 62%, rgba(10,40,58,0.75) 100%);
}
.about-page .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding: 72px 80px 64px;
}
@media (max-width: 768px) {
  .about-page .hero-inner {
    padding: 56px 24px 48px;
  }
}
/* About sections final typo + offers fix */
.about-page .about-why .about-eyebrow,
.about-page .about-offers .about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.about-page .about-why .about-heading,
.about-page .about-offers .about-heading {
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-page .about-offer-arrow {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.about-page .about-offer-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy);
  stroke-width: 2.5;
  fill: none;
  transition: stroke .2s;
}

/* Workshops hero: no hover jump on CTA buttons */
.content-page .hero .btn-primary:hover,
.content-page .hero .btn-hero-ghost:hover {
  transform: none;
}

/* Workshops contact submit: no hover jump */
.content-page .kontakt-sec .btn-submit:hover {
  transform: none;
}


/* Workshops CTA width aligned to content wrap */
.content-page .cta-sec .cta-box {
  max-width: var(--wrap);
}


/* Homepage hero text left spacing aligned to workshops/about */
.hero > .hero-bg-img + .hero-inner {
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding: 72px 80px 64px;
}

@media (max-width: 768px) {
  .hero > .hero-bg-img + .hero-inner {
    padding: 56px 24px 48px;
  }
}

/* Nav width aligned to global content container */
#mainNav {
  padding-left: 0;
  padding-right: 0;
}

#mainNav .nav-inner {
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  #mainNav .nav-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Global Button Baseline */
:where(.btn-primary, .btn-secondary, .btn-outline, .btn-hero-ghost, .btn-white, .cta-btn, .btn-start, .btn-submit) {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
:where(.btn-primary, .btn-secondary, .btn-outline, .btn-hero-ghost, .btn-white, .cta-btn, .btn-start, .btn-submit) svg {
  flex: 0 0 auto;
}

/* Unified button arrow icon style (same as workshops hero) */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.cta-btn svg,
.btn-start svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

/* Off-sections: add separators only when adjacent to non-off sections */
:is(
  .features-section,
  .problem-sec,
  .logos-sec,
  .faq-sec,
  .about-page .about-why
) {
  border-top: 0;
  border-bottom: 0;
}

:is(section, .site-footer):not(:is(
  .features-section,
  .problem-sec,
  .logos-sec,
  .faq-sec,
  .about-page .about-why
)) + :is(
  .features-section,
  .problem-sec,
  .logos-sec,
  .faq-sec,
  .about-page .about-why
) {
  border-top: 1px solid var(--beige);
}

:is(
  .features-section,
  .problem-sec,
  .logos-sec,
  .faq-sec,
  .about-page .about-why
):has(+ :is(section, .site-footer):not(:is(
  .features-section,
  .problem-sec,
  .logos-sec,
  .faq-sec,
  .about-page .about-why
))) {
  border-bottom: 1px solid var(--beige);
}

/* Home CTA width aligned with workshops CTA */
.cta-section .cta-box {
  max-width: var(--wrap);
}


/* Home CTA width fallback fix */
.cta-section .cta-box {
  max-width: var(--wrap, 1240px);
}

@media (max-width: 768px) {
  .hero > .hero-stats-bar {
    display: none;
  }
}

@media (min-width: 769px) {
  .hero-stats-bar .stat-label {
    white-space: nowrap;
  }
}

.coming-page .videokurs-hero-bg {
  background-image: url('/assets/img/hero_videokurs.jpg');
  background-position: center top;
}

.coming-page .ratgeber-hero-bg {
  background-image: url('/assets/img/hero_ratgeber.jpg');
  background-position: center top;
}

.coming-page .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding: 72px 80px 64px;
}

.coming-page .problem-sec,
.coming-page .angebot-sec {
  padding: 80px 80px;
}

.coming-page .videokurs-countdown-section {
  padding-bottom: 0;
}

.coming-page .problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coming-page .angebot-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 0;
}

.coming-page .wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

.coming-page .videokurs-actions {
  margin-top: 32px;
}

.coming-page .videokurs-target-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coming-page .videokurs-target-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  transition: border-color .25s, transform .25s;
}

.coming-page .videokurs-target-card:hover {
  border-color: var(--orange);
  transform: translateX(6px);
}

.coming-page .videokurs-target-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(127, 144, 173, 0.12);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}

.coming-page .videokurs-target-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coming-page .videokurs-target-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.coming-page .videokurs-target-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--blue);
}

.coming-page .videokurs-countdown-card {
  text-align: center;
}

.coming-page .videokurs-btn,
.coming-page .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.coming-page .videokurs-btn:hover {
  transform: none;
}

.coming-page .videokurs-btn svg,
.coming-page .btn-outline svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.coming-page .videokurs-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.coming-page .videokurs-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-page .videokurs-countdown-num {
  display: block;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.coming-page .videokurs-countdown-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
}

.coming-page .videokurs-launch-date {
  font-size: 13px;
  color: var(--taupe);
}

.coming-page .videokurs-countdown-live {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
}

@media (max-width: 768px) {
  .coming-page .hero-inner {
    padding: 56px 24px 48px;
  }

  .coming-page .problem-sec,
  .coming-page .angebot-sec,
  .coming-page .cta-sec {
    padding-left: 24px;
    padding-right: 24px;
  }

  .coming-page .problem-grid,
  .coming-page .angebot-intro {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .coming-page .videokurs-actions {
    margin-top: 24px;
  }

  .coming-page .videokurs-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .coming-page .videokurs-countdown-card {
    padding: 32px 24px;
  }

  .coming-page .videokurs-actions {
    width: 100%;
  }

  .coming-page .videokurs-actions .btn-outline,
  .coming-page .videokurs-actions .videokurs-btn,
  .coming-page .cta-right .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .coming-page .cta-right {
    width: 100%;
    align-items: stretch;
  }
}



/* About personal quote: same visual style as home about quote, but not bold */
.about-page .about-personal-highlight {
  margin: 36px 0;
  background: var(--off);
  border: 0;
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
}

.about-page .about-personal-highlight::before {
  content: none;
}

.about-page .about-personal-highlight strong {
  font-weight: 400;
  color: var(--navy);
}

/* Page-specific precedence over shared .content-page @scope rules */
.content-page.about-page .hero {
  position: relative;
  overflow: hidden;
}

.content-page.about-page .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('/assets/img/hero_about_me.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 65% top;
}

.content-page.about-page .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,40,58,0.97) 0%, rgba(10,40,58,0.84) 42%, rgba(10,40,58,0.50) 68%, rgba(10,40,58,0.22) 100%),
              linear-gradient(to bottom, rgba(10,40,58,0.25) 0%, transparent 28%, transparent 62%, rgba(10,40,58,0.75) 100%);
}

.content-page.about-page .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding: 72px 80px 64px;
}

.content-page.coming-page .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--wrap, 1240px) + 160px);
  margin: 0 auto;
  padding: 72px 80px 64px;
}

.content-page.coming-page .problem-sec,
.content-page.coming-page .angebot-sec {
  padding: 80px 80px;
}

.content-page.coming-page .problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-page.coming-page .angebot-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 0;
}

.content-page.coming-page .wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .content-page.about-page .hero-inner,
  .content-page.coming-page .hero-inner {
    padding: 56px 24px 48px;
  }

  .content-page.coming-page .problem-sec,
  .content-page.coming-page .angebot-sec,
  .content-page.coming-page .cta-sec {
    padding-left: 24px;
    padding-right: 24px;
  }

  .content-page.coming-page .problem-grid,
  .content-page.coming-page .angebot-intro {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* Tablet optimization only (desktop and smartphone unchanged) */
@media (min-width: 769px) and (max-width: 1100px) {
  nav {
    padding-left: 40px;
    padding-right: 40px;
  }

  .burger {
    display: none !important;
  }

  #mainNav .nav-links-desktop {
    display: flex !important;
  }

  #mainNav #mobileMenu.mobile-nav-links {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  #mainNav .nav-links-desktop.nav-links,
  #mainNav .nav-links-desktop.nav-links.open {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 32px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  #mainNav .nav-links-desktop.nav-links::before {
    content: none !important;
  }

  #mainNav .nav-links-desktop.nav-links > li {
    position: static !important;
    z-index: auto !important;
    width: auto !important;
  }

  #mainNav .nav-links-desktop.nav-links a {
    display: inline-flex !important;
    width: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  #mainNav .nav-links-desktop.nav-links a:hover {
    background: transparent !important;
  }

  #mainNav .nav-links-desktop.nav-links a.is-active {
    background: transparent !important;
    color: var(--orange) !important;
    font-weight: 700;
  }

  #mainNav .nav-links-desktop.nav-links .nav-btn {
    width: auto !important;
    margin-top: 0 !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    justify-content: center;
  }

  .hero-inner,
  .about,
  .features-section,
  .offers,
  .testimonials,
  .cta-section,
  .site-footer,
  .page-shell {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero > .hero-bg-img + .hero-inner {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats-bar .stat-box {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 20px;
  }

  .hero-stats-bar .stat-box:last-child {
    border-right: 0;
  }

  .about {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 16px;
  }

  .testi-card {
    grid-template-columns: 96px 1fr;
    align-items: center;
  }

  .testi-card-left {
    margin-bottom: 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }

  .footer-top > :first-child {
    grid-column: 1 / -1;
  }

  .content-page .hero-inner {
    padding: 72px 40px 64px;
  }

  .content-page .problem-sec,
  .content-page .angebot-sec,
  .content-page .testi-sec,
  .content-page .wer-sec,
  .content-page .logos-sec,
  .content-page .kontakt-sec,
  .content-page .faq-sec,
  .content-page .cta-sec {
    padding-left: 40px;
    padding-right: 40px;
  }

  .content-page .testi-grid,
  .content-page .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-page .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-page .format-grid .fmt-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .about-page .about-intro-grid {
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }

  .about-page .about-intro-image {
    max-width: none;
  }

  .about-page .about-why-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
  }

  .about-page .about-personal-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 48px;
    align-items: center;
  }

  .about-page .about-personal-image-wrap {
    max-width: none;
  }

  .about-page .about-offer-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .about-page .about-offer-content {
    width: 100%;
  }

  .about-page .about-offer-arrow {
    align-self: flex-end;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .content-page .problem-grid,
  .content-page .angebot-intro,
  .content-page .wer-grid,
  .content-page .kontakt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
  }

  .content-page .wer-photo-col {
    margin-top: 0;
  }

  .cta-box {
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding: 56px 48px;
  }
}

/* Home KPIs: desktop and tablet identical, mobile hidden */
@media (min-width: 769px) and (max-width: 1100px) {
  .hero > .hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  .hero > .hero-stats-bar .stat-box {
    min-height: auto !important;
    padding: 32px 48px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 0 !important;
  }

  .hero > .hero-stats-bar .stat-box:last-child {
    border-right: 0 !important;
  }

  .hero > .hero-stats-bar .stat-num {
    font-size: 40px !important;
    line-height: 1;
  }

  .hero > .hero-stats-bar .stat-label {
    margin-top: 8px !important;
    font-size: 13px !important;
    line-height: normal;
    color: rgba(255, 255, 255, 0.45);
  }
}

@media (max-width: 768px) {
  .hero > .hero-stats-bar {
    display: none !important;
  }
}

/* Tablet hero spacing parity across all subpages (same as workshops) */
@media (min-width: 769px) and (max-width: 1100px) {
  .content-page.workshops-page .hero-inner,
  .content-page.about-page .hero-inner,
  .content-page.coming-page .hero-inner,
  .content-page .hero-inner {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .legal-page-header-inner {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .about-page .section-pad,
  .about-page .section-pad-sm {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .content-page.coming-page .problem-sec,
  .content-page.coming-page .angebot-sec,
  .content-page.coming-page .cta-sec {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .content-page.ratgeber-page .problem-grid,
  .content-page.ratgeber-page .angebot-intro {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 56px !important;
  }

  .site-footer.footer-v2 .f-inner {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

/* Videokurs + Ratgeber: CTA without top padding */
.content-page.coming-page .cta-sec {
  padding-top: 0;
}

/* Homepage mobile: About section order = text -> image -> button */
.about-mobile-btn {
  display: none;
}

@media (max-width: 768px) {
  #about .about {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  #about .about-blockquote {
    margin-bottom: 0;
  }

  #about .about > div:not(.about-visual) {
    order: 1;
  }

  #about .about > .about-visual {
    order: 2;
  }

  #about .about > div:not(.about-visual) > .btn-primary {
    display: none;
  }

  #about .about > .about-mobile-btn {
    order: 3;
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .content-page.workshops-page .cta-sec {
    padding-top: 80px;
  }
}

/* Home: description texts align like testimonials and stay inside container */
#features .feat-sub,
#offers .off-sub {
  white-space: normal;
  max-width: none;
  width: 100%;
}

@media (max-width: 768px) {
  #features .feat-sub,
  #offers .off-sub {
    white-space: normal;
  }
}
