/* =============================================
   LeanBite Consulting – styles.css  (black theme)
   ============================================= */

/* ─── Local Fonts: Mont (Display) ─── */
/* unicode-range limits Mont to Basic Latin only — umlauts/special chars fall through to Montserrat */
@font-face { font-family: 'Mont'; src: url('../fonts/mont/Mont-Trial-Heavy.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; unicode-range: U+0020-007E; }
@font-face { font-family: 'Mont'; src: url('../fonts/mont/Mont-Trial-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; unicode-range: U+0020-007E; }
@font-face { font-family: 'Mont'; src: url('../fonts/mont/Mont-Trial-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; unicode-range: U+0020-007E; }
@font-face { font-family: 'Mont'; src: url('../fonts/mont/Mont-Trial-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; unicode-range: U+0020-007E; }

/* ─── Local Fonts: Montserrat (Body + Headings) ─── */
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Montserrat'; src: url('../fonts/montserrat/Montserrat-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }

/* ─── Animatable blob properties (CSS Houdini @property) ─── */
@property --b1x { syntax: '<percentage>'; inherits: false; initial-value: 8%;   }
@property --b1y { syntax: '<percentage>'; inherits: false; initial-value: 10%;  }
@property --b2x { syntax: '<percentage>'; inherits: false; initial-value: 92%;  }
@property --b2y { syntax: '<percentage>'; inherits: false; initial-value: 88%;  }
@property --b3x { syntax: '<percentage>'; inherits: false; initial-value: 50%;  }
@property --b3y { syntax: '<percentage>'; inherits: false; initial-value: 45%;  }
@property --b1o { syntax: '<number>';     inherits: false; initial-value: 0.42; }
@property --b2o { syntax: '<number>';     inherits: false; initial-value: 0.34; }

/* ─── Brand Tokens ─── */
:root {
  --blue:        #337299;
  --blue-light:  #4A8AB7;
  --green:       #88B585;
  --green-light: #A8D0A5;

  /* Black theme surfaces */
  --bg:          #000000;
  --bg-soft:     #0a0a0a;
  --bg-card:     #0f0f0f;
  --bg-card-2:   #141414;
  --bg-elevated: #1a1a1a;

  /* Borders */
  --border:      rgba(255,255,255,0.07);
  --border-md:   rgba(255,255,255,0.11);
  --border-hi:   rgba(255,255,255,0.18);

  /* Text */
  --text:        rgba(255,255,255,0.92);
  --text-sub:    rgba(255,255,255,0.55);
  --text-muted:  rgba(255,255,255,0.45);

  /* Kept for backwards compat */
  --dark:        #000000;
  --dark-mid:    #080808;
  --white:       #ffffff;
  --gray-dark:   rgba(255,255,255,0.55);

  --gradient:    linear-gradient(135deg, #337299 0%, #88B585 100%);

  --font:         'Montserrat', sans-serif;
  --font-display: 'Mont', 'Montserrat', sans-serif;
  --nav-h: 72px;
  --section-pad: 100px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
.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; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 55% at var(--b1x) var(--b1y), rgba(51,114,153,var(--b1o)) 0%, transparent 100%),
    radial-gradient(ellipse 65% 50% at var(--b2x) var(--b2y), rgba(136,181,133,var(--b2o)) 0%, transparent 100%),
    radial-gradient(ellipse 50% 40% at var(--b3x) var(--b3y), rgba(74,138,183,0.24) 0%, transparent 100%);
  background-attachment: fixed;
  animation:
    blobMove1 11s ease-in-out         infinite alternate,
    blobMove2 15s ease-in-out   3s   infinite alternate,
    blobMove3  9s ease-in-out   5s   infinite alternate,
    blobFade1  7s ease-in-out   1s   infinite alternate,
    blobFade2 10s ease-in-out   4s   infinite alternate;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
  text-align: center;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }
address { font-style: normal; }

/* ─── Utilities ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--blue);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tag--light { background: var(--green); }
.tag--center { display: flex; justify-content: center; }

.h2 {
  font-family: var(--font);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  overflow-wrap: break-word;
}
.h2--center { text-align: center; }
.h2--light  { color: var(--white); }

.section-header { margin-bottom: 64px; text-align: center; }
.section-sub {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.70;
  color: var(--text-sub);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.section-sub--light { color: rgba(255,255,255,0.75); }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(51,114,153,0.4), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(255,255,255,0.16) 0%, transparent 55%);
  pointer-events: none;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(51,114,153,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
  filter: brightness(1.1);
}
.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.04);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  color: var(--white);
}
.btn--block { width: 100%; justify-content: center; }

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Keyframes ─── */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(74,138,183,0.5)) drop-shadow(0 0 40px rgba(74,138,183,0.2)); }
  50%       { filter: drop-shadow(0 0 28px rgba(136,181,133,0.6)) drop-shadow(0 0 60px rgba(136,181,133,0.25)); }
}
@keyframes heroLogoEntrance {
  0%   { opacity: 0; transform: scale(0.6) translateY(30px); filter: blur(20px) brightness(2); }
  60%  { opacity: 0.9; filter: blur(4px) brightness(1.3); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0) brightness(1); }
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes heroAnim {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(12px,-18px) scale(1.1); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 0.9; }
}
@keyframes badgeDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}

/* ─── Ambient blob animations ─── */
@keyframes blobMove1 {
  from { --b1x:  8%; --b1y: 10%; }
  to   { --b1x: 14%; --b1y: 17%; }
}
@keyframes blobMove2 {
  from { --b2x: 92%; --b2y: 88%; }
  to   { --b2x: 83%; --b2y: 79%; }
}
@keyframes blobMove3 {
  0%   { --b3x: 50%; --b3y: 45%; }
  50%  { --b3x: 58%; --b3y: 37%; }
  100% { --b3x: 42%; --b3y: 52%; }
}
@keyframes blobFade1 {
  from { --b1o: 0.42; }
  to   { --b1o: 0.16; }
}
@keyframes blobFade2 {
  from { --b2o: 0.34; }
  to   { --b2o: 0.12; }
}

/* ═══════════════════════════════════════
   NAVIGATION — Glow Menu
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0));
  padding-top: env(safe-area-inset-top, 0);
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.88)  0%,
    rgba(0,0,0,0.80) 20%,
    rgba(0,0,0,0.60) 45%,
    rgba(0,0,0,0.28) 70%,
    rgba(0,0,0,0.08) 88%,
    transparent      100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none;
}

.nav__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo-svg {
  width: 40px; height: 44px;
  object-fit: contain;
  transition: transform 0.3s;
}
.nav__logo:hover .nav__logo-svg { transform: scale(1.06); }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__name { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.nav__sub  { font-size: 0.55rem; font-weight: 300; letter-spacing: 0.22em; color: var(--green-light); margin-top: 2px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Sliding cursor nav (adapted from nav-header component) */
.nav__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* The pill container: tabs + sliding highlight live here */
.nav__tabs {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 5px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Each tab — Montserrat light, mix-blend-difference so text inverts over the white cursor */
.nav__tab {
  position: relative;
  z-index: 10;
  display: block;
  padding: 8px 16px;
  font-family: var(--font);        /* Montserrat */
  font-size: 0.76rem;
  font-weight: 400;                /* finer / lighter */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  mix-blend-mode: difference;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

/* Sliding highlight pill — white so mix-blend-difference inverts text on it */
.nav__cursor {
  position: absolute;
  z-index: 0;
  top: 5px;
  height: calc(100% - 10px);
  border-radius: 100px;
  background: #ffffff;
  pointer-events: none;
  opacity: 0;
  /* Spring physics matching Framer Motion's default spring */
  transition:
    left    0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    width   0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.2s  ease;
}

/* CTA button */
.nav__cta {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient);
  padding: 10px 20px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 16px rgba(51,114,153,0.4);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(51,114,153,0.16);
  filter: brightness(1.08);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }

/* ─── Aurora Background (adapted from Aceternity UI aurora-background.tsx) ─── */

/*
 * Structure mirrors the original React component:
 *   .hero__aurora      → "absolute inset-0 overflow-hidden" clip wrapper
 *   .hero__aurora-inner → "-inset-[10px] opacity-50 blur filter" aurora div
 *   ::after             → animated copy with mix-blend-difference
 *
 * Colors: original Tailwind blue-500/indigo-300/blue-300/violet-200/blue-400
 * with brand teal (#4A8AB7) and green (#88B585) woven in as accents.
 * background-attachment:fixed is intentionally omitted — it silently breaks
 * inside overflow:hidden in Chromium/WebKit; the 60s position animation
 * alone produces a beautiful, smooth aurora.
 */
.hero__aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;   /* clips the -10px bleed from inner element */
  pointer-events: none;
  z-index: 0;
}

.hero__aurora-inner {
  position: absolute;
  inset: -10px;       /* extends past edges to hide blurred borders */
  opacity: 0.5;
  will-change: transform;
  filter: blur(10px);

  /* Layer 1: black stripe mask (creates the "gap" between aurora bands)     */
  /* Layer 2: aurora color bands — original Tailwind palette + brand accents */
  background-image:
    repeating-linear-gradient(
      100deg,
      #000000 0%,   #000000 7%,
      transparent   10%, transparent 12%,
      #000000       16%
    ),
    repeating-linear-gradient(
      100deg,
      #3b82f6  10%,   /* blue-500    */
      #a5b4fc  15%,   /* indigo-300  */
      #93c5fd  20%,   /* blue-300    */
      #ddd6fe  25%,   /* violet-200  */
      #60a5fa  30%,   /* blue-400    */
      #4A8AB7  35%,   /* brand teal  */
      #88B585  40%    /* brand green */
    );
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;

  /* Radial mask: full intensity at top-right corner, fades toward bottom-left */
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
  mask-image:         radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}

/* Second animated layer — shifts position over 60 s, mix-blend-difference   */
/* creates the iridescent shimmer where this layer overlaps the static one.   */
.hero__aurora-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      100deg,
      #000000 0%,   #000000 7%,
      transparent   10%, transparent 12%,
      #000000       16%
    ),
    repeating-linear-gradient(
      100deg,
      #3b82f6  10%,
      #a5b4fc  15%,
      #93c5fd  20%,
      #ddd6fe  25%,
      #60a5fa  30%,
      #4A8AB7  35%,
      #88B585  40%
    );
  background-size: 200%, 100%;
  animation: aurora 60s linear infinite;
  mix-blend-mode: difference;
}

.hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(51,114,153,0.07)  1px, transparent 1px),
    linear-gradient(rgba(74,138,183,0.05)  1px, transparent 1px),
    linear-gradient(rgba(136,181,133,0.05) 1px, transparent 1px),
    linear-gradient(rgba(168,208,165,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51,114,153,0.07)  1px, transparent 1px),
    linear-gradient(90deg, rgba(74,138,183,0.05)  1px, transparent 1px),
    linear-gradient(90deg, rgba(136,181,133,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,208,165,0.04) 1px, transparent 1px);
  background-size:
    60px 240px, 60px 240px, 60px 240px, 60px 240px,
    240px 60px, 240px 60px, 240px 60px, 240px 60px;
  background-position:
    0 0,   0 60px,  0 120px, 0 180px,
    0 0, 60px 0, 120px 0, 180px 0;
}
.hero__blob { position: absolute; }
.hero__blob--3 { width: 300px; height: 300px; top: 20%; right: 3%; animation: blobFloat3 10s ease-in-out infinite; }
.hero__blob--4 { width: 350px; height: 350px; bottom: 15%; left: 6%; animation: blobFloat3 13s ease-in-out infinite reverse; }

.hero__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 24px;
}

.hero__anim {
  animation: heroAnim 0.65s ease-out both;
  animation-delay: var(--d, 0s);
}

/* ═══════════════════════════════════════
   INTRO (headline section below hero)
═══════════════════════════════════════ */
.intro {
  padding: 90px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0.88) 100%);
  text-align: center;
  position: relative;
  z-index: 2;
}
.intro::before,
.intro::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(51,114,153,0.16) 20%, rgba(51,114,153,0.16) 80%, transparent);
}
.intro::before { top: 0; }
.intro::after  { bottom: 0; }
.intro__h1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
  align-items: center;
}
.intro__phrase {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.08em;
  background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: phraseSlide 0.7s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: var(--d, 0s);
}
@keyframes phraseSlide {
  from { opacity: 0; transform: translateY(28px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}
.intro__line {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  display: block;
  text-align: center;
}
.intro__line--grad {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 8s ease infinite;
  margin-top: 1.2rem;
}
.intro__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--text-sub);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.intro__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.intro__stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  padding: 18px 28px;
  backdrop-filter: blur(8px);
}
.intro__stat { display: flex; flex-direction: column; gap: 2px; padding: 0 24px; text-align: center; }
.intro__stat:first-child { padding-left: 0; }
.intro__stat:last-child  { padding-right: 0; }
.intro__stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.intro__stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.intro__stat-divider { width: 1px; height: 40px; background: var(--border-md); flex-shrink: 0; }

/* ═══════════════════════════════════════
   BLOG PREVIEW
═══════════════════════════════════════ */
.blog-preview {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0.88) 100%);
  position: relative;
}
.blog-preview::before,
.blog-preview::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,138,183,0.16) 20%, rgba(74,138,183,0.16) 80%, transparent);
}
.blog-preview::before { top: 0; }
.blog-preview::after  { bottom: 0; }
.blog-preview__list {
  max-width: 780px;
  margin: 0 auto 48px;
}
.blog-preview__cta { text-align: center; }

