/* ======================================
   SELF-HOSTED FONTS (DSGVO-KONFORM)
   ====================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ======================================
   END PRELOADER
   ====================================== */

:root {
  --ar-black: #0A0A0A;
  --ar-white: #FAFAFA;
  --ar-lightgray: rgba(10,10,10, 0.03);
  --ar-gray: rgba(10,10,10, 0.15);
  --ar-accent: #E9204F;
  
  /* Typography scale for consistency */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  
  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
}

html {
  scroll-behavior: smooth;
  /* Improve text rendering */
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--ar-white);
  color: var(--ar-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======================================
   ACCESSIBILITY - Skip Link
   ====================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ar-accent);
  color: var(--ar-white);
  padding: 1rem 2rem;
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--ar-black);
  outline-offset: 2px;
}

/* Focus visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--ar-accent);
  outline-offset: 2px;
}

/* Remove focus for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Improve link accessibility */
a:focus {
  outline: 2px solid var(--ar-accent);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Address element reset */
address {
  font-style: normal;
}

.container {
  width: 90%;
  margin: 0 auto;
  padding: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  background: transparent;
  transition: background 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Header scrolled state */
.header-scrolled {
  background: var(--ar-white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.header-scrolled .nav {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.header-scrolled .logo {
  height: clamp(2rem, 2.5vw, 2.75rem);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 1.5vw, 2rem) 0;
  width: 90%;
  margin: 0 auto;
  transition: padding 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: padding;
}

/* Logo – left, original size */
.logo-link {
  position: relative;
  z-index: 110;
}

.logo {
  height: clamp(3.5rem, 4vw, 5rem);
  width: auto;
  transition: opacity 0.4s ease, height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

/* Default: dark logo on white bg */
.logo-dark {
  display: block;
  opacity: 1;
  width: auto;
  transition: opacity 0.4s ease, height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-light {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: auto;
  transition: opacity 0.4s ease, height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Menu open: logo stays dark (no change needed) */
body.menu-open .logo-dark {
  opacity: 0;
  pointer-events: none;
}

body.menu-open .logo-light {
  opacity: 0;
  pointer-events: none;
}

/* Right side container */
.header-right {
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
}

/* Language Switcher */
.header-lang {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .header-lang {
    display: flex;
  }
}

.header-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--font-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ar-gray);
  padding: 0.25em 0.35em;
  transition: color 0.2s ease;
}

.header-lang-btn.is-active {
  color: var(--ar-black);
  font-weight: 700;
}

.header-lang-btn:hover {
  color: var(--ar-black);
}

/* Divider */
.header-divider {
  display: none;
  color: var(--ar-gray);
  font-weight: 300;
  font-size: var(--font-sm);
  user-select: none;
  transition: color 0.4s ease;
}

@media (min-width: 768px) {
  .header-divider {
    display: inline;
  }
}

/* Header CTA */
.header-cta {
  font-size: var(--font-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ar-white);
  background: var(--ar-black);
  padding: 0.6em 1.4em;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  display: inline-block;
}

.header-cta:hover {
  background: var(--ar-accent);
}

/* Header CTA on dark sections */
.header.header-over-dark:not(.header-scrolled) .header-cta {
  background: var(--ar-white);
  color: var(--ar-black);
}

.header.header-over-dark:not(.header-scrolled) .header-cta:hover {
  background: var(--ar-accent);
  color: var(--ar-white);
}

/* Hamburger */
.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: clamp(44px, 3.5vw, 56px);
  height: clamp(44px, 3.5vw, 56px);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  --line-gap: clamp(6px, 0.5vw, 8px);
  --line-height: clamp(2px, 0.2vw, 3px);
}

.hamburger-line {
  width: clamp(24px, 2.4vw, 36px);
  height: var(--line-height);
  background: var(--ar-black);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s ease;
  transform-origin: center;
}

.hamburger-line:first-child {
  margin-bottom: var(--line-gap);
}

/* Hamburger open state - stays black on white menu */
.hamburger.is-open .hamburger-line {
  background: var(--ar-black);
}

body.menu-open .hamburger-line {
  background: var(--ar-black) !important;
}

.hamburger.is-open .hamburger-line:first-child {
  transform: rotate(45deg) translate(calc(var(--line-gap) * 0.35), calc(var(--line-gap) * 0.35 + var(--line-height)));
}

.hamburger.is-open .hamburger-line:last-child {
  transform: rotate(-45deg) translate(calc(var(--line-gap) * 0.35), calc(-1 * (var(--line-gap) * 0.35 + var(--line-height))));
}

/* Menu open: header stays white */
.header {
  transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

body.menu-open .header {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none !important;
}

/* Menu open: header-right stays normal (dark on white) */
body.menu-open .header-divider {
  color: var(--ar-gray) !important;
}

body.menu-open .header-lang-btn {
  color: var(--ar-gray) !important;
}

body.menu-open .header-lang-btn.is-active {
  color: var(--ar-black) !important;
}

/* Page Wrap */
.page-wrap {
  transition: filter 0.6s ease, transform 0.6s ease;
}

body.menu-open .page-wrap {
  filter: blur(6px) brightness(0.85);
  pointer-events: none;
}

/* Menu Backdrop – click to close */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.menu-open .menu-backdrop {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: clamp(360px, 50vw, 780px);
  height: 100vh;
  height: 100dvh;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  pointer-events: none;
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(0,0,0,0.06);
  box-shadow: -20px 0 60px rgba(0,0,0,0.06);
}

.menu-overlay.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.menu-overlay.is-closing {
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.55, 0, 1, 0.45);
}

/* Hide on mobile utility */
.hide-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .hide-mobile {
    display: block;
  }
}

.menu-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(7rem, 9vw, 9rem) clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2vw, 2rem);
  width: 100%;
}

/* Staggered content reveal */
.menu-top,
.menu-article-section,
.menu-bottom {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-overlay.is-open .menu-top {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.menu-overlay.is-open .menu-article-section {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.menu-overlay.is-open .menu-bottom {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* On close: instant hide */
.menu-overlay.is-closing .menu-top,
.menu-overlay.is-closing .menu-article-section,
.menu-overlay.is-closing .menu-bottom {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition-delay: 0s;
}

.menu-top {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .menu-content {
    padding: clamp(7rem, 9vw, 9rem) clamp(2.5rem, 3vw, 3.5rem) clamp(1.5rem, 2vw, 2rem);
  }

  .menu-top {
    flex-direction: column;
    gap: clamp(2rem, 3vw, 3rem);
  }

  .menu-section {
    flex: none;
  }

  .menu-section + .menu-section {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: clamp(1.5rem, 2vw, 2rem);
    border-left: none;
    padding-left: 0;
  }
}

/* Wissen – Article Teaser Card */
.menu-article-section {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: clamp(2rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
}

.menu-article-section .menu-section-title {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

/* ─── Wissen Card: Split 40/60 ─── */
.menu-card-v2 {
  display: flex;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.menu-card-v2:hover {
  border-color: rgba(0,0,0,0.2);
}

.menu-card-v2-img {
  flex-shrink: 0;
  width: 35%;
  min-height: clamp(7rem, 9vw, 9rem);
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .menu-card-v2-img {
    width: 30%;
    min-height: clamp(8rem, 10vw, 12rem);
  }
}

.menu-card-v2-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.55);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.menu-card-v2:hover .menu-card-v2-img img {
  filter: grayscale(0%) brightness(0.75);
  transform: scale(1.05);
}

.menu-card-v2-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(1rem, 1.5vw, 1.5rem);
  background: rgba(0,0,0,0.02);
  border-left: 3px solid var(--ar-accent);
}

@media (min-width: 1024px) {
  .menu-card-v2-body {
    padding: clamp(1.25rem, 2vw, 2rem);
    gap: 0.6rem;
  }
}

/* ─── Shared article meta ─── */

.menu-article-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.menu-article-tag {
  color: var(--ar-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-article-dot {
  color: rgba(0,0,0,0.25);
  font-size: 0.75rem;
}

.menu-article-time {
  color: rgba(0,0,0,0.5);
  font-size: 0.6875rem;
  font-weight: 400;
}

.menu-article-title {
  color: rgba(0,0,0,0.9);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.menu-card-v2:hover .menu-article-title {
  color: var(--ar-black);
}

.menu-article-cta {
  color: rgba(0,0,0,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.menu-card-v2:hover .menu-article-cta {
  color: var(--ar-black);
}

/* Section titles */
.menu-section {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.menu-section + .menu-section {
  padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.menu-section-title {
  color: rgba(0,0,0,0.4);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

/* Goals – vertical list */
.menu-goals {
  list-style: none;
}

.menu-goals li {
  margin-bottom: 0.75rem;
}

.menu-goals a {
  color: rgba(0,0,0,0.85);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-goals a:hover {
  color: var(--ar-black);
}

/* Inline flow text */
.menu-flow {
  line-height: 1.8;
}

.menu-flow a {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-flow a:hover {
  color: white;
}

.menu-dot {
  color: rgba(255,255,255,0.2);
  margin: 0 0.4em;
  user-select: none;
}

/* Menu Bottom – Contact Footer */
.menu-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 1.25rem 0 0.75rem;
}

.menu-bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}

.menu-bottom-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-bottom-label {
  color: rgba(0,0,0,0.5);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-bottom-value {
  color: var(--ar-black);
  font-size: 0.875rem;
  font-weight: 400;
}

.menu-bottom-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-bottom-link:hover {
  color: var(--ar-accent);
}

.menu-bottom-social-col {
  margin-left: auto;
}

.menu-bottom-social {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
}

.menu-bottom-social a {
  color: rgba(0,0,0,0.6);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
}

.menu-bottom-social a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--ar-accent);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.menu-bottom-social a:hover {
  color: var(--ar-black);
}

@media (max-width: 1023px) {
  .menu-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .menu-bottom-social-col {
    margin-left: 0;
  }
  .menu-bottom-social {
    margin-top: 0.5rem;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: white;
}

.social-links a:hover {
  color: var(--ar-accent);
}

/* Hero */
.hero {
  display: flex;
  align-items: flex-start;
  padding: clamp(7rem, 12vw, 14rem) 0 clamp(2rem, 3vw, 4rem);
  background: var(--ar-white);
}

/* Fullscreen Hero Video */
.hero.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ar-black);
}

@media (max-width: 767px) {
  .hero.hero-fullscreen {
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

.hero-video-fullscreen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video-fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 20%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.4) 100%
    );
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 3rem);
  width: 90%;
  margin: 0 auto;
}

.hero-content {
  text-align: left;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  font-weight: 100;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-content h1 .accent {
  color: var(--ar-accent);
  font-weight: 900;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .hero-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.hero-meta p {
  font-size: 1rem;
  color: rgba(0,0,0,0.5);
  max-width: 480px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-meta p {
    font-size: 1.125rem;
  }
}

.hero-cta {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ar-black);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.hero-cta:hover {
  color: var(--ar-accent);
}

.hero-video {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--ar-black);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

/* ========================
   HERO ALT – Editorial Typography
   ======================== */

.hero-alt {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(8rem, 12vw, 11rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--ar-white);
  text-align: center;
  position: relative;
}

.hero-alt-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-alt-headline {
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hero-alt-light {
  font-weight: 100;
  color: var(--ar-black);
}

.hero-alt-bold {
  font-weight: 900;
  color: var(--ar-black);
}

.hero-alt-italic {
  font-weight: 100;
  font-style: italic;
  color: var(--ar-accent);
}

.hero-alt-desc {
  font-size: clamp(0.9375rem, 1.3vw, 1.125rem);
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto clamp(2rem, 3vw, 2.5rem);
}

.hero-alt-cta {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ar-black);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 1em 2em;
  border: 1.5px solid var(--ar-black);
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-alt-cta:hover {
  background: var(--ar-black);
  color: var(--ar-white);
}

/* Stagger animation */
.hero-alt-headline .hero-alt-light,
.hero-alt-headline .hero-alt-bold,
.hero-alt-headline .hero-alt-italic {
  display: inline;
  opacity: 0;
  animation: heroAltFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-alt-headline .hero-alt-light:nth-child(1) { animation-delay: 0.1s; }
.hero-alt-headline .hero-alt-bold:nth-child(2) { animation-delay: 0.2s; }
.hero-alt-headline .hero-alt-light:nth-child(3) { animation-delay: 0.3s; }
.hero-alt-headline .hero-alt-italic:nth-child(4) { animation-delay: 0.4s; }
.hero-alt-headline .hero-alt-light:nth-child(5) { animation-delay: 0.5s; }
.hero-alt-headline .hero-alt-bold:nth-child(7) { animation-delay: 0.6s; }
.hero-alt-headline .hero-alt-light:nth-child(8) { animation-delay: 0.7s; }
.hero-alt-headline .hero-alt-italic:nth-child(9) { animation-delay: 0.8s; }

.hero-alt-desc {
  opacity: 0;
  animation: heroAltFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-alt-cta {
  opacity: 0;
  animation: heroAltFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

/* Hero Alt – Mobile */
@media (max-width: 767px) {
  .hero-alt {
    padding: clamp(7rem, 10vw, 9rem) 0 clamp(2rem, 4vw, 3rem);
  }

  .hero-alt-container {
    width: 90%;
  }

  .hero-alt-headline {
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 1.1;
  }

  .hero-alt-headline br {
    display: none;
  }
}

@keyframes heroAltFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Showcase Section - Dark with Curved Images */
.showcase {
  background: var(--ar-black);
  padding: 6rem 0 0;
  overflow: hidden;
}

.showcase-header {
  text-align: center;
  padding: 0 1.5rem 4rem;
}

.showcase-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ar-white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .showcase-header h2 {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .showcase-header h2 {
    font-size: 7rem;
  }
}

.btn-outline-light {
  border: 1px solid var(--ar-white);
  color: var(--ar-white);
  background: transparent;
  padding: 1rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--ar-white);
  color: var(--ar-black);
}

.showcase-marquee {
  position: relative;
  width: 100%;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  overflow: hidden;
}

.showcase-curve {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100px;
  background: var(--ar-black);
  border-radius: 0 0 50% 50%;
  z-index: 2;
}

@media (min-width: 768px) {
  .showcase-curve {
    height: 150px;
  }
}

@media (min-width: 1024px) {
  .showcase-curve {
    height: 200px;
  }
}

.showcase-track {
  display: flex;
  gap: 0.5rem;
  animation: showcase-scroll 35s linear infinite;
  width: max-content;
  padding-top: 60px;
  padding-bottom: 6rem;
  transform-style: preserve-3d;
}

@media (min-width: 768px) {
  .showcase-track {
    gap: 0.75rem;
    padding-top: 100px;
  }
}

@media (min-width: 1024px) {
  .showcase-track {
    gap: 1rem;
    padding-top: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-track {
    animation: none;
  }
}

.showcase-item {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
}

@media (min-width: 768px) {
  .showcase-item {
    width: 400px;
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .showcase-item {
    width: 500px;
    height: 600px;
  }
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes showcase-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--ar-accent);
  color: white;
}

.btn-primary:hover {
  background: var(--ar-black);
}

.btn-secondary {
  background: transparent;
  color: var(--ar-black);
  border: 2px solid var(--ar-black);
}

.btn-secondary:hover {
  background: var(--ar-black);
  color: white;
}

/* Services */
.services {
  padding: 6rem 1.5rem;
  background: var(--ar-lightgray);
}

@media (min-width: 768px) {
  .services {
    padding: 8rem 3rem;
  }
}

.services h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .services h2 {
    font-size: 3rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: white;
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.service-card:hover h3 {
  color: var(--ar-accent);
}

.service-card p {
  color: rgba(0,0,0,0.7);
}

/* CTA */
.cta {
  padding: 6rem 1.5rem;
  background: var(--ar-black);
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .cta {
    padding: 8rem 3rem;
  }
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta h2 {
    font-size: 3rem;
  }
}

.cta > .container > p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.cta .btn-primary:hover {
  background: white;
  color: var(--ar-black);
}

/* ══════════════════════════════════════════════════════════
   WISSEN-TEASER – "Das Format" Sektion
   ══════════════════════════════════════════════════════════ */

.ds-wissen-teaser {
  background: var(--ar-black);
  position: relative;
  overflow: hidden;
}

.ds-wissen-teaser-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

@media (min-width: 900px) {
  .ds-wissen-teaser-inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
  }
}

/* Linke Statement-Spalte */
.ds-wissen-statement {
  position: sticky;
  top: 8rem;
}

.ds-wissen-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ar-accent);
  margin-bottom: 1.5rem;
}

.ds-wissen-headline {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ar-white);
  margin-bottom: 1.5rem;
}

.ds-wissen-headline em {
  font-style: italic;
  font-weight: 900;
  color: rgba(255,255,255,0.25);
}

.ds-wissen-sub {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  max-width: 30ch;
}

.ds-wissen-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ar-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.25rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.ds-wissen-cta:hover {
  color: var(--ar-accent);
  border-color: var(--ar-accent);
}

/* Rechte Artikel-Spalte */
.ds-wissen-articles {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ds-wissen-card {
  display: block;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}

.ds-wissen-card:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ds-wissen-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ds-wissen-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ds-wissen-card:hover .ds-wissen-card-img img {
  transform: scale(1.04);
}

.ds-wissen-card-body {
  padding: 1.5rem 0 2.5rem;
}

.ds-wissen-card--featured .ds-wissen-card-title {
  font-size: clamp(1.25rem, 2.8vw, 1.875rem);
  font-weight: 800;
  color: var(--ar-white);
  line-height: 1.2;
}

.ds-wissen-card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  margin-top: 0.625rem;
  max-width: 52ch;
}

.ds-wissen-card--featured .ds-wissen-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ar-accent);
  margin-top: 1.25rem;
  transition: gap 0.3s ease;
}

.ds-wissen-card--featured:hover .ds-wissen-card-arrow {
  gap: 0.85rem;
  color: var(--ar-accent);
  transform: none;
}

.ds-wissen-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.ds-wissen-more:hover {
  color: var(--ar-white);
}

.ds-wissen-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ds-wissen-card-tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ar-accent);
  background: rgba(225,30,70,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.ds-wissen-card-date {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.ds-wissen-card-title {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
  margin: 0;
}

.ds-wissen-card:hover .ds-wissen-card-title {
  color: var(--ar-white);
}

.ds-wissen-card-arrow {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.2);
  align-self: center;
  transition: color 0.3s ease, transform 0.3s ease;
  margin-top: 1.25rem;
}

.ds-wissen-card:hover .ds-wissen-card-arrow {
  color: var(--ar-accent);
  transform: translateX(4px);
}

/* Newsletter Strip */
.ds-wissen-newsletter {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ds-wissen-newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) var(--container-pad, 5%);
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ds-wissen-newsletter-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.ds-wissen-newsletter-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ds-wissen-newsletter-copy strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ar-white);
  letter-spacing: -0.01em;
}

.ds-wissen-newsletter-copy span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.ds-wissen-newsletter-form {
  display: flex;
  flex: 1;
  max-width: 420px;
}

.ds-wissen-newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  font-size: 0.8125rem;
  font-family: inherit;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--ar-white);
  outline: none;
  transition: border-color 0.3s ease;
}

.ds-wissen-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.28);
}

.ds-wissen-newsletter-form input:focus {
  border-color: var(--ar-accent);
}

.ds-wissen-newsletter-form button {
  padding: 0.7rem 1.25rem;
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--ar-accent);
  color: var(--ar-white);
  border: 1px solid var(--ar-accent);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.ds-wissen-newsletter-form button:hover {
  background: #c91a42;
}

/* ══════════════════════════════════════════════════════════
   FOOTER – MARQUEE CTA + BLACK MONOLITH
   ══════════════════════════════════════════════════════════ */

.footer {
  padding: 0;
  background: var(--ar-black);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── Marquee CTA ────────────────────────────────────────── */
.footer-marquee {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.footer-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  text-decoration: none;
  animation: marqueeScroll 18s linear infinite;
  will-change: transform;
  width: max-content;
}

.footer-marquee:hover .footer-marquee-track {
  animation-play-state: paused;
}

.footer-marquee-text {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--ar-white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  transition: color 0.4s ease;
}

.footer-marquee:hover .footer-marquee-text {
  color: var(--ar-accent);
}

.footer-marquee-dot {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--ar-accent);
  padding: 0 clamp(0.5rem, 1vw, 1rem);
  line-height: 1;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .footer-marquee {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }

  .footer-marquee-text {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .footer-marquee-dot {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }
}

/* ── Footer Main (Full Black) ───────────────────────────── */
.footer-main {
  background: var(--ar-black);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(1.5rem, 2.5vw, 2.5rem);
}

.footer-logo {
  margin-bottom: 2.5rem;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer .container {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.footer-col-brand .footer-logo {
  margin-bottom: 1.75rem;
}

.footer-col-brand address {
  margin-bottom: 1.5rem;
}

.footer-brand {
  padding-top: 0;
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Newsletter (inside footer-brand) */
.footer-newsletter {
  margin-bottom: 1.5rem;
}

.footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter-form input {
    border-right: 1px solid rgba(0,0,0,0.12);
  }

  .footer-newsletter-form button {
    width: 100%;
  }
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-family: inherit;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--ar-white);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.3);
}

.footer-newsletter-form input:focus {
  border-color: var(--ar-accent);
  background: rgba(255,255,255,0.1);
}

.footer-newsletter-form button {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-family: inherit;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--ar-accent);
  color: var(--ar-white);
  border: 1px solid var(--ar-accent);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.footer-newsletter-form button:hover {
  background: #c91a42;
}

.footer-newsletter-form button span {
  margin-left: 0.3rem;
}

.footer-newsletter-hint {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.6875rem;
}

.footer-newsletter-hint a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-newsletter-hint a:hover {
  color: var(--ar-accent);
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-social a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--ar-accent);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.footer-social a:hover {
  color: var(--ar-white);
}

.footer-column h4 {
  color: rgba(255,255,255,0.35);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}

.footer-column ul li {
  margin-bottom: 0.625rem;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-column ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--ar-accent);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.footer-column ul li a:hover {
  color: var(--ar-white);
}

.footer-column ul li a:hover::after {
  width: 100%;
}

.footer-wissen-list {
  margin-bottom: 1.5rem;
}

.footer-wissen-all {
  color: var(--ar-accent) !important;
  font-weight: 600;
  font-size: 0.8125rem !important;
  letter-spacing: 0.04em;
}

.footer-column address {
  font-style: normal;
}

.footer-column address p {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-column address a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column address a:hover {
  color: var(--ar-accent);
}

.footer-column p {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0;
}

/* ── Footer Bottom ──────────────────────────────────────── */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 0;
  border-top: none;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom small {
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--ar-white);
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden;
}

/* ======================================
   PAGE HEADER (für Unterseiten)
   ====================================== */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--ar-lightgray);
}

@media (min-width: 768px) {
  .page-header {
    padding: 12rem 0 5rem;
  }
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: rgba(0,0,0,0.7);
  max-width: 600px;
}

.page-header-small {
  padding: 10rem 0 3rem;
}

@media (min-width: 768px) {
  .page-header-small {
    padding: 12rem 0 4rem;
  }
}

/* ======================================
   SERVICE/INDUSTRY HERO
   ====================================== */
.service-hero,
.industry-hero {
  padding: 10rem 0 4rem;
  background: var(--ar-black);
  color: var(--ar-white);
}

@media (min-width: 768px) {
  .service-hero,
  .industry-hero {
    padding: 12rem 0 6rem;
  }
}

.service-label,
.industry-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ar-accent);
  margin-bottom: 1rem;
}

.service-hero h1,
.industry-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.service-intro,
.industry-intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
}

/* ======================================
   SERVICE/INDUSTRY CONTENT
   ====================================== */
.service-content,
.industry-content {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .service-content,
  .industry-content {
    padding: 6rem 0;
  }
}

.container-narrow {
  max-width: 800px;
}

.service-content h2,
.industry-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.service-content h2:first-child,
.industry-content h2:first-child {
  margin-top: 0;
}

.service-content p,
.industry-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.8);
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
}

