/* ============================================================
   Rechnung Landing — Accountable 1:1 visual system, Ruhland data
   ============================================================ */
/* Degular via CDN fonts.cdnfonts.com returns HTTP 500 — self-hosted woff2 instead */
@import url('./fonts/degular/degular-local.css');
/* Body: DM Sans (premium geometric sans) — avoid Inter/Roboto/Arial/system stacks */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --font-display: "Degular Display", "Degular", "DM Sans", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  /* Brand remap: Accountable purple → st-ru green (structure unchanged) */
  --acc-purple: #00654B;
  --acc-purple-dark: #003225;
  --acc-purple-500: #005540;
  --acc-purple-medium: #A8CDB8;
  --acc-lavender: #E8F2EE;
  --acc-lavender-page: #F3F8F6;
  --acc-lavender-footer: #E8F2EE;
  --acc-ink: #003225;
  --acc-ink-strong: #242424;
  --acc-muted: #646464;
  --acc-muted-body: #242424;
  --acc-gray-ai: #f6f6f6;
  --acc-line: #e5ebe8;
  --acc-line-blue: #278ed3;

  --acc-radius: 12px;
  --acc-radius-lg: 8px;
  --acc-radius-pill: 9999px;

  --acc-shadow-promo: 0 4px 4px 0 rgba(0, 101, 75, 0.12);
  --acc-shadow-sticky: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

  --acc-ai-gradient: linear-gradient(90deg, #278ed3 0%, #00654B 45%, #0a8f6a 82%, #c4a35a 100%);
  --acc-tracking-title: 1.2px;

  /* Spacing scale — Accountable rhythm (Tailwind: 16/24/32/40/48/56/64/80/96/160) */
  --acc-space-2: 8px;
  --acc-space-3: 12px;
  --acc-space-4: 16px;
  --acc-space-5: 20px;
  --acc-space-6: 24px;
  --acc-space-8: 32px;
  --acc-space-10: 40px;
  --acc-space-12: 48px;
  --acc-space-14: 56px;
  --acc-space-16: 64px;
  --acc-space-20: 80px;
  --acc-space-24: 96px;
  --acc-space-40: 160px;

  --acc-section-gap: var(--acc-space-16);       /* mt-16 */
  --acc-section-gap-lg: var(--acc-space-40);    /* lg:mt-40 */
  --acc-container-max: 1280px;                  /* max-w-7xl */
  --acc-gutter: clamp(20px, 5vw, 28px);         /* safe mobile gutters → px-6+/7 */
  --acc-gutter-lg: 96px;                        /* lg:px-24 */
  --acc-stack-gap: var(--acc-space-8);          /* hero gap-8 */
  --acc-stack-gap-sm: var(--acc-space-6);
  --acc-heading-gap: var(--acc-space-4);        /* h2 → body */
  --acc-copy-gap: var(--acc-space-5);           /* body → CTA / list */
  --acc-card-gap: var(--acc-space-8);           /* trust / card grids */
  --acc-card-pad: var(--acc-space-8);           /* p-8 */
  --acc-card-pad-lg: var(--acc-space-14);       /* sm:p-14 CTA */
  --acc-feature-gap: var(--acc-space-16);       /* feature stack gap-16 */
  --acc-feature-gap-lg: var(--acc-space-24);    /* sm:gap-24 */
  --acc-feature-col-gap: var(--acc-space-24);   /* lg:gap-24 */
  --acc-intro-gap: var(--acc-space-12);         /* heading block → cards mb-12 */
}

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

.acc-page {
  font-family: var(--font-body);
  color: var(--acc-ink);
  background: #fff;
  /* clip avoids creating a scrollport that breaks position:sticky */
  overflow-x: clip;
  width: 100%;
}

.acc-nav-zone,
.acc-ai-card,
.acc-reviews,
.acc-press,
.acc-partners,
.acc-features-intro,
.acc-cta-bottom-card {
  position: relative;
}

/* Soft brand washes — Accountable-like atmosphere, brand green (not purple) */
.acc-nav-zone::before,
.acc-reviews::before,
.acc-press::before,
.acc-partners::before,
.acc-cta-bottom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
  background:
    radial-gradient(ellipse 42% 36% at 8% 28%, rgba(0, 101, 75, 0.07), transparent 70%),
    radial-gradient(ellipse 38% 32% at 94% 18%, rgba(168, 205, 184, 0.22), transparent 68%);
}

.acc-press > *:not(.acc-section-doodles),
.acc-partners > *:not(.acc-section-doodles),
.acc-reviews > *:not(.acc-review-marquee):not(.acc-section-doodles),
.acc-cta-bottom-card > *:not(.acc-section-doodles) {
  position: relative;
  z-index: 1;
}

/* AI / digitaler Kanal: wash only — never doodle clutter behind mascot */
.acc-ai-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 48% 40% at 12% 88%, rgba(0, 101, 75, 0.09), transparent 72%),
    radial-gradient(ellipse 36% 30% at 96% 8%, rgba(39, 142, 211, 0.06), transparent 70%);
}

.acc-ai-card > *:not(.acc-ai-mascot) {
  position: relative;
  z-index: 1;
}

.acc-container {
  width: 100%;
  max-width: var(--acc-container-max);
  margin: 0 auto;
  padding-left: var(--acc-gutter);
  padding-right: var(--acc-gutter);
}

@media (min-width: 1024px) {
  .acc-container {
    padding-left: var(--acc-gutter-lg);
    padding-right: var(--acc-gutter-lg);
  }
}

.acc-section { margin-top: var(--acc-section-gap); }
@media (min-width: 1024px) {
  .acc-section { margin-top: var(--acc-section-gap-lg); }
}
.acc-section--first { margin-top: 0; }

/* ── Promo bar ── */
.acc-promo {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--acc-purple-medium);
  box-shadow: var(--acc-shadow-promo);
  border-radius: 0 0 var(--acc-radius-lg) var(--acc-radius-lg);
  min-height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 56px 16px 96px;
  overflow: visible;
  will-change: transform, opacity;
  animation: acc-promo-in 0.35s ease-out;
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.acc-promo.is-leaving {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.acc-promo.is-hidden {
  display: none;
}
@keyframes acc-promo-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.acc-promo-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.acc-promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--acc-ink);
  letter-spacing: 0.6px;
  margin: 0 0 4px;
}
.acc-promo-sub {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--acc-ink);
  margin: 0;
  line-height: 1.45;
  max-width: 42ch;
}
.acc-promo-close {
  position: absolute;
  right: 8px;
  top: 8px;
  transform: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--acc-ink);
  font-size: 22px;
  line-height: 1;
  border-radius: var(--acc-radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.acc-promo-close:hover { background: rgba(255, 255, 255, 0.35); }
.acc-promo-mascot {
  position: absolute;
  left: 12px;
  bottom: 0;
  height: 72px;
  width: auto;
  pointer-events: none;
  display: block;
  background: none;
  border: none;
  object-fit: contain;
  object-position: bottom left;
  z-index: 1;
}
@media (min-width: 640px) {
  .acc-promo { padding-left: 112px; padding-right: 52px; }
  .acc-promo-mascot {
    left: 20px;
    height: 88px;
  }
}
@media (min-width: 1024px) {
  .acc-promo {
    flex-wrap: nowrap;
    min-height: 90px;
    padding-left: 150px;
  }
  .acc-promo-mascot {
    left: 40px;
    height: 96px;
  }
}

/* ── Buttons ── */
.acc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: var(--acc-radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .acc-btn { white-space: normal; text-align: center; }
}
.acc-btn:focus-visible {
  outline: 2px solid var(--acc-purple);
  outline-offset: 3px;
}
.acc-btn:active { transform: scale(0.95); }
.acc-btn-primary {
  background: var(--acc-purple);
  color: #fff;
}
.acc-btn-primary:hover { background: var(--acc-purple-dark); }
.acc-btn-primary--big {
  padding: 24px 32px;
  font-size: 20px;
  font-weight: 500;
}
.acc-btn-outline {
  background: #fff;
  color: var(--acc-ink);
  border: 1px solid var(--acc-ink);
  font-weight: 500;
  padding: 12px 16px;
}
.acc-btn-outline:hover { color: var(--acc-purple); border-color: var(--acc-purple); }
.acc-btn-outline--hero {
  padding: 22px 28px;
  font-size: 18px;
}
.acc-btn-light-purple {
  background: var(--acc-lavender);
  color: var(--acc-ink);
}
.acc-btn-light-purple:hover { background: var(--acc-purple-medium); }
.acc-btn-tertiary-white {
  background: #fff;
  color: var(--acc-purple-500);
  font-weight: 500;
  padding: 12px 16px;
  font-size: 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* ── Nav zone ── */
.acc-nav-zone {
  background: var(--acc-lavender-page);
  position: relative;
}
.acc-nav-zone > * {
  position: relative;
  z-index: 1;
}
.acc-header {
  position: relative;
  z-index: 50;
  background: transparent;
}
.acc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--acc-space-6);
  padding-top: var(--acc-space-8);
  padding-bottom: var(--acc-space-4);
  min-height: 72px;
  flex-wrap: nowrap;
}
@media (min-width: 1024px) {
  .acc-nav { padding-bottom: var(--acc-space-6); }
}
.acc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--acc-ink);
  flex-shrink: 1;
  min-width: 0;
  max-width: min(100%, 280px);
}
.acc-brand-mark {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  background: #fff;
}
.acc-brand-wordmark {
  height: 28px;
  width: auto;
  max-width: min(180px, 55vw);
  object-fit: contain;
  object-position: left center;
}
.acc-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  justify-content: center;
}
.acc-nav-links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--acc-ink);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.acc-nav-links a:hover { color: var(--acc-purple); }
.acc-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}
.acc-nav-lang {
  font-size: 16px;
  font-weight: 500;
  color: var(--acc-purple);
}
/* Desktop: never show hamburger. Mobile rules override below 900px. */
.acc-menu-toggle {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(0, 50, 37, 0.14);
  border-radius: 12px;
  cursor: pointer;
  color: var(--acc-ink);
  flex-shrink: 0;
  order: 3;
}
.acc-menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}
.acc-menu-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
}
.acc-sticky-cta {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--acc-shadow-sticky);
}
.acc-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.acc-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--acc-lavender-page);
  padding: 24px;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
}
.acc-mobile-menu[hidden] { display: none !important; }
.acc-mobile-menu.is-open {
  display: flex;
}
.acc-mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.acc-mobile-menu-brand {
  max-width: min(100%, 240px);
}
.acc-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc-mobile-menu-nav a {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--acc-ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 50, 37, 0.08);
}
.acc-mobile-menu-nav a.is-active {
  color: var(--acc-purple);
}
.acc-mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.acc-mobile-menu-actions .acc-btn {
  width: 100%;
  justify-content: center;
}
.acc-mobile-menu-mascot {
  position: absolute;
  right: 16px;
  bottom: 16px;
  height: clamp(100px, 28vw, 160px);
  width: auto;
  pointer-events: none;
  display: block;
  background: none;
  border: none;
  object-fit: contain;
}
.acc-mobile-menu-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 50, 37, 0.14);
  border-radius: 12px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--acc-ink);
  flex-shrink: 0;
}

/* ── Hero ── */
.acc-hero {
  /* Accountable bg-light-blue plane + soft green wash (no doodles in hero copy) */
  background:
    radial-gradient(ellipse 48% 42% at 94% 18%, rgba(168, 205, 184, 0.28), transparent 68%),
    radial-gradient(ellipse 40% 36% at 6% 70%, rgba(0, 101, 75, 0.05), transparent 65%),
    var(--acc-lavender-page);
  text-align: center;
  padding-bottom: var(--acc-space-12);
}
.acc-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--acc-stack-gap-sm);
  padding-top: var(--acc-space-8);
}
@media (min-width: 1280px) {
  .acc-hero-inner { gap: var(--acc-stack-gap); }
}
.acc-hero-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  background: #E8F2EE;
  border: 1px solid rgba(0, 101, 75, 0.25);
  border-radius: 9999px;
  width: fit-content;
  max-width: min(100%, 22rem);
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--acc-purple);
  white-space: nowrap;
}
@media (max-width: 380px) {
  .acc-hero-pill {
    font-size: 12.5px;
    padding: 7px 14px;
    gap: 6px;
  }
}
.acc-hero-pill-flag-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.acc-hero-pill-flag {
  display: block;
  border-radius: 0;
  overflow: visible;
}
.acc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 8.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink);
  margin: 0;
  max-width: min(16ch, 100%);
  width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.acc-hero-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--acc-ink);
  max-width: min(75%, 56ch);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .acc-hero-lead { max-width: 100%; }
}
.acc-hero-actions {
  justify-content: center;
  width: 100%;
  max-width: 36rem;
}
.acc-hero-visual {
  width: 100%;
  margin-top: 16px;
  position: relative;
  background: var(--acc-lavender-page);
  border-radius: var(--acc-radius-lg);
  overflow: hidden;
}
/* Sticky trigger stays on #trigger-sticky (.acc-hero-visual). Static office illu + soft flakes. */
.acc-hero-visual__stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: var(--acc-lavender-page);
}
.acc-hero-visual__static {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
  display: block;
  margin: 0;
  background: var(--acc-lavender-page);
}
@media (min-width: 1280px) {
  .acc-hero-visual__static { max-height: 700px; }
}

/* Soft white particles drifting over static hero (Accountable-adjacent, not Christmas) */
.acc-hero-visual__flakes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.7;
}
.acc-hero-visual__flakes::before,
.acc-hero-visual__flakes::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -40%;
  height: 140%;
  background-image:
    radial-gradient(1.2px 1.2px at 8% 12%, rgba(255, 255, 255, 0.85) 50%, transparent 55%),
    radial-gradient(1.6px 1.6px at 22% 38%, rgba(255, 255, 255, 0.55) 50%, transparent 55%),
    radial-gradient(1px 1px at 35% 18%, rgba(255, 255, 255, 0.7) 50%, transparent 55%),
    radial-gradient(1.8px 1.8px at 48% 52%, rgba(255, 255, 255, 0.45) 50%, transparent 55%),
    radial-gradient(1.3px 1.3px at 61% 28%, rgba(255, 255, 255, 0.75) 50%, transparent 55%),
    radial-gradient(1px 1px at 74% 62%, rgba(255, 255, 255, 0.5) 50%, transparent 55%),
    radial-gradient(1.5px 1.5px at 86% 22%, rgba(255, 255, 255, 0.65) 50%, transparent 55%),
    radial-gradient(1.1px 1.1px at 14% 68%, rgba(255, 255, 255, 0.4) 50%, transparent 55%),
    radial-gradient(1.4px 1.4px at 41% 78%, rgba(255, 255, 255, 0.6) 50%, transparent 55%),
    radial-gradient(1px 1px at 69% 84%, rgba(255, 255, 255, 0.5) 50%, transparent 55%),
    radial-gradient(1.7px 1.7px at 92% 46%, rgba(255, 255, 255, 0.55) 50%, transparent 55%),
    radial-gradient(1.2px 1.2px at 55% 8%, rgba(255, 255, 255, 0.7) 50%, transparent 55%);
  background-repeat: repeat;
  background-size: 220px 280px;
  animation: acc-hero-flakes-drift 32s linear infinite;
}
.acc-hero-visual__flakes::after {
  background-size: 180px 240px;
  background-position: 40px 60px;
  opacity: 0.65;
  animation-duration: 44s;
  animation-direction: reverse;
}
@keyframes acc-hero-flakes-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-18px, 28%, 0); }
}