.blog-card {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:first-child { border-top: 1px solid var(--border); }
.blog-card__row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s;
}
.blog-card__line {
  flex: 1;
  min-width: 20px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  margin-bottom: 5px;
  transition: border-color 0.3s;
}
.blog-card__date {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
  transition: color 0.3s;
}
.blog-card__desc {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.65;
  transition: color 0.3s;
}
.blog-card:hover .blog-card__title { color: var(--blue-light); }
.blog-card:hover .blog-card__date  { color: var(--green-light); }
.blog-card:hover .blog-card__line  { border-color: rgba(74,138,183,0.45); }
.blog-card:hover .blog-card__desc  { color: rgba(255,255,255,0.7); }

/* Hero logo */
.hero__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(74,138,183,0.22) 0%, transparent 65%);
  border-radius: 50%;
  animation: logoGlow 4s ease-in-out infinite;
}
.hero__logo-svg {
  width: 520px; height: 520px;
  object-fit: contain;
  animation:
    heroLogoEntrance 2.4s cubic-bezier(0.16,1,0.3,1) 0.3s both,
    logoFloat 6s ease-in-out 2.7s infinite,
    logoGlow  5s ease-in-out 2.7s infinite;
  transform-origin: center;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0.88) 100%);
  position: relative;
}
.about::before,
.about::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(136,181,133,0.16) 20%, rgba(136,181,133,0.16) 80%, transparent);
}
.about::before { top: 0; }
.about::after  { bottom: 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__lead {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: left;
}
.about__text {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 28px;
  text-align: left;
}
.about__credentials { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; max-width: 460px; }
.about__cred {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: var(--transition);
}
.about__cred:hover {
  border-color: rgba(74,138,183,0.35);
  background: var(--bg-card-2);
  transform: translateX(4px);
}
.about__cred-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white);
}
.about__cred-icon svg { width: 16px; height: 16px; stroke: currentColor; }
.about__cred-icon--gif {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  padding: 7px;
  background: rgba(51,114,153,0.18);
  border: 1px solid rgba(74,138,183,0.25);
  backdrop-filter: blur(8px);
}
.about__cred-icon--gif img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about__cred strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); text-align: left; }
.about__cred span   { display: block; font-size: 0.78rem; font-weight: 400; color: var(--text-sub); margin-top: 1px; text-align: left; }

.about__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.about__stat-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.about__stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.6); }
.about__stat-card--blue  { background: rgba(51,114,153,0.2); border-color: rgba(51,114,153,0.35); }
.about__stat-card--teal  { background: rgba(74,138,183,0.18); border-color: rgba(74,138,183,0.3); }
.about__stat-card--green { background: rgba(136,181,133,0.18); border-color: rgba(136,181,133,0.3); }
.about__stat-card--outline { background: var(--bg-card); }
.about__stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--white);
}
.about__stat-num span { font-size: 1.5rem; }
.about__stat-label { font-size: 0.78rem; font-weight: 600; color: var(--text-sub); line-height: 1.4; }
.about__stat-icon { font-size: 2rem; margin-bottom: 8px; }
.about__values { display: flex; flex-direction: column; gap: 10px; }
.about__value {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-sub);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.about__value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

/* ─── Profile Photo ─── */
.about__photo-wrap {
  position: relative;
  width: 340px;
  margin: 0 auto 36px;
  animation: float 8s ease-in-out infinite;
}
.about__photo-glow {
  position: absolute;
  inset: -14px;
  background: var(--gradient);
  border-radius: 6px;
  opacity: 0.28;
  filter: blur(22px);
  animation: float 8s ease-in-out infinite reverse;
  transition: opacity 0.35s;
}
.about__photo {
  width: 340px;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  opacity: 0.75;
  border: 2px solid rgba(255,255,255,0.12);
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}
.about__photo-wrap:hover .about__photo-glow { opacity: 0.45; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* ─── About: compact slim layout ─── */
.about__slim {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .about__slim {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .about__highlights,
  .about__credentials {
    margin-left: auto;
    margin-right: auto;
  }
}
.about__slim-body .h2 { margin-bottom: 20px; }

/* Bullet card – glassmorphism + same float as photo */
.about__bullets-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: float 6s ease-in-out 1.1s infinite;
}
.about__bullets-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.5;
}
@media (prefers-reduced-motion: reduce) {
  .about__bullets-card { animation: none; }
  .about__bullets-card::before { animation: none; }
}

.about__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.about__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.55;
}
.about__bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  margin-top: 7px;
}
@media (max-width: 760px) {
  .about__bullets li { justify-content: center; }
}

/* ─── Text-align exceptions (form, footer, left-aligned blocks) ─── */
.form-label,
.form-input,
.form-select,
.form-err,
.contact__text,
.contact__link,
.footer__link,
.footer__address,
.footer__nav,
.footer__copy,
.legal-content p,
.legal-content h2,
.legal-content li,
.blog-article__desc,
.blog-article__title,
.blog-article__meta { text-align: left; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0.88) 100%);
  position: relative;
}
.services::before,
.services::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(136,181,133,0.16) 20%, rgba(136,181,133,0.16) 80%, transparent);
}
.services::before { top: 0; }
.services::after  { bottom: 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.svc-card {
  background: rgba(15,15,15,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  background: var(--gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.8), 0 0 0 1px rgba(74,138,183,0.22), inset 0 1px 0 rgba(255,255,255,0.06); border-color: transparent; }
.svc-card:hover::before { opacity: 1; }
.svc-card__icon {
  width: 96px; height: 96px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(74,138,183,0.16) 0%, rgba(74,138,183,0.05) 100%);
  border: 1px solid rgba(74,138,183,0.18);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.svc-card:hover .svc-card__icon {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.06);
}
.svc-card__icon svg { width: 64px; height: 64px; }
.svc-card__title { font-family: var(--font); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.svc-card__text  { font-size: 0.9rem; font-weight: 400; color: var(--text-sub); line-height: 1.7; margin-bottom: 20px; text-align: left; }
.svc-card__tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(74,138,183,0.1);
  border: 1px solid rgba(74,138,183,0.18);
  padding: 4px 10px; border-radius: 100px;
}

.contracts {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  border: 1px solid var(--border);
}
.contracts__label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
}
.contracts__items { display: flex; align-items: center; flex-wrap: wrap; }
.contract-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 20px; text-align: center; border-radius: var(--radius);
  transition: background 0.25s;
}
.contract-item:hover { background: var(--bg-card-2); }
.contract-item__icon { font-size: 1.6rem; margin-bottom: 4px; display: flex; justify-content: center; }
.contract-item__icon svg { width: 56px; height: 56px; }
.contract-item strong { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.contract-item span   { font-size: 0.78rem; color: var(--text-sub); line-height: 1.4; }
.contract-divider     { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ═══════════════════════════════════════
   METHODOLOGY
═══════════════════════════════════════ */
.methodology {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0.88) 100%);
  position: relative;
}
.methodology::before,
.methodology::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(51,114,153,0.16) 20%, rgba(51,114,153,0.16) 80%, transparent);
}
.methodology::before { top: 0; }
.methodology::after  { bottom: 0; }
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.steps__line {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.steps__line-fill {
  position: absolute; inset: 0;
  background: var(--gradient);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.steps__line-fill.active { transform: scaleX(1); }
.step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
  position: relative;
  z-index: 1;
}
.step__icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid rgba(74,138,183,0.28);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.1), 0 0 0 5px rgba(74,138,183,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.step__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.step:hover .step__icon {
  border-color: transparent;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.22), 0 0 0 8px rgba(74,138,183,0.12), 0 8px 28px rgba(51,114,153,0.35);
  transform: scale(1.1);
}
.step:hover .step__icon::before { opacity: 1; }
.step:hover .step__num {
  background: none;
  -webkit-text-fill-color: rgba(255,255,255,0.95);
  animation: none;
}
.step__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step__text  { font-size: 0.85rem; color: var(--text-sub); line-height: 1.7; }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats {
  padding: var(--section-pad) 0;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  position: relative; overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--bg-soft) 0%, transparent 22%, transparent 78%, var(--bg) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(0,0,0,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.stat-box {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  pointer-events: none;
}
.stat-box:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.65), 0 0 0 1px rgba(74,138,183,0.15), inset 0 1px 0 rgba(255,255,255,0.05); }
.stat-box__val { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 10px; }
.stat-box__name { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.stat-box__desc { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════
   AUDIENCE
═══════════════════════════════════════ */
.audience { padding: var(--section-pad) 0; background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.60) 10%, rgba(0,0,0,0.60) 90%, transparent 100%); }
.audience__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.aud-card {
  background: rgba(15,15,15,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  transition: var(--transition);
}
.aud-card:hover {
  background: rgba(74,138,183,0.08);
  border-color: rgba(74,138,183,0.3);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(74,138,183,0.1);
}
.aud-card__icon { font-size: 2rem; margin-bottom: 18px; display: flex; justify-content: center; }
.aud-card__icon svg { width: 64px; height: 64px; }
@keyframes audienceFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}
.aud-card__title { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.aud-card__text  { font-size: 0.8rem; color: var(--text-sub); line-height: 1.65; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0.88) 100%);
  position: relative;
  overflow: hidden;
}
.contact::before,
.contact::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(51,114,153,0.16) 20%, rgba(51,114,153,0.16) 80%, transparent);
  z-index: 2;
}
.contact::before { top: 0; }
.contact::after  { bottom: 0; }
.contact__beams {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.contact .container { position: relative; z-index: 1; }

/* ─── Contact Method Cards ─── */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.contact-method {
  background: rgba(15,15,15,0.75);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-method::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,138,183,0.08) 0%, rgba(136,181,133,0.05) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
.contact-method:hover {
  border-color: rgba(74,138,183,0.32);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(74,138,183,0.15);
}
.contact-method:hover::before { opacity: 1; }
.contact-method__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(74,138,183,0.08);
  border: 1px solid rgba(74,138,183,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: background 0.35s, border-color 0.35s;
}
.contact-method:hover .contact-method__icon {
  background: rgba(74,138,183,0.15);
  border-color: rgba(74,138,183,0.35);
}
.contact-method__icon svg { width: 22px; height: 22px; }
.contact-method__title {
  font-family: var(--font);
  font-weight: 600; font-size: 1.08rem;
  color: var(--text);
  position: relative; z-index: 1;
}
.contact-method__desc {
  font-size: 0.88rem; color: var(--text-sub);
  line-height: 1.7; flex: 1;
  position: relative; z-index: 1;
}
.contact-method__link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--blue-light); text-decoration: none;
  transition: color 0.25s, gap 0.25s;
  position: relative; z-index: 1;
  margin-top: 4px;
}
.contact-method__link:hover { color: var(--green-light); gap: 10px; }
.contact-method__link svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact__sub { font-size: 1.02rem; color: var(--text-sub); line-height: 1.65; margin-bottom: 28px; }
.contact__benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.contact__benefits li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--text-sub);
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__direct { display: flex; flex-direction: column; gap: 12px; }
.contact__link {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--blue-light);
  transition: color 0.25s;
}
.contact__link:hover { color: var(--green-light); }
.contact__link svg { width: 18px; height: 18px; stroke: currentColor; flex-shrink: 0; }
.contact__social { display: flex; gap: 10px; margin-top: 6px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub);
  background: var(--bg-card);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(51,114,153,0.35);
}
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; }

/* Contact form */
.contact__form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.8rem; font-weight: 700; color: var(--text); letter-spacing: 0.03em; }
.form-label span { color: var(--blue-light); }
.form-input {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  cursor: text;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(74,138,183,0.14);
  background: var(--bg-card-2);
}
.form-input.error { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.12); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-select option { background: var(--bg-card-2); color: var(--text); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-err { font-size: 0.75rem; color: #f87171; font-weight: 600; min-height: 18px; }
.form-success {
  text-align: center; color: var(--green-light); font-weight: 700; font-size: 0.95rem;
  padding: 14px;
  background: rgba(136,181,133,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(136,181,133,0.25);
}
#submitBtn .btn__arrow { font-size: 1.1rem; transition: transform 0.25s; }
#submitBtn:hover .btn__arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 12%), var(--bg);
  padding: 70px 0 30px;
  position: relative;
}
.footer__top-line {
  height: 2px;
  background: var(--gradient);
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer__logo { margin-bottom: 18px; }
.footer__claim { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--text); line-height: 1.35; margin-bottom: 10px; }
.footer__desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.footer__heading {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 0.88rem; color: var(--text-muted); transition: color 0.25s; }
.footer__link:hover { color: var(--text); }
.footer__address { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer__address span { font-size: 0.85rem; color: var(--text-muted); }
.footer__social { display: flex; gap: 10px; }
.footer__social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__social-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social-btn svg { width: 14px; height: 14px; stroke: currentColor; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }
.footer__legal { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer__legal-link { font-size: 0.8rem; color: var(--text-muted); transition: color 0.25s; }
.footer__legal-link:hover { color: var(--text-sub); }
.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font);
}

/* ─── CTA Strip ─── */
.cta-strip {
  padding: 52px 0;
  background: #000;
  position: relative;
}
.cta-strip::before,
.cta-strip::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,138,183,0.32) 20%, rgba(74,138,183,0.32) 80%, transparent);
}
.cta-strip::before { top: 0; }
.cta-strip::after  { bottom: 0; }