/* ======================================
   SERVICE FEATURES / INDUSTRY SERVICES
   ====================================== */
.service-features,
.industry-services {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

@media (min-width: 768px) {
  .service-features,
  .industry-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.feature-card,
.industry-service-card {
  background: var(--ar-lightgray);
  padding: 2rem;
  border-radius: 0;
}

.feature-card h3,
.industry-service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p,
.industry-service-card p {
  font-size: 1rem;
  color: rgba(0,0,0,0.7);
  margin-bottom: 0;
}

/* ======================================
   RELATED SERVICES
   ====================================== */
/* (old related-services / related-grid / related-card rules removed — see editorial styles below line 9295) */

/* ======================================
   CONTACT PAGE
   ====================================== */
.contact-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 6rem 0;
  }
}

.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 2rem;
}

.contact-detail h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.contact-detail p,
.contact-detail a {
  font-size: 1.125rem;
}

.contact-detail a:hover {
  color: var(--ar-accent);
}

.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--ar-gray);
  background: var(--ar-white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ar-black);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ======================================
   ABOUT PAGE
   ====================================== */
.about-intro {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .about-intro {
    padding: 6rem 0;
  }
}

.values-section {
  padding: 4rem 0;
  background: var(--ar-lightgray);
}

.values-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.value-card {
  background: var(--ar-white);
  padding: 2rem;
  text-align: center;
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: rgba(0,0,0,0.7);
}

.team-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .team-section {
    padding: 6rem 0;
  }
}

.team-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.team-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--ar-lightgray);
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-member .role {
  font-size: 0.875rem;
  color: var(--ar-accent);
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.7);
}

.team-placeholder {
  text-align: center;
  padding: 3rem;
  background: var(--ar-lightgray);
  color: rgba(0,0,0,0.5);
}

/* ======================================
   PROJECTS/REFERENZEN PAGE
   ====================================== */
.projects-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .projects-section {
    padding: 6rem 0;
  }
}

.projects-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  display: block;
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1rem;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--ar-lightgray);
}

.project-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.project-category {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.6);
}

/* ======================================
   KNOWLEDGE/WISSEN PAGE – v2 Editorial
   ====================================== */

/* --- Schedule Badge (Hero) --- */
.wk-schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1.25rem;
  background: var(--ar-black);
  color: var(--ar-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.wk-schedule-icon {
  display: flex;
  color: var(--ar-accent);
}

/* --- Section Header --- */
.wk-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.wk-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ar-accent);
  white-space: nowrap;
}

.wk-section-line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.wk-article-count {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.35);
  white-space: nowrap;
}

/* --- Tag (shared) --- */
.wk-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ar-accent);
  margin-bottom: 0.375rem;
}

/* --- Featured Article --- */
.wk-latest {
  padding: 0 0 4rem;
}

.wk-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  text-decoration: none;
  color: var(--ar-white);
  overflow: hidden;
  background: var(--ar-black);
  transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .wk-featured-card {
    grid-template-columns: 55% 45%;
    min-height: 440px;
  }
}

.wk-featured-card:hover {
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}

.wk-featured-img {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

@media (min-width: 768px) {
  .wk-featured-img {
    aspect-ratio: auto;
  }
}

.wk-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.wk-featured-card:hover .wk-featured-img img {
  transform: scale(1.04);
}

.wk-featured-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .wk-featured-body {
    padding: 3rem 3.5rem;
  }
}

.wk-featured-body .wk-tag {
  color: var(--ar-accent);
}

.wk-featured-body h2 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ar-white);
}

.wk-featured-body > p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.75rem;
}

/* Meta row inside featured */
.wk-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.wk-avatar {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--ar-accent);
  color: #fff;
  flex-shrink: 0;
}

.wk-meta-text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.wk-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ar-accent);
  transition: letter-spacing 0.3s ease;
}

.wk-featured-card:hover .wk-read-more {
  letter-spacing: 0.03em;
}

/* --- All Articles Section --- */
.wk-all {
  padding: 0 0 4rem;
}

@media (min-width: 768px) {
  .wk-all {
    padding: 0 0 5rem;
  }
}

/* --- Category Filters --- */
.wk-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wk-filters::-webkit-scrollbar {
  display: none;
}

.wk-filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--ar-black);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.wk-filter-btn:hover {
  border-color: var(--ar-accent);
  color: var(--ar-accent);
}

.wk-filter-btn.is-active {
  background: var(--ar-accent);
  border-color: var(--ar-accent);
  color: #fff;
}

/* --- Article Grid (Cards) --- */
.wk-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .wk-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .wk-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3.5rem;
  }
}

/* --- Cards (Editorial / Borderless) --- */
.wk-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
}

.wk-card.is-hidden {
  display: none;
}

/* Image */
.wk-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.wk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.wk-card:hover .wk-card-img img {
  transform: scale(1.03);
}

/* Text body (card frame) */
.wk-card-text {
  border: 1px solid rgba(0,0,0,0.08);
  border-top: none;
  padding: 2.75rem 3rem 2.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.wk-card:hover .wk-card-text {
  border-color: rgba(0,0,0,0.15);
}

/* Title */
.wk-card-title {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ar-black);
  margin-bottom: 0.75rem;
  transition: color 0.25s ease;
}

.wk-card:hover .wk-card-title {
  color: var(--ar-accent);
}

/* Meta (Date · Category · Lesezeit) */
.wk-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.wk-card-meta span + span::before {
  content: '\00B7';
  margin: 0 0.4rem;
}