/* ── Trust 4-col (Accountable: heading col 1 + cards) ── */
.acc-trust {
  /* Section margin already supplies Accountable mt-16 / lg:mt-40 — no extra pt */
  padding-top: 0;
  padding-bottom: 0;
}
.acc-trust-heading {
  margin-bottom: 0;
  max-width: 36rem;
}
.acc-trust-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 var(--acc-heading-gap);
  line-height: 1.1;
}
.acc-trust-heading p {
  font-size: 16px;
  color: var(--acc-muted-body);
  line-height: 1.5;
  margin: 0;
}
.acc-trust-heading--centered {
  max-width: 720px;
  margin: 0 auto var(--acc-intro-gap);
  text-align: center;
}
.acc-trust-heading--centered h2 {
  margin-left: auto;
  margin-right: auto;
}
.acc-trust-heading--centered p {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}
.acc-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--acc-space-6);
}
.acc-trust-grid--trio {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .acc-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .acc-trust-grid--trio { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .acc-trust-grid {
    grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(0, 1fr));
    gap: var(--acc-card-gap);
    align-items: stretch;
  }
  .acc-trust-heading:not(.acc-trust-heading--centered) {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: var(--acc-space-2);
  }
  .acc-trust-grid--trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--acc-card-gap);
  }
}
@media (min-width: 1280px) {
  .acc-trust-grid { gap: var(--acc-card-gap); }
}
.acc-trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--acc-lavender);
  border-radius: var(--acc-radius);
  padding: var(--acc-card-pad) 72px var(--acc-card-pad) var(--acc-card-pad);
  min-height: auto;
  gap: var(--acc-space-4);
}
@media (min-width: 640px) {
  .acc-trust-card {
    min-height: 310px;
    padding: var(--acc-card-pad) 88px 88px var(--acc-card-pad);
  }
}
@media (min-width: 1024px) {
  .acc-trust-card {
    min-height: 400px;
    padding: var(--acc-card-pad) 96px 96px var(--acc-card-pad);
  }
}
.acc-trust-card h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--acc-ink);
  width: 100%;
  max-width: 70%;
  margin: 0 0 var(--acc-copy-gap);
  line-height: 1.2;
  padding-right: 0;
}
.acc-trust-card p {
  font-size: 16px;
  color: var(--acc-ink);
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
}
.acc-trust-card-icon-wrap {
  position: absolute;
  top: 20px;
  right: 16px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 640px) {
  .acc-trust-card-icon-wrap {
    top: auto;
    bottom: 20px;
    right: 16px;
  }
}

/* Accountable corner icons: ~56px mobile → 94×99 desktop */
.acc-trust-card .card-icon {
  display: block;
  width: 56px;
  height: 59px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .acc-trust-card .card-icon {
    width: 72px;
    height: 76px;
  }
}
@media (min-width: 1024px) {
  .acc-trust-card .card-icon {
    width: 94px;
    height: 99px;
  }
}

/* ── AI / Digital section (Accountable gray-ai card) ── */
.acc-ai {
  /* Allow mascot to peek past the card without clipping */
  overflow: visible;
}
.acc-ai-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--acc-gray-ai);
  border-radius: var(--acc-radius);
  padding: 32px 24px;
  width: 100%;
  /* visible so green comic mascot is not sheared by overflow:hidden */
  overflow: visible;
  isolation: isolate;
}
@media (min-width: 640px) {
  .acc-ai-card {
    align-items: center;
    padding: 32px 64px;
  }
}
@media (min-width: 1024px) {
  .acc-ai-card { padding: 64px 96px; }
}
.acc-ai-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--acc-ink);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 12px;
  line-height: 1.1;
  text-align: left;
  width: 100%;
}
@media (min-width: 640px) {
  .acc-ai-heading { text-align: center; }
}
.acc-ai-gradient {
  background: var(--acc-ai-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.acc-ai-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--acc-ink);
  margin: 0 0 32px;
  max-width: 56ch;
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 640px) {
  .acc-ai-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.acc-ai-sub strong {
  font-weight: 600;
  color: var(--acc-ink);
}
.acc-chat-ui {
  background: #fff;
  border: 1px solid var(--acc-line-blue);
  border-radius: var(--acc-radius-lg);
  height: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  overflow: hidden;
}
.acc-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--acc-line);
}
.acc-chat-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--acc-ink);
}
.acc-chat-body {
  flex: 1;
  padding: 20px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc-chat-chip {
  display: inline-block;
  align-self: flex-start;
  background: var(--acc-lavender-page);
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius-lg);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--acc-ink);
  cursor: pointer;
  text-align: left;
}
.acc-chat-chip:hover { border-color: var(--acc-purple); }
.acc-chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--acc-radius-lg);
  font-size: 14px;
  line-height: 1.5;
}
.acc-chat-msg--user {
  align-self: flex-end;
  background: var(--acc-purple);
  color: #fff;
}
.acc-chat-msg--bot {
  align-self: flex-start;
  background: var(--acc-gray-ai);
  color: var(--acc-ink);
}
.acc-chat-input-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 16px 16px;
  background: var(--acc-gray-ai);
  border-radius: var(--acc-radius-lg);
  padding: 12px 16px;
}
.acc-chat-input-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
  color: var(--acc-muted);
}
.acc-ai-video {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 32px;
}
.acc-video-embed-wrap {
  display: grid;
  gap: 12px;
}
.acc-video-embed {
  position: relative;
  border-radius: var(--acc-radius-lg);
  overflow: hidden;
  background: #0f1720;
  box-shadow: 0 2px 12px rgba(0, 50, 37, 0.1);
  aspect-ratio: 16 / 9;
}
.acc-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.acc-video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--acc-radius-lg);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 50, 37, 0.1);
}
.acc-video-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.acc-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 50, 37, 0.18);
  transition: background 0.2s;
}
.acc-video-thumb:hover .acc-video-play {
  background: rgba(0, 50, 37, 0.28);
}
.acc-video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 50, 37, 0.85));
}
.acc-youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--acc-radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 2px 8px rgba(0, 50, 37, 0.08);
}
.acc-youtube-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
}
.acc-ai-cta-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.acc-ai-mascot {
  display: none;
  position: absolute;
  width: fit-content;
  height: auto;
  bottom: 8px;
  left: 12px;
  pointer-events: none;
  z-index: 2;
  line-height: 0;
  filter: drop-shadow(0 10px 22px rgba(0, 50, 37, 0.14));
}
@media (min-width: 768px) {
  .acc-ai-mascot { display: block; }
  .acc-ai-card { padding-bottom: 80px; }
}
@media (min-width: 640px) {
  .acc-ai-mascot {
    bottom: 12px;
    left: 24px;
  }
}
@media (min-width: 1024px) {
  .acc-ai-mascot {
    bottom: 20px;
    left: 36px;
  }
}
.acc-ai-mascot img {
  display: block;
  height: clamp(120px, 16vw, 168px);
  width: auto;
  max-width: none;
  background: none;
  border: none;
  object-fit: contain;
  object-position: bottom left;
}

/* ── Team / coach carousel (Accountable #tax-coach-detail) ── */
.acc-coaches {
  text-align: center;
}
.acc-coaches-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-inline: 0;
}
@media (min-width: 640px) {
  .acc-coaches-inner {
    gap: 80px;
    padding-inline: 24px;
  }
}
.acc-coaches h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 auto;
  max-width: 22ch;
  line-height: 1.1;
}
.acc-coaches p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--acc-muted-body);
  max-width: 62ch;
  margin: 0 auto;
  line-height: 1.6;
}
.acc-coach-carousel-wrap {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}
#tax-coach-detail.acc-coach-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  padding-inline: 0;
}
#tax-coach-detail.acc-coach-strip::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  #tax-coach-detail.acc-coach-strip {
    overflow: visible;
    scroll-snap-type: none;
    padding-inline: 48px;
  }
}
.acc-coach-card {
  position: relative;
  flex: 1 0 100%;
  min-width: 100%;
  max-height: 500px;
  height: 420px;
  border-radius: var(--acc-radius);
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  cursor: default;
  transition: flex-grow 300ms ease, min-width 300ms ease, height 300ms ease, box-shadow 300ms ease;
}
@media (min-width: 768px) {
  .acc-coach-card {
    flex: 1 1 0;
    min-width: 0;
    height: 550px;
    max-height: none;
    flex-grow: 1;
    cursor: pointer;
  }
  .acc-coach-card.is-active {
    flex-grow: 4;
  }
}
.acc-coach-portrait {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    165deg,
    var(--acc-lavender) 0%,
    #C5DDD4 38%,
    var(--acc-purple-medium) 72%,
    rgba(0, 101, 75, 0.55) 100%
  );
  transition: background 300ms ease, transform 300ms ease;
}
.acc-coach-card:nth-child(3n + 2) .acc-coach-portrait {
  background: linear-gradient(
    155deg,
    #F3F8F6 0%,
    #E8F2EE 35%,
    #A8CDB8 70%,
    rgba(0, 101, 75, 0.5) 100%
  );
}
.acc-coach-card:nth-child(3n) .acc-coach-portrait {
  background: linear-gradient(
    175deg,
    #F3F8F6 0%,
    #C5DDD4 42%,
    #A8CDB8 78%,
    rgba(0, 101, 75, 0.62) 100%
  );
}
.acc-coach-card.is-active .acc-coach-portrait {
  background: linear-gradient(
    160deg,
    #F3F8F6 0%,
    #C5DDD4 30%,
    #005540 65%,
    var(--acc-purple) 100%
  );
}
.acc-coach-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.85);
}
.acc-coach-initials {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 32px rgba(0, 50, 37, 0.18);
  letter-spacing: 0.04em;
  transition: font-size 300ms ease, transform 300ms ease;
  user-select: none;
}
.acc-coach-card.is-active .acc-coach-initials {
  font-size: clamp(3.5rem, 14vw, 6.5rem);
  transform: scale(1.04);
}
.acc-coach-overlay {
  display: none;
}
@media (min-width: 768px) {
  .acc-coach-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 101, 75, 0.2);
    opacity: 1;
    transition: opacity 300ms ease;
    pointer-events: none;
  }
  .acc-coach-card.is-active .acc-coach-overlay {
    opacity: 0;
  }
}
.acc-coach-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px 16px;
  text-align: left;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 50, 37, 0.72) 58%, rgba(0, 50, 37, 0.88) 100%);
}
.acc-coach-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.acc-coach-card.is-active .acc-coach-name {
  font-size: clamp(14px, 1.4vw, 18px);
}
.acc-coach-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 4px;
  line-height: 1.35;
  opacity: 1;
  transition: opacity 300ms ease;
}
@media (min-width: 768px) {
  .acc-coach-card:not(.is-active) .acc-coach-role {
    opacity: 0;
  }
  .acc-coach-card.is-active .acc-coach-role {
    opacity: 1;
  }
}
.acc-coach-nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--acc-radius-lg);
  background: var(--acc-ink);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}
.acc-coach-nav-btn:hover {
  background: var(--acc-purple);
}
.acc-coach-nav-btn--overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}
.acc-coach-nav-btn--prev { left: 16px; }
.acc-coach-nav-btn--next { right: 16px; }
@media (min-width: 768px) {
  .acc-coach-nav-btn--overlay {
    display: none;
  }
}

/* ── Platform slider (Leistungen tabs) ── */
.platform-slider_heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 0 8px;
}
.platform-slider_heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--acc-ink-strong);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 14px;
  line-height: 1.1;
}
.platform-slider_heading p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--acc-muted);
  margin: 0;
  line-height: 1.5;
}

.platform-slider_component {
  background: var(--acc-lavender-page);
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  overflow: hidden;
}

/* IntroKI/Perspective-style menu: tall icon+label tiles in one track */
.platform-slider_menu {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0.35rem;
  min-height: 7.05rem; /* ~113px editorial bar */
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid var(--acc-line);
  background: var(--acc-lavender-page);
  scroll-snap-type: x proximity;
}
.platform-slider_menu::-webkit-scrollbar {
  display: none;
}

.platform-slider_tab {
  appearance: none;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-width: 6.25rem;
  padding: 0.85rem 0.75rem 1rem;
  margin: 0;
  border: 0;
  border-radius: 0.875rem;
  background: transparent;
  color: var(--acc-muted);
  font: inherit;
  cursor: pointer;
  scroll-snap-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.platform-slider_tab + .platform-slider_tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 22%;
  width: 1px;
  background: var(--acc-line);
  pointer-events: none;
  opacity: 0.9;
}
.platform-slider_tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.875rem;
  background: #fff;
  border: 1px solid rgba(0, 101, 75, 0.1);
  color: var(--acc-muted);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.platform-slider_tab-icon img {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
  display: block;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.platform-slider_tab-label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--acc-muted);
  transition: color 0.2s ease;
  white-space: normal;
  max-width: 7.75rem;
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

.platform-slider_tab--idle:hover {
  background: rgba(255, 255, 255, 0.65);
}
.platform-slider_tab--idle:hover .platform-slider_tab-icon {
  transform: translateY(-1px);
}
.platform-slider_tab--idle:hover .platform-slider_tab-label {
  color: var(--acc-ink);
}

.platform-slider_tab--active,
.platform-slider_tab.is-active,
.platform-slider_tab[aria-selected="true"] {
  background: #fff;
  color: #00654B;
  box-shadow: inset 0 -3px 0 #00654B;
  z-index: 1;
}
.platform-slider_tab--active + .platform-slider_tab::before,
.platform-slider_tab.is-active + .platform-slider_tab::before,
.platform-slider_tab[aria-selected="true"] + .platform-slider_tab::before,
.platform-slider_tab--active::before,
.platform-slider_tab.is-active::before,
.platform-slider_tab[aria-selected="true"]::before {
  opacity: 0;
}
.platform-slider_tab--active .platform-slider_tab-icon,
.platform-slider_tab.is-active .platform-slider_tab-icon,
.platform-slider_tab[aria-selected="true"] .platform-slider_tab-icon {
  background: rgba(0, 101, 75, 0.1);
  border-color: rgba(0, 101, 75, 0.22);
}
.platform-slider_tab--active .platform-slider_tab-icon img,
.platform-slider_tab.is-active .platform-slider_tab-icon img,
.platform-slider_tab[aria-selected="true"] .platform-slider_tab-icon img {
  opacity: 1;
}
.platform-slider_tab--active .platform-slider_tab-label,
.platform-slider_tab.is-active .platform-slider_tab-label,
.platform-slider_tab[aria-selected="true"] .platform-slider_tab-label {
  color: #00654B;
  font-weight: 650;
}

.platform-slider_tab:focus-visible {
  outline: none;
  box-shadow: inset 0 -3px 0 #00654B, 0 0 0 2px rgba(0, 101, 75, 0.35);
}

@media (max-width: 859px) {
  .platform-slider_menu {
    justify-content: flex-start;
    gap: 0.25rem;
    padding: 0.35rem 0.45rem;
    scroll-padding-inline: 0.45rem;
  }
  .platform-slider_tab {
    flex: 0 0 auto;
    min-width: 7.5rem;
    min-height: 44px;
  }
  .platform-slider_tab-label {
    max-width: 6.75rem;
    font-size: 0.8125rem;
    hyphens: none;
  }
  .platform-slider_tab + .platform-slider_tab::before {
    display: none;
  }
}

@media (min-width: 960px) {
  .platform-slider_tab {
    min-width: 0;
    padding-inline: 0.85rem;
  }
  .platform-slider_tab-icon {
    width: 3.35rem;
    height: 3.35rem;
  }
}

.platform-slider_panels {
  position: relative;
  min-height: 320px;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(0, 101, 75, 0.08), transparent 55%),
    #fff;
}