/* ─── Video Section ─── */
.video-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.92) 100%);
  position: relative;
}
.video-section::before,
.video-section::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,138,183,0.16) 20%, rgba(74,138,183,0.16) 80%, transparent);
}
.video-section::before { top: 0; }
.video-section::after  { bottom: 0; }
.video-section__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.video-section__overline {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.video-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.video-section__sub {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.70;
  color: var(--text-sub);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-md);
  box-shadow: 0 32px 96px rgba(0,0,0,0.65), 0 0 0 1px rgba(74,138,183,0.1);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-section__fallback {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.video-section__fallback:hover { opacity: 1; color: var(--blue-light); }
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-strip__text {
  font-family: var(--font);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  max-width: 540px;
}
.cta-strip__text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   RESPONSIVE – 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__logo-svg  { width: 380px; height: 380px; }
  .hero__logo-glow { width: 430px; height: 430px; }
  .intro__line     { font-size: clamp(2.4rem, 6vw, 4rem); }
  .intro__phrase   { font-size: clamp(2.4rem, 6vw, 4rem); }
  .audience__grid  { grid-template-columns: repeat(3, 1fr); }
  .footer__grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand   { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════
   RESPONSIVE – 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  /* Nav: Vollbild-Overlay */
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    width: 100%; height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 60px;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: none;
    transform: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 999;
    gap: 0;
  }
  .nav__links::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient); background-size: 200% 200%;
    animation: gradShift 8s ease infinite;
    opacity: 0.55;
    pointer-events: none;
  }
  .nav__links.open {
    opacity: 1; visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }

  /* Links: zentriert, staggered */
  .nav__tabs {
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    gap: 0;
  }
  .nav__tabs li {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .nav__links.open .nav__tabs li               { opacity: 1; transform: translateY(0); }
  .nav__links.open .nav__tabs li:nth-child(1)  { transition-delay: 0.05s; }
  .nav__links.open .nav__tabs li:nth-child(2)  { transition-delay: 0.10s; }
  .nav__links.open .nav__tabs li:nth-child(3)  { transition-delay: 0.15s; }
  .nav__links.open .nav__tabs li:nth-child(4)  { transition-delay: 0.20s; }
  .nav__links.open .nav__tabs li:nth-child(5)  { transition-delay: 0.25s; }
  .nav__tab {
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255,255,255,0.68);
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    mix-blend-mode: normal;
    border-radius: 0;
    transition: color 0.2s;
  }
  .nav__tab:hover { color: var(--white); background: transparent; }
  .nav__cursor { display: none; }
  .nav__cta {
    width: auto; text-align: center; margin-top: 32px;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
  }
  .nav__links.open .nav__cta { opacity: 1; transform: translateY(0); }

  /* Sections */
  .hero__logo-svg  { width: 280px; height: 280px; }
  .hero__logo-glow { width: 320px; height: 320px; }
  .intro           { padding: 72px 0; }
  .intro__line     { font-size: clamp(2rem, 8vw, 3rem); }
  .intro__phrase   { font-size: clamp(2rem, 8vw, 3rem); }
  .intro__stats    { flex-wrap: wrap; justify-content: center; gap: 0; padding: 16px; }
  .intro__stat-divider { display: none; }
  .intro__stat     { padding: 10px 16px; }
  .blog-card__title { font-size: 1rem; white-space: normal; }
  .blog-card__row  { flex-wrap: wrap; gap: 8px; }
  .blog-card__line { display: none; }
  .about__grid    { grid-template-columns: 1fr; gap: 40px; }
  .about__visual  { order: -1; }
  .services__grid { grid-template-columns: 1fr; }
  .steps          { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps__line    { display: none; }
  .stats__grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
  .audience__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .contact__grid    { grid-template-columns: 1fr; gap: 40px; }
  .contact-methods  { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
  .contact__form-wrap { padding: 28px 20px; }
  .form-row       { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal  { justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════
   RESPONSIVE – 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .intro__line    { font-size: 1.9rem; }
  .intro__phrase  { font-size: 1.9rem; }
  .intro__actions { flex-direction: column; }
  .intro__actions .btn { width: 100%; justify-content: center; }
  .audience__grid { grid-template-columns: 1fr; }
  .stats__grid    { grid-template-columns: 1fr; }
  .about__stats-grid { grid-template-columns: 1fr 1fr; }
  .contracts__items  { flex-direction: column; }
  .contract-divider  { width: 100%; height: 1px; }
}

/* ─── Focus visible ─── */
:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════
   PROFILE MODAL – Steckbrief
═══════════════════════════════════════ */
.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.profile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  cursor: pointer;
}
.profile-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 48px 140px rgba(0,0,0,0.95), 0 0 0 1px rgba(74,138,183,0.18);
  transform: scale(0.88) translateY(48px);
  transition: transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.profile-modal.open .profile-modal__panel {
  transform: scale(1) translateY(0);
}

/* Photo column */
.profile-modal__photo-col {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.profile-modal__photo-col img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.profile-modal__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, rgba(6,6,6,0.95) 100%),
    linear-gradient(to top, rgba(51,114,153,0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Info column */
.profile-modal__info {
  background: rgba(6,6,6,0.97);
  padding: 52px 44px 44px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(74,138,183,0.3) transparent;
}
.profile-modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.profile-modal__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.profile-modal__role {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sub);
  margin-bottom: 24px;
}
.profile-modal__divider {
  width: 48px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin-bottom: 24px;
}
.profile-modal__bio {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Timeline */
.profile-modal__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.profile-modal__timeline-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 16px;
  padding-bottom: 24px;
  position: relative;
}
.profile-modal__timeline-item:last-child { padding-bottom: 0; }
.profile-modal__timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  margin-top: 5px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px rgba(74,138,183,0.5);
}
.profile-modal__timeline-item:not(:last-child) .profile-modal__timeline-dot::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 14px);
  background: linear-gradient(to bottom, rgba(74,138,183,0.4) 0%, rgba(74,138,183,0.1) 100%);
}
.profile-modal__timeline-content { padding-top: 0; }
.profile-modal__timeline-year {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 2px;
}
.profile-modal__timeline-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.profile-modal__timeline-desc {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* Close button */
.profile-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.22s;
  z-index: 10;
}
.profile-modal__close:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  transform: rotate(90deg);
}
.profile-modal__close svg { width: 16px; height: 16px; stroke: currentColor; }

/* Responsive modal */
@media (max-width: 768px) {
  .profile-modal__panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .profile-modal__photo-col { height: 260px; }
  .profile-modal__photo-col img { min-height: 260px; }
  .profile-modal__photo-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(6,6,6,0.95) 100%);
  }
  .profile-modal__info { padding: 32px 24px 28px; }
}

/* ═══════════════════════════════════════
   CHECKLIST CTA SECTION
═══════════════════════════════════════ */
.checklist-cta {
  padding: 72px 0;
  background: #000;
  position: relative;
}
.checklist-cta::before,
.checklist-cta::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,138,183,0.32) 20%, rgba(74,138,183,0.32) 80%, transparent);
}
.checklist-cta::before { top: 0; }
.checklist-cta::after  { bottom: 0; }
.checklist-cta__inner {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(51,114,153,0.18) 0%, rgba(136,181,133,0.08) 100%);
  border: 1px solid rgba(74,138,183,0.38);
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 64px rgba(0,0,0,0.55), 0 0 48px rgba(51,114,153,0.14), inset 0 1.5px 0 rgba(255,255,255,0.12);
}
.checklist-cta__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  z-index: 1;
}
.checklist-cta__visual {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(51,114,153,0.22) 0%, rgba(74,138,183,0.1) 100%);
  border-right: 1px solid rgba(74,138,183,0.22);
  padding: 40px 32px;
}
.checklist-cta__gif-box {
  width: 156px;
  height: 156px;
  border-radius: 24px;
  background: rgba(51,114,153,0.14);
  border: 1px solid rgba(74,138,183,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 72px rgba(74,138,183,0.5), 0 0 28px rgba(51,114,153,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}
.checklist-cta__gif-box img { width: 116px; height: 116px; display: block; }
.checklist-cta__content {
  flex: 1;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checklist-cta__overline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 8px;
}
.checklist-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.checklist-cta__sub {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.7;
}
.checklist-cta__action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 44px;
  border-left: 1px solid rgba(74,138,183,0.22);
}
@media (max-width: 900px) {
  .checklist-cta__inner { flex-direction: column; }
  .checklist-cta__visual {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(74,138,183,0.22);
    padding: 36px;
  }
  .checklist-cta__content { padding: 28px 28px 0; text-align: center; }
  .checklist-cta__action {
    border-left: none;
    border-top: 1px solid rgba(74,138,183,0.22);
    padding: 28px 28px 36px;
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   GRAIN TEXTURE OVERLAY
═══════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.030;
  pointer-events: none;
  z-index: 9990;
  mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════
   TRUST-SIGNAL BAR
═══════════════════════════════════════ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(74,138,183,0.5) 50%, transparent 100%);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue-light);
}
.trust-bar__divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-bar {
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 16px;
  }
  .trust-bar__item { padding: 6px 16px; font-size: 0.72rem; }
  .trust-bar__divider { display: none; }
}

/* ═══════════════════════════════════════
   PROJEKTERGEBNISSE – SOCIAL PROOF
═══════════════════════════════════════ */
.results-strip {
  padding: 80px 0;
}
.results-strip .section-header { margin-bottom: 48px; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
}
.result-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14) 50%, transparent);
  top: 2px;
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.7), 0 0 0 1px rgba(74,138,183,0.18);
  border-color: rgba(74,138,183,0.2);
}
.result-card__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.result-card__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(74,138,183,0.1);
  border: 1px solid rgba(74,138,183,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.result-card__icon-wrap svg { width: 20px; height: 20px; }
.result-card__type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.result-card__metric {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 8s ease infinite;
  line-height: 1.05;
  margin-bottom: 8px;
}
.result-card__quote {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin-bottom: 20px;
}
.result-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.result-card__tag-sm {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(74,138,183,0.08);
  border: 1px solid rgba(74,138,183,0.15);
  padding: 3px 8px;
  border-radius: 100px;
}
@media (max-width: 900px) {
  .results-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════
   WARUM LEANBITE? – DIFFERENZIERUNG
═══════════════════════════════════════ */
.why-leanbite {
  padding: 80px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.82) 100%);
  position: relative;
}
.why-leanbite::before,
.why-leanbite::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,138,183,0.16) 20%, rgba(74,138,183,0.16) 80%, transparent);
}
.why-leanbite::before { top: 0; }
.why-leanbite::after  { bottom: 0; }
.why-leanbite .section-header { margin-bottom: 48px; }
.why-leanbite__wrap {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(8,8,8,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}
.why-leanbite__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-leanbite__col-head {
  padding: 16px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.why-leanbite__col-head--other { color: var(--text-muted); }
.why-leanbite__col-head--us {
  color: var(--green-light);
  background: rgba(136,181,133,0.06);
  border-left: 1px solid rgba(136,181,133,0.15);
  border-right: 1px solid rgba(136,181,133,0.15);
}
.why-leanbite__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.why-leanbite__row:last-child { border-bottom: none; }
.why-leanbite__row:hover { background: rgba(255,255,255,0.02); }
.why-leanbite__cell {
  padding: 18px 24px;
  font-size: 0.88rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.45;
}
.why-leanbite__cell--label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.85rem;
}
.why-leanbite__cell--other {
  color: rgba(255,255,255,0.35);
  position: relative;
}
.why-leanbite__cell--us {
  color: rgba(168,208,165,0.85);
  background: rgba(136,181,133,0.04);
  border-left: 1px solid rgba(136,181,133,0.1);
  border-right: 1px solid rgba(136,181,133,0.1);
}
.why-icon { font-size: 1rem; flex-shrink: 0; }
@media (max-width: 640px) {
  .why-leanbite__wrap { font-size: 0.8rem; }
  .why-leanbite__cell { padding: 14px 12px; gap: 6px; }
  .why-leanbite__col-head { padding: 12px 12px; }
}

/* ═══════════════════════════════════════
   COMPARISON CHART (Stats Section)
═══════════════════════════════════════ */
.comparison-chart {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 36px 40px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
.comparison-chart::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15) 50%, transparent);
}
.comparison-chart__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}
.comparison-chart__legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.comparison-chart__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-sub);
}
.comparison-chart__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.comparison-chart__dot--before { background: rgba(255,255,255,0.2); }
.comparison-chart__dot--after  { background: var(--green); }
.comparison-chart__rows { display: flex; flex-direction: column; gap: 18px; }
.comparison-chart__row { display: flex; flex-direction: column; gap: 6px; }
.comparison-chart__row-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-sub);
  font-weight: 500;
}
.comparison-chart__row-label span { font-size: 0.72rem; font-weight: 700; color: var(--green-light); }
.comparison-chart__bars { display: flex; flex-direction: column; gap: 5px; }
.comparison-chart__bar-wrap {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.comparison-chart__bar {
  height: 100%;
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.comparison-chart__bar--before { background: rgba(255,255,255,0.18); }
.comparison-chart__bar--after  { background: var(--gradient); background-size: 200% 200%; animation: gradShift 8s ease infinite; }
@media (max-width: 600px) {
  .comparison-chart { padding: 24px 20px; }
}

/* ═══════════════════════════════════════
   FAQ SEKTION
═══════════════════════════════════════ */
.faq {
  padding: 80px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 20%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0.88) 100%);
  position: relative;
}
.faq::before,
.faq::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,208,165,0.16) 20%, rgba(168,208,165,0.16) 80%, transparent);
}
.faq::before { top: 0; }
.faq::after  { bottom: 0; }
.faq .section-header { margin-bottom: 48px; }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.faq__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 50%, transparent);
}
.faq__item[open] {
  border-color: rgba(74,138,183,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(74,138,183,0.1);
}
.faq__q {
  padding: 22px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq__item[open] .faq__q { color: var(--blue-light); }
.faq__item[open] .faq__q::after { transform: rotate(180deg); }
.faq__a {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════
   CONTACT FLOW – Mini-Timeline
═══════════════════════════════════════ */
.contact-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 28px 32px;
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.contact-flow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,138,183,0.4) 50%, transparent);
}
.contact-flow__step {
  text-align: center;
  padding: 0 12px;
}
.contact-flow__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 10px;
  box-shadow: 0 4px 14px rgba(51,114,153,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.contact-flow__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-flow__sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.contact-flow__arrow {
  color: rgba(255,255,255,0.18);
  font-size: 1.2rem;
  font-weight: 300;
  padding: 0 8px;
}
@media (max-width: 640px) {
  .contact-flow {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .contact-flow__arrow { display: none; }
  .contact-flow__step { text-align: left; display: flex; align-items: center; gap: 16px; }
  .contact-flow__num { margin: 0; flex-shrink: 0; }
}

/* Form trust badge */
.form-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.form-trust-badge svg { width: 14px; height: 14px; color: var(--green-light); }


/* ═══════════════════════════════════════
   COOKIE CONSENT v3
   Centered modal | BfDI-konform | Symmetrische Buttons
═══════════════════════════════════════ */

/* Backdrop – visual blur only, pointer-events off = kein Consent-Wall */
.cc-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9200;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  opacity: 0;
  pointer-events: none; /* never blocks site interaction */
  transition: opacity 0.38s ease;
}
.cc-backdrop--visible { opacity: 1; }

/* Dialog wrapper – centered, pointer-events off so site stays usable */
.cc-dialog {
  position: fixed;
  inset: 0;
  z-index: 9300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
              transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.cc-dialog--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* The actual card – pointer-events back on */
.cc-dialog__card {
  pointer-events: auto;
  width: 100%;
  max-width: 468px;
  background: rgba(10,10,13,0.86);
  backdrop-filter: blur(48px) saturate(180%);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.07) inset,
    0 36px 80px rgba(0,0,0,0.85),
    0 0 0 1px rgba(0,0,0,0.5);
  padding: 26px 26px 22px;
  font-family: var(--font);
  color: var(--text);
}

/* Header row */
.cc-dialog__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cc-dialog__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(51,114,153,0.22), rgba(74,165,113,0.16));
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
}
.cc-dialog__titles { flex: 1; min-width: 0; }
.cc-dialog__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  line-height: 1.2;
}
.cc-dialog__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  background: rgba(51,114,153,0.15);
  border: 1px solid rgba(51,114,153,0.3);
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* Description */
.cc-dialog__desc {
  font-size: 0.795rem;
  color: var(--text-sub);
  line-height: 1.68;
  margin-bottom: 0;
}