/* Accent line */
.wk-card-accent {
  width: 2.25rem;
  height: 2px;
  background: var(--ar-accent);
  border: none;
  margin: 0 0 1rem;
}

/* Read more */
.wk-card-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ar-accent);
  margin-top: auto;
  transition: letter-spacing 0.3s ease;
}

.wk-card:hover .wk-card-more {
  letter-spacing: 0.04em;
}

/* --- Sunday Banner --- */
.wk-sunday-banner {
  padding: 0 0 5rem;
}

@media (min-width: 768px) {
  .wk-sunday-banner {
    padding: 0 0 7rem;
  }
}

.wk-sunday-inner {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ar-black);
  color: var(--ar-white);
  padding: 3rem 2rem;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wk-sunday-inner {
    grid-template-columns: 1fr auto;
    padding: 3.5rem 4rem;
    align-items: center;
    gap: 4rem;
  }
}

.wk-sunday-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ar-accent);
  margin-bottom: 0.75rem;
}

.wk-sunday-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.wk-sunday-content > p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.wk-sunday-content small {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

.wk-sunday-content small a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

/* Sunday Form */
.wk-sunday-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 460px;
}

@media (min-width: 480px) {
  .wk-sunday-form {
    flex-direction: row;
  }
}

.wk-sunday-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--ar-white);
}

.wk-sunday-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.wk-sunday-form button {
  padding: 0.875rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--ar-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.wk-sunday-form button:hover {
  background: #c81a43;
}

/* Sunday Visual */
.wk-sunday-visual {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
  .wk-sunday-visual {
    display: flex;
  }
}

.wk-sunday-clock {
  display: flex;
  color: var(--ar-accent);
  opacity: 0.6;
}

.wk-sunday-day {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

.wk-sunday-time {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}

/* Newsletter */
.newsletter-section {
  padding: 4rem 0;
  background: var(--ar-black);
  color: var(--ar-white);
}

.newsletter-box {
  text-align: center;
}

.newsletter-box h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  background: var(--ar-white);
}

.newsletter-form .btn {
  white-space: nowrap;
}

.newsletter-box small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ======================================
   LEGAL PAGES (Impressum, Datenschutz)
   ====================================== */
.legal-content {
  padding: 3rem 0 5rem;
}

@media (min-width: 768px) {
  .legal-content {
    padding: 4rem 0 6rem;
  }
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--ar-accent);
}

.legal-content a:hover {
  text-decoration: underline;
}


/* ======================================
   PERFORMANCE & ANIMATION UTILITIES
   ====================================== */

/* Content-visibility: auto für Below-Fold-Sektionen
   Spart Rendering-Kosten bei langen Seiten */
.services,
.cta,
.footer,
.related-services,
.values-section,
.team-section,
.newsletter-section,
.projects-section,
.articles-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* Scroll-Animationen (aktiviert via IntersectionObserver in script.js) */
.animate-on-scroll,
.scroll-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible,
.scroll-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation für Grid-Kinder */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* Active Nav-Link */
.menu-list a.is-active,
.footer-column a.is-active {
  color: var(--ar-accent);
  font-weight: 600;
}

/* Lazy-Bild Fade-In */
img[data-src],
img.loaded {
  transition: opacity 0.4s ease;
}

img[data-src] {
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

/* Reduzierte Animationen respektieren */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* High-Contrast Modus */
@media (prefers-contrast: high) {
  :root {
    --ar-accent: #C70039;
    --ar-gray: rgba(10,10,10, 0.4);
    --ar-lightgray: rgba(10,10,10, 0.08);
  }

  .btn-primary {
    border: 2px solid currentColor;
  }

  .btn-secondary {
    border-width: 3px;
  }
}

/* Print Styles */
@media print {
  .header,
  .menu-overlay,
  .cta,
  .newsletter-section,
  .hero-buttons {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  .footer {
    border-top: 1px solid #000;
  }
}

/* Selection-Farbe */
::selection {
  background: var(--ar-accent);
  color: var(--ar-white);
}

/* ========================
   KARRIERE PAGE
   ======================== */

.karriere-why {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.karriere-why h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.karriere-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.karriere-benefit {
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid var(--ar-gray);
  transition: border-color 0.3s ease;
}

.karriere-benefit:hover {
  border-color: var(--ar-accent);
}

.karriere-benefit h3 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.karriere-benefit p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}

.karriere-jobs {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--ar-lightgray);
}

.karriere-jobs h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-card {
  background: var(--ar-white);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border: 1px solid var(--ar-gray);
  transition: border-color 0.3s ease;
}

.job-card:hover {
  border-color: var(--ar-accent);
}

.job-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.job-card-header h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
}

.job-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ar-accent);
  border: 1px solid var(--ar-accent);
  padding: 0.2em 0.6em;
}

.job-card p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.45);
  margin-bottom: 1.25rem;
}

.job-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ar-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.job-cta:hover {
  color: var(--ar-accent);
}

.karriere-initiativ {
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding: clamp(2rem, 3vw, 3rem);
  background: var(--ar-white);
  border-left: 3px solid var(--ar-accent);
}

.karriere-initiativ h3 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.karriere-initiativ p {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: rgba(0,0,0,0.65);
  margin-bottom: 1.25rem;
}

.btn-karriere {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ar-white);
  background: var(--ar-accent);
  padding: 0.75em 1.5em;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-karriere:hover {
  background: #c5183f;
}

@media (max-width: 767px) {
  .karriere-benefits {
    grid-template-columns: 1fr;
  }
}

/* ========================
   FAQ PAGE
   ======================== */

.faq-section {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ── Category Block ────────────────────────────────────── */
.faq-category {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-category h2 {
  font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.4);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: 0;
  border-bottom: none;
}

/* ── Accordion Item ────────────────────────────────────── */
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.1);
  position: relative;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  color: var(--ar-black);
  transition: color 0.4s ease, padding-left 0.4s ease;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--ar-accent);
  transition: width 0.4s ease;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(0,0,0,0.2);
  transition: transform 0.4s ease, color 0.4s ease;
  flex-shrink: 0;
  margin-left: 2rem;
  line-height: 1;
}

details[open] .faq-question {
  padding-left: 1.5rem;
  color: var(--ar-black);
}

details[open] .faq-question::before {
  width: 3px;
}

details[open] .faq-question::after {
  content: '−';
  color: var(--ar-accent);
  transform: rotate(0deg);
}

.faq-question:hover {
  color: var(--ar-black);
  padding-left: 1.5rem;
}

.faq-question:hover::before {
  width: 3px;
}

.faq-question:hover::after {
  color: var(--ar-accent);
}

/* ── Answer ────────────────────────────────────────────── */
.faq-answer {
  padding: 0 0 clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
  max-width: 42rem;
}

.faq-answer p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: rgba(0,0,0,0.55);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  margin: 0.5rem 0 0.75rem 1.25rem;
  color: rgba(0,0,0,0.55);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
}

.faq-answer li {
  margin-bottom: 0.35rem;
}

/* ── CTA Block ─────────────────────────────────────────── */
.faq-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background: var(--ar-black);
  color: var(--ar-white);
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ar-accent);
}

.faq-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--ar-white);
}

.faq-cta p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.btn-faq {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ar-white);
  background: var(--ar-accent);
  padding: 1em 2em;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-faq:hover {
  background: #c5183f;
  transform: translateY(-1px);
}

/* ── FAQ Container Reset ───────────────────────────────── */
.faq-section .container {
  width: 100%;
  max-width: 100%;
}

/* ── FAQ Mobile ────────────────────────────────────────── */
@media (max-width: 767px) {
  .faq-section {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .faq-question {
    font-size: clamp(0.9375rem, 4vw, 1.125rem);
    padding: clamp(1rem, 3vw, 1.25rem) 0;
  }

  .faq-question:hover {
    padding-left: 0;
  }

  .faq-question:hover::before {
    width: 0;
  }

  details[open] .faq-question {
    padding-left: 1rem;
  }

  details[open] .faq-question::before {
    width: 2px;
  }

  .faq-answer {
    padding-left: 1rem;
  }

  .faq-cta {
    padding: clamp(2rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
  }

  .faq-cta h2 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
}

/* ══════════════════════════════════════════════════════════
   BENTO GRID MENU LAYOUT - NEW STYLES
   ══════════════════════════════════════════════════════════ */

/* Menu Grid Container */
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  flex: 1;
}

/* ── Ziele Section ──────────────────────────────────────── */
.menu-grid-ziele {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-overlay.is-open .menu-grid-ziele {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.menu-section-title-large {
  color: rgba(0,0,0,0.5);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.menu-section-title-spacing {
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

/* Accent Line */
.menu-accent-line {
  width: clamp(2rem, 3vw, 3rem);
  height: 2px;
  background: var(--ar-accent);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
  border-radius: 0;
}

/* Large Goals List */
.menu-goals-large {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.8vw, 0.75rem);
}

.menu-goals-large li {
  position: relative;
}

.menu-goals-large a {
  color: rgba(0,0,0,0.85);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.2s ease;
  line-height: 1.4;
}

.menu-goals-large a:hover {
  color: var(--ar-black);
  transform: translateX(4px);
}

.menu-arrow {
  color: var(--ar-accent);
  font-size: 1.1em;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.menu-goals-large a:hover .menu-arrow {
  transform: translateX(4px);
}

/* Inline Goals (Unternehmen) */
.menu-goals-inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 1.5vw, 1.5rem);
}

.menu-goals-inline a {
  color: rgba(0,0,0,0.7);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.menu-goals-inline a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--ar-accent);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-goals-inline a:hover {
  color: var(--ar-black);
}

.menu-goals-inline a:hover::after {
  width: 100%;
}

/* Mobile-only items hidden on desktop */
.menu-mobile-only {
  display: none;
}

/* ── Wissen Card Section ───────────────────────────────── */
.menu-grid-wissen {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: clamp(2rem, 3vw, 2.5rem);
}

.menu-overlay.is-open .menu-grid-wissen {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.35s;
}

.menu-section-title-small {
  color: rgba(0,0,0,0.5);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

/* Floating Card with 3D Tilt */
.menu-card-floating {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  overflow: hidden;
  background: var(--ar-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.menu-card-floating:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.15);
}

.menu-card-floating-img {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: var(--ar-lightgray);
  min-height: clamp(8rem, 10vw, 11rem);
}

.menu-card-floating-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.menu-card-floating:hover .menu-card-floating-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.menu-card-floating-body {
  width: 50%;
  padding: clamp(1rem, 1.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

/* ── Closing Animations ────────────────────────────────── */
.menu-overlay.is-closing .menu-grid-ziele,
.menu-overlay.is-closing .menu-grid-wissen {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition-delay: 0s;
}

/* ── Menu Bottom Updates ────────────────────────────────── */
.menu-bottom {
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-top: auto;
}

.menu-overlay.is-open .menu-bottom {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.menu-overlay.is-closing .menu-bottom {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition-delay: 0s;
}

/* ══════════════════════════════════════════════════════════
   MENU – RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

/* ── Mobile (bis 767px) ─────────────────────────────────── */
@media (max-width: 767px) {
  .menu-overlay {
    width: 100%;
    border-left: none;
    box-shadow: none;
  }

  .menu-content {
    padding: 6rem 1.5rem 1.5rem;
  }

  .menu-grid {
    gap: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .menu-section-title-large,
  .menu-section-title-small {
    font-size: 0.75rem;
  }

  .menu-goals-large a {
    font-size: 1.05rem;
    gap: 0.5rem;
  }

  .menu-goals-large {
    gap: 0.6rem;
  }

  .menu-goals-inline {
    gap: 0.6rem 1.25rem;
  }

  .menu-goals-inline a {
    font-size: 0.95rem;
  }

  .menu-section-title-spacing {
    margin-top: 3rem;
  }

  .menu-grid-wissen {
    padding-top: 1.75rem;
  }

  /* Hide Wissen card section on mobile */
  .menu-grid-wissen {
    display: none;
  }

  /* Show mobile-only Wissen link */
  .menu-mobile-only {
    display: list-item;
  }

  /* Stack Unternehmen links vertically */
  .menu-goals-inline {
    flex-direction: column;
    gap: 0.6rem;
  }

  .menu-card-floating {
    flex-direction: column;
  }

  .menu-card-floating-img {
    width: 100%;
    min-height: 10rem;
  }

  .menu-card-floating-body {
    width: 100%;
    padding: 1.25rem;
  }

  .menu-bottom {
    padding: 1.25rem 0 0.75rem;
  }

  .menu-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .menu-bottom-social-col {
    margin-left: 0;
  }

  .menu-bottom-label {
    font-size: 0.625rem;
  }

  .menu-bottom-value {
    font-size: 0.8125rem;
  }
}

/* ── Tablet (768px – 1023px) ────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  .menu-overlay {
    width: clamp(360px, 65vw, 520px);
  }

  .menu-content {
    padding: 6rem 2rem 1.5rem;
  }

  .menu-goals-large a {
    font-size: 1.0625rem;
  }

  .menu-card-floating-img {
    min-height: 9rem;
  }

  .menu-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .menu-bottom-social-col {
    margin-left: 0;
  }
}

/* ======================================
   DESIGN PAGE – Dividers / Labels
   ====================================== */
.design-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 5%;
  background: var(--ar-lightgray);
  border-top: 2px solid var(--ar-accent);
}

.design-divider-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ar-accent);
  white-space: nowrap;
}

.design-divider-label::after {
  content: '';
  display: inline-block;
  width: 100vw;
  height: 1px;
  background: var(--ar-gray);
  vertical-align: middle;
  margin-left: 1.5rem;
}

/* ======================================
   DESIGN HEROES – Shared
   ====================================== */
.dh {
  position: relative;
  overflow: hidden;
}

.dh-btn-line {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ar-white);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding-bottom: 0.25em;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s ease;
}

.dh-btn-line:hover {
  border-color: var(--ar-white);
}

/* ======================================
   HERO – Fullscreen Statement (Dark)
   ====================================== */
.dh-statement {
  position: relative;
  width: 100%;
  height: 80vh;
  height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ar-black);
}

.dh-statement-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dh-statement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dh-statement-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.75) 40%,
    rgba(0,0,0,0.85) 100%
  );
}

.dh-statement-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  padding-top: clamp(10rem, 16vw, 14rem);
}