.platform-slider_panel {
  display: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px 40px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
}
.platform-slider_panel.is-active {
  display: grid;
  animation: platform-slider-panel-in 0.35s ease;
}
@keyframes platform-slider-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.platform-slider_panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 12px;
  line-height: 1.15;
}
.platform-slider_panel-intro {
  font-size: 1.05rem;
  color: var(--acc-muted-body);
  margin: 0 0 18px;
  line-height: 1.55;
  max-width: 46ch;
}
.platform-slider_panel-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.platform-slider_panel-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--acc-ink);
  line-height: 1.45;
}
.platform-slider_panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acc-purple);
}
.platform-slider_panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-slider_visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 16px;
  border-radius: var(--acc-radius);
  background: linear-gradient(160deg, var(--acc-lavender) 0%, #fff 55%, var(--acc-lavender-page) 100%);
  border: 1px solid var(--acc-line);
}
.platform-slider_visual-img {
  width: min(100%, 280px);
  height: auto;
  display: block;
}
.platform-slider_visual--icon {
  background: var(--acc-lavender-page);
}
.platform-slider_visual-icon {
  width: 120px;
  height: auto;
  display: block;
}

.platform-slider_pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: var(--acc-radius);
  border: 1px solid var(--acc-line);
  background: var(--acc-lavender);
}
.platform-slider_pricing-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: min(100%, 280px);
  flex: 1 1 280px;
}
.platform-slider_pricing-copy strong {
  font-size: 1.05rem;
  color: var(--acc-ink-strong);
}
.platform-slider_pricing-copy span {
  font-size: 0.95rem;
  color: var(--acc-muted);
  line-height: 1.45;
}

@media (max-width: 860px) {
  .platform-slider_panel.is-active {
    grid-template-columns: 1fr;
  }
  .platform-slider_visual {
    order: -1;
    min-height: 180px;
  }
  .platform-slider_visual-img {
    width: min(100%, 200px);
  }
  .platform-slider_pricing {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .platform-slider_pricing .acc-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Features intro ── */
.acc-features-intro {
  text-align: center;
  position: relative;
  padding: var(--acc-space-6) var(--acc-space-6) 0;
  overflow: visible;
}
/* Soft wash + Accountable-style title doodle (brand-green, sparse) */
.acc-features-intro::before {
  content: "";
  position: absolute;
  inset: -8% -4% -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 40%, rgba(168, 205, 184, 0.28), transparent 70%),
    radial-gradient(ellipse 40% 36% at 12% 70%, rgba(0, 101, 75, 0.05), transparent 68%);
}
.acc-features-intro::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1100px, 96vw);
  height: min(240px, 42vw);
  transform: translate(-50%, -52%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background: url("assets/styled/features-title-doodle.svg?v=20260716doodle2") center / contain no-repeat;
}
.acc-features-intro h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  letter-spacing: var(--acc-tracking-title);
  margin: 0;
  line-height: 1.05;
  max-width: 18ch;
  margin-inline: auto;
}

/* ── Feature rows ── */
.acc-feature {
  padding: var(--acc-feature-gap) 0 0;
}
@media (min-width: 640px) {
  .acc-feature { padding-top: var(--acc-feature-gap-lg); }
}
.acc-features-intro + .acc-feature {
  padding-top: var(--acc-space-10);
}
@media (min-width: 640px) {
  .acc-features-intro + .acc-feature { padding-top: var(--acc-space-16); }
}
.acc-feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--acc-space-6);
  align-items: center;
  min-width: 0;
}
.acc-feature-inner > * {
  min-width: 0;
}
@media (min-width: 768px) {
  .acc-feature-inner { gap: var(--acc-space-10); }
}
@media (min-width: 1024px) {
  .acc-feature-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--acc-feature-col-gap);
  }
  .acc-feature.reverse .acc-feature-inner {
    direction: rtl;
  }
  .acc-feature.reverse .acc-feature-inner > * {
    direction: ltr;
  }
}
.acc-feature-tag {
  display: block;
  font-size: 14px;
  color: var(--acc-muted);
  margin-bottom: var(--acc-space-3);
}
.acc-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 var(--acc-heading-gap);
  line-height: 1.1;
}
.acc-feature-desc {
  font-size: 16px;
  color: var(--acc-ink-strong);
  line-height: 1.6;
  margin: 0 0 var(--acc-copy-gap);
}
.acc-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.acc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--acc-ink-strong);
  padding: 16px 0;
  border-bottom: 1px solid #000;
  line-height: 1.45;
}
.acc-feature-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003225' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.acc-feature-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--acc-radius-lg);
}

/* ── Reviews (Accountable-style white cards) ── */
.acc-reviews h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  text-align: center;
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 var(--acc-stack-gap);
}
.acc-rating-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--acc-space-4) var(--acc-space-6);
  margin: 0 0 var(--acc-space-10);
}
.acc-rating-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: var(--acc-radius);
  background: var(--acc-lavender);
  text-decoration: none;
  color: var(--acc-ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.acc-rating-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 50, 37, 0.1);
}
.acc-rating-pill-score {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink-strong);
}
.acc-rating-pill-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: var(--acc-muted-body);
}
.acc-rating-pill-meta strong {
  color: var(--acc-ink);
  font-size: 15px;
}
.acc-reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}
.acc-reviews-score {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 900;
  color: var(--acc-ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.acc-rating-stars {
  color: var(--acc-purple);
}
.acc-rating-stars--summary {
  margin: 0;
}
.acc-reviews-meta {
  margin: 0;
  font-size: 15px;
  color: var(--acc-muted);
  font-weight: 500;
}
.acc-review-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.acc-review-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: acc-review-marquee 26s linear infinite;
  will-change: transform;
}
.acc-review-marquee:hover .acc-review-marquee__track,
.acc-review-marquee:focus-within .acc-review-marquee__track {
  animation-play-state: paused;
}
.acc-review-card {
  flex: 0 0 min(85vw, 340px);
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  width: min(85vw, 340px);
  min-height: 255px;
  height: 100%;
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 50, 37, 0.06);
}
@media (min-width: 640px) {
  .acc-review-card {
    flex-basis: 340px;
    width: 340px;
  }
}
.acc-review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.acc-review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--acc-purple, #00654B);
}
.acc-rating-stars--subtle {
  opacity: 0.85;
  margin: 0;
}
.acc-review-quote {
  font-size: 15px;
  font-weight: 500;
  color: var(--acc-ink);
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.acc-review-quote--tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  -webkit-line-clamp: unset;
}
.acc-review-attr {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 101, 75, 0.08);
  color: var(--acc-purple, #00654B);
  font-size: 13px;
  font-weight: 600;
}
.acc-review-attr-note {
  font-size: 13px;
  color: var(--acc-muted);
  font-weight: 500;
  line-height: 1.45;
}
.acc-review-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 13px;
  border-top: 1px solid var(--acc-line);
  padding-top: 16px;
  margin-top: auto;
}
@media (min-width: 480px) {
  .acc-review-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
}
.acc-review-author-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.acc-review-author { font-weight: 600; color: var(--acc-ink); }
.acc-review-source {
  font-size: 12px;
  font-weight: 600;
  color: var(--acc-purple, #00654B);
}
.acc-review-date { color: var(--acc-muted); font-size: 12px; }
.acc-partners-videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.acc-partners-video-link {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  padding: 10px 14px;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  text-decoration: none;
  color: var(--acc-ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.acc-partners-video-link:hover {
  border-color: rgba(0, 101, 75, 0.35);
  box-shadow: 0 4px 14px rgba(0, 101, 75, 0.08);
}
.acc-partners-video-link img {
  width: 96px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.acc-partners-video-link span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.acc-rating-score {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--acc-ink);
}
.acc-rating-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin: 4px 0;
  color: var(--acc-purple);
}
.acc-rating-meta {
  font-size: 14px;
  color: var(--acc-muted);
  text-align: center;
}

/* ── Press logos (Accountable-style grid) ── */
.acc-press h2,
.acc-partners h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink-strong);
  margin: 0 0 40px;
}
.acc-press-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .acc-press-logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .acc-press-logo-grid { grid-template-columns: repeat(5, 1fr); }
}
.acc-press-logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 18px 20px;
  background: #F3F8F6;
  border-radius: var(--acc-radius-lg);
  overflow: hidden;
  transition: background 0.2s ease;
}
.acc-press-logo-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(225deg, #fff 50%, transparent 50%);
  pointer-events: none;
}
.acc-press-logo-card:hover {
  background: rgba(0, 101, 75, 0.12);
}
.acc-press-logo {
  width: auto;
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.2s ease;
}
.acc-press-logo-card:hover .acc-press-logo {
  filter: grayscale(0);
}
/* Legacy article-card styles kept for Aktuelles page */
.acc-press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .acc-press-grid { grid-template-columns: repeat(4, 1fr); }
}
.acc-press-item {
  position: relative;
  background: #003225;
  border: 1px solid rgba(0, 101, 75, 0.16);
  border-radius: var(--acc-radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 50, 37, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.acc-press-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 50, 37, 0.12) 0%,
    rgba(0, 50, 37, 0.28) 42%,
    rgba(0, 50, 37, 0.78) 100%
  );
  pointer-events: none;
}
.acc-press-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 50, 37, 0);
  transition: background 0.2s ease;
  pointer-events: none;
}
.acc-press-item:hover::after {
  background: rgba(0, 50, 37, 0.14);
}
.acc-press-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0, 50, 37, 0.18);
  border-color: rgba(0, 101, 75, 0.32);
}
.acc-press-media {
  position: absolute;
  inset: 0;
  display: block;
}
.acc-press-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.acc-press-media--fallback {
  background: linear-gradient(135deg, #004433 0%, #003225 100%);
}
.acc-press-category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--acc-radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--acc-purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 50, 37, 0.14);
}
.acc-press-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  gap: 0;
  padding: 18px 16px 16px;
  color: #fff;
  z-index: 3;
}
.acc-press-caption strong {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 50, 37, 0.45);
}
.acc-top-logos {
  padding: 8px 0 28px;
  background: transparent;
}
.acc-partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 5vw, 40px);
}
.acc-partners-row--top {
  padding: 12px 0 4px;
  gap: clamp(24px, 6vw, 48px);
}
.acc-partner-logo {
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s;
}
.acc-partner-logo:hover { filter: grayscale(0); }
.acc-partners-row--top .acc-partner-logo {
  max-height: 64px;
  filter: none;
}
.acc-partner-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--acc-muted);
  letter-spacing: 0.02em;
  padding: 12px 20px;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius-lg);
  filter: grayscale(1);
  transition: color 0.3s, filter 0.3s, border-color 0.3s;
}
.acc-partner-text:hover {
  filter: grayscale(0);
  color: var(--acc-ink);
  border-color: var(--acc-purple-medium);
}

/* ── Bottom CTA ── */
.acc-cta-bottom-card {
  background: var(--acc-lavender);
  border-radius: var(--acc-radius-lg);
  padding: var(--acc-space-8);
  display: flex;
  flex-direction: column;
  gap: var(--acc-stack-gap);
}
@media (min-width: 640px) {
  .acc-cta-bottom-card { padding: var(--acc-card-pad-lg); }
}
@media (min-width: 1024px) {
  .acc-cta-bottom-card {
    flex-direction: row;
    align-items: flex-end;
  }
}
.acc-cta-bottom-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--acc-ink);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 16px;
  line-height: 1.1;
}
.acc-cta-bottom-card p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--acc-ink);
  margin: 0 0 24px;
  line-height: 1.5;
}
.acc-cta-bottom-card--contact {
  position: relative;
  overflow: visible;
}
.acc-cta-mascot {
  display: none;
  position: absolute;
  right: 8px;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.acc-cta-mascot img {
  display: block;
  height: clamp(120px, 16vw, 180px);
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 10px 20px rgba(0, 50, 37, 0.14));
}
@media (min-width: 900px) {
  .acc-cta-mascot { display: block; }
  .acc-cta-bottom-card--contact { padding-bottom: 24px; }
}
.acc-cta-bottom-visual {
  min-width: 0;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.acc-cta-bottom-visual-media {
  position: relative;
  isolation: isolate;
  border: none;
  border-radius: var(--acc-radius);
  overflow: hidden;
  background: transparent;
}
.acc-cta-bottom-visual-media img:first-child {
  max-height: 400px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border: none;
  border-radius: var(--acc-radius);
}
.acc-cta-map {
  width: 100%;
}
.acc-cta-map-iframe {
  display: block;
  width: 100%;
  height: clamp(250px, 42vw, 320px);
  border: 1px solid rgba(0, 101, 75, 0.16);
  border-radius: var(--acc-radius);
  background: rgba(255, 255, 255, 0.6);
}
@media (min-width: 1024px) {
  .acc-cta-map-iframe {
    height: clamp(280px, 28vw, 360px);
  }
}
.acc-cta-map-directions {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--acc-purple-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.acc-cta-map-directions:hover {
  color: var(--acc-ink);
  text-decoration: underline;
}
/* ── Useful links ── */
.acc-links {
  border-top: 1px solid var(--acc-purple);
  padding-top: 36px;
  padding-bottom: 8px;
}
.acc-links h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--acc-purple-dark);
  margin: 0 0 24px;
}
.acc-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .acc-links-grid { grid-template-columns: repeat(4, 1fr); }
}
.acc-links-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--acc-purple-dark);
  margin: 0 0 12px;
}
.acc-links-col a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: var(--acc-purple-dark);
  text-decoration: none;
  padding: 6px 0;
  line-height: 1.4;
  transition: color 0.2s;
}
.acc-links-col a:hover { color: var(--acc-ink); }
.acc-play-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 4px;
  fill: var(--acc-purple);
}

/* ── Trust / compliance strip (Accountable-style badge row, green brand) ── */
.acc-trust-compliance {
  width: 100%;
}
.acc-trust-compliance--section {
  padding-top: 8px;
  padding-bottom: 8px;
}
.acc-trust-compliance--footer {
  margin: 0 0 28px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(0, 50, 37, 0.12);
}
.acc-trust-compliance-heading {
  margin: 0 0 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--acc-muted);
}
.acc-trust-compliance-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px 14px;
}
.acc-trust-compliance-item {
  flex: 0 1 160px;
  max-width: 180px;
  min-width: 120px;
}
.acc-trust-compliance-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 10px 12px 11px;
  border-radius: var(--acc-radius);
  border: 1px solid rgba(0, 101, 75, 0.14);
  background: #fff;
  text-decoration: none;
  color: var(--acc-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.acc-trust-compliance--footer .acc-trust-compliance-link {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 101, 75, 0.12);
}
.acc-trust-compliance-link:hover {
  border-color: rgba(0, 101, 75, 0.35);
  box-shadow: 0 4px 14px rgba(0, 101, 75, 0.08);
  transform: translateY(-1px);
}
.acc-trust-compliance-logo {
  width: 100%;
  max-width: 148px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.acc-trust-compliance-caption {
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  color: var(--acc-muted);
  font-weight: 500;
}
@media (max-width: 639px) {
  .acc-trust-compliance-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
    max-width: none;
  }
  .acc-trust-compliance-caption {
    font-size: 10px;
  }
}