/* Categories (collapsed by default) */
.cc-cats {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 16px;
  padding-top: 4px;
}
.cc-cat {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cc-cat:last-of-type { border-bottom: none; }
.cc-cat__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.cc-cat__info { flex: 1; }
.cc-cat__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.cc-cat__desc {
  font-size: 0.71rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* Toggle switch */
.cc-cat__toggle {
  flex-shrink: 0;
  width: 40px; height: 22px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  outline: none;
  margin-top: 3px;
}
.cc-cat__toggle--on {
  background: var(--gradient);
  border-color: transparent;
}
.cc-cat__toggle--locked {
  background: rgba(74,138,183,0.32);
  border-color: rgba(74,138,183,0.4);
  cursor: not-allowed;
}
.cc-cat__toggle:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}
.cc-cat__knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.cc-cat__toggle--on .cc-cat__knob,
.cc-cat__toggle--locked .cc-cat__knob { transform: translateX(18px); }

/* Save selection (inside expanded area) */
.cc-btn--save {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.cc-btn--save:hover { background: rgba(255,255,255,0.12); }

/* ── Main action buttons ──
   Gleichwertig nebeneinander (BfDI-Anforderung: kein Dark-Pattern)
   Ablehnen und Alle akzeptieren: identische Größe, nur Farbe unterschiedlich
─────────────────────────────────────────── */
.cc-dialog__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.cc-btn {
  padding: 12px 16px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, filter 0.18s, background 0.18s, box-shadow 0.18s;
  text-align: center;
  width: 100%;
}
.cc-btn:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 2px; }
.cc-btn--reject {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.82);
}
.cc-btn--reject:hover {
  background: rgba(255,255,255,0.13);
  color: #fff;
  transform: translateY(-1px);
}
.cc-btn--accept {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 18px rgba(51,114,153,0.45);
}
.cc-btn--accept:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(51,114,153,0.16);
}

/* Settings toggle link */
.cc-dialog__settings-row {
  text-align: center;
  margin-bottom: 13px;
}
.cc-btn--settings {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 100px;
  color: var(--text-sub);
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
}
.cc-btn--settings:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.cc-btn--settings:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 2px; }

/* Legal footer */
.cc-dialog__legal {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.cc-dialog__legal a {
  color: var(--text-sub);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cc-dialog__legal a:hover { color: var(--text); }

/* Reset button – datenschutz.html */
.cookie-settings-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  color: var(--text-sub);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-settings-reset:hover { background: rgba(255,255,255,0.1); color: var(--text); }

/* Mobile */
@media (max-width: 520px) {
  .cc-dialog { padding: 12px; align-items: flex-end; padding-bottom: 16px; }
  .cc-dialog__card { padding: 22px 18px 18px; border-radius: 16px; }
  .cc-dialog__actions { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   SKIP TO CONTENT (A11Y)
   (Profile Modal / PM2 entfernt)
═══════════════════════════════════════ */
.pm2--removed {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pm2.open {
  opacity: 1;
  pointer-events: auto;
}
.pm2__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  cursor: pointer;
}
.pm2__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: rgba(8,8,8,0.95);
  border: 1px solid rgba(74,138,183,0.3);
  border-radius: 24px;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow:
    0 48px 120px rgba(0,0,0,0.95),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transform: scale(0.88) translateY(48px);
  transition: transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.pm2.open .pm2__panel {
  transform: scale(1) translateY(0);
}
/* Gradient top border */
.pm2__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #337299 0%, #88B585 50%, #337299 100%);
  background-size: 200% 100%;
  animation: gradShift 8s ease infinite;
}
/* Specular highlight */
.pm2__panel::after {
  content: '';
  position: absolute;
  top: 2px; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 24px 24px 0 0;
}
/* Photo ring */
.pm2__ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  padding: 3px;
  background: var(--gradient);
  box-shadow:
    0 0 0 6px rgba(51,114,153,0.15),
    0 0 40px rgba(51,114,153,0.4),
    0 8px 32px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
.pm2__ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 2px solid rgba(0,0,0,0.8);
}
.pm2__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.pm2__role {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.pm2__divider {
  width: 40px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 0 auto 18px;
}
/* Fact chips */
.pm2__chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.pm2__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  min-width: 80px;
  flex: 1;
  max-width: 120px;
  transition: border-color 0.2s, background 0.2s;
}
.pm2__chip:hover {
  border-color: rgba(74,138,183,0.3);
  background: rgba(74,138,183,0.06);
}
.pm2__chip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(74,138,183,0.18), rgba(74,138,183,0.06));
  border: 1px solid rgba(74,138,183,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.pm2__chip-icon svg { width: 18px; height: 18px; }
.pm2__chip-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 8s ease infinite;
  line-height: 1;
}
.pm2__chip-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
/* Bio */
.pm2__bio {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 28px;
  text-align: left;
  position: relative;
  z-index: 1;
}
/* CTA */
.pm2__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gradient);
  border-radius: 100px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(51,114,153,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
}
.pm2__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(51,114,153,0.16), inset 0 1px 0 rgba(255,255,255,0.25); }
/* Close */
.pm2__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s, transform 0.25s;
}
.pm2__close:hover { background: rgba(255,255,255,0.14); color: #fff; transform: rotate(90deg); }
.pm2__close svg { width: 15px; height: 15px; stroke: currentColor; }
@media (max-width: 480px) {
  .pm2__panel { padding: 36px 24px 32px; border-radius: 20px; }
  .pm2__chips { gap: 8px; }
  .pm2__chip { min-width: 80px; padding: 12px 12px; }
}

/* ═══════════════════════════════════════
   SKIP TO CONTENT (A11Y)
═══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--gradient);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════
   PAGE HERO – Unterseiten-Header
═══════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0) + 80px) 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(51,114,153,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(51,114,153,0.1);
  border: 1px solid rgba(51,114,153,0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 24px;
}
.page-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  overflow-wrap: break-word;
  margin-bottom: 20px;
}
.page-hero__h1 span {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 8s ease infinite;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.page-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .page-hero { padding: calc(var(--nav-h) + env(safe-area-inset-top, 0) + 48px) 0 52px; }
  .page-hero__actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--text-sub); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--text-sub); font-weight: 500; }

/* ═══════════════════════════════════════
   HIGHLIGHT CARDS (Benefit-Kacheln)
═══════════════════════════════════════ */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 48px 0;
}
.highlight-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 50%, transparent);
}
.highlight-card:hover {
  border-color: rgba(74,138,183,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.highlight-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(51,114,153,0.2), rgba(51,114,153,0.06));
  border: 1px solid rgba(51,114,153,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.highlight-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.highlight-card__text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   PROCESS VISUAL (Ablauf-Schritte)
═══════════════════════════════════════ */
.process-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 48px 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.process-visual__step {
  display: flex;
  gap: 24px;
  position: relative;
}
.process-visual__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(51,114,153,0.4), rgba(136,181,133,0.4));
}
.process-visual__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(51,114,153,0.4);
}
.process-visual__content {
  padding-bottom: 40px;
  flex: 1;
}
.process-visual__step:last-child .process-visual__content { padding-bottom: 0; }
.process-visual__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.process-visual__text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.7;
}
@media (max-width: 480px) {
  .process-visual__step { gap: 16px; }
  .process-visual__step:not(:last-child)::after { left: 15px; }
  .process-visual__num { width: 32px; height: 32px; font-size: 0.72rem; }
  .process-visual__step:not(:last-child)::after { top: 40px; }
}