.dh-statement-h1 {
  font-size: clamp(2.25rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ar-white);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.dh-statement-h1 span {
  display: block;
  white-space: nowrap;
}

.dh-statement-h1 span:first-child {
  font-weight: 100;
}

.dh-statement-h1 em {
  font-style: italic;
  font-weight: 100;
  color: var(--ar-accent);
}

.dh-statement-sub {
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* ======================================
   Teambild – Fullwidth mit Overlay
   ====================================== */
.dh-team-photo {
  position: relative;
  width: 100%;
  height: 75vh;
  height: 75dvh;
  overflow: hidden;
}

.dh-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.dh-team-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

/* ======================================
   HERO 3 – Editorial Minimal
   ====================================== */
.dh-editorial {
  background: var(--ar-white);
  padding: clamp(10rem, 16vw, 14rem) 5% clamp(4rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  position: relative;
}

.dh-editorial-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.dh-editorial-top {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.dh-editorial-tag {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(0,0,0,0.35);
}

.dh-editorial-h1 {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.dh-editorial-line {
  display: block;
}

.dh-editorial-light {
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  font-weight: 100;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ar-black);
  margin-right: 0.3em;
}

.dh-editorial-bold {
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ar-black);
}

.dh-editorial-accent {
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  font-weight: 100;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ar-accent);
}

.dh-editorial-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .dh-editorial-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.dh-editorial-desc {
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
  max-width: 480px;
}

.dh-editorial-cta {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ar-black);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.dh-editorial-cta:hover {
  color: var(--ar-accent);
}

.dh-editorial-line-accent {
  width: 60px;
  height: 3px;
  background: var(--ar-accent);
  margin-top: clamp(3rem, 5vw, 5rem);
}

/* ======================================
   HERO 4 – Asymmetric Grid
   ====================================== */
.dh-asym {
  background: var(--ar-lightgray);
  padding: clamp(10rem, 16vw, 14rem) 5% clamp(4rem, 6vw, 6rem);
  max-height: 80vh;
  overflow: hidden;
}

.dh-asym-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .dh-asym-container {
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: start;
  }
}

.dh-asym-col-left {
  position: relative;
}

.dh-asym-img-large {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.dh-asym-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .dh-asym-col-right {
    padding-top: clamp(4rem, 8vw, 10rem);
  }
}

.dh-asym-h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ar-black);
  margin-bottom: 1.5rem;
}

.dh-asym-h1 em {
  font-weight: 100;
  font-style: italic;
  color: var(--ar-accent);
}

.dh-asym-desc {
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.dh-asym-img-small {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.dh-asym-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ══════════════════════════════════════════════════════════════
   DESIGN KATALOG – Sektionen (ds-*)
   ══════════════════════════════════════════════════════════════ */

/* Shared section base */
.ds {
  position: relative;
  width: 100%;
}


/* ======================================
   1. CTA-BLOCK
   ====================================== */

/* Shared Eyebrow */
.ds-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ar-accent);
  margin-bottom: 1.5rem;
}

/* ======================================
   2. TEXT / CONTENT SEKTION
   ====================================== */

/* Shared Text */
.ds-text-h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ar-black);
  margin-bottom: 1.5rem;
}

.ds-text-p {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  color: rgba(0,0,0,0.55);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.ds-text-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ar-black);
  text-decoration: none;
  transition: color 0.3s;
}

.ds-text-link:hover {
  color: var(--ar-accent);
}

/* 2A – Bild links, Text rechts */
.ds-text-img-left {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-text-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 900px) {
  .ds-text-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ds-text-visual {
  overflow: hidden;
}

.ds-text-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

/* 2C – Offset / Editorial */
.ds-text-offset {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-text-offset-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ds-text-offset-grid {
    grid-template-columns: 200px 1fr;
    gap: clamp(3rem, 6vw, 6rem);
  }
}

@media (max-width: 767px) {
  .ds-text-offset {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .ds-text-offset .ds-text-h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .ds-text-offset .ds-text-h2 br {
    display: none;
  }

  .ds-text-p {
    font-size: clamp(0.875rem, 3.8vw, 1rem);
  }
}


/* ======================================
   3. SOCIAL PROOF / LOGOS
   ====================================== */

.ds-logos-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.35);
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.ds-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  justify-content: center;
  align-items: center;
}

.ds-logos-row img {
  height: 32px;
  width: auto;
  opacity: 0.4;
  transition: opacity 0.3s;
  filter: grayscale(1);
}

.ds-logos-row img:hover {
  opacity: 0.8;
}

/* ── Clients Split Section ── */
.ds-clients-split {
  background: var(--ar-black);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-clients-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.ds-clients-split-left {
  text-align: left;
}

.ds-clients-num {
  display: block;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 100;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ar-white);
}

.ds-clients-num::after {
  content: '+';
  font-weight: 900;
  color: var(--ar-accent);
}

.ds-clients-sub {
  display: block;
  font-size: clamp(var(--font-base), 2vw, var(--font-xl));
  color: rgba(250,250,250, 0.5);
  font-weight: 300;
  line-height: 1.4;
  margin-top: 0;
}

.ds-clients-sub strong {
  color: var(--ar-white);
  font-weight: 600;
}

/* — Logo Marquee Header — */
.ds-clients-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.ds-clients-label {
  font-size: clamp(var(--font-base), 2vw, var(--font-xl));
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ds-clients-label strong {
  color: var(--ar-white);
  font-weight: 600;
}

/* — Logo Marquee — */
.ds-logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sanfte Fade-Ränder */
.ds-logo-marquee::before,
.ds-logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 100px);
  z-index: 2;
  pointer-events: none;
}

.ds-logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--ar-black) 0%, transparent 100%);
}

.ds-logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--ar-black) 0%, transparent 100%);
}

.ds-logo-track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
  width: max-content;
  animation: marquee 60s linear infinite;
}

.ds-logo-marquee:hover .ds-logo-track {
  animation-play-state: paused;
}

.ds-logo-track img {
  height: clamp(40px, 6vw, 60px);
  width: auto;
  max-width: clamp(140px, 18vw, 220px);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.4s ease;
  flex-shrink: 0;
}

.ds-logo-track img:hover {
  opacity: 0.85;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .ds-clients-split {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .ds-clients-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .ds-clients-num {
    font-size: clamp(2.5rem, 10vw, 4rem);
    text-align: center;
  }

  .ds-clients-sub {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    text-align: center;
  }

  .ds-logo-marquee {
    width: 100%;
  }

  .ds-logo-track {
    gap: 2rem;
    animation-duration: 30s;
  }

  .ds-logo-track img {
    height: clamp(22px, 5vw, 32px);
    max-width: 100px;
  }

  .ds-logo-marquee::before,
  .ds-logo-marquee::after {
    width: 30px;
  }
}



/* — Projects Cases Header — */
.ds-projects-cases-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding: 0 5%;
}

/* ======================================
   LP — STICKY CTA BAR
   Klebt am unteren Rand, erscheint beim Scrollen
   ====================================== */

.ds-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  z-index: 900;
  width: 100%;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 2px solid var(--ar-accent);
  box-shadow: 0 -4px 30px rgba(233, 32, 79, 0.1);
  padding: 0.625rem 5%;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.ds-sticky-cta:hover {
  box-shadow: 0 -6px 40px rgba(233, 32, 79, 0.15);
}

.ds-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.ds-sticky-cta-tab {
  display: none;
}

.ds-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ds-sticky-cta-text {
  font-size: clamp(0.875rem, 1.3vw, 1.0625rem);
  font-weight: 500;
  color: var(--ar-black);
  line-height: 1.4;
}

.ds-sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--ar-black);
  color: var(--ar-white);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.ds-sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
  .ds-sticky-cta {
    padding: 0.75rem 5%;
  }

  .ds-sticky-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .ds-sticky-cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ======================================
   4. TESTIMONIAL / ZITAT
   ====================================== */

.ds-quote-mark {
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.8;
  font-weight: 100;
  color: var(--ar-accent);
  margin-bottom: 1rem;
}

.ds-quote-text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ar-black);
  margin-bottom: 2rem;
  font-style: normal;
}

.ds-quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ds-quote-avatar {
  width: 56px;
  height: 56px;
  overflow: hidden;
  flex-shrink: 0;
}

.ds-quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ds-quote-meta {
  display: flex;
  flex-direction: column;
}

.ds-quote-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ar-black);
}

.ds-quote-role {
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.4);
  margin-top: 0.15rem;
}

/* 4B – Card Dark */
.ds-quote-card {
  background: var(--ar-white);
  padding: clamp(4rem, 8vw, 6rem) 5%;
}

.ds-quote-card-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ds-quote-card-box {
  background: var(--ar-black);
  padding: clamp(3rem, 6vw, 5rem);
}

/* 4C – Testimonials Stack (Dark, no images) */
.ds-testimonials-stack {
  background: var(--ar-black);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-testimonials-stack-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-testimonials-stack-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ds-testimonials-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .ds-testimonials-stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-testimonial-item {
  padding: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: background 0.4s ease;
}

@media (min-width: 900px) {
  .ds-testimonial-item {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.1);
  }

  .ds-testimonial-item:first-child {
    border-left: none;
    padding-left: 0;
  }

  .ds-testimonial-item:last-child {
    padding-right: 0;
  }
}

.ds-testimonial-item:hover {
  background: rgba(255,255,255,0.03);
}

.ds-testimonial-item .ds-quote-mark {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--ar-accent);
  margin-bottom: 1rem;
}

.ds-testimonial-text {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 2rem;
}

.ds-testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ds-testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ar-white);
}

.ds-testimonial-role {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* Testimonials Stack – Mobile */
@media (max-width: 767px) {
  .ds-testimonials-stack {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .ds-testimonials-stack-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .ds-testimonial-item {
    padding: clamp(1.5rem, 4vw, 2rem) 0;
  }
}


/* ======================================
   5. FEATURE / LEISTUNGS-GRID
   ====================================== */

.ds-features-h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ar-black);
  margin-bottom: 0.5rem;
}

.ds-features-header {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.ds-features-twocol .ds-features-header {
  margin-bottom: 0;
}

.ds-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ar-black);
  margin-bottom: 0.75rem;
}

.ds-feature-desc {
  font-size: 0.9375rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
}

/* 5A – Icon Grid */
.ds-features-grid {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-features-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-features-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .ds-features-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-feature-card {
  padding: clamp(2rem, 3vw, 2.5rem) 0;
  border-top: 2px solid var(--ar-black);
}

.ds-feature-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--ar-accent);
  margin-bottom: 1.5rem;
}

/* 5C – Leistungen Stacked Rows (Light) */
.ds-leistungen-rows {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-leistungen-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-leistungen-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ds-leistungen-rows-wrap {
  display: flex;
  flex-direction: column;
}

.ds-leistung-row {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  position: relative;
}

.ds-leistung-row:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ds-leistung-num {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  color: var(--ar-accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 2.5rem;
}

.ds-leistung-title {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ar-black);
  letter-spacing: -0.03em;
  line-height: 1.2;
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.ds-leistung-branche {
  font-size: clamp(0.75rem, 1.2vw, 0.9375rem);
  font-weight: 400;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-left: 1px solid rgba(0,0,0,0.15);
  padding-left: 0.75rem;
}

[data-section-theme="dark"] .ds-leistung-branche {
  color: rgba(255,255,255,0.35);
  border-left-color: rgba(255,255,255,0.15);
}

/* 5C-Link – Klickbare Variante (Cross-Links) */
.ds-leistung-row--link {
  text-decoration: none;
  transition: padding-left 0.4s ease;
  cursor: pointer;
}

.ds-leistung-row--link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--ar-accent);
  transition: width 0.4s ease;
}

.ds-leistung-row--link:hover::before {
  width: 4px;
}

.ds-leistung-row--link:hover {
  padding-left: 1.5rem;
}

.ds-leistung-row--link .ds-leistung-title {
  color: rgba(0,0,0,0.5);
  transition: color 0.4s ease;
}

.ds-leistung-row--link:hover .ds-leistung-title {
  color: var(--ar-black);
}

.ds-leistung-arrow {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: rgba(0,0,0,0.15);
  flex-shrink: 0;
  transition: color 0.4s ease, transform 0.4s ease;
}

.ds-leistung-row--link:hover .ds-leistung-arrow {
  color: var(--ar-accent);
  transform: translateX(0.5rem);
}

/* Leistungen / Pain Points – Mobile */
@media (max-width: 767px) {
  .ds-leistungen-rows {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .ds-leistungen-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .ds-leistungen-rows .ds-features-h2,
  .ds-stats-light .ds-features-h2,
  .ds-hscroll-header .ds-features-h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .ds-leistungen-rows .ds-features-h2 br,
  .ds-stats-light .ds-features-h2 br,
  .ds-hscroll-header .ds-features-h2 br {
    display: none;
  }

  .ds-leistung-row {
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.5rem) 0;
  }

  .ds-leistung-num {
    width: 2rem;
    font-size: 0.7rem;
  }

  .ds-leistung-title {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .ds-leistung-title strong {
    width: 100%;
  }

  .ds-leistung-branche {
    border-left: none;
    padding-left: 0;
    font-size: 0.7rem;
    white-space: normal;
  }

  .ds-leistung-arrow {
    font-size: 1rem;
  }

  /* Kein Hover-Effekt auf Touch */
  .ds-leistung-row--link:hover {
    padding-left: 0;
  }

  .ds-leistung-row--link:hover::before {
    width: 0;
  }
}

/* Leistungen / Pain Points – Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .ds-leistung-title {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  }
}


/* ======================================
   6. PROZESS-STEPS
   ====================================== */

.ds-process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-process-header {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.ds-process-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ar-black);
  margin-bottom: 0.5rem;
}

.ds-process-desc {
  font-size: 0.9375rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
}

/* 6B – Process Steps (inside text-offset) */
.ds-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.ds-process-step {
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-top: 2px solid var(--ar-black);
}

.ds-process-step:last-child {
  border-bottom: 2px solid var(--ar-black);
}

.ds-process-step .ds-eyebrow {
  margin-bottom: 0.75rem;
}

.ds-process-step .ds-feature-title {
  margin-bottom: 0.5rem;
}

/* 6C – Process Grid (horizontal cards with accent line) */
.ds-process-grid {
  background: var(--ar-black);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-process-grid-header {
  max-width: 1200px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.ds-process-grid-header .ds-eyebrow {
  color: var(--ar-accent);
}

.ds-process-grid-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ar-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ds-process-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ds-process-grid-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-process-grid-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  padding-right: clamp(1rem, 2vw, 2rem);
}

/* Vertikale Trennlinie zwischen Karten (Desktop) */
@media (min-width: 768px) {
  .ds-process-grid-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
  }

  .ds-process-grid-card:not(:first-child) {
    padding-left: clamp(1rem, 2vw, 2rem);
  }
}