/* ── Footer (Accountable structure: brand top → wide-gap cols → legal; mascot absolute BR) ── */
.acc-footer {
  position: relative;
  overflow: hidden;
  background: var(--acc-lavender-footer);
  padding: var(--acc-space-8) 0 0;
  margin-top: var(--acc-section-gap);
  min-height: 0;
}
@media (min-width: 1024px) {
  .acc-footer { margin-top: var(--acc-section-gap-lg); }
}
/* Accountable-style hero illustration as faint footer atmosphere */
.acc-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/styled/hero-ruhland-illu-notext.png?v=20260716staticflakes");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
/* Light green / white scrim — keeps columns, mascot, legal readable */
.acc-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(232, 242, 238, 0.72) 0%,
    rgba(255, 255, 255, 0.78) 55%,
    rgba(232, 242, 238, 0.85) 100%
  );
  pointer-events: none;
}
.acc-footer .acc-container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 80px;
}
.acc-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 36rem;
}
.acc-footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  margin: 0;
}
.acc-footer-brand .acc-footer-mark,
.acc-footer-brand .acc-footer-wordmark { height: 48px; width: auto; }
.acc-footer-brand .acc-footer-wordmark { height: 32px; }
.acc-footer-mark {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  background: #fff;
}
.acc-footer-wordmark {
  height: 32px;
  width: auto;
  max-width: min(200px, 60vw);
  object-fit: contain;
}
.acc-footer-tagline {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: var(--acc-ink);
  max-width: 40ch;
}
.acc-footer-address {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 30ch;
}
.acc-footer-atikon {
  display: inline-flex;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.acc-footer-atikon:hover { opacity: 1; }
.acc-footer-atikon img {
  height: 28px;
  width: auto;
  max-width: 100px;
}
.acc-footer-social {
  display: flex;
  gap: 8px;
  margin: 0;
}
.acc-footer-social a {
  color: var(--acc-ink);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.acc-footer-social a:hover {
  opacity: 1;
  color: var(--acc-purple);
}

/* Main link row — shared h4 baseline; grid keeps Kontakt aligned with siblings */
.acc-footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 28px;
  min-width: 0;
  width: 100%;
  padding-right: 0;
  align-items: start;
}
.acc-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  align-self: start;
}
.acc-footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--acc-ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.acc-footer-col a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--acc-ink);
  opacity: 0.9;
  text-decoration: none;
  padding: 10px 0;
  min-height: 44px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  position: relative;
  z-index: 1;
  transition: color 0.2s, opacity 0.2s;
  box-sizing: border-box;
}
.acc-footer-col a:hover {
  color: var(--acc-purple);
  opacity: 1;
}

@media (min-width: 640px) {
  .acc-footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 32px;
    margin-top: 32px;
    /* Reserve lean-mascot lane so Kontakt links never sit under him */
    padding-right: 170px;
  }
}

@media (min-width: 1024px) {
  .acc-footer-cols {
    /* Five equal tracks — all h4s share one top baseline (incl. Kontakt) */
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0 28px;
    padding-right: 200px;
  }
}

@media (min-width: 1280px) {
  .acc-footer-cols {
    gap: 0 36px;
    padding-right: 210px;
  }
}

.acc-footer-bottom {
  border-top: 1px solid rgba(0, 50, 37, 0.12);
  margin-top: 48px;
  padding-top: 24px;
  padding-right: 0;
  font-size: 14px;
  color: var(--acc-ink);
  opacity: 0.75;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.acc-footer-bottom a,
.acc-footer-legal a {
  color: inherit;
  text-decoration: none;
}
.acc-footer-bottom a:hover,
.acc-footer-legal a:hover { color: var(--acc-purple); }

/* Mascot — mobile: small under content; desktop: lean bottom-right, no text overlap */
.acc-footer-mascot-wrap {
  display: block;
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  height: auto;
  margin: 8px 0 0;
  pointer-events: none;
  z-index: 1;
  line-height: 0;
  text-align: center;
}
.acc-footer-mascot {
  display: block;
  height: 120px;
  width: auto;
  max-width: 88px;
  margin-inline: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 18px rgba(0, 50, 37, 0.12));
}
@media (min-width: 640px) {
  .acc-footer-mascot-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 260px;
    margin: 0;
    text-align: right;
  }
  .acc-footer-mascot {
    height: 260px;
    max-width: 160px;
    margin-inline: 0;
    object-position: bottom right;
  }
  .acc-footer-bottom { padding-right: 170px; }
}
@media (min-width: 1024px) {
  .acc-footer-mascot-wrap {
    right: 0;
    height: 300px;
  }
  .acc-footer-mascot {
    height: 300px;
    max-width: 180px;
  }
  .acc-footer-bottom { padding-right: 200px; }
}

/* ── Responsive nav (mobile ≤900px; desktop ≥901px) ── */
@media (max-width: 900px) {
  .acc-nav-links { display: none !important; }
  .acc-nav-lang { display: none !important; }
  .acc-menu-toggle { display: inline-flex !important; }
  .acc-nav-cta { display: none !important; }
  .acc-sticky-cta {
    right: 16px;
    top: auto;
    bottom: 16px;
    font-size: 14px;
    padding: 12px 16px;
    min-height: 44px;
  }
  /* Compact promo so sticky bar doesn’t dominate the first screen */
  .acc-promo {
    padding: 12px 48px 12px 64px;
    gap: 8px;
  }
  .acc-promo-title {
    font-size: 1.05rem;
    margin-bottom: 0;
  }
  .acc-promo-sub {
    font-size: 13px;
    line-height: 1.35;
  }
  .acc-promo-inner { gap: 6px; }
  .acc-promo-mascot { height: 48px; left: 4px; }
  .acc-nav {
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 12px;
  }
  .acc-brand-wordmark { max-width: min(140px, 42vw); }
  .acc-nav-actions { gap: 10px; }
}

@media (max-width: 768px) {
  .acc-coach-card {
    flex: 0 0 calc(100% - 32px);
    min-width: calc(100% - 32px);
    margin-inline: auto;
  }
  .acc-ai-mascot { display: none; }
}

@media (max-width: 640px) {
  .acc-nav-phone { display: none !important; }
  .acc-nav { min-height: auto; }
  .acc-hero { padding-bottom: var(--acc-space-8); }
  .acc-hero-inner { gap: var(--acc-space-5); }
  .acc-btn-primary--big {
    width: 100%;
    max-width: 100%;
    padding: 18px 24px;
    font-size: 18px;
  }
  /* Section gap already = Accountable mt-16 — avoid stacking extra trust pad */
  .acc-trust { padding-top: 0; }
  .acc-trust-heading { margin-bottom: var(--acc-space-2); }
  .acc-trust-card {
    min-height: auto;
    padding: var(--acc-space-5) 64px var(--acc-space-5) var(--acc-space-5);
  }
  .acc-trust-card h3 { max-width: 100%; }
  .acc-ai-card { padding: 24px 16px; }
  .acc-chat-ui { height: min(450px, 70vh); }
  .acc-press-grid { grid-template-columns: 1fr; }
  .acc-links-grid { gap: 20px; }
  /* Mascot sits in-flow below cols on mobile — no absolute BR pad needed */
  .acc-footer .acc-container { padding-bottom: 40px; }
  .acc-footer-cols { width: 100%; padding-right: 0; }
  .acc-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }
  .acc-cta-bottom-card .acc-btn-primary--big { width: 100%; }
  .acc-promo-inner { width: 100%; }
  .acc-promo-sub { max-width: 100%; }
}

@media (max-width: 375px) {
  /* Keep wordmark readable — shrink instead of hiding brand */
  .acc-brand-wordmark {
    display: block;
    max-width: min(118px, 38vw);
  }
  .acc-promo-title { font-size: 1rem; }
  .acc-promo { padding: 10px 44px 10px 52px; }
  .acc-promo-mascot { height: 42px; }
  .acc-promo-close { right: 2px; top: 2px; }
  .acc-container { padding-left: 20px; padding-right: 20px; }
  .acc-coach-nav-btn--prev { left: 8px; }
  .acc-coach-nav-btn--next { right: 8px; }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .acc-container {
    padding-left: var(--acc-space-12);
    padding-right: var(--acc-space-12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .acc-btn:active { transform: none; }
  .acc-review-marquee__track {
    animation: none;
    transform: none;
  }
  .acc-hero-visual__flakes {
    display: none;
  }
}

/* ── Subpages ── */
.acc-nav-zone--subpage {
  background: var(--acc-lavender-page);
  padding-bottom: 0;
}
.acc-nav-links a.is-active,
.acc-mobile-menu a.is-active {
  color: var(--acc-purple);
  font-weight: 600;
}

.acc-sub-hero {
  background:
    radial-gradient(ellipse 70% 55% at 88% 12%, rgba(0, 101, 75, 0.10), transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 90%, rgba(168, 205, 184, 0.35), transparent 50%),
    var(--acc-lavender-page);
  padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 7vw, 80px);
}
.acc-sub-hero-inner {
  display: grid;
  gap: var(--acc-stack-gap);
  align-items: center;
}
@media (min-width: 1024px) {
  .acc-sub-hero--visual .acc-sub-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--acc-space-14);
  }
}
.acc-sub-hero-eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: var(--acc-purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 var(--acc-space-4);
}
.acc-sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6.2vw, 4rem);
  font-weight: 800;
  color: var(--acc-ink);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 var(--acc-space-5);
  line-height: 1.05;
  max-width: min(14ch, 100%);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.acc-sub-hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--acc-muted-body);
  line-height: 1.55;
  margin: 0;
  max-width: 48ch;
  overflow-wrap: break-word;
  word-break: break-word;
}
.acc-sub-hero-copy {
  min-width: 0;
}
.acc-sub-hero-actions {
  margin-top: var(--acc-space-8);
}
.acc-sub-hero-visual {
  position: relative;
  min-width: 0;
}
.acc-sub-hero-art {
  min-height: 320px;
  width: 100%;
}
.acc-sub-hero-photo-shell {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(0, 101, 75, 0.10), transparent 40%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 50, 37, 0.06), 0 24px 48px rgba(0, 50, 37, 0.08);
  padding: 16px;
}
.acc-sub-hero-photo-shell img,
.acc-sub-hero-visual > img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 640px) {
  .acc-sub-hero h1 { max-width: none; }
  .acc-sub-hero-art { min-height: 240px; }
  .acc-sub-hero-photo-shell {
    min-height: 220px;
    max-height: 360px;
  }
  .acc-sub-hero-eyebrow {
    letter-spacing: 0.06em;
    font-size: 12px;
  }
  .acc-sub-hero-actions {
    margin-top: 22px;
  }
  .acc-sub-hero-actions .acc-btn {
    width: 100%;
    justify-content: center;
  }
}

.acc-sub-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--acc-muted-body);
  max-width: 72ch;
}
.acc-sub-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 32px;
  text-align: center;
}

.acc-sub-service {
  scroll-margin-top: 96px;
}

/* Light card (ADDISON + video sections) */
.acc-sub-service--light .acc-sub-service-inner {
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .acc-sub-service--light .acc-sub-service-inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.acc-sub-service--light h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  margin: 0 0 12px;
}
.acc-sub-service--light .acc-sub-service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--acc-muted-body);
  margin: 0 0 16px;
}
.acc-sub-service-subtitle {
  font-weight: 700;
  color: var(--acc-purple);
  margin: 0 0 12px;
}
.acc-sub-service-extra-title {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--acc-ink);
}
.acc-sub-service-outro {
  margin-top: 8px;
}
.acc-sub-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.acc-sub-service-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Brand-green feature bands (mint/cream — never black) */
.acc-sub-service--dark {
  background:
    radial-gradient(120% 80% at 12% 18%, rgba(168, 205, 184, 0.35) 0%, transparent 55%),
    radial-gradient(90% 70% at 88% 82%, rgba(0, 101, 75, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #F7FBF9 0%, #F3F8F6 48%, #EAF4EF 100%);
  margin-top: 0;
  padding: clamp(72px, 12vw, 140px) 0;
  position: relative;
  overflow: clip;
}
.acc-sub-service--dark-alt {
  background:
    radial-gradient(110% 75% at 86% 16%, rgba(168, 205, 184, 0.4) 0%, transparent 52%),
    radial-gradient(85% 65% at 10% 88%, rgba(0, 101, 75, 0.07) 0%, transparent 48%),
    linear-gradient(180deg, #E8F2EE 0%, #F3F8F6 52%, #FFFFFF 100%);
}
.acc-sub-intro + .acc-sub-service--dark,
.acc-sub-service--light + .acc-sub-service--dark {
  margin-top: var(--acc-section-gap);
}
@media (min-width: 1024px) {
  .acc-sub-intro + .acc-sub-service--dark,
  .acc-sub-service--light + .acc-sub-service--dark {
    margin-top: var(--acc-section-gap-lg);
  }
}
.acc-sub-service--dark .acc-sub-service-inner {
  background: transparent;
  border: none;
  border-radius: 0;
  /* Keep horizontal gutters from .acc-container — never padding:0 (that flush-to-edge bug) */
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}
@media (min-width: 1024px) {
  .acc-sub-service--dark .acc-sub-service-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .acc-sub-service--dark-reverse .acc-sub-service-inner {
    direction: rtl;
  }
  .acc-sub-service--dark-reverse .acc-sub-service-inner > * {
    direction: ltr;
  }
}

.acc-sub-service-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #00654B;
  margin: 0 0 14px;
}
.acc-sub-service--dark h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: var(--acc-tracking-title);
  line-height: 1.08;
  color: #003225;
  margin: 0 0 18px;
  max-width: min(16ch, 100%);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.acc-sub-service--dark .acc-sub-service-lead,
.acc-sub-service--dark .acc-sub-service-outro,
.acc-sub-service--dark .acc-sub-service-content > p {
  font-size: 16px;
  line-height: 1.65;
  color: #2a4a3e;
  margin: 0 0 20px;
  max-width: 42ch;
}
.acc-sub-service--dark .acc-sub-service-subtitle {
  color: #00654B;
}
.acc-sub-service--dark .acc-sub-service-extra-title {
  color: #003225;
  margin-top: 32px;
}
.acc-sub-service--dark .acc-sub-list li {
  color: #2a4a3e;
  border-bottom-color: rgba(0, 101, 75, 0.12);
  padding: 14px 0 14px 28px;
}
.acc-sub-service--dark .acc-sub-list li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath d='M1 5l4 4 8-8' stroke='%2300654B' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.acc-btn-outline--on-dark {
  color: #00654B;
  border-color: rgba(0, 101, 75, 0.35);
  background: #FFFFFF;
}
.acc-btn-outline--on-dark:hover {
  color: #003225;
  border-color: #00654B;
  background: #E8F2EE;
}

/* Floating UI / doodle stage */
.acc-dark-visual {
  position: relative;
  min-height: clamp(320px, 42vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px) 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.acc-dark-visual--art {
  padding: clamp(36px, 5vw, 56px) 8px;
}
.acc-dark-art-card {
  width: min(100%, 420px);
  min-height: 300px;
  box-shadow: 0 24px 48px rgba(0, 101, 75, 0.14);
  transform: rotate(-1.5deg);
  border-radius: 20px;
  background: #FFFFFF;
}
.acc-dark-float-main {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  background: linear-gradient(160deg, #FFFFFF 0%, #F3F8F6 48%, #E8F2EE 100%);
  border: 1px solid rgba(0, 101, 75, 0.1);
  border-radius: 20px;
  padding: 28px 26px 30px;
  box-shadow: 0 22px 48px rgba(0, 101, 75, 0.12);
  color: var(--acc-ink);
}
.acc-dark-float-main--generic {
  min-height: 220px;
}
.acc-dark-float-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--acc-purple);
  margin-bottom: 10px;
}
.acc-dark-float-main strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #003225;
  margin-bottom: 10px;
}
.acc-dark-float-main p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #2a4a3e;
}
.acc-dark-float-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.acc-dark-float-main ul li {
  font-size: 12px;
  font-weight: 600;
  color: #003225;
  background: rgba(0, 101, 75, 0.1);
  border-radius: 999px;
  padding: 6px 10px;
}
.acc-dark-float-chip {
  position: absolute;
  z-index: 3;
  background: #FFFFFF;
  color: #003225;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 101, 75, 0.12);
  box-shadow: 0 10px 24px rgba(0, 101, 75, 0.12);
  white-space: nowrap;
  max-width: calc(100% - 16px);
  box-sizing: border-box;
}
.acc-dark-float-chip--top {
  top: 12%;
  left: 4%;
}
.acc-dark-float-chip--bottom {
  bottom: 14%;
  right: 2%;
}
.acc-dark-float-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 8%;
  width: min(220px, 56%);
  max-width: calc(100% - 12px);
  background: #FFFFFF;
  border: 1px solid rgba(0, 101, 75, 0.1);
  border-radius: 14px;
  padding: 14px 14px 14px 16px;
  box-shadow: 0 14px 32px rgba(0, 101, 75, 0.12);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  box-sizing: border-box;
}
.acc-dark-float-note-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #fff 0 22%, transparent 23%),
    radial-gradient(circle at 50% 78%, #fff 0 10%, transparent 11%),
    #c4a35a;
}
.acc-dark-float-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #2a4a3e;
}
.acc-dark-doodle {
  position: absolute;
  z-index: 1;
  opacity: 0.72;
  width: clamp(40px, 5vw, 56px);
  height: auto;
  pointer-events: none;
  transform: rotate(-12deg);
}
.acc-dark-doodle-svg {
  width: 100%;
  height: auto;
  display: block;
}
.acc-dark-doodle--tl { top: 5%; left: 6%; transform: rotate(-14deg); }
.acc-dark-doodle--tr { top: 3%; right: 8%; opacity: 0.85; transform: rotate(16deg); }
.acc-dark-doodle--br { bottom: 5%; left: 16%; opacity: 0.7; transform: rotate(-8deg); }