/* ═══════════════════════════════════════
   SCORECARD GRID (Prüfpunkte)
═══════════════════════════════════════ */
.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 40px 0;
}
.scorecard-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.scorecard-item:hover { border-color: rgba(136,181,133,0.25); }
.scorecard-item__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(136,181,133,0.12);
  border: 1px solid rgba(136,181,133,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.65rem;
  color: var(--green-light);
}
.scorecard-item__text {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}
.scorecard-item__text strong { font-weight: 700; display: block; margin-bottom: 2px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════
   GLOSSY DESIGN OVERRIDES
═══════════════════════════════════════ */

/* Cards – 50% transparent glass surfaces */
.svc-card {
  background: rgba(15,15,15,0.50) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.result-card {
  background: rgba(10,10,10,0.50) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.07) !important;
}
.contact-method {
  background: rgba(15,15,15,0.50) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
}
.highlight-card {
  background: rgba(15,15,15,0.50) !important;
  backdrop-filter: blur(16px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(150%) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07) !important;
}
.process-step {
  background: rgba(10,10,10,0.50) !important;
  backdrop-filter: blur(16px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(150%) !important;
}
.faq-item {
  background: rgba(10,10,10,0.50) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}
.about__stat-card {
  backdrop-filter: blur(14px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(150%) !important;
}
.about__stat-card:not(.about__stat-card--blue):not(.about__stat-card--teal):not(.about__stat-card--green) {
  background: rgba(15,15,15,0.50) !important;
}

/* Buttons – glossy shimmer */
.btn--primary {
  box-shadow: 0 4px 20px rgba(51,114,153,0.45), inset 0 1px 0 rgba(255,255,255,0.28) !important;
}
.btn--outline {
  background: rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

/* Bold text gradient accent – applies in all main text areas */
.svc-card__text strong,
.process-step p strong,
.contact__text strong,
.about__text strong,
.section-sub strong,
.page-hero__sub strong,
.legal-content p strong,
.wissen-intro strong,
.assessment-intro strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ════════════════════════════════════════════════
   WISSEN – Blog Filter · Grid · Cards · Modal
════════════════════════════════════════════════ */

/* ── Controls Bar ── */
.wissen-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  padding: 14px 0 12px;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(10,10,13,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.wissen-controls__top {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.wissen-search {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.wissen-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.wissen-search__input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-sizing: border-box;
}
.wissen-search__input::placeholder { color: var(--text-muted); }
.wissen-search__input:focus {
  border-color: rgba(74,138,183,0.5);
  background: rgba(74,138,183,0.06);
}
.wissen-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.wissen-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-sub);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.wissen-filter-btn:not(.wissen-filter-btn--active) {
  color: var(--tag-c, var(--text-sub));
  border-color: var(--tag-bd, var(--border));
}
.wissen-filter-btn:hover {
  border-color: var(--tag-bd, rgba(74,138,183,0.4));
  color: var(--tag-c, var(--blue-light));
  background: var(--tag-bg, rgba(74,138,183,0.08));
}
.wissen-filter-btn--active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 12px rgba(51,114,153,0.35);
}
.wissen-filter-btn--active:hover { background: var(--gradient); color: #fff; }
.wissen-filter-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 5px;
  background: rgba(255,255,255,0.18);
  font-size: 0.7rem;
  font-weight: 700;
}
.wissen-filter-btn--active .wissen-filter-btn__count { background: rgba(255,255,255,0.28); }
.wissen-results-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

/* ── Grid & Cards ── */
.wissen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.wissen-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1), border-color 0.3s, box-shadow 0.3s, background 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.wissen-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(74,138,183,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.wissen-card:hover::before { opacity: 1; }
.wissen-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74,138,183,0.38);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(74,138,183,0.15);
  background: rgba(74,138,183,0.06);
}
.wissen-card--hidden { display: none !important; }
.wissen-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.wissen-card__chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(74,138,183,0.12);
  border: 1px solid rgba(74,138,183,0.22);
  color: var(--blue-light);
}
.wissen-card__date {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
  margin-bottom: 10px;
  display: block;
}
.wissen-card__title {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.25s;
}
.wissen-card:hover .wissen-card__title { color: var(--blue-light); }
.wissen-card__teaser {
  font-size: 0.87rem;
  color: var(--text-sub);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
  flex: 1;
}
.wissen-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wissen-card__readtime {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.wissen-card__arrow {
  color: var(--blue-light);
  transition: transform 0.25s;
  display: flex;
  align-items: center;
}
.wissen-card:hover .wissen-card__arrow { transform: translateX(5px); }

/* Empty state */
.wissen-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.wissen-empty svg { margin-bottom: 16px; opacity: 0.35; }
.wissen-empty p { font-size: 0.95rem; margin-bottom: 14px; }
.wissen-empty__reset {
  background: none;
  border: 1px solid var(--border);
  color: var(--blue-light);
  font-family: var(--font);
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.wissen-empty__reset:hover {
  background: rgba(74,138,183,0.1);
  border-color: rgba(74,138,183,0.4);
}

/* ── Article Modal ── */
.art-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1);
}
.art-modal.open { pointer-events: auto; opacity: 1; }
.art-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}
.art-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  overflow-y: auto;
  background: rgba(10,10,13,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(48px) saturate(180%);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  box-shadow: 0 40px 100px rgba(0,0,0,0.75), 0 0 0 1px rgba(74,138,183,0.12);
  transform: translateY(36px) scale(0.96);
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(74,138,183,0.3) transparent;
}
.art-modal__panel::-webkit-scrollbar { width: 4px; }
.art-modal__panel::-webkit-scrollbar-track { background: transparent; }
.art-modal__panel::-webkit-scrollbar-thumb { background: rgba(74,138,183,0.3); border-radius: 2px; }
.art-modal.open .art-modal__panel { transform: translateY(0) scale(1); }
.art-modal__progress {
  position: sticky;
  top: 0;
  height: 3px;
  background: rgba(255,255,255,0.05);
  z-index: 10;
}
.art-modal__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  transition: width 0.1s linear;
}
.art-modal__header {
  position: sticky;
  top: 3px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(10,10,13,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.art-modal__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.art-modal__tag {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(74,138,183,0.15);
  border: 1px solid rgba(74,138,183,0.25);
  color: var(--blue-light);
}
.art-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.25s;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  padding: 0;
}
.art-modal__close:hover { background: rgba(255,255,255,0.14); color: #fff; transform: rotate(90deg); }
.art-modal__body { padding: 32px 40px 52px; }
.art-modal__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
  margin-bottom: 12px;
}
.art-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 30px;
}
.art-modal__content { font-size: 0.97rem; line-height: 1.85; color: var(--text-sub); }
.art-modal__content h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 8s ease infinite;
  margin: 30px 0 11px;
  letter-spacing: -0.01em;
}
.art-modal__content p { margin-bottom: 16px; }
.art-modal__content strong {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.art-modal__content ul { margin: 0 0 16px 0; padding: 0; list-style: none; }
.art-modal__content ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: var(--text-sub);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.art-modal__content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gradient);
}
.art-modal__content ol { margin: 0 0 16px 0; padding: 0; list-style: none; counter-reset: art-ol; }
.art-modal__content ol li {
  padding: 5px 0 5px 32px;
  position: relative;
  counter-increment: art-ol;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.art-modal__content ol li::before {
  content: counter(art-ol);
  position: absolute;
  left: 0; top: 7px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-modal__cta {
  margin-top: 44px;
  padding: 26px 30px;
  background: rgba(51,114,153,0.1);
  border: 1px solid rgba(74,138,183,0.22);
  border-radius: var(--radius);
  text-align: center;
}
.art-modal__cta p { font-size: 1rem; color: var(--text); margin-bottom: 14px; font-weight: 600; }

/* ── Visualizations ── */
.viz-bars {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  margin: 24px 0;
}
.viz-bars__title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.viz-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.viz-bar-label {
  font-size: 0.78rem;
  color: var(--text-sub);
  width: 130px;
  flex-shrink: 0;
  text-align: right;
  line-height: 1.3;
}
.viz-bar-track {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
}
.viz-bar-fill {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.viz-bar-fill--blue   { background: linear-gradient(90deg, #337299, #4a8ab7); }
.viz-bar-fill--green  { background: linear-gradient(90deg, #88b585, #a3c9a0); }
.viz-bar-fill--orange { background: linear-gradient(90deg, #c47f3a, #e09a55); }
.viz-bar-fill--red    { background: linear-gradient(90deg, #a04040, #c05050); }
.viz-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.viz-kpi {
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.viz-kpi__icon { font-size: 1.5rem; margin-bottom: 7px; display: block; }
.viz-kpi__val {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 8s ease infinite;
}
.viz-kpi__label { font-size: 0.73rem; color: var(--text-muted); margin-top: 4px; }
.viz-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.viz-compare__col { padding: 18px; border-radius: 12px; }
.viz-compare__col--before { background: rgba(160,64,64,0.08); border: 1px solid rgba(160,64,64,0.2); }
.viz-compare__col--after  { background: rgba(136,181,133,0.08); border: 1px solid rgba(136,181,133,0.2); }
.viz-compare__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.viz-compare__col--before .viz-compare__label { color: #c05050; }
.viz-compare__col--after  .viz-compare__label { color: #88b585; }
.viz-compare__item {
  font-size: 0.83rem;
  color: var(--text-sub);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  gap: 8px;
}
.viz-compare__item::before { content: '·'; opacity: 0.4; flex-shrink: 0; }
.viz-checklist { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.viz-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-left: 3px solid;
}
.viz-check-item--red  { border-left-color: #c05050; }
.viz-check-item--warn { border-left-color: #c47f3a; }
.viz-check-item__num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.35;
}
.viz-check-item--red  .viz-check-item__num { color: #c05050; }
.viz-check-item--warn .viz-check-item__num { color: #c47f3a; }
.viz-check-item__text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 2px;
  -webkit-text-fill-color: initial;
  background: none;
}
.viz-check-item__text span { font-size: 0.8rem; color: var(--text-muted); }
.viz-svg-wrap {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.viz-svg-wrap svg { max-width: 100%; height: auto; }

/* ── Sort Dropdown ── */
.wissen-sort {
  appearance: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-sub);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font);
  padding: 9px 32px 9px 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.wissen-sort:hover { border-color: rgba(74,138,183,0.45); color: var(--text); }
.wissen-sort:focus-visible { outline: 2px solid rgba(74,138,183,0.5); outline-offset: 2px; }
.wissen-sort option { background: #0f1722; color: var(--text); }

/* ── Featured card left stripe ── */
.wissen-card--featured { border-left: 3px solid var(--green); }

/* ── Read badge ── */
.wissen-card--read { opacity: 0.8; }
.wissen-card__read-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 4px;
}

/* ── Modal header actions ── */
.art-modal__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Share button ── */
.art-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.art-share-btn:hover { background: rgba(74,138,183,0.12); border-color: rgba(74,138,183,0.35); color: var(--blue-light); }

/* ── Modal page count ── */
.art-modal__page-count {
  position: sticky;
  bottom: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.28);
  padding: 10px 0;
  background: linear-gradient(to top, rgba(14,18,26,0.96) 60%, transparent 100%);
  pointer-events: none;
}

/* ── Modal ToC ── */
.art-toc {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px 20px 18px;
  margin-bottom: 28px;
}
.art-toc__title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}
.art-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.art-toc ul li::before { display: none; }
.art-toc__link {
  font-size: 0.85rem;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.art-toc__link::before { content: '→'; color: var(--blue-light); font-size: 0.75rem; flex-shrink: 0; }
.art-toc__link:hover { color: var(--blue-light); }

/* ── Viz Warning Box ── */
.viz-warning {
  border-left: 3px solid #e8a340;
  padding: 14px 18px;
  background: rgba(232,163,64,0.07);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.viz-warning strong { color: #e8a340; }

/* ── Viz Quote Box ── */
.viz-quote {
  border-left: 3px solid var(--green);
  padding: 14px 18px;
  background: rgba(136,181,133,0.07);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}
.viz-quote__source {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Viz Checklist (ul/li variant) ── */
.viz-checklist li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-sub);
  list-style: none;
}
.viz-checklist li::before { content: "✓"; color: var(--green); font-weight: 900; flex-shrink: 0; }

/* ── Viz Bar: Amber variant ── */
.viz-bar-fill--amber { background: linear-gradient(90deg, #b87a20, #e8a340); }

/* ── Responsive Blog ── */
@media (max-width: 900px) { .wissen-grid { grid-template-columns: 1fr; } }
@media (max-width: 680px) {
  .wissen-controls__top { flex-direction: column; }
  .wissen-search, .wissen-sort { min-width: 100%; width: 100%; }
  .art-modal__body { padding: 24px 22px 40px; }
  .art-modal__title { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .viz-compare { grid-template-columns: 1fr; }
  .viz-bar-label { width: 90px; font-size: 0.74rem; }
}
@media (max-width: 480px) {
  .art-modal { padding: 0; align-items: flex-end; }
  .art-modal__panel { max-height: 92vh; border-radius: 20px 20px 0 0; }
  .viz-kpis { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   HERO REDESIGN – Split Layout
   Linke Spalte: animiertes Logo
   Rechte Spalte: Brand · Phrase · Sub · CTA · Trust
   Responsive: einspaltig auf < 900px
═══════════════════════════════════════ */

/* ─── Split-Grid ─── */
.hero__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1160px;
  width: 100%;
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0) + 60px) 48px 80px;
  margin: 0 auto;
}


/* ─── Logo-Spalte ─── */
.hero__logo-col {
  position: relative;          /* Anker für .hero__logo-glow (position:absolute) */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Logo-Glow im Split-Context verkleinern (original: 500px) */
.hero__logo-col .hero__logo-glow {
  width: 380px;
  height: 380px;
}
/* Logo im Split-Context (original: 520px) */
.hero__logo-col .hero__logo-svg {
  width: 380px;
  height: 380px;
}

/* ─── Text-Spalte ─── */
.hero__text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Phrase-Wrapper: feste Mindesthöhe verhindert Layout-Shift beim Wechsel */
.hero__phrase-wrap {
  overflow: hidden;
  min-height: clamp(7.4rem, 14.5vw, 13rem);
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

/* Cycling Phrase – Farbe wird per JS gesetzt */
.hero__phrase {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 5.6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  display: block;
}
.hero__phrase--in  { animation: phraseSlideIn  0.4s ease-out both; }
.hero__phrase--out { animation: phraseSlideOut 0.4s ease-in  both; }

@keyframes phraseSlideIn {
  from { opacity: 0; transform: translateY(-28px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);     filter: blur(0);   }
}
@keyframes phraseSlideOut {
  from { opacity: 1; transform: translateY(0);     filter: blur(0);   }
  to   { opacity: 0; transform: translateY(28px);  filter: blur(8px); }
}

/* Subheadline */
.hero__sub {
  font-size: clamp(0.92rem, 1.7vw, 1.02rem);
  color: var(--text-sub);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

/* CTA-Button: etwas größer als Standard */
.hero__cta-btn {
  font-size: 1rem;
  padding: 16px 36px;
  margin-bottom: 36px;
}

/* Trust-Pills Reihe */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Glassmorphism-Pill */
.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-sub);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s, color 0.25s;
}
.hero__trust-pill:hover {
  border-color: rgba(74,138,183,0.35);
  color: var(--text);
}
.hero__trust-pill svg { flex-shrink: 0; color: var(--blue-light); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: calc(var(--nav-h) + 48px) 24px 72px;
    text-align: center;
  }
  .hero__logo-col { order: -1; }
  .hero__logo-col .hero__logo-svg,
  .hero__logo-col .hero__logo-glow { width: 200px; height: 200px; }
  .hero__text-col { align-items: center; text-align: center; }
  .hero__phrase-wrap { min-height: clamp(6rem, 28vw, 9rem); justify-content: center; }
  .hero__cta-btn { align-self: center; }
  .hero__trust { justify-content: center; }
  .hero__sub { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero__phrase { font-size: clamp(2.8rem, 13vw, 3.6rem); }
  .hero__cta-btn { font-size: 0.92rem; padding: 14px 26px; }
}

/* ════════════════════════════════════════
   TRUST BAND
════════════════════════════════════════ */
.trust-band {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  background: #000;
}

.trust-band__brand { text-decoration: none; }
.trust-band__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

@media (max-width: 900px) {
  .trust-band { padding: 20px 24px; }
  .trust-band__brand-name { font-size: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .trust-band__brand-name { animation: none; transition: none; }
}

/* ════════════════════════════════════════
   BRANCHEN-STATISTIKEN
════════════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.82) 100%);
  position: relative;
}
.stats-section::before,
.stats-section::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,208,165,0.16) 20%, rgba(168,208,165,0.16) 80%, transparent);
}
.stats-section::before { top: 0; }
.stats-section::after  { bottom: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 680px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.stat-block:hover {
  border-color: rgba(74,138,183,0.28);
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0.4;
}
.stat-block__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-block__num span {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
}
.stat-block__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.stat-block__sub {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 14px;
}
.stat-block__src {
  font-size: 0.7rem;
  color: var(--blue-light);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.stat-block__src:hover { opacity: 1; }

/* ════════════════════════════════════════
   SERVICE CARDS – EXPAND
════════════════════════════════════════ */
.svc-card {
  cursor: pointer;
  user-select: none;
}
.svc-card__front {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.svc-card__icon {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.svc-card__hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.svc-card:hover .svc-card__hint { color: var(--blue-light); }
.svc-card__hint svg { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.svc-card--expanded .svc-card__hint svg { transform: rotate(180deg); }

.svc-card__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  margin-top: 0;
}
.svc-card--expanded .svc-card__body {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
}
.svc-card__text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 16px;
}
.svc-card__viz {
  margin-bottom: 16px;
  opacity: 0.9;
}

/* ════════════════════════════════════════
   FAQ GRID (2-column cards)
════════════════════════════════════════ */
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 0;
}
@media (max-width: 720px) {
  .faq__grid { grid-template-columns: 1fr; }
}

.faq-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq-card[open] {
  border-color: rgba(74,138,183,0.35);
  background: rgba(74,138,183,0.04);
}
.faq-card__q {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.45;
}
.faq-card__q::-webkit-details-marker { display: none; }
.faq-card__q::marker { display: none; }
.faq-card__num {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  flex-shrink: 0;
  padding-top: 4px;
}
.faq-card__arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card[open] .faq-card__arrow { transform: rotate(180deg); }
.faq-card__a {
  padding: 0 20px 20px 44px;
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.8;
}
.faq-card__a p { margin: 0; }

@media (max-width: 480px) {
  .faq-card__q { padding: 16px; font-size: 0.88rem; }
  .faq-card__a { padding: 0 16px 16px 16px; }
}

/* ─── Intro KPI Pills ─── */
.intro__kpi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 28px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.intro__kpi-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro__kpi-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-sub);
}
.intro__kpi-sep {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.intro__kpi-sub {
  width: 100%;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── Service Cards: Result Line ─── */
.svc-card__result {
  font-size: 0.75rem;
  color: var(--blue-light);
  font-weight: 600;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  letter-spacing: 0.01em;
}

.checklist-cta__meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ─── Contact Form: Commitment Reduzierer ─── */
.form-reassurance {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.015em;
}

/* ─── About: Year Highlights ─── */
.about__highlights {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 18px 22px;
  max-width: 460px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.about__highlights::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.45;
}
.about__highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: center;
}
.about__highlight-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__highlight-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}
.about__highlight-plus {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-light);
  opacity: 0.7;
  line-height: 1;
  align-self: flex-start;
  margin-top: 4px;
}
.about__highlight-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about__highlight-sep {
  width: 1px;
  height: 40px;
  background: var(--border-md);
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .about__highlights { justify-content: center; }
  .about__highlight  { text-align: center; }
}

/* ═══════════════════════════════════════════
   Impact Section – Abschnitt 5
   ═══════════════════════════════════════════ */

.section-overline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.impact-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.82) 100%);
  position: relative;
}
.impact-section::before,
.impact-section::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,138,183,0.16) 20%, rgba(74,138,183,0.16) 80%, transparent);
}
.impact-section::before { top: 0; }
.impact-section::after  { bottom: 0; }

/* Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

/* Card */
.impact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.45;
}

/* Card header */
.impact-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 22px;
}
.impact-card__icon {
  width: 34px;
  height: 34px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.impact-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
}

/* Before/after bars */
.impact-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  flex: 1;
}
.impact-bar {
  display: grid;
  grid-template-columns: 76px 1fr 36px;
  align-items: center;
  gap: 10px;
}
.impact-bar__label {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}
.impact-bar__track {
  height: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.impact-bar__fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
}
.impact-bar__fill--ist  { background: linear-gradient(to right, #c94343, #E05252); opacity: 0.8; }
.impact-bar__fill--soll { background: linear-gradient(to right, #88B585, #A8D0A5); }
.impact-bar__val {
  font-size: 0.7rem;
  font-weight: 700;
}
.impact-bar__val--ist  { color: #E05252; opacity: 0.85; }
.impact-bar__val--soll { color: #A8D0A5; }

/* Delta block */
.impact-card__delta {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 16px 14px 14px;
  margin-bottom: 12px;
  text-align: center;
}
.impact-card__delta-pp {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.impact-card__delta-num {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
}
.impact-card__delta-sym {
  font-family: Arial, Helvetica, var(--font);
  font-size: 0.72em;
  color: var(--text-sub);
  -webkit-text-fill-color: var(--text-sub);
  background: none;
}
.impact-card__delta-eur {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}
.impact-card__delta-eur small {
  display: block;
  font-size: 0.69rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}
.impact-card__src {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  color: var(--blue-light);
  text-decoration: none;
  opacity: 0.65;
  margin-top: auto;
}
.impact-card__src:hover { opacity: 1; text-decoration: underline; }

/* ── Slope Chart ───────────────────────────────────────────────────── */
.slope-chart {
  margin-bottom: 22px;
  flex: 1;
}
.slope-chart__svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.slope-chart__col-label {
  font-size: 7.5px;
  fill: var(--text-muted);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.55;
}
.slope-chart__axis {
  stroke: rgba(255,255,255,0.14);
  stroke-width: 1;
}
.slope-chart__tick {
  stroke: rgba(255,255,255,0.18);
  stroke-width: 1;
}
.slope-chart__tick-label {
  font-size: 7px;
  fill: var(--text-muted);
  font-family: var(--font);
  opacity: 0.5;
}
.slope-chart__grid {
  stroke: rgba(255,255,255,0.05);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}
.slope-chart__line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 135;
  stroke-dashoffset: 135;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
[data-slope-active] .slope-chart__line {
  stroke-dashoffset: 0;
}
.slope-chart__dot {
  opacity: 0;
  transition: opacity 0.35s ease;
}
[data-slope-active] .slope-chart__dot {
  opacity: 1;
  transition-delay: 0.72s;
}
.slope-chart__dot--ist  { fill: #E05252; }
.slope-chart__dot--soll { fill: #88B585; }
.slope-chart__val {
  font-size: 12.5px;
  font-family: Arial, Helvetica, var(--font);
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.3s ease;
}
[data-slope-active] .slope-chart__val {
  opacity: 1;
  transition-delay: 0.88s;
}
.slope-chart__val--ist  { fill: #E05252; }
.slope-chart__val--soll { fill: #A8D0A5; }
.slope-chart__scale-text {
  font-size: 8px;
  fill: var(--text-muted);
  font-family: var(--font);
  opacity: 0.55;
}

/* Total callout */
.impact-total {
  margin-top: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 40px 52px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.impact-total__left {
  text-align: center;
}
.impact-total::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.65;
}
.impact-total__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}
.impact-total__num {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
  margin-bottom: 12px;
}
.impact-total__currency {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-muted);
}
.impact-total__currency--sys,
.impact-total__year--sys {
  font-family: Arial, Helvetica, var(--font);
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  background: none;
}
.impact-total__value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
}
.impact-total__year {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--text-muted);
}
.impact-total__sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
}

/* Card GIF icon */
.impact-card__icon--gif {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  padding: 7px;
  background: rgba(51,114,153,0.18);
  border: 1px solid rgba(74,138,183,0.25);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.impact-card__icon--gif img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Card subtitle */
.impact-card__desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
  text-align: center;
}

/* Scale axis below bars */
.impact-bar-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  padding: 0 0 0 86px; /* align with bar track start */
}
.impact-bar-scale span {
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Nettomarge: number comparison layout */
.impact-margin-compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 22px;
  flex: 1;
  padding: 8px 0 4px;
}
.impact-margin-val {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.impact-margin-val__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}
.impact-margin-val--ist .impact-margin-val__num  { color: #E05252; opacity: 0.85; }
.impact-margin-val--soll .impact-margin-val__num {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
}
.impact-margin-val__label {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}
.impact-margin-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.impact-margin-arrow__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #A8D0A5;
}

/* Responsive */
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-total { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 24px; }
}
@media (max-width: 480px) {
  .impact-bar { grid-template-columns: 60px 1fr 32px; gap: 8px; }
  .impact-bar-scale { padding-left: 68px; }
}

/* ═══════════════════════════════════════
   METHODIK – STEP DETAIL PANEL
═══════════════════════════════════════ */

/* Clickable step cards */
.step--clickable { cursor: pointer; transition: background 0.25s, border-color 0.25s; }
.step--active { background: rgba(74,138,183,0.07); border-color: rgba(74,138,183,0.35) !important; }
.step--active .step__num { opacity: 1; }

.step__hint {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
  transition: color 0.2s;
}
.step__hint svg { transition: transform 0.3s; flex-shrink: 0; }
.step--active .step__hint { color: var(--blue-light); }
.step--active .step__hint svg { transform: rotate(180deg); }

/* Detail panel container */
.step-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), margin-top 0.4s ease;
  margin-top: 0;
}
.step-detail--open {
  max-height: 460px;
  margin-top: 28px;
}

/* Detail panel card */
.step-detail__inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.step-detail__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.45;
}

/* Header row: num + title + close */
.step-detail__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.step-detail__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
  line-height: 1;
  flex-shrink: 0;
}
.step-detail__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.step-detail__close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.2s;
  line-height: 1;
}
.step-detail__close:hover { opacity: 1; }

/* DL rows */
.step-detail__dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.step-detail__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
}
.step-detail__row dt {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding-top: 2px;
}
.step-detail__row dd {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 600px) {
  .step-detail--open { max-height: 680px; }
  .step-detail__row { grid-template-columns: 1fr; gap: 3px; }
  .step-detail__row dt { padding-bottom: 1px; }
  .step-detail__inner { padding: 20px 18px; }
}

/* Mobile: Detail-Panel als nahtlose Kachel-Erweiterung */
@media (max-width: 768px) {
  .step-detail__inner {
    background: rgba(74,138,183,0.03);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 12px 16px 16px 0;
  }
  .step-detail__inner::before { display: none; }
  .step-detail__close { display: none; }
  .step-detail__head { margin-bottom: 14px; }
}

/* ═══════════════════════════════════════
   METHODIK – STEPS SUB-HEADER
═══════════════════════════════════════ */
.steps-subheader { margin: 56px 0 32px; text-align: center; }

/* ═══════════════════════════════════════
   METHODIK – BRIDGE AUTOMOTIVE ↔ GASTRO
═══════════════════════════════════════ */
.method-bridge {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  gap: 28px;
  align-items: center;
  margin: 48px 0;
}
.method-bridge__side {
  background: rgba(51,114,153,0.07);
  border: 1px solid rgba(51,114,153,0.28);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 20px rgba(0,0,0,0.25);
  text-align: center;
}
.method-bridge__side::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #337299, #4A8AB7);
  opacity: 0.75;
}
.method-bridge__side--right {
  background: rgba(136,181,133,0.07);
  border-color: rgba(136,181,133,0.28);
}
.method-bridge__side--right::before {
  background: linear-gradient(90deg, #88B585, #A8D0A5);
}
.method-bridge__side--right .method-bridge__label { color: var(--green); }
.method-bridge__side--right .method-bridge__icon  { color: var(--green); }
.method-bridge__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.method-bridge__items { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.method-bridge__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-sub);
}
.method-bridge__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--blue-light);
  opacity: 0.85;
}
.method-bridge__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.method-bridge__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
}
.method-bridge__arrows { width: 60px; height: 84px; }
.method-bridge__claim {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .method-bridge { grid-template-columns: 1fr; }
  .method-bridge__center { flex-direction: row; justify-content: center; }
  .method-bridge__arrows { transform: rotate(90deg); width: 50px; height: 50px; }
}

/* ═══════════════════════════════════════
   METHODIK – 7 MUDA CARDS
═══════════════════════════════════════ */
.muda-section { margin: 64px 0 48px; }
.muda-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.muda-card {
  flex: 0 0 calc(25% - 11px);
  min-width: 180px;
}
@media (max-width: 900px) { .muda-card { flex: 0 0 calc(50% - 7px); } }
@media (max-width: 480px) { .muda-card { flex: 0 0 100%; } }

.muda-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.12), 0 4px 24px rgba(0,0,0,0.28);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.muda-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(74,138,183,0.35);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.18), 0 6px 32px rgba(51,114,153,0.2);
}
.muda-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.6;
}
.muda-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.muda-card__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
  line-height: 1;
}
.muda-card__icon-gif {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(51,114,153,0.14);
  border: 1px solid rgba(74,138,183,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(74,138,183,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}
.muda-card__icon-gif img {
  width: 44px;
  height: 44px;
  display: block;
}
.muda-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
p.muda-card__body {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════
   METHODIK – LEAN TOOLS TABS
═══════════════════════════════════════ */
.lean-tools { margin: 48px 0; }
.lean-tools__nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  justify-content: center;
}
.lean-tools__tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lean-tools__tab:hover {
  border-color: rgba(74,138,183,0.4);
  color: var(--text);
}
.lean-tools__tab--active {
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  border-color: transparent;
  color: #fff;
}
.lean-tools__panels { margin-top: 24px; }
.lean-tools__panel { display: none; }
.lean-tools__panel--active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.13), 0 8px 40px rgba(0,0,0,0.3);
}
.lean-tools__panel--active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.65;
}
.lean-tools__text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.lean-tools__text p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0 0 14px;
}
.lean-tools__list {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.75;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.lean-tools__list li {
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 2px solid rgba(74,138,183,0.25);
}
.lean-tools__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 12px 0 0 !important;
}
.lean-tools__viz {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lean-tools__viz svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.lean-tools__viz--5s svg   { max-width: 280px; }
.lean-tools__viz--kanban svg { max-width: 400px; }

@keyframes pdcaSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.pdca-wheel { transform-origin: 50% 50%; }
.lean-tools__viz--pdca:hover .pdca-wheel {
  animation: pdcaSpin 1.4s cubic-bezier(0.33,1,0.68,1) forwards;
}

/* Brand-gradient bold highlight */
.hl {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
  font-weight: 700;
}

@media (max-width: 720px) {
  .lean-tools__panel--active {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }
  .lean-tools__viz { display: none; }
}

/* ═══════════════════════════════════════
   LEISTUNGEN – SERVICE GRID (expand on click)
═══════════════════════════════════════ */
.services .section-header { margin-bottom: 48px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 0;
}
@media (max-width: 760px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Base card */
.service-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.service-item:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(74,138,183,0.35);
}
.service-item--open {
  border-color: rgba(74,138,183,0.3);
  background: rgba(255,255,255,0.045);
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.45;
}
.service-item--open::before { opacity: 0.7; }

/* Number — subtle corner badge */
.service-item__num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
  opacity: 0.6;
}