/* Process Grid – Mobile */
@media (max-width: 767px) {
  .ds-process-grid {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .ds-process-grid-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .ds-process-grid-h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .ds-process-grid-h2 br {
    display: none;
  }

  .ds-process-grid-card:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

.ds-process-grid-num {
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 100;
  color: var(--ar-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.ds-process-grid-title {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  font-weight: 700;
  color: var(--ar-white);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.ds-process-grid-desc {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Eyebrow Accent Variant ── */
.ds-eyebrow--accent {
  color: var(--ar-accent);
}

/* ── Testimonials H2 (auf dunklem Hintergrund) ── */
.ds-testimonials-h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

.ds-testimonials-h2-light {
  font-weight: 100;
  color: rgba(255,255,255,0.35);
}

.ds-testimonials-h2-bold {
  font-weight: 900;
  color: var(--ar-white);
}


/* ======================================
   LP — PAIN-POINTS (Landingpage)
   Provokante Probleme, 2-3 Spalten
   ====================================== */

.ds-pain-points {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-pain-points-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-pain-points-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.ds-pain-points-h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ar-black);
}

.ds-pain-points-h2 span {
  color: var(--ar-accent);
}

.ds-pain-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .ds-pain-points-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-pain-item {
  padding: clamp(2rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--ar-gray);
}

@media (min-width: 768px) {
  .ds-pain-item {
    padding: clamp(2rem, 3vw, 2.5rem) clamp(1.5rem, 2vw, 2rem);
    border-top: none;
    border-left: 1px solid var(--ar-gray);
  }

  .ds-pain-item:first-child {
    padding-left: 0;
    border-left: none;
  }
}

.ds-pain-num {
  display: block;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 100;
  color: rgba(10,10,10,0.08);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.ds-pain-title {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--ar-black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ds-pain-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(10,10,10,0.55);
  max-width: 38ch;
}

/* Pain Points – Mobile */
@media (max-width: 767px) {
  .ds-pain-points {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .ds-pain-points-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .ds-pain-points-h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .ds-pain-points-h2 br {
    display: none;
  }
}


/* ======================================
   LP — SOCIAL-PROOF-BAR
   Kompakter Streifen: Zahl + Tagline
   ====================================== */

.ds-social-proof-bar {
  background: var(--ar-black);
  padding: clamp(2.5rem, 4vw, 3.5rem) 5%;
  overflow: hidden;
}

.ds-social-proof-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.ds-proof-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-shrink: 0;
}

.ds-proof-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--ar-white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.ds-proof-label {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ds-proof-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ds-social-proof-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .ds-proof-divider {
    width: 100%;
    height: 1px;
  }
}


/* ======================================
   LP — INLINE-CTA
   Farbiger Conversion-Punkt mitten auf der Seite
   ====================================== */

.ds-inline-cta {
  background: var(--ar-accent);
  padding: clamp(4rem, 8vw, 6rem) 5%;
  text-align: center;
}

.ds-inline-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.ds-inline-cta-h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ar-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.ds-inline-cta-sub {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.ds-inline-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--ar-white);
  color: var(--ar-black);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ds-inline-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.ds-inline-cta[data-section-theme="dark"] {
  background: var(--ar-black);
}


/* ======================================
   REF — SHOWCASE GRID (2-1-2-1)
   Referenzen-Seite: Ausgewählte Projekte
   ====================================== */

.ref-showcase {
  background: var(--ar-black);
  padding: clamp(3rem, 5vw, 5rem) 0 0;
  overflow: hidden;
  /* full width — no side padding */
}

.ref-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  width: 100%;
}

.ref-showcase-half {
  aspect-ratio: 4 / 3;
}

.ref-showcase-full {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.ref-showcase-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.ref-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-showcase-item:hover img,
.ref-showcase-item:focus-visible img {
  transform: scale(1.05);
}

.ref-showcase-item:focus-visible {
  outline: 2px solid var(--ar-accent);
  outline-offset: -2px;
}

.ref-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ref-showcase-item:hover .ref-showcase-overlay,
.ref-showcase-item:focus-visible .ref-showcase-overlay {
  opacity: 1;
}

.ref-showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: clamp(1.25rem, 2vw, 2.5rem);
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.ref-showcase-item:hover .ref-showcase-content,
.ref-showcase-item:focus-visible .ref-showcase-content {
  transform: translateY(0);
  opacity: 1;
}

.ref-showcase-branche {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
  display: block;
}

.ref-showcase-title {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--ar-white);
  margin: 0;
  line-height: 1.2;
}

/* Ultrawide cap — prevent overly tall grid items */
@media (min-width: 1800px) {
  .ref-showcase-half {
    aspect-ratio: 16 / 9;
  }
}

/* Tablet — slightly flatter aspect */
@media (max-width: 1024px) and (min-width: 769px) {
  .ref-showcase-half {
    aspect-ratio: 3 / 2;
  }
  .ref-showcase-full {
    aspect-ratio: 2.5 / 1;
  }
}

/* Mobile — single column */
@media (max-width: 768px) {
  .ref-showcase-grid {
    grid-template-columns: 1fr;
  }
  .ref-showcase-half,
  .ref-showcase-full {
    aspect-ratio: 16 / 9;
  }
}


/* ======================================
   REFERENZ DETAIL — Einzelseiten-Sections
   Projekt-Steckbrief, Text, Galerie, Video, Nav
   ====================================== */

/* — Projekt-Steckbrief — */
.ref-detail-meta {
  background: var(--ar-white);
  padding: clamp(3rem, 6vw, 5rem) 5%;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ref-detail-meta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.ref-detail-meta-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ref-detail-meta-value {
  display: block;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  color: var(--ar-black);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .ref-detail-meta-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 479px) {
  .ref-detail-meta-inner {
    grid-template-columns: 1fr;
  }
}


/* — Aufgabe & Lösung (2-Col Text) — */
.ref-detail-text {
  background: var(--ar-white);
  padding: clamp(4rem, 8vw, 7rem) 5%;
}

.ref-detail-text-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
}

.ref-detail-text-h2 {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ar-accent);
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.ref-detail-text-col p {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.7;
  color: rgba(0,0,0,0.7);
  margin: 0;
}

.ref-detail-text-col p + p {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .ref-detail-text-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* — Coming Soon — */
.ref-detail-soon {
  background: var(--ar-white);
  padding: clamp(6rem, 12vw, 10rem) 5%;
  text-align: center;
}

.ref-detail-soon-inner {
  max-width: 640px;
  margin: 0 auto;
}

.ref-detail-soon-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  border: 2px solid var(--ar-accent);
  border-radius: 50%;
  line-height: 44px;
  font-size: 1.25rem;
  color: var(--ar-accent);
}

.ref-detail-soon-h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ar-black);
  margin: 0 0 1.5rem;
}

.ref-detail-soon p {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
  margin: 0 0 2.5rem;
}

.ref-detail-soon-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ar-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--ar-accent);
  padding-bottom: 0.25rem;
  transition: opacity 0.3s;
}

.ref-detail-soon-link:hover {
  opacity: 0.7;
}


/* — Bildergalerie — */
.ref-detail-gallery {
  background: var(--ar-black);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.ref-detail-gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.ref-detail-gallery-inner .ds-eyebrow {
  margin-bottom: 0.75rem;
}

.ref-detail-gallery-h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--ar-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
}

.ref-detail-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.ref-detail-gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.ref-detail-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-detail-gallery-grid figure:hover img {
  transform: scale(1.03);
}

.ref-detail-gallery-full {
  grid-column: 1 / -1;
}

/* Three-column variant — 3 per row */
.ref-detail-gallery-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* Trio variant — 2 squares + 1 full */
.ref-detail-gallery-grid--trio {
  grid-template-columns: 1fr 1fr;
}

.ref-detail-gallery-grid--trio figure:not(.ref-detail-gallery-full) {
  aspect-ratio: 4 / 5;
}

@media (max-width: 767px) {
  .ref-detail-gallery-grid {
    grid-template-columns: 1fr;
  }
  .ref-detail-gallery-grid--three {
    grid-template-columns: 1fr 1fr;
  }
  .ref-detail-gallery-grid--trio figure:not(.ref-detail-gallery-full) {
    aspect-ratio: auto;
  }
}

/* Quad variant — 4 images in a row, fullwidth, 4:5 */
.ref-detail-gallery--quad .ref-detail-gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.25rem, 0.5vw, 0.5rem);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.ref-detail-gallery--quad figure {
  aspect-ratio: 4 / 5;
}

.ref-detail-gallery--quad img {
  object-fit: cover;
}

@media (max-width: 767px) {
  .ref-detail-gallery--quad .ref-detail-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Ads KPI — stats left, GIF right */
.ref-detail-ads-kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ref-detail-ads-kpi-stats {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ref-detail-ads-kpi-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ref-detail-ads-kpi-number {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ar-white);
  letter-spacing: -0.02em;
}

.ref-detail-ads-kpi-label {
  font-size: var(--font-sm);
  color: rgba(250,250,250,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ref-detail-ads-kpi-visuals {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ref-detail-ads-kpi-visuals img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .ref-detail-ads-kpi {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .ref-detail-ads-kpi-stats {
    gap: 2rem;
    align-items: center;
  }

  .ref-detail-ads-kpi-item {
    align-items: center;
  }
}

/* Light-themed gallery variant */
.ref-detail-gallery[data-section-theme="light"] {
  background: var(--ar-white);
}

.ref-detail-gallery[data-section-theme="light"] .ref-detail-gallery-h2 {
  color: var(--ar-black);
}


/* — Video — */
.ref-detail-video {
  background: var(--ar-white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* Remove double padding when video follows text (both light) */
.ref-detail-text + .ref-detail-video {
  padding-top: 0;
}

.ref-detail-video-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.ref-detail-video-inner .ds-eyebrow {
  margin-bottom: 0.75rem;
}

.ref-detail-video-inner .ref-detail-gallery-h2 {
  color: var(--ar-black);
}

.ref-detail-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ar-black);
}

.ref-detail-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* — Video Full-Width Variant — */
.ref-detail-video--full {
  background: var(--ar-black);
  padding: 0;
}

.ref-detail-video--full .ref-detail-video-wrap {
  max-width: 100%;
  aspect-ratio: auto;
}

.ref-detail-video--full video {
  width: 100%;
  max-height: 80vh;
  max-height: 80dvh;
  object-fit: cover;
  display: block;
}


/* — Video Play-on-Click Variant — */
.ref-detail-video-play {
  position: relative;
  cursor: pointer;
  max-width: 1400px;
  margin: 0 auto 2rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ar-black);
}

.ref-detail-video-play:last-child {
  margin-bottom: 0;
}

.ref-detail-video-play video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ref-video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.4s ease;
  z-index: 2;
}

.ref-video-play-btn svg {
  width: clamp(56px, 6vw, 80px);
  height: clamp(56px, 6vw, 80px);
  transition: transform 0.3s ease;
}

.ref-video-play-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

.ref-video-play-btn:hover svg {
  transform: scale(1.1);
}

.ref-detail-video-play.is-playing .ref-video-play-btn {
  opacity: 0;
  pointer-events: none;
}

.ref-detail-video-play.is-paused .ref-video-play-btn {
  opacity: 1;
  pointer-events: auto;
}

/* — Hero Video (full-width, cinematic) — */
.ref-detail-video-hero {
  max-width: 100%;
  aspect-ratio: 21 / 9;
  margin-bottom: 1.25rem;
}

.ref-detail-video-hero video {
  object-position: center bottom;
}

/* — Video Duo (2 side-by-side) — */
.ref-detail-video-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.ref-detail-video-duo .ref-detail-video-play {
  margin: 0;
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .ref-detail-video-hero {
    aspect-ratio: 16 / 9;
  }
  .ref-detail-video-duo {
    grid-template-columns: 1fr;
    padding: 0;
  }
}


/* — Projekt-Navigation (Prev/Next) — */
.ref-detail-nav {
  background: var(--ar-white);
  padding: clamp(3rem, 5vw, 4rem) 5%;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.ref-detail-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.ref-detail-nav-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: opacity 0.3s ease;
}

.ref-detail-nav-link:hover {
  opacity: 0.6;
}

.ref-detail-nav-next {
  text-align: right;
  margin-left: auto;
}

.ref-detail-nav-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.35);
  font-weight: 600;
}

.ref-detail-nav-name {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--ar-black);
  line-height: 1.2;
}

@media (max-width: 479px) {
  .ref-detail-nav-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .ref-detail-nav-next {
    text-align: left;
    margin-left: 0;
  }
}


/* ======================================
   LP — TESTIMONIAL HERO
   EIN großes Zitat, bildschirmfüllend
   ====================================== */

.ds-testimonial-hero {
  background: var(--ar-black);
  padding: clamp(6rem, 12vw, 10rem) 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ds-testimonial-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ds-testimonial-hero-mark {
  display: block;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 100;
  color: var(--ar-accent);
  line-height: 0.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.ds-testimonial-hero-text {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--ar-white);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ds-testimonial-hero-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ds-testimonial-hero-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ar-white);
}

.ds-testimonial-hero-role {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 767px) {
  .ds-testimonial-hero {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }
}


/* ======================================
   7. VORTEILE-LISTE
   ====================================== */

/* 7C – Statement */
.ds-benefits-statement {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-benefits-statement-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-benefits-statement-h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.ds-benefits-statement-light {
  font-weight: 100;
  color: rgba(0,0,0,0.35);
}

.ds-benefits-statement-bold {
  font-weight: 900;
  color: var(--ar-black);
}

.ds-benefits-statement-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .ds-benefits-statement-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-benefits-statement-col {
  padding-top: 2rem;
  border-top: 2px solid var(--ar-black);
}


/* ======================================
   8. ZAHLEN / STATISTIKEN
   ====================================== */

.ds-stat-num {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ar-black);
  line-height: 1;
}

.ds-stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(0,0,0,0.45);
  margin-top: 0.75rem;
  line-height: 1.4;
}

/* 8A – Heller Grid */
.ds-stats-light {
  background: var(--ar-lightgray);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-stats-header {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.ds-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .ds-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ds-stat {
  padding-top: 2rem;
  border-top: 2px solid var(--ar-black);
}

/* Stats – Mobile */
@media (max-width: 767px) {
  .ds-stats-light {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .ds-stats-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .ds-stats-light .ds-features-h2 br {
    display: none;
  }

  .ds-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 4vw, 1.5rem);
  }

  .ds-stat-num {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .ds-stat-label {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  .ds-stat {
    padding-top: 1.25rem;
  }
}

/* ======================================
   10. ARTIKEL-KARTEN
   ====================================== */

.ds-articles-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-articles-header {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.ds-article-card-meta {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.75rem;
}

/* 10A – 3er Grid */
.ds-articles-grid3 {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-articles-grid3-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ds-articles-grid3-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .ds-articles-grid3-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ds-article-card {
  text-decoration: none;
  display: block;
}

.ds-article-card-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.25rem;
}

.ds-article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ds-article-card:hover .ds-article-card-img img {
  transform: scale(1.04);
}

.ds-article-card-title {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--ar-black);
  line-height: 1.35;
}

/* 10C – Minimal List */
.ds-articles-minimal {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-articles-minimal-list {
  max-width: 900px;
}

.ds-article-minimal-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: baseline;
  padding: clamp(1.25rem, 2vw, 1.75rem) 0;
  border-bottom: 1px solid var(--ar-gray);
  text-decoration: none;
}

.ds-article-minimal-item:first-child {
  border-top: 1px solid var(--ar-gray);
}

.ds-article-minimal-date {
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.35);
  white-space: nowrap;
}

.ds-article-minimal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ar-black);
  line-height: 1.4;
}