@media (max-width: 1023px) {
  .acc-sub-service--dark {
    padding: clamp(56px, 10vw, 88px) 0;
  }
  .acc-sub-service--dark h2 {
    max-width: 100%;
  }
  .acc-sub-service--dark .acc-sub-service-inner,
  .acc-sub-service--dark .acc-sub-service-content {
    min-width: 0;
    max-width: 100%;
  }
  /* Extra safe gutters on mint/dark Leistung bands (headings + body + lists) */
  .acc-sub-service--dark .acc-sub-service-inner {
    padding-left: clamp(22px, 6vw, 32px);
    padding-right: clamp(22px, 6vw, 32px);
  }
  .acc-sub-service--light .acc-sub-service-inner {
    padding-left: clamp(22px, 6vw, 36px);
    padding-right: clamp(22px, 6vw, 36px);
  }
  .acc-dark-float-chip--top { left: 4px; }
  .acc-dark-float-chip--bottom { right: 4px; }
  .acc-dark-float-note { right: 4px; }
}

.acc-sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.acc-sub-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--acc-line);
  font-size: 16px;
  line-height: 1.5;
  color: var(--acc-ink);
}
.acc-sub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath fill='%2300654B' d='M1 5l4 4 8-8' stroke='%2300654B' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

.acc-sub-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .acc-sub-card-grid { grid-template-columns: repeat(2, 1fr); }
}
.acc-sub-card {
  background: var(--acc-lavender);
  border-radius: var(--acc-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc-sub-card--wide {
  max-width: 100%;
}
.acc-sub-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--acc-ink);
}
.acc-sub-card p {
  margin: 0;
  flex: 1;
  line-height: 1.55;
  color: var(--acc-muted-body);
}

.acc-sub-link-list {
  display: grid;
  gap: 8px;
}
@media (min-width: 768px) {
  .acc-sub-link-list { grid-template-columns: repeat(2, 1fr); }
}
.acc-sub-link-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--acc-lavender-page);
  border-radius: var(--acc-radius-lg);
  color: var(--acc-purple-dark);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.acc-sub-link-item:hover {
  background: var(--acc-lavender);
  color: var(--acc-ink);
}

.acc-sub-video-row {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .acc-sub-video-row { grid-template-columns: repeat(2, 1fr); }
}

.acc-video-consent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc-video-consent-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--acc-muted);
  margin: 0;
}
.acc-btn-primary--compact {
  padding: 12px 20px;
  align-self: flex-start;
}

.acc-sub-team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .acc-sub-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .acc-sub-team-grid { grid-template-columns: repeat(3, 1fr); }
}
.acc-sub-team-card {
  background: var(--acc-lavender);
  border-radius: var(--acc-radius);
  padding: 24px;
  text-align: center;
}
.acc-sub-team-portrait {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--acc-purple-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--acc-ink);
}
.acc-sub-team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--acc-ink);
}
.acc-sub-team-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--acc-purple);
  margin: 0 0 8px;
}
.acc-sub-team-focus {
  font-size: 14px;
  color: var(--acc-muted-body);
  margin: 0 0 12px;
  line-height: 1.45;
}
.acc-sub-team-phone {
  font-size: 14px;
  color: var(--acc-ink);
  text-decoration: none;
}
.acc-sub-team-phone:hover { color: var(--acc-purple); }

.acc-press-item--static {
  cursor: default;
  pointer-events: none;
}
.acc-press-grid--news {
  margin-bottom: 16px;
}

.acc-sub-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.acc-sub-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: var(--acc-ink);
  cursor: pointer;
  text-align: left;
}
.acc-sub-faq-trigger:hover {
  border-color: var(--acc-purple-medium);
}
.acc-sub-faq-panel {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--acc-muted-body);
}
.acc-sub-faq-item.is-open .acc-sub-faq-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}
.acc-sub-faq-item.is-open .acc-sub-faq-panel {
  border: 1px solid var(--acc-line);
  border-top: none;
  border-radius: 0 0 var(--acc-radius) var(--acc-radius);
  margin-top: -12px;
  padding-top: 4px;
}

/* ── Redesign additions ── */
.acc-inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--acc-radius);
  background: var(--acc-lavender-page);
  border: 1px solid var(--acc-purple-medium);
  color: var(--acc-purple);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.acc-inline-badge--icon {
  align-self: flex-start;
  max-width: 100%;
  padding: 8px 14px 8px 10px;
}

.acc-inline-badge-icon {
  display: block;
  width: 28px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

.acc-inline-badge--icon span {
  line-height: 1.25;
}

@media (min-width: 640px) {
  .acc-inline-badge-icon {
    width: 32px;
    height: 34px;
  }
}

.acc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.acc-contact-mini-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.acc-contact-mini-list li,
.acc-contact-mini-list a {
  font-size: 15px;
  color: var(--acc-ink);
  text-decoration: none;
}

.acc-contact-mini-list a:hover {
  color: var(--acc-purple);
}

.acc-feature-visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
}
/* Soft mint blob behind feature art (Accountable feature stage) */
.acc-feature-visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% 4% 8%;
  z-index: 0;
  border-radius: 28px;
  background: rgba(168, 205, 184, 0.32);
  pointer-events: none;
}
/* Sparse flying-paper doodles — corners only, never over copy */
.acc-feature-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 72px;
  pointer-events: none;
  opacity: 0.55;
  background: url("assets/styled/doodle-paper.webp?v=20260716spacing") center / contain no-repeat;
  top: -6px;
  right: -4px;
}
.acc-feature.reverse .acc-feature-visual::after {
  background-image: url("assets/styled/doodle-paper-2.webp?v=20260716spacing");
  top: auto;
  bottom: 4%;
  right: auto;
  left: -6px;
  opacity: 0.45;
}
.acc-features-intro + .acc-feature + .acc-feature + .acc-feature .acc-feature-visual::after {
  background-image: url("assets/styled/doodle-paper-3.webp?v=20260716spacing");
  top: 8%;
  right: -8px;
  bottom: auto;
  left: auto;
  opacity: 0.4;
}
.acc-feature-visual > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .acc-feature,
  .acc-feature-inner,
  .acc-feature-visual {
    overflow-x: clip;
    max-width: 100%;
  }
  .acc-feature-visual::after {
    width: 48px;
    height: 48px;
    opacity: 0.38;
  }
  .acc-feature.reverse .acc-feature-visual::after {
    left: 4px;
  }
  .acc-features-intro + .acc-feature + .acc-feature + .acc-feature .acc-feature-visual::after {
    right: 4px;
  }
}

.acc-partner-logo--yt {
  object-fit: cover;
  border-radius: 8px;
}
.acc-feature-art-card {
  position: relative;
  background: var(--acc-lavender-page);
  border-radius: 18px;
  padding: 24px;
  min-height: 360px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.acc-feature-art-frame {
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 101, 75, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.72), inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.acc-feature-art-inner {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background: radial-gradient(circle at top right, rgba(0, 101, 75, 0.10), transparent 38%), linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 28px);
  box-shadow: inset 0 0 0 1px rgba(0, 50, 37, 0.04), 0 24px 48px rgba(0, 50, 37, 0.08);
}

.acc-feature-art-image {
  display: block;
  width: min(100%, 460px);
  max-height: 420px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 50, 37, 0.12));
  position: relative;
  z-index: 1;
}

.acc-feature-art-card--gruendung::before,
.acc-feature-art-card--finanzbuchhaltung::before,
.acc-feature-art-card--jahresabschluss::before,
.acc-feature-art-card--lohnbuchhaltung::before,
.acc-feature-art-card--addison::before {
  content: "";
  position: absolute;
  inset: auto auto 28px 26px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 101, 75, 0.12) 0%, rgba(0, 101, 75, 0) 72%);
  pointer-events: none;
}

.acc-cta-bottom-card--contact .acc-cta-bottom-copy {
  max-width: 620px;
}

.acc-sub-section-title--left {
  text-align: left;
  margin-bottom: 16px;
}

.acc-sub-card-grid--compact {
  align-items: stretch;
}

.acc-sub-card--elevated {
  border: 1px solid rgba(0, 101, 75, 0.14);
  box-shadow: 0 18px 42px rgba(0, 50, 37, 0.06);
}

/* ── Service calculator ── */
.acc-service-calc {
  scroll-margin-top: 96px;
}

.acc-service-calc-header {
  max-width: 68ch;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.acc-service-calc-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  letter-spacing: var(--acc-tracking-title);
  margin: 0 0 16px;
  line-height: 1.1;
}

.acc-service-calc-lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--acc-muted-body);
}

.acc-calc-card {
  background: #fff;
  border: 1px solid rgba(0, 101, 75, 0.14);
  border-radius: var(--acc-radius);
  box-shadow: 0 18px 42px rgba(0, 50, 37, 0.06);
  overflow: hidden;
}

.acc-calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: var(--acc-lavender-page);
  border-bottom: 1px solid rgba(0, 101, 75, 0.1);
}

.acc-calc-tab {
  flex: 1 1 220px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--acc-muted);
  padding: 14px 18px;
  border-radius: var(--acc-radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.acc-calc-tab:hover {
  color: var(--acc-ink);
  background: rgba(255, 255, 255, 0.55);
}

.acc-calc-tab.is-active {
  background: #fff;
  color: var(--acc-purple);
  border-color: rgba(0, 101, 75, 0.18);
  box-shadow: 0 8px 20px rgba(0, 50, 37, 0.06);
}

.acc-calc-tab:focus-visible {
  outline: 2px solid var(--acc-purple);
  outline-offset: 2px;
}

.acc-calc-body {
  position: relative;
}

.acc-calc-panel {
  display: none;
}

.acc-calc-panel.is-active {
  display: block;
  animation: acc-calc-fade 0.28s ease;
}

@keyframes acc-calc-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.acc-calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.acc-calc-input-card,
.acc-calc-result-card {
  padding: clamp(24px, 4vw, 40px);
}

.acc-calc-input-card {
  background: #fff;
  border-right: 1px solid var(--acc-line);
}

.acc-calc-result-card {
  background: linear-gradient(180deg, var(--acc-lavender) 0%, var(--acc-lavender-page) 100%);
  display: flex;
  flex-direction: column;
}

.acc-calc-panel-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--acc-ink-strong);
  letter-spacing: 0.02em;
}

.acc-calc-panel-desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--acc-muted);
  max-width: 46ch;
}

.acc-calc-field {
  margin-bottom: 24px;
}

.acc-calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--acc-ink);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.acc-calc-input-wrap,
.acc-calc-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  padding: 0 16px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.acc-calc-input-wrap:focus-within,
.acc-calc-select-wrap:focus-within {
  border-color: rgba(0, 101, 75, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 101, 75, 0.1);
}

.acc-calc-input-wrap input,
.acc-calc-select-wrap select {
  width: 100%;
  min-height: 50px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--acc-ink);
  background: transparent;
  font-variant-numeric: tabular-nums;
}

.acc-calc-select-wrap {
  position: relative;
  padding-right: 40px;
}

.acc-calc-select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--acc-muted);
  border-bottom: 2px solid var(--acc-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.acc-calc-select-wrap select {
  appearance: none;
  cursor: pointer;
}

.acc-calc-suffix {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--acc-muted);
  letter-spacing: 0.04em;
}

.acc-calc-range {
  margin-top: 14px;
}

.acc-calc-range input[type="range"] {
  width: 100%;
  height: 6px;
  margin: 0;
  appearance: none;
  border-radius: var(--acc-radius);
  background: linear-gradient(
    to right,
    var(--acc-purple) 0%,
    var(--acc-purple) var(--range-progress, 50%),
    var(--acc-line) var(--range-progress, 50%),
    var(--acc-line) 100%
  );
  cursor: pointer;
}

.acc-calc-range input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--acc-purple);
  box-shadow: 0 2px 8px rgba(0, 101, 75, 0.35);
}

.acc-calc-range input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--acc-purple);
  box-shadow: 0 2px 8px rgba(0, 101, 75, 0.35);
}

.acc-calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--acc-muted);
}

.acc-calc-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.acc-calc-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-top: 4px;
}

.acc-calc-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--acc-ink);
  cursor: pointer;
}

.acc-calc-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.acc-calc-switch-ui {
  width: 44px;
  height: 26px;
  border-radius: var(--acc-radius);
  background: var(--acc-line);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.acc-calc-switch-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 50, 37, 0.12);
  transition: transform 0.2s ease;
}

.acc-calc-switch input:checked + .acc-calc-switch-ui {
  background: var(--acc-purple);
}

.acc-calc-switch input:checked + .acc-calc-switch-ui::after {
  transform: translateX(18px);
}

.acc-calc-switch input:focus-visible + .acc-calc-switch-ui {
  outline: 2px solid var(--acc-purple);
  outline-offset: 2px;
}

.acc-calc-hero {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 101, 75, 0.14);
}

.acc-calc-hero-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acc-purple-dark);
  margin-bottom: 10px;
}

.acc-calc-hero-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: var(--acc-ink-strong);
  font-variant-numeric: tabular-nums;
}

.acc-calc-hero-sub {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--acc-muted);
}

.acc-calc-breakdown {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.acc-calc-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 101, 75, 0.1);
  font-size: 14px;
}

.acc-calc-breakdown li span {
  color: var(--acc-muted-body);
}

.acc-calc-breakdown li b {
  font-weight: 600;
  color: var(--acc-ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.acc-calc-breakdown .is-minus b::before {
  content: "− ";
  color: var(--acc-muted);
  font-weight: 500;
}

.acc-calc-breakdown .is-total {
  border-bottom: 0;
  border-top: 1px solid rgba(0, 101, 75, 0.18);
  margin-top: 6px;
  padding-top: 16px;
}

.acc-calc-breakdown .is-total span,
.acc-calc-breakdown .is-total b {
  color: var(--acc-purple-dark);
  font-weight: 700;
}

.acc-calc-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.acc-calc-legal {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--acc-muted);
  max-width: 72ch;
}

.acc-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
}