/* Face — always-visible centered block */
.service-item__face {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
}

/* GIF icon container */
.service-item__icon-gif {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: rgba(51,114,153,0.14);
  border: 1px solid rgba(74,138,183,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 0.28s, border-color 0.28s, transform 0.3s;
}
.service-item__icon-gif img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.service-item:hover .service-item__icon-gif,
.service-item--open .service-item__icon-gif {
  background: rgba(51,114,153,0.22);
  border-color: rgba(74,138,183,0.38);
  transform: translateY(-3px);
}

.service-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}
.service-item__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 18px;
  font-style: italic;
  max-width: 260px;
}
.service-item__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Toggle button (+ rotates to ×) */
.service-item__toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border-md);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-top: 18px;
  flex-shrink: 0;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.service-item__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-item--open .service-item__toggle {
  border-color: rgba(74,138,183,0.55);
  color: var(--blue-light);
  background: rgba(74,138,183,0.08);
}
.service-item--open .service-item__toggle svg {
  transform: rotate(45deg);
}

/* Expandable details panel */
.service-item__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease 0.08s;
}
.service-item--open .service-item__details {
  max-height: 380px;
  opacity: 1;
}

/* Gradient separator */
.service-item__sep {
  height: 1px;
  margin: 22px 0 20px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(74,138,183,0.3) 30%,
    rgba(136,181,133,0.25) 70%,
    transparent 100%
  );
}