.ds-article-minimal-tag {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ar-accent);
  white-space: nowrap;
}


/* ======================================
   11. FAQ-AKKORDEON
   ====================================== */

.ds-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ds-faq-header {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

/* 11B – Two Column */
.ds-faq-twocol {
  background: var(--ar-lightgray);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-faq-twocol .ds-faq-inner {
  max-width: 1200px;
}

.ds-faq-twocol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 5vw, 5rem);
}

@media (min-width: 900px) {
  .ds-faq-twocol-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (max-width: 767px) {
  .ds-faq-twocol {
    padding: clamp(3rem, 8vw, 5rem) 5%;
  }

  .ds-faq-twocol-grid {
    gap: 0;
  }

  .ds-faq-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }
}

/* ======================================
   12. KONTAKTFORMULAR
   ====================================== */

.ds-contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.ds-contact-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.ds-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ds-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .ds-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.ds-contact-form input,
.ds-contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--ar-black);
  background: var(--ar-lightgray);
  border: 1.5px solid transparent;
  outline: none;
  transition: border-color 0.3s;
}

.ds-contact-form input:focus,
.ds-contact-form textarea:focus {
  border-color: var(--ar-black);
}

.ds-contact-form textarea {
  resize: vertical;
}

/* 12A – Center */
.ds-contact-center {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

/* ======================================
   13. PROJEKT-ÜBERBLICK
   ====================================== */

/* 13A – Sidebar */
.ds-projinfo-sidebar {
  background: var(--ar-white);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-projinfo-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .ds-projinfo-sidebar-grid {
    grid-template-columns: 240px 1fr;
  }
}

.ds-projinfo-meta-item {
  margin-bottom: 1.5rem;
}

.ds-projinfo-meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.3rem;
}

.ds-projinfo-meta-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ar-black);
}

/* ======================================
   15. ERGEBNIS-ZAHLEN
   ====================================== */

.ds-results-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-results-header {
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

/* 15C – Hero Result Dark */
.ds-results-hero {
  background: var(--ar-black);
  padding: clamp(5rem, 10vw, 8rem) 5%;
  text-align: center;
}

.ds-results-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ds-results-hero-num {
  display: block;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ar-accent);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.ds-results-hero-text {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--ar-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ds-results-hero-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}


/* ======================================
   16. FULLWIDTH VIDEO
   ====================================== */

.ds-video-fullwidth {
  background: var(--ar-black);
  padding: 0;
  overflow: hidden;
}

.ds-video-fullwidth-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 5%;
}

.ds-video-player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 767px) {
  .ds-video-fullwidth-inner {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
}


/* ======================================
   SEKTIONS-TRENNER (Footer-Marquee-Stil)
   ====================================== */

.ds-divider-footer-marquee {
  background: var(--ar-black);
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.ds-divider-fm-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ds-fm-scroll 18s linear infinite;
  will-change: transform;
  width: max-content;
}

.ds-divider-footer-marquee:hover .ds-divider-fm-track {
  animation-play-state: paused;
}

.ds-divider-fm-text {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--ar-white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  transition: color 0.4s ease;
}

.ds-divider-footer-marquee:hover .ds-divider-fm-text {
  color: var(--ar-accent);
}

.ds-divider-fm-dot {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--ar-accent);
  padding: 0 clamp(0.5rem, 1vw, 1rem);
  line-height: 1;
}

@keyframes ds-fm-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ======================================
   9. PROJEKT-KARTEN – NEUE VARIANTEN
   ====================================== */

/* 9A NEU – Horizontal Scroll-Tunnel + Cursor Spotlight */
/* ── Fullscreen Project Showcase ── */
.ds-proj-showcase {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--ar-black);
}

/* Background image layers */
.ds-proj-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ds-proj-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-proj-bg.is-active {
  opacity: 1;
}

.ds-proj-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vignette: starker Links-Gradient für Lesbarkeit */
.ds-proj-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.78) 20%,
    rgba(10,10,10,0.45) 40%,
    rgba(10,10,10,0.0) 65%
  );
  pointer-events: none;
}

/* Gradient: oben + unten abgedunkelt */
.ds-proj-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.0) 25%,
      rgba(10,10,10,0.0) 55%,
      rgba(10,10,10,0.75) 80%,
      rgba(10,10,10,0.95) 100%
    );
  pointer-events: none;
}

/* Header oben links — genug Abstand für fixed Nav */
.ds-proj-header {
  position: absolute;
  top: clamp(5.5rem, 8vw, 8rem);
  left: 5%;
  z-index: 3;
}

/* Content: sauber auf Vignette, keine Box */
.ds-proj-content {
  position: absolute;
  bottom: clamp(6rem, 10vw, 9rem);
  left: 5%;
  right: 52%;
  z-index: 4;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.ds-proj-slide {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.ds-proj-slide.is-active {
  display: flex;
  animation: projSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes projSlideIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ds-proj-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ar-accent);
}

.ds-proj-name {
  font-size: clamp(1.875rem, 4.5vw, 3.75rem);
  font-weight: 900;
  color: var(--ar-white);
  line-height: 1.05;
}

.ds-proj-desc {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: rgba(255,255,255,0.55);
  max-width: 38ch;
  line-height: 1.6;
}

.ds-proj-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ar-white);
  text-decoration: none;
  margin-top: 0.5rem;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: color 0.3s ease, border-color 0.3s ease;
  width: fit-content;
}

.ds-proj-link:hover {
  color: var(--ar-accent);
  border-color: var(--ar-accent);
}

/* Switcher Bar */
.ds-proj-switcher {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ds-proj-switch {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(0.75rem, 1.5vw, 1.5rem);
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  cursor: none;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ds-proj-switch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ar-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.ds-proj-switch.is-active::before {
  transform: scaleX(1);
}

.ds-proj-switch.is-active {
  flex: 3;
  background: rgba(255,255,255,0.06);
}

.ds-proj-switch:hover {
  background: rgba(255,255,255,0.04);
}

.ds-proj-switch-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.22);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.ds-proj-switch.is-active .ds-proj-switch-num {
  color: var(--ar-accent);
}

.ds-proj-switch-name {
  font-size: clamp(0.625rem, 0.85vw, 0.8rem);
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease 0s, max-height 0.3s ease 0s, color 0.3s ease;
}

.ds-proj-switch.is-active .ds-proj-switch-name {
  opacity: 1;
  max-height: 2rem;
  color: var(--ar-white);
  transition-delay: 0.2s;
}

.ds-proj-switch-all {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1rem, 2vw, 2rem);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}

.ds-proj-switch-all:hover {
  color: var(--ar-white);
  background: rgba(255,255,255,0.04);
}

/* Progress Bar Autoplay */
.ds-proj-switch-prog {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--ar-accent);
  pointer-events: none;
}

.ds-proj-switch.is-active .ds-proj-switch-prog {
  animation: projProg var(--proj-duration, 5s) linear forwards;
}

/* Pause autoplay on hover over the bar */
.ds-proj-switcher:hover .ds-proj-switch.is-active .ds-proj-switch-prog {
  animation-play-state: paused;
}

@keyframes projProg {
  from { width: 0%; }
  to   { width: 100%; }
}

@media (max-width: 768px) {
  .ds-proj-content {
    right: 5%;
    bottom: clamp(7rem, 22vw, 9rem);
  }

  .ds-proj-name {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .ds-proj-switcher {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .ds-proj-switcher::-webkit-scrollbar {
    display: none;
  }

  .ds-proj-switch {
    flex: 0 0 auto;
    min-width: 120px;
  }

  .ds-proj-switch-all {
    flex: 0 0 auto;
  }
}

/* ── Global Custom Cursor: Dot + Ring ── */
@media (pointer: fine) {
  * {
    cursor: none !important;
  }

  .cur-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--ar-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.25s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.25s ease,
                opacity 0.25s ease;
  }

  .cur-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 2px solid var(--ar-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.25s ease,
                background 0.3s ease,
                opacity 0.25s ease;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Label im Ring (Pfeil-Icon) */
  .cur-label {
    font-size: 0;
    opacity: 0;
    color: var(--ar-accent);
    font-weight: 600;
    pointer-events: none;
    transition: font-size 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s ease,
                transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(1px, -1px) rotate(-45deg) scale(0.5);
    line-height: 1;
  }

  /* Hover auf interaktive Elemente (allgemein) → Ring wächst, Dot verschwindet */
  .cur-dot.is-hover {
    width: 0;
    height: 0;
    opacity: 0;
  }

  .cur-ring.is-hover {
    width: 60px;
    height: 60px;
    border-color: var(--ar-accent);
    opacity: 0.8;
    background: rgba(233, 32, 79, 0.08);
  }

  /* Hover auf Links → Ring noch größer + Pfeil-Label erscheint */
  .cur-ring.is-link {
    width: 80px;
    height: 80px;
    border-color: var(--ar-accent);
    opacity: 1;
    background: rgba(233, 32, 79, 0.12);
    mix-blend-mode: normal;
  }

  .cur-ring.is-link .cur-label {
    font-size: 1.25rem;
    opacity: 1;
    transform: translate(1px, -1px) rotate(0deg) scale(1);
  }

  /* Klick-Feedback */
  .cur-dot.is-click {
    width: 6px;
    height: 6px;
  }

  .cur-ring.is-click {
    width: 35px;
    height: 35px;
    opacity: 0.3;
  }

  .cur-ring.is-link.is-click {
    width: 70px;
    height: 70px;
    opacity: 0.6;
  }

  .cur-ring.is-link.is-click .cur-label {
    transform: translate(1px, -1px) rotate(0deg) scale(0.85);
  }
}

/* Tablet: etwas kleinere Karten */
@media (min-width: 768px) and (max-width: 1023px) {
  .ds-hscroll-card {
    width: clamp(300px, 50vw, 420px);
  }

  .ds-hscroll-track {
    padding-left: clamp(3rem, 30vw, 30vw);
  }

  .ds-hscroll-header {
    top: clamp(2rem, 4vw, 3rem);
  }
}

/* Mobile: Sticky Horizontal Scroll bleibt, nur Größen angepasst */
@media (max-width: 767px) {
  .ds-hscroll-header {
    top: clamp(1.5rem, 4vw, 2.5rem);
    width: 90%;
  }

  .ds-hscroll-track {
    padding-top: clamp(9rem, 18vw, 13rem);
    padding-left: clamp(1.25rem, 5vw, 5vw);
    gap: 1rem;
  }

  .ds-hscroll-card {
    width: 75vw;
    min-width: 260px;
  }

  .ds-hscroll-title {
    color: var(--ar-white);
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .ds-hscroll-tag {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.625rem;
  }

  .ds-hscroll-info {
    padding: 0.75rem 0 0;
  }

  .ds-hscroll-cta-card {
    min-height: 180px;
  }

  .ds-hscroll-cta-inner {
    padding: 2rem 1.5rem;
  }

  .ds-hscroll-cta-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
}



/* 9D – Asymmetric Grid (1 groß + 2 klein) */
.ds-projects-asymmetric {
  background: var(--ar-black);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-projects-asymmetric-header {
  max-width: 1200px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.ds-projects-asymmetric-header .ds-eyebrow {
  color: var(--ar-accent);
}

.ds-projects-asymmetric-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ar-white);
  letter-spacing: -0.03em;
}

.ds-projects-asym-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  height: clamp(500px, 70vh, 700px);
}

.ds-project-asym-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
}

.ds-project-asym-item:first-child {
  grid-row: 1 / 3;
}

.ds-project-asym-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ds-project-asym-item:hover img {
  transform: scale(1.05);
}

.ds-project-asym-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  z-index: 1;
}

.ds-project-asym-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.ds-project-asym-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.375rem;
}

.ds-project-asym-title {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: var(--ar-white);
  letter-spacing: -0.02em;
}

.ds-project-asym-item:first-child .ds-project-asym-title {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 767px) {
  .ds-projects-asym-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    height: auto;
  }

  .ds-project-asym-item {
    min-height: 220px;
  }

  .ds-project-asym-item:first-child {
    grid-row: auto;
    min-height: 300px;
  }
}



/* 9B NEU – Fullbleed Stacking (scroll übereinander) */
.ds-projects-stack {
  background: var(--ar-black);
}

.ds-projects-stack-list {
  display: flex;
  flex-direction: column;
  /* no gap – items overlap via sticky positioning */
}

.ds-project-stack-item {
  position: sticky;
  top: calc(var(--stack-i, 0) * 2.5rem);
  z-index: calc(var(--stack-i, 0) + 1);
  display: block;
  text-decoration: none;
  height: 85vh;
  min-height: 420px;
  overflow: hidden;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.45);
}

.ds-project-stack-img {
  position: absolute;
  inset: 0;
}

.ds-project-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.ds-project-stack-item:hover .ds-project-stack-img img {
  transform: scale(1.04);
}

.ds-project-stack-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}

.ds-project-stack-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem) 5%;
}

.ds-project-stack-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.ds-project-stack-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--ar-white);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.ds-project-stack-cta {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ar-white);
  padding-bottom: 0.25em;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s;
}

.ds-project-stack-item:hover .ds-project-stack-cta {
  border-color: var(--ar-white);
}

@media (max-width: 767px) {
  .ds-project-stack-item {
    height: 70vh;
    min-height: 350px;
    /* reduce sticky offset on mobile */
    top: calc(var(--stack-i, 0) * 1.5rem);
  }
}


/* 9C NEU – Case Karten mit Nummer */
.ds-projects-cases {
  background: var(--ar-lightgray);
  padding: clamp(5rem, 10vw, 8rem) 5%;
}

.ds-projects-cases-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.ds-project-case {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  text-decoration: none;
  border-top: 1px solid var(--ar-gray);
  padding: clamp(2rem, 3vw, 3rem) 0;
  transition: padding-left 0.3s ease;
}

@media (min-width: 768px) {
  .ds-project-case {
    grid-template-columns: 80px 200px 1fr;
  }
}

.ds-project-case:last-child {
  border-bottom: 1px solid var(--ar-gray);
}

.ds-project-case:hover {
  padding-left: 1rem;
}

.ds-project-case-num {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 100;
  color: var(--ar-accent);
  line-height: 1;
  letter-spacing: -0.03em;
  padding-right: 1.5rem;
}