.acc-service-side-stack {
  display: grid;
  gap: 24px;
}

.acc-news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
}

.acc-news-feature-card,
.acc-news-insight-card,
.acc-news-card,
.acc-news-legal-card,
.acc-career-hero-card,
.acc-career-step,
.acc-career-point {
  border: 1px solid rgba(0, 101, 75, 0.12);
  box-shadow: 0 18px 42px rgba(0, 50, 37, 0.06);
}

.acc-news-feature-card,
.acc-news-insight-card,
.acc-news-card,
.acc-news-legal-card {
  background: #fff;
  border-radius: var(--acc-radius);
  overflow: hidden;
}

.acc-news-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 0;
}

.acc-news-feature-body,
.acc-news-card-body,
.acc-news-insight-body,
.acc-news-legal-copy {
  padding: 28px;
}

.acc-news-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acc-news-feature-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.acc-news-feature-card p,
.acc-news-insight-card p,
.acc-news-card p {
  margin: 0;
  color: var(--acc-muted-body);
  line-height: 1.6;
}

.acc-news-feature-body .acc-btn {
  margin-top: 24px;
  align-self: flex-start;
}

.acc-news-thumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfbff 0%, #f5f1fe 100%);
  min-height: 200px;
}

.acc-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.acc-news-thumb--featured {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.acc-news-thumb--compact {
  flex: 0 0 112px;
  width: 112px;
  min-height: 112px;
  border-radius: 16px;
}

.acc-news-card .acc-news-thumb {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.acc-news-thumb-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(0, 101, 75, 0.16);
  box-shadow: 0 16px 36px rgba(0, 50, 37, 0.12);
}

.acc-news-thumb-overlay img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.acc-news-svg-thumb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: inherit;
  background: linear-gradient(180deg, #fcfbff 0%, #f5f1fe 100%);
}

.acc-news-svg-thumb--compact {
  min-height: 112px;
  border-radius: 16px;
}

.acc-news-svg-thumb__paper {
  position: absolute;
  inset: 18px 24px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,243,254,0.98) 100%);
  border: 1px solid rgba(0, 101, 75, 0.12);
}

.acc-news-svg-thumb--compact .acc-news-svg-thumb__paper {
  inset: 12px 14px 18px;
  border-radius: 14px;
}

.acc-news-svg-thumb__icon,
.acc-news-svg-thumb__label {
  position: relative;
  z-index: 1;
}

.acc-news-svg-thumb__label {
  position: absolute;
  left: 28px;
  top: 24px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--acc-radius);
  background: rgba(0, 101, 75, 0.1);
  color: var(--acc-purple);
  font-size: 11px;
  font-weight: 800;
}

.acc-news-svg-thumb--compact .acc-news-svg-thumb__label {
  left: 18px;
  top: 16px;
  font-size: 10px;
  padding: 4px 8px;
}

.acc-news-meta-row,
.acc-news-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.acc-news-meta-row--top {
  margin-top: 14px;
}

.acc-news-meta-row span,
.acc-news-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: var(--acc-radius);
  background: var(--acc-lavender);
  color: var(--acc-ink);
  font-size: 13px;
  font-weight: 700;
}

.acc-news-chip-icon {
  display: inline-flex;
  color: var(--acc-purple);
}

.acc-news-chip--muted {
  background: var(--acc-lavender-page);
  color: var(--acc-muted-body);
}

.acc-news-insight-list {
  display: grid;
  gap: 24px;
}

.acc-news-insight-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  align-items: flex-start;
}

.acc-news-insight-card h3,
.acc-news-card h3,
.acc-career-step h3,
.acc-career-point strong {
  margin: 0 0 12px;
  color: var(--acc-ink);
}

.acc-news-insight-body .acc-news-chip {
  margin-bottom: 10px;
}

.acc-news-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.acc-news-card-top {
  margin-top: 0;
  margin-bottom: 4px;
}

.acc-news-legal-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 0;
  background: var(--acc-lavender-page);
}

.acc-news-legal-visual {
  position: relative;
  min-height: 280px;
  padding: clamp(24px, 4vw, 36px);
}

.acc-news-legal-visual__frame {
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  border: 1px solid rgba(0, 101, 75, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(246,243,254,0.92) 100%);
}

.acc-news-legal-visual__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.acc-news-legal-visual__inner > img {
  width: min(116px, 42%);
  height: auto;
}

.acc-news-legal-visual__shield {
  position: absolute;
  right: 12%;
  bottom: 8%;
}

.acc-news-legal-copy h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.acc-news-legal-copy p {
  margin: 0;
  color: var(--acc-muted-body);
  line-height: 1.65;
}

.acc-news-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.acc-news-toolbar .acc-sub-intro {
  margin: 0;
  max-width: 40ch;
}

.acc-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.acc-news-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--acc-purple);
  font-weight: 700;
  text-decoration: none;
}

.acc-career-hero-card,
.acc-career-apply-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(0, 101, 75, 0.08), transparent 55%),
    var(--acc-lavender-page);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(0, 101, 75, 0.12);
  box-shadow: 0 18px 42px rgba(0, 50, 37, 0.06);
}

.acc-career-hero-card h2,
.acc-career-apply-band h2,
.acc-career-cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 16px;
  line-height: 1.05;
  color: var(--acc-ink-strong);
}

.acc-career-hero-card p,
.acc-career-apply-band p,
.acc-career-cta-panel p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--acc-muted-body);
  margin: 0 0 24px;
}

.acc-career-hero-points,
.acc-career-apply-facts {
  display: grid;
  gap: 16px;
}

.acc-career-point {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 101, 75, 0.1);
}

.acc-career-point strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--acc-ink);
}

.acc-career-point span,
.acc-career-point a {
  color: var(--acc-muted-body);
  font-size: 15px;
  line-height: 1.55;
  text-decoration: none;
}

.acc-career-point a:hover {
  color: var(--acc-purple);
}

.acc-career-story {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .acc-career-story {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
  }
}
.acc-career-story-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--acc-muted-body);
  margin: 0 0 16px;
  max-width: 54ch;
}
.acc-career-story-copy .acc-btn {
  margin-top: 8px;
}

.acc-career-team-head {
  margin-bottom: 28px;
  max-width: 64ch;
}
.acc-career-team-grid .acc-sub-team-card--career {
  background: #fff;
  border: 1px solid rgba(0, 101, 75, 0.12);
  box-shadow: 0 14px 32px rgba(0, 50, 37, 0.05);
  text-align: left;
}
.acc-career-team-grid .acc-sub-team-portrait {
  margin: 0 0 16px;
  background: linear-gradient(160deg, #E8F2EE 0%, #C5DDD4 100%);
  color: var(--acc-purple-dark);
  border: 1px solid rgba(0, 101, 75, 0.16);
}

.acc-career-reasons {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .acc-career-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.acc-career-reason {
  background: #fff;
  border: 1px solid rgba(0, 101, 75, 0.12);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(0, 50, 37, 0.05);
}
.acc-career-reason-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--acc-purple);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.acc-career-reason h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--acc-ink);
}
.acc-career-reason p {
  margin: 0;
  color: var(--acc-muted-body);
  line-height: 1.6;
}

.acc-career-cta-panel {
  display: grid;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0, 101, 75, 0.1), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--acc-lavender-page) 100%);
  border: 1px solid rgba(0, 101, 75, 0.14);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 18px 42px rgba(0, 50, 37, 0.06);
}
@media (min-width: 900px) {
  .acc-career-cta-panel {
    grid-template-columns: minmax(0, 1.2fr) auto;
  }
}
.acc-career-cta-panel a:not(.acc-btn) {
  color: var(--acc-purple);
  font-weight: 700;
}

.acc-career-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.acc-career-step {
  background: #fff;
  border-radius: var(--acc-radius);
  padding: 28px;
}

.acc-career-step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--acc-lavender);
  color: var(--acc-purple);
  font-weight: 800;
  margin-bottom: 16px;
}

.acc-career-step p {
  margin: 0;
  color: var(--acc-muted-body);
  line-height: 1.6;
}
.acc-career-step a {
  color: var(--acc-purple);
  font-weight: 700;
  text-decoration: none;
}

/* Service page polish */
.acc-service-jump {
  display: grid;
  gap: 20px;
}
@media (min-width: 900px) {
  .acc-service-jump {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.acc-service-jump-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0, 101, 75, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 50, 37, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
}
.acc-service-jump-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 101, 75, 0.28);
  box-shadow: 0 22px 48px rgba(0, 50, 37, 0.1);
}
.acc-service-jump-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--acc-ink-strong);
}
.acc-service-jump-card p {
  margin: 0 0 18px;
  color: var(--acc-muted-body);
  line-height: 1.55;
  flex: 1;
}
.acc-service-jump-link {
  font-weight: 800;
  color: var(--acc-purple);
  font-size: 14px;
}

.acc-service-feature {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(ellipse 55% 70% at 100% 20%, rgba(0, 101, 75, 0.08), transparent 55%),
    #fff;
  border: 1px solid rgba(0, 101, 75, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(0, 50, 37, 0.06);
  scroll-margin-top: 96px;
}
@media (min-width: 1024px) {
  .acc-service-feature {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
  }
}
.acc-service-feature-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin: 0 0 16px;
  line-height: 1.08;
  color: var(--acc-ink-strong);
}
.acc-service-feature-copy > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--acc-muted-body);
  margin: 0 0 16px;
  max-width: 52ch;
}
.acc-service-feature-visual .acc-feature-art-card {
  min-height: 300px;
}

.acc-service-faq-head {
  margin-bottom: 28px;
  max-width: 60ch;
  scroll-margin-top: 96px;
}
#faq {
  scroll-margin-top: 96px;
}
.acc-service-faq-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .acc-service-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.acc-service-faq-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(0, 101, 75, 0.12);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0, 50, 37, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.acc-service-faq-card:hover {
  border-color: rgba(0, 101, 75, 0.3);
  transform: translateY(-2px);
}
.acc-service-faq-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--acc-lavender);
}
.acc-service-faq-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.acc-service-faq-card-copy strong {
  color: var(--acc-ink);
  font-size: 15px;
}
.acc-service-faq-card-copy span {
  color: var(--acc-purple);
  font-size: 13px;
  font-weight: 700;
}

.acc-service-career-strip {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  background: var(--acc-lavender-page);
  border: 1px solid rgba(0, 101, 75, 0.12);
  border-radius: 24px;
}
@media (min-width: 800px) {
  .acc-service-career-strip {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
.acc-service-career-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 10px;
  color: var(--acc-ink-strong);
}
.acc-service-career-strip p {
  margin: 0;
  color: var(--acc-muted-body);
  line-height: 1.6;
  max-width: 52ch;
}

@media (max-width: 1024px) {
  .acc-calc-layout,
  .acc-service-layout,
  .acc-news-featured,
  .acc-news-feature-card,
  .acc-news-legal-card,
  .acc-career-hero-card,
  .acc-career-apply-band,
  .acc-career-steps {
    grid-template-columns: 1fr;
  }

  .acc-news-grid {
    grid-template-columns: 1fr;
  }

  .acc-news-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .acc-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .acc-calc-field-row {
    grid-template-columns: 1fr;
  }

  .acc-calc-input-card {
    border-right: 0;
    border-bottom: 1px solid var(--acc-line);
  }

  .acc-calc-tabs {
    flex-direction: column;
  }

  .acc-calc-tab {
    flex-basis: auto;
    width: 100%;
  }

  .acc-service-calc,
  .acc-career-hero-card,
  .acc-career-apply-band,
  .acc-service-feature,
  .acc-service-career-strip,
  .acc-career-cta-panel,
  .acc-news-insight-card {
    border-radius: 16px;
  }

  .acc-news-insight-card {
    flex-direction: column;
  }

  .acc-news-thumb--compact {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 16 / 9;
  }

  .acc-feature-art-card {
    min-height: 300px;
    padding: 18px;
  }
}

@keyframes acc-review-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% + 8px), 0, 0); }
}

/* ============================================================
   Steuerwissen — Steuerrechner & Tipps (Accountable tax-ressources)
   ============================================================ */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.acc-wissen-hero {
  padding: 48px 0 72px;
  text-align: center;
}

.acc-wissen-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.acc-wissen-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: var(--acc-tracking-title);
  line-height: 1.05;
  color: var(--acc-ink);
  max-width: 16ch;
}

.acc-wissen-hero-lead {
  margin: 0;
  max-width: 54ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--acc-muted-body);
}

.acc-wissen-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 520px);
  margin-top: 8px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 50, 37, 0.06);
}

.acc-wissen-search img {
  flex-shrink: 0;
  opacity: 0.75;
}

.acc-wissen-search input {
  flex: 1;
  border: 0;
  outline: none;
  font: inherit;
  font-size: 16px;
  color: var(--acc-ink);
  background: transparent;
}

.acc-wissen-search input::placeholder {
  color: var(--acc-muted);
}

.acc-wissen-hero-actions {
  margin-top: 12px;
  justify-content: center;
}

.acc-wissen-section-head {
  margin-bottom: 28px;
}

.acc-wissen-section-head--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.acc-wissen-section-head--center h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink);
}

.acc-wissen-section-head--center p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--acc-muted-body);
}

.acc-wissen-result-count {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--acc-muted);
}

.acc-wissen-tip-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 720px) {
  .acc-wissen-tip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .acc-wissen-tip-grid { grid-template-columns: repeat(3, 1fr); }
}

.acc-wissen-tip-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.acc-wissen-tip-card:hover {
  border-color: rgba(0, 101, 75, 0.28);
  box-shadow: 0 16px 36px rgba(0, 50, 37, 0.08);
  transform: translateY(-2px);
}

.acc-wissen-tip-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--acc-lavender);
}

.acc-wissen-tip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.acc-wissen-tip-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 101, 75, 0.18), transparent 55%),
    linear-gradient(135deg, #E8F2EE, #F3F8F6);
}

.acc-wissen-tip-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 24px;
  flex: 1;
}

.acc-wissen-tip-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.3px;
  color: var(--acc-ink);
}

.acc-wissen-tip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.acc-wissen-tip-body p {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: var(--acc-muted-body);
}

.acc-wissen-tip-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--acc-purple);
  text-decoration: none;
}

.acc-wissen-tip-more::after {
  content: "→";
  transition: transform 0.15s ease;
}

.acc-wissen-tip-more:hover::after {
  transform: translateX(3px);
}

.acc-wissen-load-more,
.acc-wissen-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  text-align: center;
}

.acc-wissen-empty p {
  margin: 0;
  color: var(--acc-muted-body);
}

/* Dark / tinted band — Absetzen */
.acc-wissen-band {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(0, 101, 75, 0.22), transparent 50%),
    linear-gradient(160deg, #003225 0%, #004d38 48%, #00654B 100%);
  color: #fff;
  padding: 80px 0;
}

.acc-wissen-band-head {
  max-width: 560px;
  margin-bottom: 40px;
}

.acc-wissen-band-head h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: var(--acc-tracking-title);
}

.acc-wissen-band-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.acc-wissen-deduct-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .acc-wissen-deduct-layout {
    grid-template-columns: 180px 1fr;
    gap: 48px;
  }
}

.acc-wissen-deduct-mascot {
  display: flex;
  justify-content: center;
}

.acc-wissen-deduct-mascot img {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
}

.acc-wissen-deduct-stage {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acc-wissen-deduct-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px 28px 24px;
  backdrop-filter: blur(8px);
}