/* Timeline list */
.service-item__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.service-item__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-sub);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}
.service-item__list li:last-child {
  border-bottom: none;
  padding-bottom: 6px;
}
.service-item__list li::before {
  content: '';
  flex-shrink: 0;
  min-width: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, #337299, #88B585);
  transform: rotate(45deg);
  margin-top: 5px;
}

/* Chips */
.service-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100px;
  padding: 4px 10px;
}
.service-chip--dur {
  background: rgba(74,138,183,0.12);
  border: 1px solid rgba(74,138,183,0.3);
  color: var(--blue-light);
}
.service-chip--res {
  background: rgba(136,181,133,0.1);
  border: 1px solid rgba(136,181,133,0.25);
  color: var(--green);
}

/* ═══════════════════════════════════════
   LEISTUNGEN – CONTRACT MODELS (3 Kacheln)
═══════════════════════════════════════ */
.contracts-new { margin-top: 56px; }
.contract-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) {
  .contract-grid { grid-template-columns: 1fr; }
}

.contract-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  transition: border-color 0.25s, background 0.25s;
}
.contract-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.contract-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(74,138,183,0.28);
}
.contract-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.35;
}
.contract-card--mid {
  background: rgba(255,255,255,0.045);
  border-color: var(--border-md);
}
.contract-card--mid::before { opacity: 0.55; }
.contract-card__icon {
  width: 40px;
  height: 40px;
  color: var(--blue-light);
  opacity: 0.85;
}
.contract-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.contract-card__desc {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin: 0;
}
.contract-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
  margin-top: 4px;
}

/* Klickbar machen + Hint */
.contract-card { cursor: pointer; }
.contract-card__hint {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  opacity: 0.5;
  margin-top: auto;
  padding-top: 6px;
  transition: opacity 0.2s, gap 0.2s;
}
.contract-card:hover .contract-card__hint { opacity: 1; gap: 9px; }
.contract-card__hint svg { width: 11px; height: 11px; flex-shrink: 0; }

/* GIF icon container */
.contract-card__icon-gif {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(51,114,153,0.14);
  border: 1px solid rgba(74,138,183,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.28s, border-color 0.28s, transform 0.3s;
}
.contract-card__icon-gif img { width: 36px; height: 36px; object-fit: contain; display: block; }
.contract-card:hover .contract-card__icon-gif {
  background: rgba(51,114,153,0.22);
  border-color: rgba(74,138,183,0.38);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   CONTRACT DETAIL MODAL
═══════════════════════════════════════ */
.cmod-bd {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.64);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cmod-bd--visible {
  opacity: 1;
  pointer-events: auto;
}
.cmod {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1101;
  padding: 24px 16px;
  pointer-events: none;
}
.cmod__card {
  background: rgba(12,18,26,0.97);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 440px;
  position: relative;
  overflow: hidden;
  transform: scale(0.88) translateY(20px);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.28s ease;
  pointer-events: auto;
  max-height: 90vh;
  overflow-y: auto;
}
.cmod--visible .cmod__card {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.cmod__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.7;
}
.cmod__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cmod__close:hover {
  border-color: rgba(74,138,183,0.4);
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.cmod__close svg { width: 14px; height: 14px; }

.cmod__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding-right: 40px;
}
.cmod__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--blue-light);
}
.cmod__icon svg { width: 48px; height: 48px; }

.cmod__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.cmod__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 4px;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
}
.cmod__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(74,138,183,0.25);
  background: rgba(74,138,183,0.08);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.cmod__rows {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.cmod__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.cmod__row:last-child { border-bottom: none; }
.cmod__row:nth-child(even) { background: rgba(255,255,255,0.018); }
.cmod__row-label {
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}
.cmod__row-val {
  color: var(--text-sub);
  text-align: right;
  line-height: 1.55;
}
.cmod__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 20px;
  padding: 12px 14px;
  background: rgba(74,138,183,0.06);
  border: 1px solid rgba(74,138,183,0.15);
  border-radius: 8px;
}
.cmod__cta {
  display: block;
  text-align: center;
}
@media (max-width: 480px) {
  .cmod__card { padding: 26px 16px 22px; }
  .cmod__price { font-size: 1.25rem; }
  .cmod__row { flex-direction: column; gap: 3px; }
  .cmod__row-val { text-align: left; }
}

/* ═══════════════════════════════════════════
   WARUM LEANBITE — PAIN→SOLUTION FLIPPER
   ═══════════════════════════════════════════ */