.ds-project-case-img {
  overflow: hidden;
  display: none;
}

@media (min-width: 768px) {
  .ds-project-case-img {
    display: block;
    margin-right: clamp(1.5rem, 3vw, 3rem);
  }
}

.ds-project-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 10;
}

.ds-project-case-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ds-project-case-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  color: var(--ar-black);
  margin-bottom: 0.5rem;
}

.ds-project-case-desc {
  font-size: 0.9375rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.ds-project-case-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ar-accent);
}


/* ======================================
   14. BILD-GALERIE – NEUE VARIANTEN
   ====================================== */

/* 14A NEU – Cinematic Fullbleed */
.ds-gallery-cinema {
  background: var(--ar-black);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ds-gallery-cinema-grid {
  display: flex;
  flex-direction: column;
}

.ds-gallery-cinema-item {
  width: 100%;
  overflow: hidden;
}

.ds-gallery-cinema-item img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.ds-gallery-cinema-caption {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.5rem 5% clamp(3rem, 6vw, 5rem);
}

.ds-gallery-cinema-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ar-accent);
}

.ds-gallery-cinema-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}


/* 14B NEU – Staggered Offset */
.ds-gallery-stagger {
  background: var(--ar-lightgray);
  padding: clamp(4rem, 8vw, 6rem) 5%;
}

.ds-gallery-stagger-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ds-gallery-stagger-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 3vw, 3rem);
  }
}

.ds-gallery-stagger-col {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .ds-gallery-stagger-col--right {
    padding-top: clamp(4rem, 8vw, 8rem);
  }
}

.ds-gallery-stagger-item {
  overflow: hidden;
}

.ds-gallery-stagger-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ds-gallery-stagger-item:hover img {
  transform: scale(1.03);
}

.ds-gallery-stagger-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(0,0,0,0.4);
  margin-top: 0.75rem;
  line-height: 1.4;
}


/* 14C NEU – Highlight + Detail-Strip */
.ds-gallery-highlight {
  background: var(--ar-white);
  padding: clamp(4rem, 8vw, 6rem) 5%;
}

.ds-gallery-highlight-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ds-gallery-highlight-main {
  overflow: hidden;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.ds-gallery-highlight-main img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.ds-gallery-highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
}

.ds-gallery-highlight-thumb {
  overflow: hidden;
}

.ds-gallery-highlight-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ds-gallery-highlight-thumb:hover img {
  transform: scale(1.05);
}


/* ======================================
   16. NÄCHSTES PROJEKT – NEUE VARIANTEN
   ====================================== */

/* Shared Label */
.ds-next-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
}

/* 16A NEU – Marquee Projekt-Teaser */
.ds-next-marquee {
  background: var(--ar-black);
  overflow: hidden;
}

.ds-next-marquee-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: clamp(3rem, 6vw, 5rem) 5%;
}

.ds-next-marquee .ds-next-label {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.ds-next-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  animation: ds-marquee-scroll 15s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ds-next-marquee-name {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ar-white);
  flex-shrink: 0;
  transition: color 0.3s;
}

.ds-next-marquee-link:hover .ds-next-marquee-name {
  color: var(--ar-accent);
}

.ds-next-marquee-arrow {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}


/* 16B NEU – Prev/Next Navigation */
.ds-next-nav {
  background: var(--ar-lightgray);
}

.ds-next-nav-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ds-next-nav-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ds-next-nav-item {
  display: flex;
  flex-direction: column;
  padding: clamp(3rem, 6vw, 5rem) 5%;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ds-next-nav-item:hover {
  background: var(--ar-white);
}

.ds-next-nav-next {
  border-left: 1px solid var(--ar-gray);
  text-align: right;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .ds-next-nav-next {
    border-left: none;
    border-top: 1px solid var(--ar-gray);
  }
}

.ds-next-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.75rem;
}

.ds-next-nav-name {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ar-black);
  transition: color 0.3s;
}

.ds-next-nav-item:hover .ds-next-nav-name {
  color: var(--ar-accent);
}

.ds-next-nav-meta {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(0,0,0,0.45);
  margin-top: 0.5rem;
}

.ds-next-nav-branch {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ar-accent);
  margin-top: 0.4rem;
  opacity: 0.85;
}


/* 16C NEU – Bild-Preview mit Hover */
.ds-next-preview {
  background: var(--ar-white);
  padding: clamp(4rem, 8vw, 6rem) 5%;
  border-top: 1px solid var(--ar-gray);
}

.ds-next-preview-link {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
  text-decoration: none;
  align-items: center;
}

@media (min-width: 768px) {
  .ds-next-preview-link {
    grid-template-columns: 1fr auto;
  }
}

.ds-next-preview-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ds-next-preview-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ar-black);
  transition: color 0.3s;
  line-height: 1.05;
}

.ds-next-preview-link:hover .ds-next-preview-title {
  color: var(--ar-accent);
}

.ds-next-preview-cta {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(0,0,0,0.45);
}

.ds-next-preview-img {
  overflow: hidden;
  width: 100%;
  max-width: 320px;
}

.ds-next-preview-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ds-next-preview-link:hover .ds-next-preview-img img {
  transform: scale(1.04);
}


/* ══════════════════════════════════════════════════════════════
   UNIVERSELLES HEADER-THEME-SYSTEM
   Gesteuert über data-section-theme="dark"/"light" auf Sections.
   JS erkennt automatisch, über welcher Section der Header schwebt
   und setzt .header-over-dark auf den Header.
   ══════════════════════════════════════════════════════════════ */

/* ── Header über dunkler Sektion (nicht gescrollt) ────────── */
.header.header-over-dark:not(.header-scrolled) .logo-dark {
  opacity: 0;
}

.header.header-over-dark:not(.header-scrolled) .logo-light {
  opacity: 1;
}

.header.header-over-dark:not(.header-scrolled) .hamburger-line {
  background: var(--ar-white);
}

.header.header-over-dark:not(.header-scrolled) .header-lang-btn {
  color: rgba(255,255,255,0.5);
}

.header.header-over-dark:not(.header-scrolled) .header-lang-btn.is-active {
  color: var(--ar-white);
}

.header.header-over-dark:not(.header-scrolled) .header-divider {
  color: rgba(255,255,255,0.2);
}

/* ── Header gescrollt + über dunkler Sektion ────────── */
.header-scrolled.header-over-dark {
  background: var(--ar-black);
  box-shadow: none;
}

.header-scrolled.header-over-dark .logo-dark {
  opacity: 0;
}

.header-scrolled.header-over-dark .logo-light {
  opacity: 1;
}

.header-scrolled.header-over-dark .hamburger-line {
  background: var(--ar-white);
}

.header-scrolled.header-over-dark .header-lang-btn {
  color: rgba(255,255,255,0.5);
}

.header-scrolled.header-over-dark .header-lang-btn.is-active {
  color: var(--ar-white);
}

.header-scrolled.header-over-dark .header-divider {
  color: rgba(255,255,255,0.2);
}

/* Header CTA: gescrollt + über dunkler Sektion → invertieren */
.header-scrolled.header-over-dark .header-cta {
  background: var(--ar-white);
  color: var(--ar-black);
}

.header-scrolled.header-over-dark .header-cta:hover {
  background: var(--ar-accent);
  color: var(--ar-white);
}

/* ── Menü offen: IMMER zurücksetzen (egal welche Seite) ───── */
.menu-open .header .logo-dark,
.menu-open .header .logo-light {
  opacity: 0 !important;
  pointer-events: none;
}

.menu-open .header .hamburger-line {
  background: var(--ar-black) !important;
}

.menu-open .header .header-lang-btn {
  color: var(--ar-gray) !important;
}

.menu-open .header .header-lang-btn.is-active {
  color: var(--ar-black) !important;
}

.menu-open .header .header-divider {
  color: var(--ar-gray) !important;
}


/* ══════════════════════════════════════════════════════════════
   KONTAKT-SEITE – Split-Screen
   Header-Override: Logo weiß (links über schwarz), aber
   Hamburger + Lang bleiben dunkel (rechts über hellem Bereich)
   ══════════════════════════════════════════════════════════════ */

/* Split-Layout: Hamburger + Lang IMMER dunkel (rechts über hell) */
.page-kontakt .header.header-over-dark:not(.header-scrolled) .hamburger-line {
  background: var(--ar-black);
}

.page-kontakt .header.header-over-dark:not(.header-scrolled) .header-lang-btn {
  color: rgba(10,10,10,0.5);
}

.page-kontakt .header.header-over-dark:not(.header-scrolled) .header-lang-btn.is-active {
  color: var(--ar-black);
}

.page-kontakt .header.header-over-dark:not(.header-scrolled) .header-divider {
  color: rgba(10,10,10,0.2);
}

/* Mobile: alles untereinander → alles weiß (komplett dunkel) */
@media (max-width: 899px) {
  .page-kontakt .header.header-over-dark:not(.header-scrolled) .hamburger-line {
    background: var(--ar-white);
  }

  .page-kontakt .header.header-over-dark:not(.header-scrolled) .header-lang-btn {
    color: rgba(255,255,255,0.5);
  }

  .page-kontakt .header.header-over-dark:not(.header-scrolled) .header-lang-btn.is-active {
    color: var(--ar-white);
  }

  .page-kontakt .header.header-over-dark:not(.header-scrolled) .header-divider {
    color: rgba(255,255,255,0.2);
  }
}

.ds-split-kontakt {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (min-width: 900px) {
  .ds-split-kontakt {
    flex-direction: row;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
  }
}

/* ── Linke Seite: Schwarz ────────────────── */
.ds-split-left {
  background: var(--ar-black);
  flex: none;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vw, 9rem) clamp(1.25rem, 5vw, 5rem) clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .ds-split-left {
    width: 50%;
    flex: 1;
    padding: clamp(10rem, 14vw, 14rem) clamp(3rem, 5vw, 5rem) clamp(4rem, 6vw, 6rem);
  }
}

.ds-split-left-inner {
  width: 100%;
  max-width: 520px;
}

@media (min-width: 900px) {
  .ds-split-left-inner {
    margin-left: auto;
  }
}

.ds-split-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ar-accent);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ds-split-h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ar-white);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ds-split-h1 em {
  font-style: italic;
  font-weight: 100;
  color: var(--ar-accent);
}

/* Kontakt-Infos auf der schwarzen Seite */
.ds-split-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ds-split-info-block {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.ds-split-info-block:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ds-split-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.4rem;
}

.ds-split-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ds-split-link:hover {
  color: var(--ar-accent);
}

.ds-split-address {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.ds-split-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ds-split-social span {
  color: rgba(255,255,255,0.2);
  font-size: 0.875rem;
}

.ds-split-social a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ds-split-social a:hover {
  color: var(--ar-accent);
}

/* ── Rechte Seite: Weiß ────────────────── */
.ds-split-right {
  background: var(--ar-white);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}

@media (min-width: 900px) {
  .ds-split-right {
    width: 50%;
    flex: 1;
    padding: clamp(10rem, 14vw, 14rem) clamp(3rem, 5vw, 5rem) clamp(4rem, 6vw, 6rem);
  }
}

.ds-split-right-inner {
  width: 100%;
  max-width: 520px;
}

.ds-split-form-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.35);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ── Kontaktformular ────────────────── */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kontakt-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.kontakt-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.kontakt-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ar-muted);
}

.kontakt-form-group input,
.kontakt-form-group select,
.kontakt-form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ar-black);
  background: var(--ar-white);
  border: 1.5px solid var(--ar-gray);
  border-radius: 0;
  transition: border-color 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.kontakt-form-group input:focus,
.kontakt-form-group select:focus,
.kontakt-form-group textarea:focus {
  border-color: var(--ar-accent);
}

.kontakt-form-group input::placeholder,
.kontakt-form-group textarea::placeholder {
  color: rgba(0,0,0,0.28);
}

.kontakt-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.kontakt-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* iOS Safari: font-size < 16px triggers auto-zoom on focus */
@media (max-width: 899px) {
  .kontakt-form-group input,
  .kontakt-form-group select,
  .kontakt-form-group textarea {
    font-size: 1rem;
  }
}

/* Formular Bottom (Checkbox + Submit) */
.kontakt-form-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

/* Submit Loading */
.kontakt-submit.is-sending {
  opacity: 0.5;
  pointer-events: none;
}

/* Erfolgs-Message */
.kontakt-success {
  text-align: left;
}

.kontakt-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ar-accent);
  color: var(--ar-accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.kontakt-success-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ar-black);
  margin-bottom: 1rem;
}

.kontakt-success-text {
  font-size: 0.9375rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
}

.kontakt-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ar-muted);
  line-height: 1.5;
  cursor: pointer;
}

.kontakt-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--ar-accent);
  cursor: pointer;
}

.kontakt-checkbox a {
  color: var(--ar-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kontakt-checkbox a:hover {
  color: var(--ar-accent);
}

/* Submit */
.kontakt-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ar-white);
  background: var(--ar-black);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.kontakt-submit:hover {
  background: var(--ar-accent);
}

.kontakt-submit span {
  transition: transform 0.2s ease;
}

.kontakt-submit:hover span {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .kontakt-submit {
    width: 100%;
    justify-content: center;
  }

  .kontakt-form-bottom {
    gap: 1.25rem;
  }
}

/* Static row (no hover/arrow) */
.ds-leistung-row--static {
  cursor: default;
}

.ds-leistung-row--static:hover {
  background: transparent;
}


/* ======================================
   BLOG ARTICLE PAGE
   ====================================== */

/* ── Reading Progress Bar ── */
.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--ar-accent);
  z-index: 10000;
  transition: none;
  pointer-events: none;
}

/* ── Article Hero ── */
.article-hero {
  padding: clamp(8rem, 15vw, 12rem) 5% clamp(2rem, 4vw, 3rem);
}

.article-hero-inner {
  max-width: 780px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-xs);
  color: rgba(10,10,10,0.4);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-breadcrumb a {
  color: rgba(10,10,10,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.article-breadcrumb a:hover {
  color: var(--ar-accent);
}

.article-breadcrumb-sep {
  font-size: 0.625rem;
}

.article-tag {
  display: inline-block;
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ar-accent);
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.article-hero-excerpt {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(10,10,10,0.6);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  font-size: var(--font-xs);
  color: rgba(10,10,10,0.4);
  margin-bottom: 1.5rem;
}

.article-meta-bar span {
  white-space: nowrap;
}

.article-meta-sep {
  display: none;
}

@media (min-width: 768px) {
  .article-meta-sep {
    display: inline;
  }
}

/* ── Hero Image ── */
.article-hero-img {
  margin: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  object-fit: cover;
}

/* ── Article Layout ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr 340px;
    gap: 4rem;
  }
}

/* ── Article Body Typography ── */
.article-body {
  counter-reset: chapter;
}

.article-body p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(10,10,10,0.82);
  max-width: 65ch;
}

.article-body strong {
  font-weight: 700;
  color: var(--ar-black);
}

.article-body a {
  color: var(--ar-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.article-body a:hover {
  color: var(--ar-black);
}

.article-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
}

.article-body figure {
  margin: 2rem 0;
}

.article-body figcaption {
  font-size: var(--font-xs);
  color: rgba(10,10,10,0.35);
  margin-top: 0.5rem;
  font-style: italic;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
}

.article-body th,
.article-body td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--ar-gray);
}