.acc-wissen-deduct-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 10px;
}

.acc-wissen-deduct-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.acc-wissen-deduct-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.acc-wissen-deduct-card p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.acc-wissen-deduct-card .acc-wissen-tip-more {
  color: #B8E0CC;
}

.acc-wissen-meters {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

@media (min-width: 640px) {
  .acc-wissen-meters { grid-template-columns: 1fr 1fr; gap: 16px; }
}

.acc-wissen-meter-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.acc-wissen-meter-dots {
  display: flex;
  gap: 6px;
}

.acc-wissen-meter-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.acc-wissen-meter-dot.is-on {
  background: #7EC9A8;
  border-color: #7EC9A8;
  box-shadow: 0 0 0 2px rgba(126, 201, 168, 0.25);
}

.acc-wissen-deduct-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.acc-wissen-deduct-pill {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.acc-wissen-deduct-pill:hover {
  background: rgba(255, 255, 255, 0.12);
}

.acc-wissen-deduct-pill.is-active {
  background: #fff;
  color: var(--acc-purple-dark);
  border-color: #fff;
}

.acc-wissen-deduct-cta {
  align-self: flex-start;
}

.acc-wissen-video-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 860px) {
  .acc-wissen-video-grid { grid-template-columns: repeat(2, 1fr); }
}

.acc-wissen-video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acc-wissen-video-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--acc-ink);
}

/* Tools band */
.acc-wissen-tools-band {
  background: var(--acc-lavender-page);
  padding: 80px 0;
}

.acc-wissen-tools-title {
  margin: 0 0 36px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink);
}

.acc-wissen-tools-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 720px) {
  .acc-wissen-tools-grid { grid-template-columns: repeat(2, 1fr); }
}

.acc-wissen-tool-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 50, 37, 0.05);
}

.acc-wissen-tool-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--acc-ink);
}

.acc-wissen-tool-card p {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: var(--acc-muted-body);
}

.acc-wissen-tool-card .acc-btn {
  align-self: flex-start;
}

.acc-wissen-addison {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: 24px;
}

@media (min-width: 960px) {
  .acc-wissen-addison {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}

.acc-wissen-addison-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acc-wissen-addison-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink);
}

.acc-wissen-addison-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--acc-muted-body);
  max-width: 48ch;
}

/* Useful links — tip page variant */
.acc-wissen-links {
  border-top: 3px solid var(--acc-purple);
  padding-top: 48px;
}

.acc-wissen-links h2 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink);
}

.acc-wissen-links-grid {
  display: grid;
  gap: 20px 32px;
}

@media (min-width: 800px) {
  .acc-wissen-links-grid { grid-template-columns: repeat(3, 1fr); }
}

.acc-wissen-links-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acc-wissen-link-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--acc-purple);
  text-decoration: none;
}

.acc-wissen-link-item:hover {
  color: var(--acc-ink);
}

.acc-wissen-link-item .acc-play-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 4px;
  fill: currentColor;
}

@media (max-width: 720px) {
  .acc-wissen-hero {
    padding: 32px 0 48px;
    text-align: left;
  }

  .acc-wissen-hero-inner {
    align-items: flex-start;
  }

  .acc-wissen-hero h1 {
    max-width: none;
  }

  .acc-wissen-hero-actions {
    width: 100%;
    justify-content: stretch;
  }

  .acc-wissen-hero-actions .acc-btn {
    width: 100%;
    justify-content: center;
  }

  .acc-wissen-band {
    padding: 56px 0;
  }

  .acc-wissen-tools-band {
    padding: 56px 0;
  }

  .acc-wissen-addison {
    padding: 24px;
  }

  .acc-wissen-search {
    width: 100%;
    border-radius: 16px;
  }
}

/* Desktop nav: full link row, no hamburger */
@media (min-width: 901px) {
  .acc-nav-links { display: flex !important; }
  .acc-menu-toggle { display: none !important; }
  .acc-mobile-menu,
  .acc-mobile-menu.is-open { display: none !important; }
}

/* Slightly tighter nav when 5 links are present */
@media (min-width: 1100px) and (max-width: 1280px) {
  .acc-nav-links {
    gap: 14px;
  }

  .acc-nav-links a {
    font-size: 14px;
  }
}

/* ============================================================
   Erstgespräch-Fragebogen (Accountable multi-step layout)
   ============================================================ */
.acc-fragebogen {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0, 101, 75, 0.08), transparent 55%),
    linear-gradient(180deg, var(--acc-lavender-page) 0%, #fff 42%, #fff 100%);
  padding: 32px 0 80px;
}

.acc-fb-shell {
  max-width: var(--acc-container-max);
}

.acc-fb-page-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.acc-fb-eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--acc-purple);
}

.acc-fb-page-intro h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink);
}

.acc-fb-page-intro p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--acc-muted-body);
}

.acc-fb-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.acc-fb-progress-track {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: var(--acc-lavender);
  overflow: hidden;
}

.acc-fb-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--acc-purple) 0%, #0a8f6a 100%);
  transition: width 0.35s ease;
}

.acc-fb-progress-label {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--acc-muted);
}

.acc-fb-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.acc-fb-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  min-width: 0;
  width: 100%;
}

.acc-fb-mobile-steps {
  display: block;
  margin: 0 0 20px;
}

.acc-fb-aside {
  display: none;
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  padding: 28px 22px;
  box-shadow: 0 8px 28px rgba(0, 50, 37, 0.05);
}

.acc-fb-panel {
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  padding: 32px 28px;
  box-shadow: 0 12px 36px rgba(0, 50, 37, 0.06);
  min-height: 420px;
}

.acc-fb-help {
  background: #fff;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  padding: 28px 22px;
  box-shadow: 0 8px 28px rgba(0, 50, 37, 0.05);
}

.acc-fb-help-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: var(--acc-tracking-title);
  color: var(--acc-ink);
}

.acc-fb-help-lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--acc-muted);
}

.acc-fb-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-fb-faq-item {
  border: 1px solid var(--acc-line);
  border-radius: 10px;
  background: var(--acc-lavender-page);
  overflow: hidden;
}

.acc-fb-faq-item.is-open {
  background: #fff;
  border-color: rgba(0, 101, 75, 0.28);
}

.acc-fb-faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 14px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--acc-ink);
}

.acc-fb-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--acc-lavender);
  color: var(--acc-purple);
  font-weight: 700;
}

.acc-fb-faq-a {
  margin: 0;
  padding: 0 14px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--acc-muted-body);
}

.acc-fb-help-contact {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--acc-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acc-fb-help-contact p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--acc-muted);
}

.acc-fb-help-contact a {
  color: var(--acc-purple);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.acc-fb-help-contact a:hover {
  text-decoration: underline;
}

.acc-fb-autosave {
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--acc-purple);
}

.acc-fb-tabs--mobile .acc-fb-tabs-list--scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  overflow: visible;
}

.acc-fb-tabs--mobile .acc-fb-tabs-list--scroll li {
  flex: 0 1 auto;
  min-width: 0;
}

.acc-fb-tab--chip {
  padding: 10px 12px;
  min-height: 44px;
  border: 1px solid var(--acc-line);
  border-radius: 999px;
  background: #fff;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.acc-fb-tab--chip.is-active {
  border-color: var(--acc-purple);
  background: var(--acc-lavender);
}

.acc-fb-tab--chip.is-locked {
  opacity: 0.45;
}

.acc-fb-tab--chip .acc-fb-tab-num {
  width: 24px;
  height: 24px;
  font-size: 12px;
}

.acc-fb-tab--chip .acc-fb-tab-label {
  font-size: 13px;
}

.acc-fb-tabs-list--scroll li + li .acc-fb-tab::before {
  display: none;
}

.acc-fb-tabs-welcome {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 0;
  min-height: 44px;
  cursor: pointer;
  color: var(--acc-muted);
  font: inherit;
  font-weight: 600;
  text-align: left;
}

.acc-fb-tabs-welcome.is-active,
.acc-fb-tabs-welcome:hover {
  color: var(--acc-purple);
}

.acc-fb-tabs-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--acc-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.acc-fb-tabs-welcome.is-active .acc-fb-tabs-icon {
  background: var(--acc-purple);
  border-color: var(--acc-purple);
  color: #fff;
}

.acc-fb-tabs-rule {
  border: 0;
  border-top: 1px solid var(--acc-line);
  margin: 14px 0 8px;
}

.acc-fb-tabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.acc-fb-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 0;
  cursor: pointer;
  color: #8aa399;
  font: inherit;
  text-align: left;
  transition: color 0.2s ease;
}

.acc-fb-tabs-list li + li .acc-fb-tab::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -8px;
  width: 2px;
  height: 16px;
  background: var(--acc-line);
  border-radius: 2px;
}

.acc-fb-tab-num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--acc-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--acc-purple-500);
  background: #fff;
  transition: all 0.2s ease;
}

.acc-fb-tab-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.acc-fb-tab.is-active,
.acc-fb-tab:hover:not(:disabled) {
  color: var(--acc-purple);
}

.acc-fb-tab.is-active .acc-fb-tab-num,
.acc-fb-tab:hover:not(:disabled) .acc-fb-tab-num {
  background: var(--acc-purple);
  border-color: var(--acc-purple);
  color: #fff;
}

.acc-fb-tab.is-complete {
  color: var(--acc-purple-500);
}

.acc-fb-tab.is-complete .acc-fb-tab-num {
  border-color: var(--acc-purple);
  color: var(--acc-purple);
}

.acc-fb-tab.is-locked {
  cursor: not-allowed;
  opacity: 0.55;
}

.acc-fb-screen-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--acc-ink);
}

.acc-fb-lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--acc-muted-body);
}

.acc-fb-note {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  padding: 14px 16px;
  border-radius: var(--acc-radius-lg);
  background: var(--acc-lavender);
  color: var(--acc-ink);
  font-size: 14px;
  line-height: 1.5;
}

.acc-fb-video-wrap {
  margin: 0 0 24px;
}

.acc-fb-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--acc-radius);
  overflow: hidden;
  background: #003225;
}

.acc-fb-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.acc-fb-howto {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.acc-fb-howto li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--acc-radius-lg);
  background: var(--acc-lavender-page);
  font-size: 15px;
  font-weight: 600;
  color: var(--acc-ink);
}

.acc-fb-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.acc-fb-trust-pill {
  padding: 8px 12px;
  border-radius: var(--acc-radius-lg);
  border: 1px solid var(--acc-purple-medium);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--acc-purple);
}

.acc-fb-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 16px;
  margin-bottom: 8px;
}

.acc-fb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acc-fb-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--acc-ink);
}

.acc-fb-hint {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--acc-muted);
}

.acc-fb-input,
.acc-fb-select,
.acc-fb-textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius-lg);
  background: #fff;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--acc-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}
.acc-fb-input,
.acc-fb-select {
  min-height: 44px;
}

.acc-fb-input:focus,
.acc-fb-select:focus,
.acc-fb-textarea:focus {
  outline: none;
  border-color: var(--acc-purple);
  box-shadow: 0 0 0 3px rgba(0, 101, 75, 0.15);
}

.acc-fb-textarea {
  resize: vertical;
  min-height: 96px;
}

.acc-fb-field.has-error .acc-fb-input,
.acc-fb-field.has-error .acc-fb-select,
.acc-fb-field.has-error .acc-fb-textarea,
.acc-fb-fieldset.has-error {
  border-color: #b42318;
}

.acc-fb-error {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #b42318;
}

.acc-fb-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  grid-column: 1 / -1;
}

.acc-fb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.acc-fb-chip {
  border: 1px solid var(--acc-line);
  background: #fff;
  color: var(--acc-ink);
  border-radius: var(--acc-radius-lg);
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.acc-fb-chip:hover {
  border-color: var(--acc-purple);
  color: var(--acc-purple);
}

.acc-fb-chip.is-active {
  background: var(--acc-purple);
  border-color: var(--acc-purple);
  color: #fff;
}

.acc-fb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.acc-fb-review-list {
  margin: 0 0 24px;
  padding: 0;
  border: 1px solid var(--acc-line);
  border-radius: var(--acc-radius);
  overflow: hidden;
}

.acc-fb-review-row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--acc-line);
}

.acc-fb-review-row:last-child {
  border-bottom: 0;
}

.acc-fb-review-row:nth-child(odd) {
  background: var(--acc-lavender-page);
}

.acc-fb-review-row dt {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--acc-muted);
}

.acc-fb-review-row dd {
  margin: 0;
  font-size: 15px;
  color: var(--acc-ink);
  white-space: pre-wrap;
  word-break: break-word;
}

.acc-fb-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--acc-ink);
  cursor: pointer;
}

.acc-fb-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--acc-purple);
  flex-shrink: 0;
}

.acc-fb-check.has-error {
  color: #b42318;
}

.acc-fb-success-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--acc-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.acc-fb-contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.acc-fb-contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--acc-radius-lg);
  background: var(--acc-lavender-page);
}

.acc-fb-contact-list span {
  font-size: 13px;
  font-weight: 700;
  color: var(--acc-muted);
}

.acc-fb-contact-list a {
  color: var(--acc-purple);
  font-weight: 600;
  text-decoration: none;
}

.acc-fb-contact-list a:hover {
  text-decoration: underline;
}

.acc-fb-next-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.acc-fb-next-cards article {
  padding: 18px 18px 16px;
  border-radius: var(--acc-radius);
  background: linear-gradient(160deg, var(--acc-lavender) 0%, #fff 70%);
  border: 1px solid var(--acc-line);
}

.acc-fb-next-cards h3 {
  margin: 0 0 6px;
  font-size: 17px;
  color: var(--acc-ink);
}

.acc-fb-next-cards p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--acc-muted-body);
}

.acc-fb-local-note {
  margin: 20px 0 0;
  font-size: 13px;
  color: var(--acc-muted);
}

.acc-fb-local-note a {
  color: var(--acc-purple);
  font-weight: 600;
}

