
:root {
  --color-bg: #0d0d0d;              
  --color-bg-section: #f4f4f2;      
  --color-bg-white: #ffffff;
  --color-yellow: #84a98d;          
  --color-yellow-hover: #6f9179;    
  --color-orange: #84a98d;          
  --color-tuev-blue: #84a98d;
  --color-green-soft: #cad2c5;      
  --color-text: #141414;            
  --color-text-muted: #6b6f6b;      
  --color-text-light: #f2f2f2;
  --color-text-light-muted: #b9beb9;
  --color-border-light: rgba(0, 0, 0, 0.08);
}
.as-main { overflow: clip; }
.site-header { background: #0e0e0e; }
.site-footer { background: #0b0b0b; }
.site-header .logo-link img { height: 46px; }
@media (max-width: 600px) { .site-header .logo-link img { height: 40px; } }
.as-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--as-delay, 0s);
  will-change: opacity, transform;
}
.as-reveal.in { opacity: 1; transform: none; }
.as-section { padding: clamp(72px, 11vw, 160px) 0; }
.as-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow-hover);
  margin-bottom: 16px;
}
.as-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.as-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 60ch;
}
.as-section-head { text-align: center; max-width: 780px; margin: 0 auto clamp(40px, 6vw, 72px); }
.as-section-head .as-lead { margin-inline: auto; }
.as-hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
  color: #fff;
}
.as-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.as-hero-img.is-active { opacity: 1; }
.as-hero-inner { will-change: transform, opacity; }
.as-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.48) 42%, rgba(10,10,10,0.12) 100%),
    rgba(10,10,10,0.24);
}
.as-hero-inner { position: relative; z-index: 2; max-width: 780px; }
.as-hero-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: clamp(14px, 2vw, 22px);
}
.as-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.as-hero h1 .accent { color: var(--color-yellow); }
.as-hero p {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 46ch;
  margin: 0 0 34px;
}
.as-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.as-load { opacity: 0; transform: translateY(26px); animation: asLoadUp 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.as-load.d1 { animation-delay: 0.15s; }
.as-load.d2 { animation-delay: 0.32s; }
.as-load.d3 { animation-delay: 0.5s; }
.as-load.d4 { animation-delay: 0.66s; }
.as-load.d5 { animation-delay: 0.82s; }
.as-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  width: fit-content;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.as-hero-rating:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.35); transform: translateY(-2px); }
.as-hero-rating .g-logo { flex: 0 0 auto; width: 20px; height: 20px; }
.as-hero-rating .g-logo svg { width: 20px; height: 20px; display: block; }
.as-hero-rating .stars { color: #ffc107; letter-spacing: 1.5px; font-size: 0.98rem; line-height: 1; }
.as-hero-rating .r-text { font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); white-space: nowrap; }
.as-hero-rating .r-text strong { color: #fff; font-weight: 700; margin-right: 6px; }
@keyframes asLoadUp { to { opacity: 1; transform: none; } }
.as-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
}
.as-btn-primary { background: var(--color-yellow); color: #fff; }
.as-btn-primary:hover { background: var(--color-yellow-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.as-btn-ghost { background: rgba(255,255,255,0.12); color: #fff; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.3); }
.as-btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.as-btn-dark { background: var(--color-bg); color: #fff; }
.as-btn-dark:hover { background: var(--color-yellow); color: #fff; transform: translateY(-2px); }
.as-bento-section { background: var(--color-bg-section); }
.as-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(170px, 21vw, 250px);
  gap: 14px;
}
.bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  display: block;
  isolation: isolate;
}
.bento-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.15) 45%, rgba(10,10,10,0) 72%);
  z-index: 1;
}
.bento-tile:hover img { transform: scale(1.06); }
.bento-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(18px, 2vw, 28px);
  color: #fff;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-cap .k {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.bento-cap .s {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  max-width: 40ch;
  opacity: 0;
  max-height: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1), max-height 0.5s ease;
}
.bento-tile:hover .bento-cap .s { opacity: 1; max-height: 100px; transform: none; }
.bento-tile .arrow {
  position: absolute;
  top: clamp(16px, 1.6vw, 24px);
  right: clamp(16px, 1.6vw, 24px);
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: translateY(-6px) scale(0.9);
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
}
.bento-tile:hover .arrow { opacity: 1; transform: none; }
.bento-tile .arrow svg { width: 18px; height: 18px; }
.bento-badumbau { grid-column: span 2; grid-row: span 2; }
.bento-heizung  { grid-column: span 2; }
.bento-barriere { grid-column: span 2; }
.bento-wartung  { grid-column: span 2; }
@media (max-width: 900px) {
  .as-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(160px, 30vw, 220px); }
  .bento-badumbau { grid-column: span 2; grid-row: span 1; }
  .bento-heizung, .bento-barriere, .bento-wartung { grid-column: span 2; }
}
@media (max-width: 560px) {
  .as-bento { grid-template-columns: 1fr; }
  .bento-badumbau, .bento-heizung, .bento-barriere, .bento-wartung { grid-column: span 1; }
  .bento-cap .s { opacity: 1; max-height: 100px; transform: none; }  
}
.as-projects {
  background: var(--color-bg);
  color: #fff;
}
.as-projects .as-eyebrow { color: var(--color-yellow); }
.as-projects .as-lead { color: var(--color-text-light-muted); }
.as-pin { position: relative; }
.as-pin-viewport { padding: 0; }
.as-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding: 8px clamp(20px, 6vw, 80px) 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.as-track::-webkit-scrollbar { display: none; }
.proj-card {
  scroll-snap-align: center;
  flex: 0 0 clamp(260px, 78vw, 420px);
  height: clamp(320px, 56vh, 460px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #141414;
}
.proj-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.proj-card:hover img { transform: scale(1.05); }
.proj-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.05) 50%);
}
.proj-cap {
  position: absolute; left: 0; bottom: 0;
  padding: clamp(20px, 2.4vw, 32px);
  z-index: 2;
}
.proj-cap .k { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 1.8vw, 1.7rem); }
.proj-cap .s { display: block; margin-top: 6px; color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.as-projects.is-pinned .as-pin-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.as-projects.is-pinned .as-track {
  overflow: visible;
  scroll-snap-type: none;
  flex-wrap: nowrap;
  will-change: transform;
  align-items: center;
}
.as-projects.is-pinned .as-pin-head {
  padding: 0 clamp(20px, 6vw, 80px);
  margin-bottom: clamp(24px, 4vh, 48px);
}
.as-pin-head { text-align: left; max-width: 640px; }
.as-pin-progress {
  height: 3px;
  width: min(320px, 60vw);
  margin: clamp(20px, 3vh, 36px) clamp(20px, 6vw, 80px) 0;
  background: rgba(255,255,255,0.16);
  border-radius: 3px;
  overflow: hidden;
  display: none;
}
.as-projects.is-pinned .as-pin-progress { display: block; }
.as-pin-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-yellow);
  border-radius: 3px;
}
.as-statement {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background: var(--color-bg);
}
.as-statement img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.as-statement::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 50%, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.72) 100%);
}
.as-statement-inner { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; }
.as-statement h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.as-statement h2 .accent { color: var(--color-yellow); }
.as-statement p { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: rgba(255,255,255,0.88); max-width: 60ch; margin: 0 auto 30px; }
.as-cta { background: var(--color-bg-section); text-align: center; }
.as-cta h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 3.6vw, 3rem); letter-spacing: -0.02em; margin: 0 0 16px; }
.as-cta p { color: var(--color-text-muted); font-size: 1.15rem; margin: 0 auto 30px; max-width: 52ch; }
@media (prefers-reduced-motion: reduce) {
  .as-reveal, .as-load { opacity: 1 !important; transform: none !important; animation: none !important; }
  .as-hero-inner { transform: none !important; opacity: 1 !important; }
}
.as-white { background: var(--color-bg-white); }
.as-dark { background: var(--color-bg); color: #fff; }
.as-dark .as-eyebrow { color: var(--color-yellow); }
.as-dark .as-lead { color: var(--color-text-light-muted); }
.as-dark .as-h2 { color: #fff; }
.as-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.as-step .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-yellow);
  margin-bottom: 16px;
}
.as-step h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 1.8vw, 1.5rem); margin: 0 0 10px; }
.as-step p { line-height: 1.65; margin: 0; font-size: 0.98rem; }
.as-dark .as-step p { color: var(--color-text-light-muted); }
@media (max-width: 760px) { .as-steps { grid-template-columns: 1fr; gap: 34px; } }
.as-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.as-feature {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 30px);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.as-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.as-feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(132, 169, 141, 0.16);
  color: var(--color-yellow-hover);
  margin-bottom: 16px;
}
.as-feature-icon svg { width: 24px; height: 24px; }
.as-feature h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin: 0 0 6px; }
.as-feature p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .as-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .as-features { grid-template-columns: 1fr; } }
.as-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 40px);
  margin: clamp(40px, 6vw, 68px) 0;
  text-align: center;
}
.as-stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-yellow-hover);
}
.as-stat .t { display: block; margin-top: 12px; font-weight: 600; }
.as-stat .s { display: block; margin-top: 4px; color: var(--color-text-muted); font-size: 0.9rem; }
@media (max-width: 640px) { .as-stats { grid-template-columns: 1fr; gap: 30px; } }
.as-adv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(26px, 3vw, 44px);
}
.as-adv-item h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  margin: 0 0 8px; display: flex; align-items: center; gap: 12px;
}
.as-adv-item h3::before { content: ""; width: 24px; height: 2px; background: var(--color-yellow); border-radius: 2px; flex: 0 0 auto; }
.as-adv-item p { color: var(--color-text-muted); line-height: 1.65; margin: 0; }
@media (max-width: 760px) { .as-adv { grid-template-columns: 1fr; } }
.as-faq { max-width: 820px; margin: 0 auto; }
.as-faq details { border-bottom: 1px solid var(--color-border-light); }
.as-faq summary {
  list-style: none; cursor: pointer;
  padding: clamp(18px, 2vw, 24px) 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  transition: color var(--transition);
}
.as-faq summary::-webkit-details-marker { display: none; }
.as-faq summary:hover { color: var(--color-yellow-hover); }
.as-faq summary .ic { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.as-faq summary .ic::before,
.as-faq summary .ic::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--color-yellow-hover); border-radius: 2px;
  transform: translate(-50%, -50%);
}
.as-faq summary .ic::before { width: 14px; height: 2px; }
.as-faq summary .ic::after { width: 2px; height: 14px; transition: transform var(--transition); }
.as-faq details[open] summary { color: var(--color-yellow-hover); }
.as-faq details[open] summary .ic::after { transform: translate(-50%, -50%) scaleY(0); }
.as-faq .a p { margin: 0 0 22px; color: var(--color-text-muted); line-height: 1.7; }
.as-faq .a a { color: var(--color-yellow-hover); border-bottom: 1px solid var(--color-yellow); }
.as-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
  margin: clamp(36px, 5vw, 56px) 0;
}
.as-contact-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px 22px; color: #fff;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.as-contact-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); border-color: var(--color-yellow); }
.as-contact-card .ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(132, 169, 141, 0.22); color: var(--color-yellow);
}
.as-contact-card .ic svg { width: 22px; height: 22px; }
.as-contact-card .k { display: block; font-size: 0.8rem; color: var(--color-text-light-muted); }
.as-contact-card .v { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
@media (max-width: 820px) { .as-contact-grid { grid-template-columns: 1fr; } }
.as-contact-cta { text-align: center; }
.as-review-stack .stack-hint { color: var(--color-text-muted); }
.as-review-stack .stack-layout {
  width: 100%;
  display: grid;
  gap: clamp(28px, 4vw, 72px);
}
.as-review-stack .stack-copy {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-top: clamp(24px, 4vw, 48px);
}
.as-review-stack .stack-copy .as-lead { margin-inline: auto; }
.as-review-stack .stack-rating {
  margin-top: 28px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  backdrop-filter: none;
  box-shadow: var(--shadow-card);
  color: var(--color-text);
}
.as-review-stack .stack-rating:hover {
  background: var(--color-bg-white);
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
.as-review-stack .stack-rating .r-text { color: var(--color-text-muted); }
.as-review-stack .stack-rating .r-text strong { color: var(--color-text); }
.reviews-stack.is-enhanced .stack-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  align-items: center;
}
.reviews-stack.is-enhanced .stack-copy {
  text-align: left;
  max-width: 520px;
  margin: 0;
  padding-top: 0;
}
.reviews-stack.is-enhanced .stack-copy .as-lead { margin-inline: 0; }
.reviews-stack.is-enhanced .stack-deck { justify-self: center; }
@media (max-width: 900px) {
  .reviews-stack.is-enhanced .stack-layout {
    grid-template-columns: 1fr;
    gap: clamp(18px, 4vh, 32px);
    align-content: center;
    justify-items: center;
  }
  .reviews-stack.is-enhanced .stack-copy {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
  }
  .reviews-stack.is-enhanced .stack-copy .as-lead {
    margin-inline: auto;
    font-size: 1rem;
  }
  .reviews-stack.is-enhanced .stack-copy .stack-rating { margin-top: 16px; }
  .reviews-stack.is-enhanced .stack-deck { height: clamp(300px, 38vh, 380px); }
}
.stars,
.review-meta .stars,
.review-card .stars,
.reviews-summary .stars,
.hero-rating .stars,
.as-hero-rating .stars { color: #FBBC04; }
.page-hero { padding: clamp(100px, 12vw, 156px) 0 clamp(56px, 7vw, 92px); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.page-hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.6; max-width: 760px; }
.page-hero .breadcrumbs a:hover { color: var(--color-yellow); }
.split-copy h2,
.section-head h2,
.feature-section h2,
.cta-band h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.split-media img,
.split-media .img-ph { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.usp-card {
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.usp-card .ico {
  border-radius: 14px;
  background: rgba(132, 169, 141, 0.16);
  color: var(--color-yellow-hover);
}
.cta-band .btn-primary { background: var(--color-yellow); color: #fff; border-color: var(--color-yellow); }
.cta-band .btn-primary:hover { background: var(--color-yellow-hover); border-color: var(--color-yellow-hover); color: #fff; }
.cta-band .btn-secondary { background: #fff; border-color: #fff; color: #000; }
.cta-band .btn-secondary:hover { background: #ececea; border-color: #ececea; color: #000; transform: translateY(-2px); }
a.btn-nav {
  position: relative;
  z-index: 0;
  height: 46px;
  padding: 0 32px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
a.btn-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-yellow);
  border-radius: 0;
  transform: skewX(-14.5deg);
  transition: background 0.25s ease;
}
a.btn-nav:hover,
a.btn-nav:focus,
a.btn-nav:focus-visible {
  background: transparent;
  color: #fff !important;
  transform: none;
}
a.btn-nav:hover::before,
a.btn-nav:focus-visible::before { background: var(--color-yellow-hover); }
@media (min-width: 769px) {
  a.btn-nav {
    height: 72px;
    margin: -13px 0;
    margin-right: 10px; 
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                margin 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .site-header.is-scrolled a.btn-nav {
    height: 62px;
    margin: -8px 0;
    margin-right: 10px;
  }
}
.as-projects .as-pin-viewport {
  padding-top: clamp(48px, 7vh, 88px);
  padding-bottom: clamp(24px, 4vh, 48px);
}
.as-projects.is-pinned .as-pin-viewport { justify-content: safe center; }
.as-detail-intro {
  background:
    radial-gradient(80% 110% at 50% -10%, rgba(132, 169, 141, 0.16) 0%, rgba(132, 169, 141, 0) 60%),
    var(--color-bg);
  color: #fff;
  text-align: center;
  padding: clamp(96px, 12vw, 170px) 0 clamp(48px, 6vw, 80px);
}
.as-detail-crumb {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow);
}
.as-detail-crumb a { color: rgba(255, 255, 255, 0.55); transition: color var(--transition); }
.as-detail-crumb a:hover { color: #fff; }
.as-detail-crumb .sep { color: rgba(255, 255, 255, 0.3); }
.as-detail-intro h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin: 0 auto 20px;
  max-width: 22ch;
}
.as-detail-intro h1 .accent { color: var(--color-yellow); }
.as-detail-intro .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 62ch;
  margin: 0 auto;
}
.as-detail-intro .as-hero-actions { justify-content: center; margin-top: clamp(26px, 3vw, 36px); }
.as-media-band { background: var(--color-bg); padding: 0 0 clamp(64px, 8vw, 110px); }
.as-media-band .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.as-media-band img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) { .as-media-band .frame { aspect-ratio: 4 / 3; } }
.as-features.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .as-features.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .as-features.cols-3 { grid-template-columns: 1fr; } }
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  min-width: 0;
}
.btn-primary {
  background: var(--color-yellow);
  color: #fff;
  border-color: var(--color-yellow);
}
.btn-primary:hover {
  background: var(--color-yellow-hover);
  border-color: var(--color-yellow-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.page-hero {
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(132, 169, 141, 0.14) 0%, rgba(132, 169, 141, 0) 55%),
    var(--color-bg);
}
.page-hero .breadcrumbs {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.page-hero .lead { color: rgba(255, 255, 255, 0.82); }
.cta-band {
  padding: clamp(80px, 11vw, 150px) 0;
  background:
    radial-gradient(120% 160% at 50% 120%, rgba(132, 169, 141, 0.16) 0%, rgba(132, 169, 141, 0) 60%),
    var(--color-bg);
}
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.08; }
.cta-band p { font-size: clamp(1rem, 1.5vw, 1.2rem); }
.section-greige .usp-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.section-greige .usp-card h3 { color: #fff; }
.section-greige .usp-card p { color: var(--color-text-light-muted); }
.section-greige .usp-card:hover { border-color: var(--color-yellow); box-shadow: none; }
.section-greige .usp-card .ico { background: rgba(132, 169, 141, 0.22); color: var(--color-yellow); }
.as-bento-8 .bento-sanitaer,
.as-bento-8 .bento-komplett { grid-column: span 2; }
@media (max-width: 900px) {
  .as-bento-8 .bento-sanitaer,
  .as-bento-8 .bento-komplett { grid-column: span 2; }
}
@media (max-width: 560px) {
  .as-bento-8 .bento-sanitaer,
  .as-bento-8 .bento-komplett { grid-column: span 1; }
}
:is(body.app-page, .jobs-apply) .contact-section {
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(132, 169, 141, 0.12) 0%, rgba(132, 169, 141, 0) 55%),
    var(--color-bg);
}
:is(body.app-page, .jobs-apply) .anfrage {
  position: relative;
  overflow: hidden;
  --af-pad: clamp(24px, 4vw, 44px);
  padding: var(--af-pad);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
:is(body.app-page, .jobs-apply) .anfrage-top { justify-content: space-between; align-items: center; margin-bottom: 26px; }
:is(body.app-page, .jobs-apply) .step-topic {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}
:is(body.app-page, .jobs-apply) .progress-ring { position: relative; width: 56px; height: 56px; flex: 0 0 auto; }
:is(body.app-page, .jobs-apply) .progress-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); display: block; }
:is(body.app-page, .jobs-apply) .progress-ring .ring-track { fill: none; stroke: rgba(255, 255, 255, 0.14); stroke-width: 5; }
:is(body.app-page, .jobs-apply) .progress-ring .ring-fill {
  fill: none;
  stroke: var(--color-yellow);
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
:is(body.app-page, .jobs-apply) .ring-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.8rem; color: #fff;
}
:is(body.app-page, .jobs-apply) .anfrage-step legend,
:is(body.app-page, .jobs-apply) .anfrage-step > h3 {
  color: #fff; text-align: left; margin: 0 0 24px; max-width: none;
}
:is(body.app-page, .jobs-apply) .anfrage-step.is-active { animation: afWipeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both; }
:is(body.app-page, .jobs-apply) .anfrage-step.is-leaving {
  display: flex; flex-direction: column;
  position: absolute;
  left: var(--af-pad); right: var(--af-pad);
  top: calc(var(--af-pad) + 82px);
  pointer-events: none;
  animation: afWipeOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes afWipeIn { from { opacity: 0; transform: translateY(44px); } to { opacity: 1; transform: none; } }
@keyframes afWipeOut { to { opacity: 0; transform: translateY(-44px); } }
@media (prefers-reduced-motion: reduce) {
  :is(body.app-page, .jobs-apply) .anfrage-step.is-active { animation: afFadeIn 0.3s ease both; }
  :is(body.app-page, .jobs-apply) .anfrage-step.is-leaving { display: none; animation: none; }
}
@keyframes afFadeIn { from { opacity: 0; } to { opacity: 1; } }
:is(body.app-page, .jobs-apply) .choice {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-light);
}
:is(body.app-page, .jobs-apply) .choice:hover { border-color: var(--color-yellow); background: rgba(132, 169, 141, 0.1); }
:is(body.app-page, .jobs-apply) .choice:has(input:checked) {
  border-color: var(--color-yellow);
  background: rgba(132, 169, 141, 0.18);
  box-shadow: inset 0 0 0 1px var(--color-yellow);
  color: #fff;
}
:is(body.app-page, .jobs-apply) .dropzone {
  padding: clamp(28px, 4vw, 40px) 24px;
  gap: 12px;
  border: 1.5px dashed rgba(132, 169, 141, 0.55);
  border-radius: var(--radius-lg);
  background: rgba(132, 169, 141, 0.06);
  color: var(--color-text-light-muted);
}
:is(body.app-page, .jobs-apply) .dropzone:hover,
:is(body.app-page, .jobs-apply) .dropzone.is-drag {
  border-color: var(--color-yellow);
  background: rgba(132, 169, 141, 0.12);
}
:is(body.app-page, .jobs-apply) .dropzone-icon {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(132, 169, 141, 0.18);
  color: var(--color-yellow);
}
:is(body.app-page, .jobs-apply) .dropzone-icon svg { width: 24px; height: 24px; }
:is(body.app-page, .jobs-apply) .dropzone-text { color: var(--color-text-light); }
:is(body.app-page, .jobs-apply) .dropzone-text strong { color: var(--color-yellow); }
:is(body.app-page, .jobs-apply) .dropzone-hint { color: var(--color-text-light-muted); }
:is(body.app-page, .jobs-apply) .file-previews { gap: 12px; margin-top: 16px; }
:is(body.app-page, .jobs-apply) .file-thumb {
  width: 84px; height: 84px; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
:is(body.app-page, .jobs-apply) .file-thumb button { background: rgba(13, 13, 13, 0.8); }
:is(body.app-page, .jobs-apply) .file-thumb button:hover { background: var(--color-yellow); }
:is(body.app-page, .jobs-apply) .field label { color: var(--color-text-light); }
:is(body.app-page, .jobs-apply) .field input,
:is(body.app-page, .jobs-apply) .field select,
:is(body.app-page, .jobs-apply) .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  color-scheme: dark;
}
:is(body.app-page, .jobs-apply) .field input::placeholder,
:is(body.app-page, .jobs-apply) .field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
:is(body.app-page, .jobs-apply) .field input:focus,
:is(body.app-page, .jobs-apply) .field select:focus,
:is(body.app-page, .jobs-apply) .field textarea:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(132, 169, 141, 0.25);
}
:is(body.app-page, .jobs-apply) .field select option { background: #1a1a1a; color: #fff; }
:is(body.app-page, .jobs-apply) .anfrage-consent { color: var(--color-text-light-muted); }
:is(body.app-page, .jobs-apply) .anfrage-consent a { color: var(--color-yellow); }
:is(body.app-page, .jobs-apply) .anfrage-consent input[type="checkbox"] {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: transparent;
}
:is(body.app-page, .jobs-apply) .anfrage-error { color: #ff9d87; }
:is(body.app-page, .jobs-apply) .anfrage-subq { color: var(--color-text-light); }
:is(body.app-page, .jobs-apply) .anfrage-back { color: var(--color-text-light-muted); }
:is(body.app-page, .jobs-apply) .anfrage-back:hover { color: var(--color-yellow); }
:is(body.app-page, .jobs-apply) .anfrage .btn-secondary {
  background: transparent; color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
:is(body.app-page, .jobs-apply) .anfrage .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
:is(body.app-page, .jobs-apply) .anfrage-success h3 { color: #fff; }
:is(body.app-page, .jobs-apply) .anfrage-success p { color: var(--color-text-light-muted); }
@media (max-width: 560px) {
  :is(body.app-page, .jobs-apply) .progress-ring { width: 46px; height: 46px; }
  :is(body.app-page, .jobs-apply) .ring-label { font-size: 0.7rem; }
  :is(body.app-page, .jobs-apply) .anfrage-step.is-leaving { top: calc(var(--af-pad) + 72px); }
}
.as-pin-head { text-align: center; max-width: none; margin-inline: auto; }
.as-pin-head .as-lead { margin-inline: auto; max-width: 90ch; }
.as-projects.is-pinned .as-pin-head { margin-inline: auto; }
.as-projects.is-pinned .as-pin-progress { margin-inline: auto; }
.as-feature-icon,
.usp-card .ico,
.section-greige .usp-card .ico,
.as-contact-card .ic {
  background: var(--color-yellow);
  color: #fff;
}
.bento-cap::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 10px;
  background: var(--color-yellow);
  border-radius: 1px;
  transform: skewX(-14.5deg);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-tile:hover .bento-cap::before { width: 54px; }
:is(body.app-page, .jobs-apply) .ring-label {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 1px;
}
.job-tile { display: flex; flex-direction: column; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.job-tags span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-yellow-hover);
  background: rgba(132, 169, 141, 0.14);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.job-tile ul { list-style: none; margin: 10px 0 18px; padding: 0; display: grid; gap: 8px; }
.job-tile ul li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}
.job-tile ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-yellow);
  font-weight: 700;
}
.job-tile .job-apply {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-yellow-hover);
}
.job-tile .job-apply:hover { color: var(--color-yellow); }
.jobs-apply {
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(132, 169, 141, 0.12) 0%, rgba(132, 169, 141, 0) 55%),
    var(--color-bg);
}
.jobs-apply .anfrage {
  position: relative;
  overflow: hidden;
  --af-pad: clamp(24px, 4vw, 44px);
  padding: var(--af-pad);
}
.jobs-apply .anfrage-intro h2 { color: #fff; }
.jobs-apply .anfrage-intro .anfrage-lead,
.jobs-apply .anfrage-intro .anfrage-benefits li { color: var(--color-text-light-muted); }
.jobs-apply .anfrage-intro .anfrage-benefits svg { color: var(--color-yellow); }
.jobs-apply .anfrage-direct { color: var(--color-text-light-muted); }
.jobs-apply .anfrage-direct a { color: var(--color-yellow); }
#stellen.as-bento-section { background: var(--color-bg-section); }
#stellen.as-bento-section .as-h2 { color: var(--color-text); }
#stellen.as-bento-section .as-lead { color: var(--color-text-muted); }
.as-feature {
  position: relative;
  background: var(--color-yellow);
  border: 0;
  border-radius: 10px;
  box-shadow: none;
  padding: clamp(24px, 2.6vw, 32px);
  clip-path: none;
}
.as-feature:hover {
  transform: translateY(-4px);
  box-shadow: none;
  background: var(--color-yellow-hover);
}
.as-feature h3 { color: #fff; }
.as-feature p { color: rgba(255, 255, 255, 0.86); }
.as-feature .as-feature-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  color: var(--color-yellow-hover);
}
.as-feature .as-feature-icon::before { content: none; }
.as-feature:hover .as-feature-icon { color: var(--color-yellow-hover); }
@media (max-width: 900px) {
  .as-bento { grid-auto-rows: clamp(200px, 34vw, 260px); }
}
@media (max-width: 560px) {
  .as-bento { grid-auto-rows: clamp(240px, 62vw, 320px); }
}
.bento-cap::before { content: none; }
.bento-tile::after {
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.55) 0%,
      rgba(8,8,8,0.22) 20%,
      rgba(8,8,8,0) 38%),
    linear-gradient(to top,
      rgba(8,8,8,0.96) 0%,
      rgba(8,8,8,0.72) 22%,
      rgba(8,8,8,0.32) 48%,
      rgba(8,8,8,0) 74%);
}
.as-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}
.as-split + .as-split { margin-top: clamp(48px, 6vw, 88px); }
.as-split-flip .as-split-media { order: 2; }
.as-split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg);
}
.as-split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.as-split:hover .as-split-media img { transform: scale(1.04); }
.as-split-copy .as-eyebrow { display: block; margin-bottom: 10px; }
.as-split-copy .as-h2 { margin: 0 0 14px; }
.as-split-copy .as-lead { margin: 0 0 clamp(24px, 3vw, 34px); max-width: 46ch; }
.as-split-copy .as-adv { grid-template-columns: 1fr; gap: clamp(20px, 2.2vw, 28px); }
@media (max-width: 860px) {
  .as-split { grid-template-columns: 1fr; }
  .as-split-flip .as-split-media { order: 0; }
  .as-split-media { aspect-ratio: 16 / 10; }
}
body.app-page { height: 100dvh; overflow: hidden; }
body.app-page main { height: calc(100dvh - 60px); min-height: 0; display: flex; flex-direction: column; }
@media (max-width: 768px) { body.app-page main { height: calc(100dvh - 66px); } }
body.app-page .contact-section.section-pad {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(14px, 3vh, 40px) 0;
}
body.app-page .anfrage {
  display: block;
  max-height: calc(100dvh - 60px - clamp(28px, 6vh, 80px));
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  body.app-page .anfrage { max-height: calc(100dvh - 66px - 44px); }
}
body.app-page .anfrage-step.is-active,
body.app-page .anfrage-scroll { overflow: visible; }
body.app-page .anfrage-actions {
  position: sticky;
  bottom: calc(-1 * var(--af-pad, 32px));   
  z-index: 3;
  margin: 14px calc(-1 * var(--af-pad, 32px)) calc(-1 * var(--af-pad, 32px));
  padding: 14px var(--af-pad, 32px) max(var(--af-pad, 32px), env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-bg);
}
body.app-page .anfrage-actions .anfrage-nav { margin-top: 0; }
body.app-page .anfrage-actions .anfrage-back { margin: 10px auto 0; }
.jobs-apply .anfrage-scroll { overflow: visible; }
.jobs-apply .anfrage-actions { margin-top: 8px; }
.as-feature.job-tile h3 { color: #fff; }
.as-feature.job-tile .job-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.as-feature.job-tile ul li { color: rgba(255, 255, 255, 0.92); }
.as-feature.job-tile ul li::before { color: #fff; }
.as-feature.job-tile .job-apply { color: #fff; }
.as-feature.job-tile .job-apply:hover { color: #fff; text-decoration: underline; }
.as-hero-actions { max-width: 460px; }
.as-hero-actions .as-btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  text-align: center;
}
.as-btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}
.as-btn-ghost:hover { background: rgba(255, 255, 255, 0.26); }
.as-hero-rating {
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: rgba(10, 10, 10, 0.28);
}
@media (max-width: 600px) {
  .as-hero-actions { flex-direction: column; max-width: none; }
  .as-hero-actions .as-btn {
    flex: 0 0 auto;
    width: 100%;
    padding: 12px 24px;
  }
}
.as-detail-intro.has-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.as-detail-intro .as-detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.as-detail-intro.has-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.82) 0%,
      rgba(10,10,10,0.66) 50%,
      rgba(10,10,10,0.82) 100%);
}
.as-detail-intro.has-media { padding-bottom: clamp(72px, 9vw, 130px); }
.as-detail-intro .as-hero-actions { margin-inline: auto; }
/* Erfolgs-Schritt („Vielen Dank"): Icon + Texte exakt mittig zentriert */
.anfrage-success.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body.app-page .anfrage-success.is-active { min-height: 300px; padding: 36px 0; }
.anfrage-success .success-icon { margin-inline: auto; }
.anfrage-success p { margin-inline: auto; }