.why-lb {
  padding: 100px 0 120px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.why-lb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(74,138,183,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(136,181,133,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.why-lb__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .why-lb__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Flip Card Wrapper ── */
.flip-card {
  perspective: 1200px;
  cursor: pointer;
  min-height: 480px;
  outline: none;
}

.flip-card:focus-visible {
  border-radius: 20px;
  box-shadow: 0 0 0 2px rgba(74,138,183,0.6);
}

/* ── Flip Inner ── */
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  transition: transform 0.72s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

/* ── Vorder- und Rückseite (gemeinsame Basis) ── */
.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

/* ── VORDERSEITE: Problem ── */
.flip-card__front {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
}

.flip-card__front-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 30% 20%,
    rgba(200,70,70,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.flip-card:not(.is-flipped):hover .flip-card__front {
  border-color: rgba(200,80,80,0.2);
  background: rgba(255,255,255,0.05);
}

.flip-card__front-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,100,100,0.7);
  margin-bottom: 20px;
}

.flip-card__front-title {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  margin-bottom: 16px;
  font-style: italic;
}

.flip-card__front-body {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  flex: 1;
}

/* ── Icon Wrapper ── */
.flip-card__icon {
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* GIF Container — nach bestehender Design-Guideline */
.flip-card__icon-gif {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(74,138,183,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

.flip-card__icon-gif img {
  width: 44px;
  height: 44px;
  display: block;
}

/* Pain-Variante: rötliche Tönung */
.flip-card__icon-gif--pain {
  background: rgba(160,50,50,0.12);
  border: 1px solid rgba(200,80,80,0.22);
  box-shadow: 0 0 18px rgba(180,60,60,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Solution-Variante: Brand-Grün-Tönung */
.flip-card__icon-gif--solution {
  background: rgba(136,181,133,0.13);
  border: 1px solid rgba(136,181,133,0.25);
  box-shadow: 0 0 18px rgba(136,181,133,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── RÜCKSEITE: Lösung ── */
.flip-card__back {
  background: rgba(74,138,183,0.06);
  border: 1px solid rgba(74,138,183,0.18);
  transform: rotateY(180deg);
}

.flip-card__back-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(136,181,133,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(74,138,183,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.flip-card__back::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg,
    rgba(74,138,183,0.4) 0%,
    rgba(51,114,153,0.2) 35%,
    rgba(168,208,165,0.2) 70%,
    rgba(136,181,133,0.4) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.flip-card.is-flipped .flip-card__back::before {
  opacity: 1;
}

.flip-card__back-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #4A8AB7, #88B585);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.flip-card__back-title {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
  margin-bottom: 16px;
}

.flip-card__back-body {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  flex: 1;
}

/* ── Stat-Badge ── */
.flip-card__back-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}

.flip-card__back-stat-num {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #4A8AB7, #88B585);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.flip-card__back-stat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ── Hint ── */
.flip-card__hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s ease;
  user-select: none;
}

.flip-card:hover .flip-card__hint,
.flip-card:focus-visible .flip-card__hint {
  color: rgba(255,255,255,0.4);
}

.flip-card__hint--back {
  color: rgba(136,181,133,0.4);
}

.flip-card.is-flipped:hover .flip-card__hint--back {
  color: rgba(136,181,133,0.7);
}

.flip-card__hint svg {
  transition: transform 0.3s ease;
}

.flip-card:hover .flip-card__hint svg {
  transform: rotate(30deg);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .flip-card,
  .flip-card__inner {
    min-height: 460px;
  }
  .flip-card__front,
  .flip-card__back {
    padding: 28px 24px 24px;
  }
}

/* ═══════════════════════════════════════════════════
   LEAN INSIGHTS — INFINITE AUTO-TICKER
   ═══════════════════════════════════════════════════ */

.insights {
  padding: 100px 0 96px;
  background: #0a0a0a;
  overflow: hidden;
}

.insights__hint {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
}

/* ── Insights Header 2-Column ── */
.insights__header {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 860px;
  margin: 0 auto 56px;
}

.insights__header-left {
  flex: 0 0 auto;
}

.insights__big-title {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin: 0;
  text-align: left;
}

.insights__header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insights__sub {
  margin: 0;
}

@media (max-width: 680px) {
  .insights__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
  }
  .insights__big-title { font-size: 2.6rem; }
}

/* ── Ticker Outer ── */
.ticker-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  margin: 48px 0 52px;
  touch-action: pan-y;
  outline: none;
}

.ticker-outer:active { cursor: grabbing; }

.ticker-outer:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(74,138,183,0.4);
}

/* ── Gradient-Masken ── */
.ticker-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.ticker-mask--left {
  left: 0;
  background: linear-gradient(to right,
    #0a0a0a 0%,
    rgba(10,10,10,0.8) 50%,
    transparent 100%);
}

.ticker-mask--right {
  right: 0;
  background: linear-gradient(to left,
    #0a0a0a 0%,
    rgba(10,10,10,0.8) 50%,
    transparent 100%);
}

/* ── Ticker Track ── */
.ticker-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  will-change: transform;
  padding: 16px 20px;
}

/* ── Artikel-Karte ── */
.t-card {
  flex-shrink: 0;
  width: 340px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 26px 24px 22px;
  border-radius: 16px;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.03) 60%,
    rgba(74,138,183,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 4px 28px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background   0.3s ease,
    transform    0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow   0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.t-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg,
    rgba(74,138,183,0.35) 0%,
    rgba(51,114,153,0.15) 40%,
    rgba(136,181,133,0.35) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  pointer-events: none;
}

.t-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.t-card:hover {
  background: linear-gradient(145deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.055) 60%,
    rgba(74,138,183,0.06) 100%);
  border-color: rgba(74,138,183,0.3);
  transform: translateY(-5px);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.42),
    0 0 0 1px rgba(74,138,183,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.t-card:hover::before { opacity: 1; }

.t-card > * { position: relative; z-index: 1; }

.t-card__logo-bg {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  object-fit: contain;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── Karten-Kopf ── */
.t-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.t-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid transparent;
}

.t-card__tag--lean   { background: rgba(74,138,183,0.12);  border-color: rgba(74,138,183,0.35);  color: #4A8AB7; }
.t-card__tag--cost   { background: rgba(200,80,80,0.12);   border-color: rgba(200,80,80,0.35);   color: #c86464; }
.t-card__tag--staff  { background: rgba(136,181,133,0.12); border-color: rgba(136,181,133,0.35); color: #88B585; }
.t-card__tag--kpi    { background: rgba(51,114,153,0.12);  border-color: rgba(51,114,153,0.35);  color: #337299; }
.t-card__tag--kaizen { background: rgba(168,208,165,0.12); border-color: rgba(168,208,165,0.35); color: #A8D0A5; }
.t-card__tag--order  { background: rgba(100,160,180,0.12); border-color: rgba(100,160,180,0.35); color: #64a0b4; }

.t-card__time {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 4px;
}

.t-card__time svg { opacity: 0.5; }

/* ── Titel & Beschreibung ── */
.t-card__title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-card__desc {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Karten-Fuß ── */
.t-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.t-card__date {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
}

.t-card__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s ease,
    background   0.3s ease,
    transform    0.3s ease;
}

.t-card:hover .t-card__arrow {
  border-color: rgba(74,138,183,0.5);
  background: rgba(74,138,183,0.12);
  transform: translate(2px, -2px);
}

.t-card__arrow svg {
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}

.t-card:hover .t-card__arrow svg { color: #4A8AB7; }

/* ── Tag-Filter ── */
.ticker-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.ticker-filter__btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.ticker-filter__btn:hover {
  border-color: rgba(74,138,183,0.4);
  color: var(--text);
}

.ticker-filter__btn--active {
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
  border-color: transparent;
  color: #fff;
}

/* ── CTA ── */
.insights__cta {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .insights { padding: 72px 0 72px; }
  .ticker-mask { width: 60px; }
  .ticker-track { gap: 14px; }
  .t-card { width: 280px; min-height: 200px; padding: 20px 18px 18px; }
}

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

/* ═══ FOOTER REDESIGN ═══════════════════════════════════════════════════════ */

/* ── Pre-footer CTA ── */
.prefooter-cta {
  background: #000;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.prefooter-cta::before { content: none; }
.prefooter-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.prefooter-cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.prefooter-cta__heading {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShift 8s ease infinite;
}
.prefooter-cta__sub {
  font-size: 0.95rem;
  color: var(--text-sub);
  margin: 0;
  max-width: 420px;
}

/* ── Footer base ── */
.footer {
  background: #0a0a0f;
  padding: 72px 0 48px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.footer__top-line { display: none; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
  position: relative;
}
.footer__heading {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
  color: #88B585;
  margin-bottom: 18px;
}

/* ── Nav links with slide-in underline ── */
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
  position: relative;
  display: inline-block;
}
.footer__link:hover { color: rgba(255,255,255,1); }
.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: #88B585;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.footer__link:hover::after { transform: scaleX(1); }

/* ── Available badge ── */
.footer__available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(136,181,133,0.85);
  font-family: var(--font);
}
.footer__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #88B585;
  flex-shrink: 0;
  animation: footerPulse 2s ease-in-out infinite;
}
@keyframes footerPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Blog articles column ── */
.footer__articles {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__article {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__article-tag {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}
.footer__article-title {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
  margin: 0;
}
.footer__article-link {
  font-size: 0.78rem;
  color: #88B585;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__article-link:hover { color: #A8D0A5; }
.footer__article-fallback {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ── Social icons – updated size & hover ── */
.footer__social-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.25s, transform 0.2s, background 0.2s, border-color 0.2s;
}
.footer__social-btn:hover {
  color: #88B585;
  transform: scale(1.15);
  background: rgba(136,181,133,0.08);
  border-color: rgba(136,181,133,0.3);
}
.footer__social-btn svg { width: 16px; height: 16px; stroke: currentColor; }

/* ── Footer bottom bar ── */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

/* ── Back-to-top ── */
.back-to-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0)); right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #88B585;
  color: #0a0a0f;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 800;
}
.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: #A8D0A5; }

/* ── Footer responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .footer { padding: 48px 0 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal  { justify-content: center; text-align: center; }
  .prefooter-cta { padding: 56px 0 48px; }
}
@media (prefers-reduced-motion: reduce) {
  .footer__dot { animation: none; }
  .back-to-top { transition: none; }
  .footer__phrase { animation: none; }
  .footer__article-item--in,
  .footer__article-item--out { animation: none; }
}

/* ── Footer Aurora: container above aurora (0) + fade overlay (2) ── */
.footer__container {
  position: relative;
  z-index: 3;
}

/* ── Brand column: centered ── */
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Rotating phrase (same keyframes as hero, footer-appropriate size) ── */
.footer__phrase-wrap {
  overflow: hidden;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 16px;
}
.footer__phrase {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: block;
}
.footer__phrase--in  { animation: phraseSlideIn  0.4s ease-out both; }
.footer__phrase--out { animation: phraseSlideOut 0.4s ease-in  both; }

/* ── All footer column headings: centered ── */
.footer__heading { text-align: center; }

/* ── Nav column: centered links ── */
.footer__links--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Blog column: 2-slot rotating with phrase-slide animation ── */
.footer__blog-col { text-align: center; }
.footer__articles-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__article-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 14px 0;
}
.footer__article-item--out { animation: phraseSlideOut 0.4s ease-in  both; }
.footer__article-item--in  { animation: phraseSlideIn  0.4s ease-out both; }
.footer__articles-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
  margin: 0 16px;
}
.footer__article-tag {
  display: block;
  text-align: center;
  align-self: center;
}

/* ── Contact column: all centered ── */
.footer__contact-col--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__address--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-style: normal;
  margin-bottom: 16px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social--center { justify-content: center; }

/* ════════════════════════════════════════════════════════
   MOBILE OPTIMIERUNGEN – v2
   Alle Fixes isoliert in diesem Block, nur mobile (≤768px)
════════════════════════════════════════════════════════ */

/* ── 1. Section-Padding auf kleinen Screens reduzieren ── */
@media (max-width: 480px) {
  :root { --section-pad: 52px; }
  /* Hardcoded Sektionen mitziehen */
  .why-lb { padding: 52px 0 64px; }
  .insights { padding: 52px 0 48px; }
}

/* ── 2. Container: etwas mehr Seitenabstand auf sehr kleinen Screens ── */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
}

/* ── 3. Flip-Cards: Höhe auf Mobile reduzieren ── */
@media (max-width: 480px) {
  .flip-card,
  .flip-card__inner { min-height: 380px; }
  .flip-card__front,
  .flip-card__back { padding: 24px 20px 20px; }
}

/* ── 4. Ticker: Karten auf Mobile etwas schmaler ── */
@media (max-width: 480px) {
  .t-card { width: 280px; min-height: 200px; padding: 20px 18px 18px; }
  .ticker-mask { width: 80px; }
  .insights__big-title { font-size: 2.2rem; }
}

/* ── 5. Step-Detail: max-height auf Mobile erhöhen ── */
@media (max-width: 600px) {
  .step-detail--open { max-height: 600px; }
  .step-detail__inner { padding: 22px 18px; }
}

/* ── 6. Service-Cards auf Mobile ── */
@media (max-width: 480px) {
  .svc-card { padding: 28px 20px; }
  .svc-card__text { text-align: left; }
  .contracts { padding: 24px 20px; }
}

/* ── 7. Lean-Tools Tabs auf Mobile scrollbar machen ── */
@media (max-width: 600px) {
  .lean-tools__tabs {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .lean-tools__tabs::-webkit-scrollbar { display: none; }
  .lean-tools__tab { scroll-snap-align: start; white-space: nowrap; }
}

/* ── 8. wissen-controls: kompaktere Darstellung auf Mobile ── */
@media (max-width: 768px) {
  .wissen-controls {
    gap: 10px;
    padding: 10px 0 8px;
  }
  /* Filter-Zeile: horizontal scrollbar statt Wrapping */
  .wissen-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
    gap: 8px;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1),
                opacity     0.25s ease,
                padding     0.25s ease;
    max-height: 80px;
    opacity: 1;
  }
  .wissen-filters::-webkit-scrollbar { display: none; }
  .wissen-filters.filters-collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-bottom: 0;
  }
  .wissen-filter-btn { flex-shrink: 0; scroll-snap-align: start; }

  /* Toggle-Button (wird per JS eingefügt) */
  .wissen-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    border: 1px solid var(--border-md);
    background: rgba(255,255,255,0.04);
    color: var(--text-sub);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
    align-self: flex-start;
  }
  .wissen-filter-toggle:hover {
    border-color: rgba(74,138,183,0.45);
    color: var(--blue-light);
    background: rgba(74,138,183,0.07);
  }
  .wissen-filter-toggle--active {
    border-color: rgba(136,181,133,0.5);
    color: var(--green-light);
    background: rgba(136,181,133,0.08);
  }
  .wissen-filter-toggle__chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
  .wissen-filter-toggle--collapsed .wissen-filter-toggle__chevron {
    transform: rotate(-90deg);
  }
  /* Controls-Zeile mit Toggle + Suche */
  .wissen-controls__filter-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

/* Auf Desktop: Toggle nie anzeigen */
@media (min-width: 769px) {
  .wissen-filter-toggle { display: none !important; }
}

/* ── 9. wissen-controls__top: Suchfeld + Sort nebeneinander auf mittelgroßem Mobile ── */
@media (min-width: 481px) and (max-width: 680px) {
  .wissen-controls__top { flex-direction: row; }
  .wissen-search { flex: 1; min-width: 0; }
  .wissen-sort { width: auto; min-width: 130px; }
}

/* ── 10. Art-Modal iOS-Scroll-Fix ── */
.art-modal__panel {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Body-Scroll sperren wenn Modal offen */
body.modal-open {
  overflow: hidden;
  /* iOS braucht position: fixed sonst kann Seite trotzdem scrollen */
  position: fixed;
  width: 100%;
}

@media (max-width: 480px) {
  .art-modal__panel {
    max-height: 94vh;
    border-radius: 24px 24px 0 0;
  }
  .art-modal__header { padding: 12px 16px; }
  .art-modal__body   { padding: 20px 18px 48px; }
}

/* ── 11. wissen-search auf sehr kleinen Screens ── */
@media (max-width: 480px) {
  .wissen-controls__top { flex-direction: column; gap: 8px; }
  .wissen-search, .wissen-sort { width: 100%; min-width: 0; }
  .wissen-results-count { margin-bottom: 12px; }
}

/* ── 12. Blog-Hero auf Mobile ── */
@media (max-width: 600px) {
  .blog-hero__h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .blog-hero__sub { font-size: 0.9rem; padding: 0 4px; }
  .blog-hero__stats { flex-wrap: wrap; gap: 6px 12px; justify-content: center; }
  .blog-hero__stat-dot { display: none; }
  .blog-hero__tag-cloud { justify-content: center; }
}

/* ── 13. Impact-Section auf Mobile ── */
@media (max-width: 480px) {
  .impact-total { align-items: center; text-align: left; }
  .impact-grid  { gap: 16px; }
}

/* ── 14. Footer auf Mobile besser ausrichten ── */
@media (max-width: 480px) {
  .footer__grid { gap: 24px; }
  .footer__bottom { gap: 12px; }
  .footer__social { justify-content: center; }
  .footer__legal  { justify-content: center; }
}

/* ── 15. Sticky-CTA auf sehr kleinen Screens ── */
@media (max-width: 380px) {
  .sticky-cta { padding: 12px 16px; }
  .sticky-cta .btn { font-size: 0.82rem; padding: 10px 18px; }
}

/* ── 16. iOS background-attachment: fixed deaktivieren ── */
/* fixed bewirkt auf iOS Safari, dass der Hintergrund "einfriert" während der
   Inhalt scrollt → wirkt strukturlos und verhindert overflow-x: hidden.
   Auf Mobile scroll nutzen damit Hintergrund mit dem Content mitläuft.     */
@media (max-width: 768px) {
  body { background-attachment: scroll; }
}

/* ── 17. Overflow-Schutz: alle direkten Section-Kinder dürfen nicht breiter als 100% sein ── */
@media (max-width: 768px) {
  section, .container { max-width: 100%; }
}

/* ── 18. FAQ: Model-Karten und Flow-Steps auf kleinen Screens ── */
@media (max-width: 480px) {
  /* Drei Preis-Karten: 2+1 Wrap statt enger 3-er-Reihe */
  .faq--vsm .faq-vsm__models { gap: 8px; }
  .faq--vsm .faq-vsm__model  { flex: 1 1 calc(50% - 8px); min-width: 0; }
  /* Flow- und Timeline-Steps: volle Breite statt fester 220px */
  .faq--vsm .faq-vsm__flow-step,
  .faq--vsm .faq-vsm__tl-step { width: 100%; max-width: 100%; box-sizing: border-box; }
  /* Offene Panels mit Diagrammen brauchen mehr Platz */
  .faq--vsm .faq-vsm__mobile-body--open { max-height: 1100px; }
}

/* ── 19. Kontakt-Sektion: Padding an --section-pad angleichen ── */
@media (max-width: 480px) {
  .ctav2 { padding: var(--section-pad) 0; }
}

/* ── 20. Mein Vorgehen – Mobile: Großzahl-Design ── */
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .steps__line { display: none; }

  .step {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    align-items: start;
    text-align: left;
    padding: 18px 16px 18px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  .step::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 3px;
    background: var(--gradient); background-size: 200% 200%;
    animation: gradShift 8s ease infinite;
    border-radius: 2px;
    opacity: 0.5;
  }
  .step--active::before { opacity: 1; }
  .step--active { background: rgba(74,138,183,0.04); border-radius: var(--radius); border-bottom: none; }

  .step__icon {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 72px; height: auto;
    background: transparent; border: none; box-shadow: none;
    border-radius: 0; margin-bottom: 0; align-self: start;
    transition: none;
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 2px; overflow: visible;
  }
  .step__icon::before { display: none; }
  .step:hover .step__icon { transform: none !important; box-shadow: none; border-color: transparent; }

  .step__num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient); background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradShift 8s ease infinite;
    opacity: 0.55;
    transition: opacity 0.3s;
  }
  .step--active .step__num { opacity: 1; }

  .step__title { grid-column: 2; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
  .step__text  { grid-column: 2; font-size: 0.82rem; margin-bottom: 0; }
  .step__hint  { grid-column: 2; justify-content: flex-start; margin-top: 6px; }

  .step-detail { grid-column: 1 / -1; }
  .step-detail--open {
    margin-top: 0 !important;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  .step-detail--open::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--gradient); background-size: 200% 200%;
    animation: gradShift 8s ease infinite;
    border-radius: 0 0 2px 2px;
  }
}

/* ── 21. Contact Section: Text-Overflow auf Mobile ── */
@media (max-width: 480px) {
  .ctav2__inner   { padding: 0 16px; }
  .ctav2__heading { font-size: 1.65rem; }
}

/* ── 22. Responsive Textschutz: Überschriften + Overflow-Wrap ── */
@media (max-width: 640px) {
  h1, h2, h3, .h2, .page-hero__h1, .hero__title, .intro__phrase, .intro__line {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  body { overflow-x: hidden; }
}