@media (min-width: 700px) {
  .acc-fb-fields {
    grid-template-columns: 1fr 1fr;
  }

  .acc-fb-field--half {
    grid-column: span 1;
  }

  .acc-fb-field:not(.acc-fb-field--half) {
    grid-column: 1 / -1;
  }

  .acc-fb-next-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .acc-fragebogen {
    padding: 40px 0 120px;
  }

  .acc-fb-mobile-steps {
    display: none;
  }

  /* Tablet: steps + form row, FAQ below — no sticky (avoids rail sliding over FAQ) */
  .acc-fb-main {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .acc-fb-aside {
    display: block;
    position: static;
    flex: 0 0 240px;
    width: 240px;
  }

  .acc-fb-panel {
    flex: 1;
    min-width: 0;
    padding: 40px 36px 36px;
  }

  .acc-fb-help {
    width: 100%;
    position: static;
  }
}

@media (min-width: 1200px) {
  .acc-fb-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .acc-fb-main {
    flex: 1;
    min-width: 0;
  }

  /* Desktop 3-col: sticky only beside the form; containing block is .acc-fb-main */
  .acc-fb-aside {
    position: sticky;
    top: 24px;
    align-self: flex-start;
  }

  .acc-fb-help {
    position: sticky;
    top: 24px;
    align-self: flex-start;
    flex: 0 0 280px;
    width: 280px;
  }
}

@media (max-width: 699px) {
  .acc-fb-panel {
    padding: 24px 18px;
  }

  .acc-fb-review-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .acc-fb-actions .acc-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Section doodles (Accountable-style floating line icons) ── */
.acc-heading-with-doodles {
  position: relative;
  isolation: isolate;
}
.acc-heading-with-doodles > :not(.acc-section-doodles) {
  position: relative;
  z-index: 1;
}
.acc-section-doodles {
  position: absolute;
  inset: -12% -6% -18%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.acc-section-doodle {
  position: absolute;
  width: clamp(40px, 6vw, 72px);
  height: auto;
  opacity: 0.55;
  transform: rotate(var(--doodle-rotate, 0deg));
  filter: drop-shadow(0 0 0 transparent);
}
.acc-section-doodle img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}
.acc-section-doodle--tl { top: 0%; left: 2%; }
.acc-section-doodle--tr { top: -2%; right: 4%; }
.acc-section-doodle--ml { top: 38%; left: -2%; }
.acc-section-doodle--mr { top: 36%; right: -2%; }
.acc-section-doodle--bl { bottom: 4%; left: 6%; }
.acc-section-doodle--br { bottom: 2%; right: 8%; }

/* Variant size / density tweaks so sections don’t stamp identically */
.acc-section-doodles--features .acc-section-doodle { width: clamp(52px, 7.5vw, 92px); opacity: 0.78; }
.acc-section-doodles--features .acc-section-doodle--tl { top: -4%; left: 12%; }
.acc-section-doodles--features .acc-section-doodle--ml { top: 40%; left: 6%; }
.acc-section-doodles--features .acc-section-doodle--mr { top: 18%; right: 6%; }

.acc-section-doodles--hero .acc-section-doodle { width: clamp(38px, 5.2vw, 68px); opacity: 0.55; }
.acc-section-doodles--hero .acc-section-doodle--tl { top: -10%; left: 0%; }
.acc-section-doodles--hero .acc-section-doodle--tr { top: -8%; right: 4%; }
.acc-section-doodles--hero .acc-section-doodle--bl { bottom: 14%; left: -2%; }
.acc-section-doodles--hero .acc-section-doodle--br { bottom: 6%; right: -2%; }

.acc-section-doodles--heroAlt .acc-section-doodle { width: clamp(38px, 5.2vw, 66px); opacity: 0.54; }
.acc-section-doodles--heroAlt .acc-section-doodle--tl { top: -8%; left: 2%; }
.acc-section-doodles--heroAlt .acc-section-doodle--tr { top: -10%; right: 6%; }
.acc-section-doodles--heroAlt .acc-section-doodle--ml { top: 42%; left: -2%; }
.acc-section-doodles--heroAlt .acc-section-doodle--br { bottom: 0%; right: 2%; }

.acc-section-doodles--trust .acc-section-doodle { width: clamp(34px, 4.5vw, 58px); opacity: 0.48; }
.acc-section-doodles--trust .acc-section-doodle--tl { top: -10%; left: 8%; }
.acc-section-doodles--trust .acc-section-doodle--tr { top: -8%; right: 10%; }

.acc-section-doodles--coaches .acc-section-doodle { width: clamp(36px, 5vw, 66px); opacity: 0.46; }
.acc-section-doodles--platform .acc-section-doodle { width: clamp(34px, 4.5vw, 60px); opacity: 0.48; }
.acc-section-doodles--reviews .acc-section-doodle { width: clamp(32px, 4vw, 56px); opacity: 0.46; }
.acc-section-doodles--press .acc-section-doodle,
.acc-section-doodles--partners .acc-section-doodle { width: clamp(30px, 4vw, 52px); opacity: 0.44; }
.acc-section-doodles--cta .acc-section-doodle { width: clamp(32px, 4.2vw, 54px); opacity: 0.46; }
.acc-section-doodles--wissen .acc-section-doodle { width: clamp(36px, 5vw, 64px); opacity: 0.5; }
.acc-section-doodles--career .acc-section-doodle { width: clamp(34px, 4.5vw, 58px); opacity: 0.48; }
.acc-section-doodles--fragebogen .acc-section-doodle { width: clamp(34px, 4.5vw, 60px); opacity: 0.5; }
.acc-section-doodles--section .acc-section-doodle { width: clamp(30px, 4vw, 52px); opacity: 0.46; }

.acc-section-doodles--leistung .acc-section-doodle,
.acc-section-doodles--leistungAlt .acc-section-doodle { width: clamp(36px, 5vw, 64px); opacity: 0.58; }
.acc-section-doodles--leistung .acc-section-doodle--tl { top: -12%; left: -2%; }
.acc-section-doodles--leistung .acc-section-doodle--tr { top: -8%; right: 0%; }
.acc-section-doodles--leistung .acc-section-doodle--mr { top: 48%; right: -4%; }
.acc-section-doodles--leistungAlt .acc-section-doodle--tl { top: -10%; left: 0%; }
.acc-section-doodles--leistungAlt .acc-section-doodle--tr { top: -6%; right: 2%; }
.acc-section-doodles--leistungAlt .acc-section-doodle--bl { bottom: 8%; left: 2%; }

.acc-section-doodles--service .acc-section-doodle { width: clamp(40px, 5.5vw, 72px); opacity: 0.58; }
.acc-section-doodles--service .acc-section-doodle--tl { top: -14%; left: 0%; }
.acc-section-doodles--service .acc-section-doodle--tr { top: -10%; right: 2%; }
.acc-section-doodles--service .acc-section-doodle--mr { top: 40%; right: -4%; }
.acc-section-doodles--service .acc-section-doodle--bl { bottom: 4%; left: -2%; }

.acc-section-doodles--serviceBlock .acc-section-doodle { width: clamp(34px, 4.8vw, 62px); opacity: 0.54; }
.acc-section-doodles--serviceBlock .acc-section-doodle--tl { top: -10%; left: -2%; }
.acc-section-doodles--serviceBlock .acc-section-doodle--tr { top: -8%; right: 0%; }
.acc-section-doodles--serviceBlock .acc-section-doodle--br { bottom: 0%; right: 4%; }

/* Homepage features: SectionDoodles are primary; composite kept as soft underlay */
.acc-features-intro::after {
  background-image: url("assets/styled/features-title-doodle.svg?v=20260716doodle2");
  opacity: 0; /* avoid double-stack; composite asset retained for optional wash */
}
.acc-features-intro .acc-section-doodles {
  inset: -18% -4% -14%;
}
.acc-features-intro .acc-section-doodles--features {
  display: block;
}

/* Tint flying-paper webps toward brand green (source assets lean lavender) */
.acc-feature-visual::after {
  filter: sepia(0.35) hue-rotate(95deg) saturate(1.35) brightness(0.95);
  background-image: url("assets/styled/doodle-paper.webp?v=20260716doodle2");
}
.acc-feature.reverse .acc-feature-visual::after {
  background-image: url("assets/styled/doodle-paper-2.webp?v=20260716doodle2");
}
.acc-features-intro + .acc-feature + .acc-feature + .acc-feature .acc-feature-visual::after {
  background-image: url("assets/styled/doodle-paper-3.webp?v=20260716doodle2");
}

.acc-sub-hero-copy.acc-heading-with-doodles {
  padding-inline: 4px;
}
.acc-wissen-hero-inner.acc-heading-with-doodles,
.acc-fb-page-intro.acc-heading-with-doodles {
  position: relative;
}
.acc-coaches-intro {
  position: relative;
  text-align: center;
}
.acc-sub-section-title-wrap {
  position: relative;
  margin-bottom: var(--acc-space-6, 24px);
}
.acc-sub-section-title-wrap .acc-sub-section-title {
  margin-bottom: 0;
}
.platform-slider_heading.acc-heading-with-doodles {
  position: relative;
}
.acc-reviews.acc-heading-with-doodles > h2,
.acc-press.acc-heading-with-doodles > h2,
.acc-partners.acc-heading-with-doodles > h2,
.acc-links.acc-heading-with-doodles > h2 {
  position: relative;
  z-index: 1;
}

/* Mobile: sparse doodles + clip so they never widen the page */
@media (max-width: 767px) {
  .acc-section-doodle--ml,
  .acc-section-doodle--mr,
  .acc-section-doodle--br {
    display: none;
  }
  /* Features headline: keep one small accent on the right, fully inside */
  .acc-section-doodles--features .acc-section-doodle--ml {
    display: none;
  }
  .acc-section-doodles--features .acc-section-doodle--mr {
    display: block;
    top: -2%;
    right: 4%;
    width: clamp(28px, 9vw, 40px);
  }
  .acc-section-doodle {
    width: clamp(26px, 8vw, 40px);
    opacity: 0.4;
  }
  .acc-section-doodle--tl { top: 2%; left: 4%; }
  .acc-section-doodle--tr { top: 2%; right: 4%; }
  .acc-section-doodles {
    inset: 0;
    overflow: hidden;
  }
  .acc-heading-with-doodles,
  .acc-coaches-intro,
  .acc-sub-hero-copy.acc-heading-with-doodles,
  .acc-wissen-hero-inner.acc-heading-with-doodles,
  .acc-fb-page-intro.acc-heading-with-doodles {
    overflow: hidden;
  }
  .acc-features-intro::after {
    width: min(100%, 640px);
    height: min(160px, 38vw);
    opacity: 0.28;
  }
  .acc-section-doodles--service .acc-section-doodle--bl,
  .acc-section-doodles--leistung .acc-section-doodle--mr,
  .acc-section-doodles--leistungAlt .acc-section-doodle--bl {
    display: none;
  }
  .acc-section-doodles--leistung .acc-section-doodle--tl,
  .acc-section-doodles--leistungAlt .acc-section-doodle--tl,
  .acc-section-doodles--service .acc-section-doodle--tl,
  .acc-section-doodles--serviceBlock .acc-section-doodle--tl {
    left: 4%;
    top: 2%;
  }
  .acc-section-doodles--leistung .acc-section-doodle--tr,
  .acc-section-doodles--leistungAlt .acc-section-doodle--tr,
  .acc-section-doodles--service .acc-section-doodle--tr,
  .acc-section-doodles--serviceBlock .acc-section-doodle--tr {
    right: 4%;
    top: 2%;
  }
}
@media (max-width: 480px) {
  .acc-section-doodle--bl {
    display: none;
  }
  .acc-section-doodles--trust .acc-section-doodle--tr,
  .acc-section-doodles--reviews .acc-section-doodle--tl,
  .acc-section-doodles--press .acc-section-doodle--tl,
  .acc-section-doodles--partners .acc-section-doodle--bl,
  .acc-section-doodles--cta .acc-section-doodle--bl,
  .acc-section-doodles--career .acc-section-doodle--bl,
  .acc-section-doodles--section .acc-section-doodle--tr,
  .acc-section-doodles--service .acc-section-doodle--tr,
  .acc-section-doodles--serviceBlock .acc-section-doodle--tr {
    display: none;
  }
}

/* Leistungen dark / light section heads */
.acc-sub-service-content.acc-heading-with-doodles,
.acc-sub-service--dark .acc-sub-service-content.acc-heading-with-doodles {
  position: relative;
  isolation: isolate;
}
.acc-sub-service--dark .acc-section-doodle {
  opacity: 0.7;
  filter: brightness(1.15);
}
.acc-sub-intro.acc-heading-with-doodles {
  position: relative;
  max-width: 52rem;
}
.acc-service-jump-head {
  position: relative;
  isolation: isolate;
  margin-bottom: var(--acc-space-6, 24px);
  max-width: 40rem;
}
.acc-service-jump-head .acc-sub-intro {
  margin-bottom: 0;
}
.acc-service-calc-wrap {
  position: relative;
  isolation: isolate;
}
.acc-service-calc-wrap > :not(.acc-section-doodles) {
  position: relative;
  z-index: 1;
}
.acc-service-calc-header.acc-heading-with-doodles,
.acc-service-career-strip.acc-heading-with-doodles,
.acc-service-career-strip > div.acc-heading-with-doodles {
  position: relative;
  isolation: isolate;
}

/* ── Shared responsive hardening (all pages) ── */
.acc-page h1,
.acc-page h2,
.acc-page h3,
.acc-page .platform-slider_panel-title,
.acc-page .acc-trust-card h3,
.acc-page .acc-news-card h2,
.acc-page .acc-news-card h3,
.acc-page .acc-service-jump-card h3,
.acc-page .acc-career-reason h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
}

.acc-page .acc-container,
.acc-page .acc-sub-service-inner,
.acc-page .acc-feature,
.acc-page .acc-service-feature,
.acc-page .acc-career-story,
.acc-page .acc-news-featured,
.acc-page .acc-fb-layout,
.acc-page .acc-fb-main,
.acc-page .acc-fb-panel {
  min-width: 0;
  max-width: 100%;
}

/* Contain intentional carousels without leaking page width */
.acc-page main,
.acc-coaches,
.acc-coach-carousel-wrap,
.acc-dark-visual,
.acc-sub-service--dark .acc-sub-service-inner {
  max-width: 100%;
  min-width: 0;
}
.acc-coaches,
.acc-coach-carousel-wrap {
  overflow-x: clip;
}
@media (max-width: 767px) {
  #tax-coach-detail.acc-coach-strip {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  /* Rotated art cards expand their bounding box — flatten on phones */
  .acc-dark-art-card {
    transform: none;
    width: 100%;
    max-width: 100%;
  }
  .acc-dark-visual,
  .acc-dark-visual--art {
    overflow: hidden;
    padding-inline: 0;
    max-width: 100%;
  }
  .acc-feature-art-card {
    max-width: 100%;
  }
  .acc-trust-compliance-caption {
    font-size: 11px;
    line-height: 1.35;
  }
  .acc-trust-compliance-link {
    min-height: 44px;
    padding: 12px 10px;
  }
  .acc-fb-fields,
  .acc-fb-field,
  .acc-fb-input,
  .acc-fb-select,
  .acc-fb-textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .acc-fb-input,
  .acc-fb-select {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .acc-dark-float-chip {
    white-space: normal;
    line-height: 1.25;
    text-align: center;
    font-size: 11px;
    padding: 8px 10px;
    max-width: min(148px, 44%);
  }

  .acc-dark-float-note {
    width: min(180px, 52%);
    padding: 12px;
  }

  .acc-dark-float-main {
    width: min(100%, 320px);
    padding: 22px 18px 24px;
  }

  .acc-dark-float-main ul li {
    white-space: normal;
  }

  .acc-sticky-cta.is-visible {
    z-index: 180;
  }

  .acc-hero-actions,
  .acc-sub-hero-actions,
  .acc-cta-actions {
    width: 100%;
  }

  .acc-hero-actions .acc-btn,
  .acc-sub-hero-actions .acc-btn,
  .acc-cta-actions .acc-btn,
  .platform-slider_panel-actions .acc-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .acc-partners-row--top {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
  }

  .acc-footer-cols {
    gap: 28px 0;
  }
}

@media (max-width: 400px) {
  .acc-hero h1 {
    font-size: clamp(1.75rem, 10.5vw, 2.35rem);
    letter-spacing: 0.4px;
  }

  .acc-sub-hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
    max-width: 100%;
  }

  .acc-sub-service--dark h2 {
    font-size: clamp(1.5rem, 8.5vw, 2rem);
  }

  .acc-dark-float-chip {
    display: none;
  }

  .acc-dark-float-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
  }

  .acc-dark-visual {
    flex-direction: column;
    min-height: 0;
    padding: 8px 0 4px;
    overflow: hidden;
  }

  .acc-dark-doodle {
    display: none;
  }

  .acc-wissen-hero h1,
  .acc-fb-page-intro h1 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Compliance: stack full-width for readable captions */
  .acc-trust-compliance-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 900px) {
  /* Keep sticky clear of content once it appears */
  .acc-page:has(.acc-sticky-cta.is-visible) {
    padding-bottom: 72px;
  }
}