.article-body th {
  font-weight: 700;
  font-size: var(--font-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10,10,10,0.45);
}

/* ── Chapter Numbers on H2 ── */
.article-body h2 {
  counter-increment: chapter;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  margin-top: 4rem;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  scroll-margin-top: 5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.article-body h2::before {
  content: counter(chapter, decimal-leading-zero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--ar-accent);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.article-body h3 {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  scroll-margin-top: 5rem;
}

/* ── Section Dividers ── */
.article-section-divider {
  border: none;
  height: 1px;
  background: var(--ar-gray);
  margin: 4rem 0 0;
  max-width: 120px;
}

/* ── Lists ── */
.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.article-body li {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: rgba(10,10,10,0.82);
}

.article-body ul {
  list-style: none;
  padding-left: 0;
}

.article-body ul li {
  padding-left: 1.5rem;
  position: relative;
}

.article-body ul li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--ar-accent);
  font-weight: 700;
}

/* ── Text Highlighter ── */
.highlight {
  background: linear-gradient(to top, rgba(233,32,79,0.12) 40%, transparent 40%);
  padding: 0 0.125em;
  text-decoration: none;
}

/* ── Pull Quotes ── */
.article-pullquote {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 2px solid var(--ar-black);
  border-bottom: 1px solid var(--ar-gray);
}

.article-pullquote p {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem) !important;
  font-weight: 600;
  line-height: 1.35 !important;
  color: var(--ar-black) !important;
  max-width: 600px !important;
  letter-spacing: -0.01em;
}

.article-pullquote cite {
  display: block;
  font-size: var(--font-xs);
  font-style: normal;
  font-weight: 600;
  color: rgba(10,10,10,0.35);
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Full-Bleed Images ── */
.article-img-full {
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.article-img-full img {
  width: 100%;
  max-height: 450px;
  display: block;
  object-fit: cover;
}

.article-img-full figcaption {
  max-width: 720px;
  margin: 0.75rem 0 0;
  font-size: var(--font-xs);
  color: rgba(10,10,10,0.35);
  font-style: italic;
}

/* ── Big Number Stats ── */
.article-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--ar-gray);
  border-bottom: 1px solid var(--ar-gray);
}

@media (max-width: 600px) {
  .article-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.article-stat-number {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ar-black);
  margin-bottom: 0.375rem;
}

.article-stat-number .stat-accent {
  color: var(--ar-black);
}

.article-stat-label {
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(10,10,10,0.4);
  line-height: 1.4;
}

/* ── Compare Cards ── */
.article-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 2.5rem 0;
  background: var(--ar-gray);
}

@media (max-width: 700px) {
  .article-compare {
    grid-template-columns: 1fr;
  }
}

.compare-card {
  background: var(--ar-white);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.compare-card--highlight {
  background: var(--ar-black);
  color: var(--ar-white);
}

.compare-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.compare-title {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.compare-price {
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--ar-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.compare-card--highlight .compare-price {
  color: rgba(250,250,250,0.5);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  padding: 0.375rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.06);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.compare-card--highlight .compare-list li {
  border-bottom-color: rgba(250,250,250,0.08);
  color: rgba(250,250,250,0.75);
}

.compare-check {
  color: var(--ar-accent);
  flex-shrink: 0;
  font-weight: 700;
}

.compare-x {
  color: rgba(10,10,10,0.2);
  flex-shrink: 0;
}

.compare-card--highlight .compare-x {
  color: rgba(250,250,250,0.2);
}

.compare-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--ar-accent);
  color: white;
  padding: 0.2em 0.6em;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.article-body .compare-list li {
  padding-left: 0;
}

.article-body .compare-list li::before {
  content: none;
}

/* ── Key Takeaway ── */
.article-takeaway {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--ar-black);
  color: var(--ar-white);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.article-takeaway-icon {
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.5;
}

.article-takeaway p {
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.55 !important;
  color: var(--ar-white) !important;
  margin-bottom: 0 !important;
}

.article-takeaway .takeaway-label {
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ar-accent);
  display: block;
  margin-bottom: 0.25rem;
}

/* ── Inline TOC ── */
.article-toc {
  background: var(--ar-lightgray);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.article-toc-title {
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(10,10,10,0.35);
  margin-bottom: 0.75rem;
}

.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.article-toc li {
  counter-increment: toc;
  margin-bottom: 0.375rem;
}

.article-toc li::before {
  content: counter(toc, decimal-leading-zero) " ";
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--ar-accent);
  margin-right: 0.5rem;
}

.article-toc a {
  font-size: 0.9375rem;
  color: var(--ar-black);
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--ar-accent);
}

/* ── Infobox ── */
.article-infobox {
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-left: 3px solid var(--ar-accent);
  background: rgba(233,32,79,0.04);
}

.article-infobox--info {
  border-left-color: var(--ar-black);
  background: rgba(10,10,10,0.025);
}

.article-infobox-label {
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.375rem;
  color: var(--ar-accent);
}

.article-infobox--info .article-infobox-label {
  color: var(--ar-black);
}

.article-infobox p {
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
  color: rgba(10,10,10,0.8) !important;
}

/* ── Summary Box (Auf einen Blick) ── */
.article-summary {
  margin: 2.5rem 0 2.5rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 24px rgba(10,10,10,0.04), 0 1px 2px rgba(10,10,10,0.03);
  padding: 0;
  overflow: hidden;
}

.article-summary-header {
  background: transparent;
  color: var(--ar-black);
  padding: 1rem 1.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--ar-accent);
}

.article-summary-body {
  padding: 1.25rem 1.5rem;
}

.article-summary-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-summary-body li {
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.06);
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  color: rgba(10,10,10,0.8);
}

.article-body .article-summary-body ul li::before {
  content: none;
  padding: 0;
}

.article-body .article-summary-body ul li {
  padding-left: 0;
}

.article-summary-body li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-icon {
  color: var(--ar-accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.article-summary-body strong {
  font-weight: 700;
  color: var(--ar-black);
}

.article-summary-source {
  display: block;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(10,10,10,0.06);
  font-size: 0.6875rem;
  color: rgba(10,10,10,0.35);
}

/* First child in article-body: remove top margin so it aligns with sidebar */
.article-body > .article-summary:first-child {
  margin-top: 0;
}

/* ── Definition Box (GEO) ── */
.article-definition {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--ar-lightgray);
  border-left: 3px solid var(--ar-black);
}

.article-definition-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(10,10,10,0.35);
  margin-bottom: 0.5rem;
}

.article-definition-term {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.article-definition p {
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
  color: rgba(10,10,10,0.75) !important;
  margin-bottom: 0 !important;
}

/* ── Sources and Methodology ── */
.article-sources {
  margin-top: 3rem;
  padding: 2rem 1.75rem;
  background: var(--ar-lightgray);
  border-top: 2px solid var(--ar-black);
}

.article-sources-title {
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.article-sources-subtitle {
  font-size: 0.6875rem;
  color: rgba(10,10,10,0.4);
  margin-bottom: 1rem;
}

.article-sources-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-sources-list li {
  font-size: 0.8125rem !important;
  line-height: 1.55 !important;
  padding: 0.4rem 0;
  color: rgba(10,10,10,0.6);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.article-body .article-sources-list li::before {
  content: none;
  padding: 0;
}

.article-body .article-sources-list li {
  padding-left: 0;
}

.source-num {
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(10,10,10,0.3);
  flex-shrink: 0;
  min-width: 1.25rem;
}

.article-sources-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10,10,10,0.08);
  font-size: 0.75rem;
  color: rgba(10,10,10,0.4);
  line-height: 1.5;
}

/* ── Newsletter Box ── */
.article-newsletter {
  background: var(--ar-black);
  color: var(--ar-white);
  padding: clamp(2rem, 4vw, 3rem);
  margin: 3rem 0;
}

.article-newsletter-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.article-newsletter p {
  font-size: 0.9375rem !important;
  color: rgba(250,250,250,0.6) !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.6;
}

.article-newsletter-form {
  display: flex;
  gap: 0;
}

.article-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(250,250,250,0.15);
  background: rgba(250,250,250,0.06);
  color: var(--ar-white);
  font-family: inherit;
  font-size: 0.9375rem;
  outline: none;
  border-radius: 0;
}

.article-newsletter-form input[type="email"]::placeholder {
  color: rgba(250,250,250,0.35);
}

.article-newsletter-form input[type="email"]:focus {
  border-color: var(--ar-accent);
}

.article-newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: var(--ar-accent);
  color: var(--ar-white);
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  border-radius: 0;
}

.article-newsletter-form button:hover {
  background: #d01a45;
}

.article-newsletter-hint {
  display: block;
  font-size: var(--font-xs);
  color: rgba(250,250,250,0.35);
  margin-top: 0.75rem;
}

.article-newsletter-hint a {
  color: rgba(250,250,250,0.5);
}

/* ── FAQ Section ── */
.article-faq {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--ar-gray);
}

.article-faq h2 {
  margin-top: 0;
}

.article-faq h2::before {
  content: none;
}

.article-faq-item {
  border-bottom: 1px solid var(--ar-gray);
}

.article-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ar-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.article-faq-q:hover {
  color: var(--ar-accent);
}

.article-faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.article-faq-item.is-open .article-faq-icon {
  transform: rotate(45deg);
}

.article-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0;
}

.article-faq-item.is-open .article-faq-a {
  max-height: 600px;
  padding: 0 0 1.25rem;
}

.article-faq-a p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(10,10,10,0.75);
}

/* ── Soft CTA ── */
.article-soft-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--ar-lightgray);
}

.article-soft-cta p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0.75rem !important;
}

.article-soft-cta a {
  font-weight: 600;
  color: var(--ar-accent);
  text-decoration: none;
}

.article-soft-cta a:hover {
  text-decoration: underline;
}

/* ── Sidebar: Glassmorphism Cards ── */
.article-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}

.sidebar-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 24px rgba(10,10,10,0.04), 0 1px 2px rgba(10,10,10,0.03);
  padding: 1.75rem;
}

.sidebar-card-title {
  font-size: 0.9375rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--ar-accent);
}

/* Sidebar TOC */
.sidebar-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid rgba(10,10,10,0.06);
  position: relative;
}

.sidebar-toc li {
  margin: 0;
}

.sidebar-toc a {
  display: block;
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(10,10,10,0.4);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.45;
  border-left: 2px solid transparent;
  margin-left: -2px;
}

.sidebar-toc a:hover {
  color: var(--ar-black);
}

.sidebar-toc a.is-active {
  color: var(--ar-black);
  font-weight: 600;
  border-left-color: var(--ar-accent);
}

/* Sidebar Share */
.sidebar-share {
  display: flex;
  gap: 0.5rem;
}

.sidebar-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10,10,10,0.1);
  background: var(--ar-lightgray);
  cursor: pointer;
  color: rgba(10,10,10,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.sidebar-share-btn:hover {
  border-color: var(--ar-black);
  color: var(--ar-black);
  background: var(--ar-white);
}

.sidebar-share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Sidebar Author */
.sidebar-author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.sidebar-author-avatar {
  width: 48px;
  height: 48px;
  background: var(--ar-black);
  color: var(--ar-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.sidebar-author-role {
  font-size: 0.75rem;
  color: rgba(10,10,10,0.45);
  line-height: 1.35;
}

/* Mobile Share */
.article-share--mobile {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
}

.article-share--mobile .sidebar-share-btn {
  width: 40px;
  height: 40px;
}

@media (min-width: 1024px) {
  .article-share--mobile {
    display: none;
  }
}

/* ── Related Articles (Black Section) – Editorial Style ── */
.related-section {
  background: var(--ar-black);
  color: var(--ar-white);
  padding: clamp(4rem, 8vw, 6rem) 5%;
  margin-top: 4rem;
}

.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related-label {
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ar-accent);
  margin-bottom: 0.75rem;
}

.related-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 500px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: none;
  margin: 0;
}

@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3.5rem;
  }
}

.related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
}

.related-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: rgba(250,250,250,0.06);
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.related-card:hover .related-card-img img {
  transform: scale(1.03);
}

.related-card-text {
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  padding: 2.75rem 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

@media (max-width: 639px) {
  .related-card-text {
    padding: 1.75rem 2rem;
  }
}

.related-card:hover .related-card-text {
  border-color: rgba(255,255,255,0.18);
}

.related-card-title {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ar-white);
  margin-bottom: 0.75rem;
  transition: color 0.25s ease;
}

.related-card:hover .related-card-title {
  color: var(--ar-accent);
}

.related-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250,250,250,0.4);
  margin-bottom: 1rem;
}

.related-card-meta span + span::before {
  content: '\00B7';
  margin: 0 0.4rem;
}

.related-card-accent {
  width: 2.25rem;
  height: 2px;
  background: var(--ar-accent);
  border: none;
  margin: 0 0 1rem;
}

.related-card-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ar-accent);
  margin-top: auto;
  transition: letter-spacing 0.3s ease;
}

.related-card:hover .related-card-more {
  letter-spacing: 0.04em;
}

.related-all {
  display: inline-block;
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ar-white);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--ar-accent);
  transition: border-color 0.2s;
}

.related-all:hover {
  border-bottom-color: var(--ar-white);
}


/* ═══════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════ */

.cb {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 0 5%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
  pointer-events: none;
}

.cb--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cb--hiding {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cb-inner {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--ar-black);
  color: var(--ar-white);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cb-text {
  flex: 1;
  min-width: 0;
}

.cb-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--ar-accent);
}

.cb-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cb-link {
  color: var(--ar-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cb-link:hover {
  color: var(--ar-accent);
}

.cb-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cb-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0;
  transition: background 0.2s, transform 0.15s;
}

.cb-btn:hover {
  transform: translateY(-1px);
}

.cb-btn:active {
  transform: translateY(0);
}

.cb-btn--accept {
  background: var(--ar-accent);
  color: var(--ar-white);
}

.cb-btn--accept:hover {
  background: #d11a44;
}

.cb-btn--reject {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ar-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cb-btn--reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .cb-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem;
    gap: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 0;
  }

  .cb-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cb-btn {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1rem;
  }
}

/* Cookie-Settings Link im Footer */
.footer-cookie-link {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-cookie-link:hover {
  color: var(--ar-accent);
}
