/*
  Theme Name:     GeneratePress Child
  Template:       generatepress
  Version:        8.0 - Cleaned & Optimized
  Description:    Starfruit Studio – Bereinigte Version ohne Redundanzen
*/

/* =========================================
   CSS VARIABLEN
========================================= */
:root {
  /* Farben */
  --bg: #F9F9F9;
  --surface: #FFFFFF;
  --ink: #222222;
  --muted: #666666;
  --accent: #9ac223;
  --line: #E5E5E5;
  --accent-warn: #e62183;
  
  /* Typografie */
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  
  /* Layout */
  --max-width: 1200px;
  --corner-cut-size: 15px;
  --clip-path-cut: polygon(0 0, 100% 0, 100% calc(100% - var(--corner-cut-size)), calc(100% - var(--corner-cut-size)) 100%, 0 100%);
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* { box-sizing: border-box; }

html { 
  background: var(--surface); 
  scroll-behavior: smooth; 
}

body {
  background-color: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

:focus-visible { 
  outline: 2px solid var(--accent); 
  outline-offset: 4px; 
}

@media (prefers-reduced-motion: reduce) { 
  * { 
    animation: none !important; 
    transition: none !important; 
  } 
}

/* =========================================
   LAYOUT & TYPOGRAFIE
========================================= */
.wrap { 
  max-width: var(--max-width); 
  margin: 0 auto; 
  padding: 0 24px; 
}

.section { 
  padding: clamp(80px, 12vw, 120px) 0; 
  position: relative; 
}

.section:nth-of-type(even) { 
  background-color: var(--bg);
  clip-path: var(--clip-path-cut);
}

.section:last-of-type {
  background-color: transparent;
  clip-path: none;
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: 0;
}

.section-header { 
  text-align: center; 
  max-width: 65ch; 
  margin: 0 auto 56px; 
}

/* Überschriften */
h1, h2, h3 { 
  font-weight: 900; 
  line-height: 1.15; 
  margin: 0; 
}

h1 { 
  font-size: clamp(40px, 10vw, 80px); 
  letter-spacing: -0.04em; 
}

h2 { 
  font-size: clamp(30px, 8vw, 52px); 
  letter-spacing: -0.02em; 
}

h3 { 
  font-size: clamp(20px, 5vw, 24px); 
}

/* Text-Elemente */
.lead { 
  font-size: clamp(18px, 4vw, 20px); 
  color: var(--muted); 
  max-width: 60ch; 
}

.kicker { 
  font-family: var(--font-mono); 
  color: var(--accent); 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  font-size: 1rem; 
  margin-bottom: 24px; 
  display: block; 
}

.small { 
  font-size: 1rem; 
  color: var(--muted); 
  line-height: 1.6; 
}

.mobile-break { display: none; }
@media (max-width: 600px) { 
  .mobile-break { display: block; } 
}

/* =========================================
   BUTTONS & ACTIONS
========================================= */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  background-color: var(--accent);
  padding: 14px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  clip-path: var(--clip-path-cut);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(154, 194, 35, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--muted);
  padding: 12px 26px;
  border: 2px solid var(--line);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: none;
}

.btn--small { 
  padding: 8px 20px; 
  font-size: 0.9rem; 
}

.btn-x {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 14px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  clip-path: var(--clip-path-cut);
  background-color: var(--accent);
  color: var(--ink);
}

.btn-x:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(154, 194, 35, 0.3);
}

.btn-x--line {
  background-color: transparent;
  color: var(--muted);
  padding: 12px 26px;
  border: 2px solid var(--line);
}

.btn-x--line:hover {
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: none;
  background-color: transparent;
}

.act { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  margin-top: 40px; 
}

.act--center { 
  justify-content: center; 
}

/* =========================================
   GRIDS & CARDS
========================================= */
.grid { 
  display: grid; 
  gap: 24px; 
}

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

.card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  position: relative;
}

.card::after { 
  content: ''; 
  position: absolute; 
  top: -2px; left: -2px; right: -2px; bottom: -2px; 
  clip-path: var(--clip-path-cut); 
  box-shadow: inset 0 0 0 2px var(--accent); 
  opacity: 0; 
  transition: opacity 0.3s ease; 
  pointer-events: none; 
}

.card:hover::after { 
  opacity: 1; 
}

.card h3 { 
  color: var(--ink); 
  margin-bottom: 8px; 
}

/* =========================================
   HERO SECTIONS
========================================= */
.hero { 
  text-align: center;
  padding-bottom: clamp(100px, 15vw, 160px);
}

.hero h1 .marker { 
  color: var(--accent); 
  font-style: italic; 
}

.hero .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Grid für Landing Pages */
.hero-lp__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media(min-width: 900px) {
  .hero-lp__grid {
    grid-template-columns: 1fr 0.8fr;
    gap: clamp(40px, 8vw, 100px);
  }
}

.hero-lp__panel {
  display: grid;
  gap: 12px;
}

.hero-lp__shot {
  clip-path: var(--clip-path-cut);
}

/* Tag-Element */
.tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
}

.tag__icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--accent);
}

/* =========================================
   STARTSEITE: KOMPASS
========================================= */
.kompass-grid { 
  display: grid; 
  gap: clamp(40px, 8vw, 80px); 
  align-items: center; 
}

@media(min-width: 900px) { 
  .kompass-grid { 
    grid-template-columns: 2fr 3fr; 
  } 
}

.kompass-bild { 
  clip-path: var(--clip-path-cut); 
  border: 1px solid var(--line); 
  background-color: var(--line); 
}

.kompass-bild img { 
  display: block; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.kompass-text h2 { 
  margin-bottom: 16px; 
}

.kompass-text .lead { 
  max-width: 50ch; 
  margin-bottom: 32px; 
}

.check-liste { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

.check-liste li { 
  padding-left: 32px; 
  position: relative; 
}

.check-liste li:not(:last-child) { 
  margin-bottom: 16px; 
}

.check-liste li::before { 
  content: '✓'; 
  color: var(--accent); 
  position: absolute; 
  left: 0; 
  top: -3px; 
  font-size: 1.2rem; 
  font-weight: 700; 
}

/* =========================================
   STARTSEITE: CASES
========================================= */
.case { 
  text-decoration: none; 
  display: block; 
  color: var(--ink); 
  position: relative; 
}

.case .media { 
  clip-path: var(--clip-path-cut); 
  overflow: hidden; 
  margin-bottom: 16px; 
  border: 1px solid var(--line); 
  background-color: var(--line); 
}

.case .media img { 
  display: block; 
  width: 100%; 
  aspect-ratio: 4/3; 
  object-fit: cover; 
  transition: transform 0.4s ease; 
}

.case:hover .media img { 
  transform: scale(1.05); 
}

.case .body { 
  padding: 0 8px; 
}

.case .title { 
  font-size: 1.25rem; 
}

.case .meta { 
  color: var(--muted); 
  font-size: 1rem; 
}

/* =========================================
   STARTSEITE: PROZESS
========================================= */
.prozess-grid { 
  display: grid; 
  gap: 32px; 
}

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

.step-item { 
  padding: 24px; 
  border-top: 3px solid var(--line); 
  position: relative; 
  transition: border-color 0.3s ease; 
}

.step-item:hover { 
  border-top-color: var(--accent); 
}

.step-number { 
  font-family: var(--font-mono); 
  font-size: 1rem; 
  font-weight: 700; 
  color: var(--muted); 
  margin-bottom: 24px; 
}

.step-item b { 
  display: block; 
  font-size: 1.2rem; 
  margin-bottom: 12px; 
  color: var(--ink); 
  font-weight: 700; 
}

.step-item span { 
  color: var(--muted); 
  font-size: 1rem; 
}

/* =========================================
   CTA BLOCK
========================================= */
.cta-block { 
  background: linear-gradient(45deg, var(--accent), #b0d92b); 
  padding: clamp(60px, 8vw, 80px); 
  text-align: center; 
  clip-path: var(--clip-path-cut); 
}

.cta-block h2 { 
  color: #222; 
}

.cta-block .lead { 
  color: #333; 
  opacity: 0.8; 
  margin: 16px auto 0; 
}

.cta-block .btn { 
  color: #222; 
  background-color: #fff; 
}

/* =========================================
   ANIMATIONEN
========================================= */
.fade-in-stagger { 
  opacity: 0; 
  transform: translateY(20px); 
  transition: opacity 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), 
              transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1); 
  transition-delay: var(--delay, 0ms); 
}

.fade-in-stagger.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
}

.grid > .fade-in-stagger:nth-child(2), 
.prozess-grid > .fade-in-stagger:nth-child(2) { 
  transition-delay: 150ms; 
}

.grid > .fade-in-stagger:nth-child(3), 
.prozess-grid > .fade-in-stagger:nth-child(3) { 
  transition-delay: 300ms; 
}

.prozess-grid > .fade-in-stagger:nth-child(4) { 
  transition-delay: 450ms; 
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0% {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 0 0 0 rgba(154, 194, 35, 0.4);
  }
  50% {
    transform: translateY(-1px) scale(1.1);
    box-shadow: 0 0 0 8px rgba(154, 194, 35, 0);
  }
  100% {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 0 0 0 rgba(154, 194, 35, 0);
  }
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.site-hd { 
  background-color: var(--surface); 
  border-bottom: 1px solid var(--line); 
  padding: 16px 0; 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  transition: box-shadow 0.2s ease; 
}

.site-hd.is-scrolled { 
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.site-hd__wrap { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 24px; 
}

.brand img { 
  display: block; 
}

.nav { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
}

.nav a:not(.btn) { 
  font-family: var(--font-mono); 
  text-decoration: none; 
  color: var(--muted); 
  font-size: 1rem; 
  position: relative; 
  transition: color 0.2s ease; 
}

.nav a:not(.btn)::after { 
  content: ''; 
  position: absolute; 
  bottom: -4px; 
  left: 0; 
  width: 100%; 
  height: 2px; 
  background-color: var(--accent); 
  transform: scaleX(0); 
  transform-origin: right; 
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); 
}

.nav a:not(.btn):hover, 
.nav a:not(.btn).current-menu-item { 
  color: var(--ink); 
}

.nav a:not(.btn):hover::after, 
.nav a:not(.btn).current-menu-item::after { 
  transform: scaleX(1); 
  transform-origin: left; 
}

/* Mobile Navigation Toggle */
.nav-toggle { 
  display: none; 
  background: none; 
  border: none; 
  padding: 0; 
  cursor: pointer; 
  width: 30px; 
  height: 24px; 
  position: relative; 
  z-index: 1001; 
  -webkit-tap-highlight-color: transparent; 
  outline: none; 
}

.nav-toggle:focus, 
.nav-toggle:active, 
.nav-toggle:hover { 
  background-color: transparent !important; 
  outline: none !important; 
}

.nav-toggle__bar { 
  display: block; 
  width: 100%; 
  height: 2px; 
  background-color: var(--ink); 
  position: absolute; 
  left: 0; 
  transition: transform 0.3s ease, opacity 0.3s ease; 
  border-radius: 2px; 
}

.nav-toggle__bar:nth-child(1) { top: 0; }
.nav-toggle__bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle__bar:nth-child(3) { bottom: 0; }

.is-nav-open .nav-toggle__bar:nth-child(1) { 
  transform: translateY(11px) rotate(45deg); 
}

.is-nav-open .nav-toggle__bar:nth-child(2) { 
  opacity: 0; 
}

.is-nav-open .nav-toggle__bar:nth-child(3) { 
  transform: translateY(-11px) rotate(-45deg); 
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  
  .nav { 
    position: fixed; 
    top: 0; right: 0; bottom: 0; 
    width: 100%; 
    max-width: 300px; 
    background-color: var(--surface); 
    border-left: 1px solid var(--line); 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: center; 
    padding: 40px; 
    gap: 32px; 
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); 
  }
  
  .is-nav-open .nav { 
    transform: translateX(0); 
    box-shadow: -10px 0 30px rgba(0,0,0,0.1); 
  }
  
  .nav a { font-size: 1.2rem; }
}

/* Dropdown Navigation */
.nav-item { 
  position: relative; 
}

.nav-item--has-dropdown { 
  --dd-attach: 0px; 
}

.nav-item--has-dropdown > a { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  position: relative; 
  z-index: 2; 
}

.nav-arrow { 
  width: 16px; 
  height: 16px; 
  transition: transform 0.3s ease; 
  pointer-events: none; 
}

.nav-item--has-dropdown::after {
  content: ""; 
  position: absolute; 
  left: 0; right: 0; 
  top: 100%;
  height: calc(var(--dd-attach) + 12px); 
  z-index: 1;
}

.dropdown-menu {
  position: absolute; 
  left: 0; 
  top: calc(100% + var(--dd-attach));
  width: 280px; 
  background: var(--surface); 
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
  clip-path: var(--clip-path-cut); 
  padding: 8px;
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none; 
  z-index: 1100; 
  margin-top: -1px;
}

.dropdown-menu::before { 
  content: ""; 
  position: absolute; 
  left: 0; right: 0; 
  top: -10px; 
  height: 10px; 
}

.nav-item--has-dropdown:hover .dropdown-menu,
.nav-item--has-dropdown.is-open .dropdown-menu { 
  opacity: 1; 
  visibility: visible; 
  pointer-events: auto; 
}

.nav-item--has-dropdown:hover .nav-arrow,
.nav-item--has-dropdown.is-open .nav-arrow { 
  transform: rotate(180deg); 
}

.dropdown-menu a { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  padding: 12px 16px; 
  text-decoration: none; 
  font-family: var(--font-sans); 
  color: var(--muted); 
  font-size: 1rem; 
  transition: background-color 0.2s ease, color 0.2s ease; 
}

.dropdown-menu a svg { 
  width: 24px; 
  height: 24px; 
  color: var(--accent); 
  flex-shrink: 0; 
}

.dropdown-menu a:hover { 
  background-color: var(--bg); 
  color: var(--ink); 
}

@media (max-width: 900px) {
  .dropdown-menu {
    position: static; 
    opacity: 1; 
    visibility: visible; 
    display: none; 
    width: 100%;
    margin-top: 16px; 
    padding: 0; 
    box-shadow: none; 
    border: none; 
    clip-path: none; 
    pointer-events: auto;
  }
  
  .nav-item--has-dropdown.is-open .dropdown-menu { 
    display: block; 
  }
}

/* =========================================
   FOOTER
========================================= */
.site-ft {
  background-color: var(--bg);
  padding: clamp(60px, 10vw, 80px) 0 32px 0;
  margin-top: clamp(80px, 12vw, 120px);
  clip-path: var(--clip-path-cut);
  border-top: 1px solid var(--line);
}

.ft-main {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
}

@media(min-width: 768px) {
  .ft-main { 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: clamp(40px, 8vw, 80px); 
  }
}

.ft-heading { 
  font-family: var(--font-mono); 
  color: var(--accent); 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  font-size: 1rem; 
  margin: 0 0 24px 0; 
  font-weight: 700; 
}

.ft-col .brand { 
  margin-bottom: 16px; 
}

.ft-col .small { 
  max-width: 35ch; 
}

.contact-list, .ft-nav { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  list-style: none; 
  padding: 0; 
  margin: 24px 0 0 0; 
}

.contact-list a, .ft-nav a { 
  text-decoration: none; 
  color: var(--muted); 
  transition: color 0.2s ease; 
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
}

.contact-list a:hover, .ft-nav a:hover { 
  color: var(--ink); 
}

.contact-list svg { 
  width: 20px; 
  height: 20px; 
  flex-shrink: 0; 
}

.ft-sub { 
  border-top: 1px solid var(--line); 
  padding-top: 32px; 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-between; 
  align-items: center; 
  gap: 24px; 
  font-size: 0.9rem; 
  color: var(--muted); 
}

.ft-copy { 
  margin: 0; 
  display: flex; 
  align-items: center; 
}

.ft-legal { 
  display: flex; 
  gap: 24px; 
}

.ft-legal a { 
  text-decoration: none; 
  color: var(--muted); 
  transition: color 0.2s ease; 
}

.ft-legal a:hover { 
  color: var(--ink); 
}

/* Status Light */
.status-light {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--accent);
  border-radius: 50%;
  margin-right: 12px;
  transform: translateY(-1px);
  animation: pulse 2.5s infinite;
}

/* =========================================
   LEISTUNGSSEITE
========================================= */
.sfs-lei .hero h1 {
  max-width: 20ch;
}

.sfs-lei .small {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.sfs-lei .split {
  display: grid;
  gap: clamp(40px, 8vw, 100px);
}

@media(min-width: 900px) {
  .sfs-lei .split {
    grid-template-columns: 220px 1fr;
  }
}

/* Seitennavigation */
.sfs-lei .side {
  position: sticky;
  top: 120px;
  align-self: start;
}

.sfs-lei .index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.sfs-lei .index a {
  font-family: var(--font-mono);
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sfs-lei .index a .dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sfs-lei .index a .no {
  color: var(--line);
}

.sfs-lei .index a:hover {
  color: var(--ink);
}

.sfs-lei .index a.is-active {
  color: var(--ink);
  font-weight: 700;
}

.sfs-lei .index a.is-active .dot {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Navigation */
.sfs-lei .subindex {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 16px;
  margin-top: 40px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sfs-lei .subindex::-webkit-scrollbar {
  display: none;
}

.sfs-lei .subindex a {
  flex-shrink: 0;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 2px solid var(--line);
  color: var(--muted);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  clip-path: var(--clip-path-cut);
}

.sfs-lei .subindex a.is-active,
.sfs-lei .subindex a:hover {
  background-color: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  font-weight: 700;
}

@media(max-width: 899px) {
  .sfs-lei .side { display: none; }
}

@media(min-width: 900px) {
  .sfs-lei .subindex { display: none; }
}

/* Teaser Blöcke */
.tease {
  display: grid;
  gap: 40px;
  align-items: center;
  padding: 32px; /* Innenabstand für die gesamte Section */
}

@media(min-width: 768px) {
  .tease { 
    grid-template-columns: 1fr 1fr; 
    gap: clamp(40px, 6vw, 80px);
    padding: 48px; /* Mehr Padding auf Desktop */
  }
  
  .tease--rev .block { 
    grid-row: 1; 
    grid-column: 1; 
  }
  
  .tease--rev .txt { 
    grid-row: 1; 
    grid-column: 2; 
  }
}

.tease .list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  font-size: 1rem;
}

.tease .list li {
  padding-left: 24px;
  position: relative;
}

.tease .list li:not(:last-child) { 
  margin-bottom: 8px; 
}

.tease .list li::before {
  content: '✓';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.tease .block .crop--std { aspect-ratio: 4/3; }
.tease .block .crop--tall { aspect-ratio: 3/4; }
.tease .block .crop--wide { aspect-ratio: 16/9; }

.tease .block .card {
  padding: 24px 40px; /* MEHR Luft zwischen Text und Rand! */
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  background-color: var(--bg);
  border: 1px solid var(--line);
  clip-path: var(--clip-path-cut);
}

/* Hilfsklassen */
.mt-m { margin-top: 32px; }

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.final-cta__heading {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
}

/* =========================================
   LANDING PAGE: WEBSEITEN
========================================= */
.website-hero-header {
  text-align: center;
  padding-bottom: 0;
}

.website-hero-header h1 {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.website-hero-header .lead {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.section--no-padding-top {
  padding-top: 0;
}

/* Starfruit Browser */
.sfbrowser {
  --line: var(--line, rgba(0,0,0,.10));
  --bg: var(--surface, #fff);
  --ink: var(--ink, #222);
  --muted: var(--muted, #687076);
  --accent: var(--accent, #9ac223);

  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.18), 0 6px 16px -8px rgba(0,0,0,.08);
  overflow: hidden;
  margin-top: clamp(32px, 6vw, 64px);
  margin-bottom: clamp(24px, 4vw, 48px);
}

.sfbrowser__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f6f7f9;
  border-bottom: 1px solid var(--line);
}

.sfbrowser__dots { 
  display: flex; 
  gap: 8px; 
}

.sfbrowser__dots span {
  width: 12px; 
  height: 12px; 
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

.sfbrowser__dots span:nth-child(1) { background: #ff5f56; }
.sfbrowser__dots span:nth-child(2) { background: #ffbd2e; }
.sfbrowser__dots span:nth-child(3) { background: #27c93f; }

.sfbrowser__tabs { 
  display: flex; 
  gap: 8px; 
  overflow: auto; 
}

.sfbrowser__tab {
  appearance: none; 
  border: 1px solid var(--line);
  background: #4a4f59; 
  color: #fff;
  font: 600 13px/1 var(--font-sans, system-ui, sans-serif);
  padding: 8px 12px; 
  border-radius: 8px; 
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.sfbrowser__tab:hover { 
  transform: translateY(-1px); 
}

.sfbrowser__tab.is-active {
  background: #e9f6d0; 
  color: #222; 
  border-color: #cfe7a3;
}

.sfbrowser__tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}

.sfbrowser__url {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px; 
  color: var(--muted);
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis;
}

.sfbrowser__u { display: none; }
.sfbrowser__u.is-active { display: block; }

.sfbrowser__screen {
  margin: 0;
  display: none;
  width: 100%;
  background: #fff;
  overflow: visible;
  box-shadow: none;
}

.sfbrowser__screen.is-active { 
  display: block; 
}

.sfbrowser__screen img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .sfbrowser__screen { 
    aspect-ratio: 4 / 3; 
  }
}

/* Problem Section (Dark) */
.page-website-reboot-final .section--dark {
  background-color: #262a2c !important;
  color: #fff;
}

.page-website-reboot-final .section--dark .kicker,
.page-website-reboot-final .section--dark .section-header .lead {
  color: rgba(255,255,255,0.75);
}

.page-website-reboot-final .section--dark h2 { 
  color: #fff; 
}

.page-website-reboot-final .pain-points-grid { 
  display: grid; 
  gap: 32px; 
  margin-top: 56px; 
}

@media(min-width: 768px) { 
  .page-website-reboot-final .pain-points-grid { 
    grid-template-columns: repeat(3, 1fr); 
  } 
}

.page-website-reboot-final .pain-point { 
  text-align: center; 
}

.page-website-reboot-final .pain-point svg {
  width: 32px;
  height: 32px;
  color: var(--accent-warn);
  margin-bottom: 16px;
}

.page-website-reboot-final .pain-point h3 { 
  font-size: 1.25rem; 
  margin-bottom: 8px; 
  color: #fff; 
}

.page-website-reboot-final .pain-point p { 
  color: rgba(255,255,255,0.9); 
  font-size: 1rem; 
}

/* Feature Pillars */
.feature-pillars-grid { 
  display: grid; 
  gap: clamp(32px, 5vw, 40px); 
  margin-top: 56px; 
}

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

.pillar-card { 
  text-align: center; 
}

.pillar-card svg { 
  width: 36px; 
  height: 36px; 
  color: var(--accent); 
  margin-bottom: 16px; 
}

.pillar-card h3 { 
  font-size: 1.25rem; 
  margin-bottom: 8px; 
}

.pillar-card p { 
  color: var(--muted); 
  font-size: 1rem; 
  line-height: 1.6; 
}

/* Choice Section */
.section--choice { 
  background: var(--bg); 
  clip-path: var(--clip-path-cut); 
}

.choice-block-grid { 
  display: grid; 
  gap: 24px; 
  margin-top: 40px; 
}

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

.choice-card {
  display: flex; 
  flex-direction: column; 
  text-decoration: none;
  border: 2px solid var(--line); 
  background: var(--surface);
  padding: clamp(24px, 4vw, 32px); 
  clip-path: var(--clip-path-cut);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.choice-card:hover { 
  transform: translateY(-5px); 
  border-color: var(--accent); 
}

.choice-card h3 { 
  margin: 0 0 8px 0; 
  color: var(--ink); 
}

.choice-card p { 
  color: var(--muted); 
  margin: 0; 
  font-size: 0.9rem; 
}

.btn-imitation {
  font-family: var(--font-mono); 
  font-size: 0.9rem; 
  font-weight: 700;
  color: var(--accent); 
  margin-top: auto; 
  padding-top: 24px;
}

.choice-card--active { 
  border-color: var(--accent); 
}

.choice-card--active .btn-imitation { 
  color: var(--ink); 
}

/* Prozess Rail */
.prozess-rail { 
  position: relative; 
  padding-left: 56px; 
}

.prozess-rail::before { 
  content: ""; 
  position: absolute; 
  left: 24px; 
  top: 12px; 
  bottom: 12px; 
  width: 2px; 
  background: var(--line); 
}

.prozess-step { 
  position: relative; 
  display: grid; 
  grid-template-columns: auto 1fr; 
  gap: 24px; 
  align-items: start; 
}

.prozess-step:not(:last-child) { 
  margin-bottom: 32px; 
}

.prozess-step__num { 
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  border: 2px solid var(--accent); 
  display: grid; 
  place-items: center; 
  font-weight: 700; 
  font-family: var(--font-mono); 
  background: var(--surface); 
}

.prozess-step__content h3 { 
  margin: 0.5rem 0 0.25rem; 
}

.prozess-step__content p { 
  margin: 0; 
  color: var(--muted); 
}

/* Pakete */
.paket-box { 
  display: flex; 
  flex-direction: column; 
}

.paket-box__label { 
  align-self: flex-end; 
  font-family: var(--font-mono); 
  font-weight: 700; 
  font-size: 0.8rem; 
  color: var(--muted); 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
}

.paket-box--highlight { 
  border-color: var(--accent); 
  position: relative; 
}

.paket-box--highlight::after { 
  display: none; 
}

.paket-box--highlight .paket-box__label { 
  color: var(--accent); 
}

.paket-box .act { 
  margin-top: auto; 
}

.paket-box .check-liste { 
  margin-top: 24px; 
  margin-bottom: 32px; 
  font-size: 0.9rem;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  padding: 16px 24px;
  margin: 12px 0;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '–';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 1em 0 0;
  color: var(--muted);
}

/* Background Fix für LP Webseite */
.page-website-reboot-final .section--choice {
  background-color: transparent;
  clip-path: none;
}

.page-website-reboot-final .section:nth-of-type(4) {
  background-color: transparent;
  clip-path: none;
}

/* =========================================
   LANDING PAGE: SHOPS
========================================= */
.lp-shop25 .hero-lp-shop__panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.lp-shop25 .hero-lp-shop__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
}

.lp-shop25 .hero-lp-shop__logos img {
  max-height: 25px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.lp-shop25 .hero-lp-shop__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.problem-card {
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 32px);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  text-align: center;
}

.problem-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin: 0 auto 16px;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* Process Tabs */
.process-tabs {
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
}

.tab-list {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}

.tab-list button {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-list button:hover {
  color: var(--ink);
}

.tab-list button[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.tab-panel {
  padding: clamp(24px, 5vw, 48px);
}

.tab-panel__grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media(min-width: 768px) {
  .tab-panel__grid {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
}

.tab-panel__visual {
  display: none;
  min-height: 200px;
  background-color: var(--bg);
  border: 1px solid var(--line);
  clip-path: var(--clip-path-cut);
}

@media(min-width: 768px) {
  .tab-panel__visual {
    display: block;
  }
}

.tab-panel .check-liste {
  margin-top: 24px;
  font-size: 0.9rem;
}

/* =========================================
   LANDING PAGE: PRINT
========================================= */
.print-hero-flat-lay {
  position: relative;
  width: 100%;
  padding-top: 80%;
  margin: 40px auto 0;
  min-height: 350px;
}

@media(min-width: 900px) {
  .print-hero-flat-lay {
    margin-top: 0;
    padding-top: 110%;
  }
}

.flat-lay__item {
  position: absolute;
  border: 1px solid var(--line);
  background: var(--bg);
  clip-path: var(--clip-path-cut);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.flat-lay__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flat-lay__item--brochure {
  width: 70%;
  height: auto;
  aspect-ratio: 550/400;
  top: 5%;
  left: 0;
  transform: rotate(-8deg);
  z-index: 1;
}

.flat-lay__item--flyer {
  width: 60%;
  height: auto;
  aspect-ratio: 350/350;
  top: 20%;
  right: 0;
  transform: rotate(5deg);
  z-index: 2;
}

.flat-lay__item--card {
  width: 50%;
  height: auto;
  aspect-ratio: 300/180;
  bottom: 10%;
  left: 20%;
  transform: rotate(-3deg);
  z-index: 3;
}

.flat-lay__item:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  z-index: 10;
}

.print-item-grid {
  display: grid;
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
  clip-path: var(--clip-path-cut);
}

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

.print-item {
  background: var(--surface);
  padding: clamp(24px, 4vw, 32px);
}

.print-item__title {
  font-weight: 900;
  font-size: 1.25rem;
  margin: 0 0 12px 0;
  position: relative;
  padding-left: 24px;
}

.print-item__title::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--accent);
  clip-path: var(--clip-path-cut);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.print-item__list {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================
   LANDING PAGE: BRANDING
========================================= */
.brand-hero-visual {
  border: 1px solid var(--line);
  background-color: var(--surface);
  clip-path: var(--clip-path-cut);
  display: grid;
  grid-template-rows: 1fr auto;
}

.brand-hero-visual__logo {
  display: grid;
  place-items: center;
  background-color: var(--bg);
}

.brand-hero-visual__logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-hero-visual__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
}

.brand-hero-visual__palette {
  display: flex;
  gap: 8px;
}

.palette-color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1px var(--line);
}

.brand-hero-visual__typo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-box {
  text-align: center;
  padding: 16px;
}

.feature-box svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* =========================================
   LANDING PAGE: CONTENT/TEXTE
========================================= */
.content-hero-anim-card {
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.content-hero-anim-card__header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.content-hero-anim-card__header span {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-hero-anim-card__body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  flex-grow: 1;
}

.typed-text-output {
  white-space: pre-wrap;
  vertical-align: top;
}

.typing-cursor {
  display: inline-block;
  width: 10px;
  height: 1.2em;
  background-color: var(--accent);
  margin-left: 2px;
  animation: blink 0.8s infinite;
  vertical-align: top;
  transform: translateY(2px);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.content-type-grid {
  display: grid;
  gap: 32px;
}

@media(min-width: 768px) {
  .content-type-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

.content-type-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.content-type-item svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-top: 4px;
}

.content-type-item h3 {
  font-size: 1.25rem;
  margin: 0 0 4px 0;
}

.content-type-item p {
  margin: 0;
}

/* =========================================
   LANDING PAGE: WERBEMITTEL (ASSETS)
========================================= */
.page-assets-reboot .hero-lp {
  padding-top: clamp(60px, 10vw, 100px);
  text-align: center;
}

.page-assets-reboot .hero-lp__content {
  max-width: 800px;
  margin: 0 auto;
}

.page-assets-reboot .hero-lp h1 {
  margin-bottom: 24px;
}

.page-assets-reboot .hero-lp .lead {
  margin: 0 auto 40px;
}

.hero-lp__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  clip-path: var(--clip-path-cut);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.feature-tag svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-tag:hover {
  border-color: var(--accent);
}

.page-assets-reboot .hero-lp .act {
  justify-content: center;
}

.masonry-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

@media (min-width: 1024px) {
  .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
  }
}

.masonry-item {
  position: relative;
  overflow: hidden;
  clip-path: var(--clip-path-cut);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform 0.2s ease;
}

.masonry-item:hover {
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .masonry-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .masonry-item--tall {
    grid-row: span 2;
  }

  .masonry-item--wide {
    grid-column: span 2;
  }
}

.masonry-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .masonry-item:hover {
    transform: none;
  }
  
  /* Caption-Padding auf Mobil */
  .tease .block .card {
    padding: 20px 32px; /* Mobil: Etwas weniger als Desktop */
  }
}

.quote-block {
  max-width: 65ch;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  border: none;
  background: transparent;
  padding: 0;
  clip-path: none;
  margin: 0;
}

.quote-block blockquote p {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 24px 0;
}

.quote-block cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--muted);
  display: block;
}

.paket-box:hover {
  transform: translateY(-2px);
}

.paket-box--highlight:hover {
  transform: translateY(-2px) scale(1.05);
}

@media (max-width: 767px) {
  .paket-box:hover,
  .paket-box--highlight:hover {
    transform: none;
  }
}

/* =========================================
   LANDING PAGE: ANALYTICS
========================================= */
.page-analytics {
  overflow-x: hidden;
}

.analytics-hero {
  text-align: center;
  padding-top: clamp(60px, 10vw, 100px);
  padding-bottom: clamp(80px, 12vw, 140px);
  position: relative;
}

.analytics-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 150%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(154, 194, 35, 0.08), transparent 50%);
  transform: translateX(-50%);
  z-index: -1;
}

.analytics-hero h1 {
  max-width: 20ch;
  margin: 0 auto;
}

.analytics-hero .lead {
  margin-top: 24px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.page-analytics .section--dark {
  background-color: #262a2c !important;
  color: #FFFFFF;
  clip-path: var(--clip-path-cut);
}

.page-analytics .section--dark .kicker,
.page-analytics .section--dark .section-header .lead {
  color: rgba(255, 255, 255, 0.75);
}

.page-analytics .section--dark h2 {
  color: #FFFFFF;
}

.page-analytics .pain-points-grid {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

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

.page-analytics .pain-point {
  text-align: center;
}

.page-analytics .pain-point svg {
  width: 32px;
  height: 32px;
  color: var(--accent-warn);
  margin-bottom: 16px;
}

.page-analytics .pain-point h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.page-analytics .pain-point p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.clarity-process-grid {
  display: grid;
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
}

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

.process-step-card {
  background-color: var(--surface);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  gap: 24px;
}

.process-step-card__number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.process-step-card__content h3 {
  font-size: 1.2rem;
  margin: 0 0 8px 0;
}

.process-step-card__content p {
  margin: 0;
  color: var(--muted);
}

.analytics-dashboard {
  border: 1px solid var(--line);
  background-color: var(--surface);
  clip-path: var(--clip-path-cut);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.analytics-dashboard__main-chart {
  padding: clamp(24px, 4vw, 32px);
  background: var(--bg);
}

.chart-title {
  margin: 0 0 24px 0;
  font-size: 1.2rem;
}

.chart-title span {
  font-family: var(--font-mono);
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9rem;
  margin-left: 8px;
}

.analytics-dashboard__main-chart img {
  display: block;
  width: 100%;
}

.analytics-dashboard__kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--line);
}

.kpi-card {
  padding: clamp(20px, 3vw, 24px);
  text-align: center;
}

.kpi-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.kpi-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.kpi-value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
}

.kpi-card--positive .kpi-value {
  color: var(--accent);
}

.kpi-card--negative .kpi-value {
  color: var(--accent-warn);
}

/* =========================================
   LANDING PAGE: BETREUUNG
========================================= */
.page-care {
  overflow-x: hidden;
}

.care-hero {
  padding-bottom: clamp(80px, 15vw, 160px);
}

@media(min-width: 900px) {
  .care-hero .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(40px, 8vw, 100px);
  }
}

.care-hero__content {
  text-align: center;
}

@media(min-width: 900px) {
  .care-hero__content {
    text-align: left;
  }
}

.care-hero__shield {
  display: none;
}

@media(min-width: 900px) {
  .care-hero__shield {
    display: grid;
    place-items: center;
    position: relative;
    height: 400px;
  }
}

.shield__core {
  width: 180px;
  height: 180px;
  background-color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 15px rgba(154, 194, 35, 0.1), 0 0 0 30px rgba(154, 194, 35, 0.05);
}

.shield__core svg {
  width: 80px;
  height: 80px;
  color: #fff;
}

.shield__orbit {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 16px;
  clip-path: var(--clip-path-cut);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  animation: float 6s ease-in-out infinite;
}

.shield__orbit--1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shield__orbit--2 {
  top: 20%;
  right: 0%;
  animation-delay: -1.5s;
}

.shield__orbit--3 {
  bottom: 25%;
  left: 0%;
  animation-delay: -3s;
}

.shield__orbit--4 {
  bottom: 15%;
  right: 10%;
  animation-delay: -4.5s;
}

.feature-grid {
  display: grid;
  gap: 1px;
  background-color: var(--line);
  border: 1px solid var(--line);
}

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

.feature-card {
  background-color: var(--surface);
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-card svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-top: 4px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin: 0 0 8px 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.page-care .section--dark {
  background-color: #262a2c !important;
}

.emergency-plan {
  display: grid;
  gap: 32px;
  text-align: center;
}

@media(min-width: 768px) {
  .emergency-plan {
    grid-template-columns: 2fr 1fr;
    align-items: center;
    text-align: left;
  }
}

.emergency-plan .kicker,
.emergency-plan p {
  color: rgba(255, 255, 255, 0.75);
}

.emergency-plan h2 {
  color: #fff;
  margin-bottom: 16px;
}

.emergency-plan__contact {
  text-align: center;
}

/* =========================================
   LANDING PAGE: ÜBER UNS
========================================= */
.about-hero {
  padding-top: 0;
  padding-bottom: clamp(60px, 10vw, 100px);
}

.about-hero__image {
  clip-path: var(--clip-path-cut);
  border: 1px solid var(--line);
  margin-bottom: clamp(24px, 5vw, 40px);
}

.about-hero__image img {
  display: block;
  width: 100%;
}

.about-hero__text {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
}

.about-hero__text h1 {
  letter-spacing: -0.03em;
}

.section--team {
  background-color: var(--bg);
  clip-path: var(--clip-path-cut);
}

.team-grid {
  display: grid;
  gap: clamp(40px, 8vw, 80px);
  margin-top: 56px;
}

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

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

.team-member__photo {
  max-width: 200px;
  margin: 0 auto 24px;
  clip-path: var(--clip-path-cut);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member__photo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member__photo img {
  display: block;
  width: 100%;
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 0;
}

.team-member__role {
  font-family: var(--font-mono);
  color: var(--accent);
  display: block;
  margin: 4px 0 16px;
}

.team-member__bio {
  font-size: 1rem;
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto;
}

.page-about .section--workspace {
  position: relative;
  padding: clamp(80px, 15vw, 150px) 0;
  color: #fff;
  text-align: center;
  z-index: 1;
  background-color: #333;
}

.page-about .section--workspace::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://via.placeholder.com/1600x900/444444/666666?text=Unser+Workspace');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.page-about .workspace-content {
  max-width: 60ch;
  margin: 0 auto;
}

.page-about .workspace-content .kicker {
  color: var(--accent);
}

.page-about .workspace-content h2 {
  color: #fff;
  margin-bottom: 16px;
}

.page-about .workspace-content p {
  font-size: clamp(1rem, 3vw, 1.15rem);
  line-height: 1.7;
}

.milestone-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 2px solid var(--line);
  padding-top: 40px;
}

@media(min-width: 768px) {
  .milestone-timeline {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    border-top: none;
    border-left: 2px solid var(--line);
    padding-top: 0;
    padding-left: 40px;
  }
}

.milestone {
  text-align: center;
}

@media(min-width: 768px) {
  .milestone {
    text-align: left;
  }
}

.milestone__year {
  display: block;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.milestone__event {
  display: block;
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* =========================================
   SHOWCASE GRID (SIMPLE)
========================================= */
.showcase-grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: start;
}

.showcase-item {
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.showcase-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.showcase-item__photo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 5px var(--line);
}

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

.showcase-item__meta h3 {
  font-size: 1.2rem;
  margin: 0;
}

.showcase-item__meta span {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
}

.showcase-item__body {
  padding: 0 24px 24px;
  flex-grow: 1;
}

.showcase-item__body blockquote {
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.showcase-item__body blockquote p:last-of-type {
  margin-bottom: 0;
}

.showcase-item__body p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
}

.showcase-item__footer {
  padding: 24px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.showcase-item__footer h4 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 16px 0;
}

.showcase-item__footer .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showcase-item__footer .tag-item {
  font-size: 0.8rem;
  padding: 4px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.showcase-item--full {
  grid-column: 1 / -1;
}

@media(min-width: 900px) {
  .showcase-item--full {
    grid-column: span 2;
  }
}

.showcase-item--quote-only .showcase-item__header {
  border-bottom: 1px solid var(--line);
}

.showcase-item--quote-only .showcase-item__body {
  padding-top: 24px;
}

.showcase-item--logo-only {
  padding: 24px;
  display: grid;
  place-items: center;
  min-height: 150px;
}

.showcase-item--logo-only img {
  max-width: 180px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.showcase-item--logo-only:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* =========================================
   WISSENS-HUB (GLOSSAR & FAQ)
========================================= */
.sf-glossar-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.sf-glossar-filter-btn {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 2px solid var(--line);
  color: var(--muted);
  background: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  clip-path: var(--clip-path-cut);
  font-weight: 700;
}

.sf-glossar-filter-btn:not(.sf-disabled):hover {
  background-color: var(--bg);
  color: var(--ink);
  border-color: var(--line);
}

.sf-glossar-filter-btn.sf-active {
  background-color: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.sf-glossar-filter-btn.sf-disabled {
  color: var(--line);
  cursor: not-allowed;
  pointer-events: none;
  border-color: var(--line);
}

.sf-glossar-grid {
  position: relative;
}

.sf-glossar-card {
  padding: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, height 0.4s ease, margin 0.4s ease, padding 0.4s ease, border-width 0.4s ease;
  will-change: opacity, transform, height;
}

.sf-glossar-card p {
  margin-top: 0;
  margin-bottom: 1em;
  color: var(--muted);
}

.sf-glossar-card p:last-child {
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.faq-item p {
  margin: 1em 0 0;
  color: var(--muted);
}

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

/* =========================================
   ARCHIV & BLOG
========================================= */
.sf-archive-grid {
  margin-top: 48px;
}

.sf-archive-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

body.blog #main,
body.archive #main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 769px) {
  body.blog #main,
  body.archive #main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  body.blog.no-sidebar #main,
  body.archive.no-sidebar #main {
    grid-template-columns: repeat(3, 1fr);
  }

  body.blog.right-sidebar #main,
  body.archive.right-sidebar #main,
  body.blog.left-sidebar #main,
  body.archive.left-sidebar #main {
    grid-template-columns: repeat(2, 1fr);
  }
}

body.blog #main article,
body.archive #main article {
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
}

body.blog #main article .inside-article,
body.archive #main article .inside-article {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.blog #main article .post-image,
body.archive #main article .post-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

body.blog #main article .post-image img,
body.archive #main article .post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body.blog #main article:hover .post-image img,
body.archive #main article:hover .post-image img {
  transform: scale(1.08);
}

.sf-archive-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

body.blog #main article .entry-header,
body.archive #main article .entry-header {
  padding: 0;
  margin-bottom: 8px;
}

body.blog #main article .entry-title,
body.archive #main article .entry-title {
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.3;
}

body.blog #main article .entry-title a,
body.archive #main article .entry-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

body.blog #main article:hover .entry-title a,
body.archive #main article:hover .entry-title a {
  color: var(--accent);
}

body.blog #main article .entry-meta,
body.archive #main article .entry-meta {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  order: -1;
}

body.blog #main article .entry-meta span,
body.archive #main article .entry-meta span {
  display: inline-block;
  margin-right: 1em;
}

body.blog #main article .entry-meta span:last-child,
body.archive #main article .entry-meta span:last-child {
  margin-right: 0;
}

body.blog #main article .entry-meta .gp-icon,
body.archive #main article .entry-meta .gp-icon {
  display: none;
}

body.blog #main article .entry-summary,
body.archive #main article .entry-summary {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: auto;
  padding-top: 16px;
}

body.blog #main article .entry-summary p:last-child,
body.archive #main article .entry-summary p:last-child {
  margin-bottom: 0;
}

body.blog #main article .entry-meta[aria-label="Beitragsmeta"],
body.archive #main article .entry-meta[aria-label="Beitragsmeta"] {
  display: none;
}

/* =========================================
   SIDEBAR SUCHE
========================================= */
.widget_search {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
  clip-path: var(--clip-path-cut);
  margin-bottom: 32px;
}

.widget_search .wp-block-search__label {
  font-family: var(--font-mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: block;
  font-weight: 700;
}

.widget_search .wp-block-search__inside-wrapper {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  clip-path: var(--clip-path-cut);
  overflow: hidden;
}

.widget_search .wp-block-search__input {
  flex-grow: 1;
  border: none;
  background-color: var(--bg);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  min-width: 0;
  clip-path: none;
  border-radius: 0;
}

.widget_search .wp-block-search__input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: var(--surface);
}

.widget_search .wp-block-search__button {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  background-color: var(--accent);
  color: var(--ink);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  clip-path: none;
  border-radius: 0;
  white-space: nowrap;
}

.widget_search .wp-block-search__button:hover {
  background-color: var(--ink);
  color: var(--surface);
}

.widget_search .wp-block-search__button-outside .wp-block-search__button {
  margin-left: 10px;
  clip-path: var(--clip-path-cut);
}

.widget_search .wp-block-search__button-outside .wp-block-search__inside-wrapper {
  border: none;
  clip-path: none;
  overflow: visible;
}

.widget_search .wp-block-search__button-outside .wp-block-search__input {
  border: 1px solid var(--line);
  clip-path: var(--clip-path-cut);
}

/* =========================================
   SINGLE POST
========================================= */
.sfs-single-header-wrap {
  text-align: center;
  padding-top: clamp(40px, 8vw, 60px);
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.sfs-entry-header .kicker {
  margin-bottom: 16px;
}

.sfs-entry-header .kicker a {
  color: var(--accent);
  text-decoration: none;
}

.sfs-entry-header .kicker a:hover {
  color: var(--ink);
}

.sfs-entry-header .entry-title {
  font-size: clamp(36px, 8vw, 60px);
  max-width: 20ch;
  margin: 0 auto 32px;
}

.sfs-entry-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
}

.sfs-byline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sfs-byline img.avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
}

.sfs-byline .author-name a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.sfs-byline .author-name a:hover {
  color: var(--accent);
}

.posted-on {
  display: flex;
  align-items: center;
  gap: 8px;
}

.posted-on svg {
  width: 16px;
  height: 16px;
}

.sfs-tags-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.sfs-tags-links svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sfs-tags-links a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--line);
}

.sfs-tags-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.sfs-share-section {
  margin-top: 24px;
}

.sfs-share-section summary {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--line);
  clip-path: var(--clip-path-cut);
  background: transparent;
  transition: all 0.2s ease;
}

.sfs-share-section summary svg {
  width: 16px;
  height: 16px;
}

.sfs-share-section summary:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.sfs-share-section summary::-webkit-details-marker {
  display: none;
}

.sfs-share-section summary::after {
  content: ' +';
  font-weight: 700;
  margin-left: 4px;
}

.sfs-share-section details[open] summary::after {
  content: ' –';
  margin-left: 4px;
}

.sfs-share-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sfs-share-links a, .sfs-share-links button {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.2s ease;
  clip-path: var(--clip-path-cut);
  background: var(--surface);
  cursor: pointer;
}

.sfs-share-links a:hover, .sfs-share-links button:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.sfs-featured-image {
  margin-top: 32px;
  padding-bottom: 32px;
}

.sfs-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: var(--clip-path-cut);
  border: 1px solid var(--line);
}

.sfs-featured-image figcaption {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.8em;
}

.single-post .entry-content {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.single-post .entry-content > *:first-child {
  margin-top: 0;
}

.single-post .entry-content h2 {
  margin: 2em 0 0.8em;
  font-size: clamp(24px, 6vw, 36px);
}

.single-post .entry-content h3 {
  margin: 1.5em 0 0.6em;
  font-size: clamp(20px, 5vw, 28px);
}

.single-post .entry-content p {
  margin-bottom: 1.5em;
}

.single-post .entry-content ul, .single-post .entry-content ol {
  margin: 0 0 1.5em 0;
  padding-left: 1.5em;
}

.single-post .entry-content li {
  margin-bottom: 0.5em;
}

.single-post .entry-content blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  border: none;
  background-color: var(--bg);
  font-style: italic;
  color: var(--ink);
  clip-path: var(--clip-path-cut);
  position: relative;
}

.single-post .entry-content blockquote::before {
  content: '"';
  font-family: serif;
  font-size: 6rem;
  color: var(--line);
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  line-height: 1;
  z-index: 0;
}

.single-post .entry-content blockquote p {
  position: relative;
  z-index: 1;
}

.single-post .entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.single-post .entry-content figure.wp-block-image img {
  clip-path: var(--clip-path-cut);
  border: 1px solid var(--line);
}

.single-post .entry-content figure figcaption {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5em;
}

.sfs-post-navigation {
  margin-top: clamp(60px, 10vw, 100px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: var(--max-width);
}

.sfs-post-navigation .nav-links {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .sfs-post-navigation .nav-links {
    grid-template-columns: 1fr 1fr;
  }
}

.sfs-post-navigation .nav-next {
  text-align: right;
}

.sfs-post-navigation a {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  transition: background-color 0.2s ease;
  height: 100%;
}

.sfs-post-navigation a:hover {
  background-color: var(--bg);
}

.sfs-post-navigation a:hover .nav-title {
  color: var(--accent);
}

.sfs-post-navigation .nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.sfs-post-navigation .nav-label svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.sfs-post-navigation .nav-next .nav-label {
  justify-content: flex-end;
}

.sfs-post-navigation .nav-title {
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s ease;
  margin-top: auto;
}

/* =========================================
   PAKET-BOX LABEL - MINIMAL & CLEAN
   Passt perfekt zum Starfruit-Design
========================================= */

.paket-box {
  position: relative;
  /* Etwas mehr Padding oben für das Label */
  padding-top: 56px;
}

.paket-box__label {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  background-color: transparent;
  color: var(--muted);
  border: 2px solid var(--line);
  transition: all 0.2s ease;
}

/* Highlight für "Klassiker" */
.paket-box--highlight {
  /* Die Box selbst bekommt einen farbigen Border */
  border: 2px solid var(--accent);
}

.paket-box--highlight .paket-box__label {
  background-color: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

/* Subtiler Hover-Effekt */
.paket-box:hover .paket-box__label {
  transform: translateY(-2px);
}

.paket-box--highlight:hover .paket-box__label {
  box-shadow: 0 4px 12px rgba(154, 194, 35, 0.3);
}

/* =========================================
   SHOWCASE SYSTEM V11.3 (FINAL)
   - Testimonial-Layout-Fix (v9.8.1)
   - Lightbox-Zentrierung-Fix (Grid v9.8.2)
   - Lightbox Caption-Zentrierung FIX (v11.3)
   - Lightbox Mobile Icon-Größe FIX (v11.3)
========================================= */

/* Layout & Grid */
.sfs-showcase-layout-v9 {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  margin-top: 0;
}
@media(min-width: 1024px) {
  .sfs-showcase-layout-v9 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}
.sfs-showcase-main-column, .sfs-showcase-sidebar-column {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  align-content: start;
}

/* Card Base */
.sfs-card {
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sfs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Card Header */
.sfs-card__header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.sfs-card__logo-box {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  display: flex; justify-content: center; align-items: center;
  background-color: transparent; padding: 0;
}
.sfs-card__logo-box a {
  display: flex; justify-content: center; align-items: center;
  width: 100%; height: 100%; transition: opacity 0.3s ease;
}
.sfs-card__logo-box a:hover { opacity: 0.7; }
.sfs-card__logo-box img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
}
.sfs-card__title {
  font-size: 1.5rem; line-height: 1.2; margin: 0;
  padding-right: 60px; flex-grow: 1;
}
.sfs-card__year {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted);
  background-color: var(--bg); padding: 6px 12px; border: 1px solid var(--line);
  clip-path: var(--clip-path-cut); transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.sfs-card:hover .sfs-card__year {
  background-color: var(--accent); color: var(--ink); border-color: var(--accent);
}

/* Testimonial Header Layout */
.sfs-card--testimonial .sfs-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 16px;
  padding: 24px 16px;
}
.sfs-card__header-line1 {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  order: 1;
  width: 100%;
}
.sfs-card--testimonial .sfs-card__logo-box {
  width: 90px;
  height: 60px;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 16px;
}
.sfs-card--testimonial .sfs-card__year {
  position: static;
  margin: 0;
  margin-left: auto;
  align-self: center;
}
.sfs-card--testimonial:hover .sfs-card__year {
   transform: none;
}
.sfs-card--testimonial .sfs-card__title {
  padding-right: 0;
  font-size: 1.2rem;
  margin: 0;
  flex-basis: 100%;
  order: 2;
}

/* Card Media & Galerie Trigger */
.sfs-card__media { position: relative; background-color: var(--bg); }
.sfs-card__cover { position: relative; overflow: hidden; line-height: 0; }
.sfs-card__cover a { display: block; position: relative; cursor: pointer; }
.sfs-card__cover img {
  display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.sfs-card__cover a:hover img { transform: scale(1.05); }
.sfs-card__cover-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 34, 34, 0.85); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.sfs-card__cover a:hover .sfs-card__cover-overlay { opacity: 1; }
.sfs-card__cover-overlay svg {
  width: 48px; height: 48px; color: var(--accent);
  transform: scale(0.8); transition: transform 0.3s ease;
}
.sfs-card__cover a:hover .sfs-card__cover-overlay svg { transform: scale(1); }
.sfs-card__media-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 16px 32px; border-top: 1px solid var(--line); background-color: var(--surface);
}
.sfs-card__caption { flex: 1; font-size: 0.95rem; line-height: 1.5; color: var(--muted); }
.sfs-gallery-trigger {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700;
  color: var(--ink); background-color: var(--accent); border: none;
  clip-path: var(--clip-path-cut); cursor: pointer;
  transition: box-shadow 0.2s ease;
  white-space: nowrap; flex-shrink: 0;
}
.sfs-gallery-trigger svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.sfs-gallery-trigger:hover { box-shadow: 0 8px 16px rgba(154, 194, 35, 0.3); }
.sfs-gallery-trigger:active { transform: translateY(0); }
.sfs-hidden-gallery { display: none; }

/* Card Content & Zitat */
.sfs-card__content { padding: 32px; flex-grow: 1; }
.sfs-card--testimonial .sfs-card__content { padding: 24px 16px; }
.sfs-card blockquote { margin: 0; padding: 0 0 0 24px; border: none; font-style: normal; position: relative; }
.sfs-card blockquote::before {
  content: '"'; font-family: 'Caveat', serif; font-weight: 700; font-size: 4rem;
  color: var(--accent); position: absolute; top: 0; left: -5px; line-height: 1;
}
.sfs-card--testimonial blockquote::before { font-size: 3rem; }
.sfs-card blockquote p {
  position: relative; color: var(--muted); font-size: 1.1rem;
  line-height: 1.7; margin: 0 0 1em 0;
}
.sfs-card--testimonial blockquote p { font-size: 1rem; line-height: 1.6; }
.sfs-card blockquote p:last-child { margin-bottom: 0; }
.sfs-card blockquote cite {
  display: block; font-family: var(--font-mono); font-style: normal;
  font-size: 0.9rem; color: var(--ink); font-weight: 700;
  margin-top: 16px; padding-left: 0;
}

/* Card Footer (Leistungen) */
.sfs-card__footer { padding: 32px; margin-top: auto; border-top: 1px solid var(--line); background: var(--bg); }
.sfs-card__footer .kicker { font-size: 0.8rem; margin-bottom: 16px; }
.sfs-card__footer .check-liste li:not(:last-child) { margin-bottom: 8px; }
.sfs-card--case-study { box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

/* MOBILE FIXES - Container-Overflow verhindern */
@media (max-width: 768px) {
  /* Container-Anpassung für Mobile */
  .section--showcase {
    overflow-x: hidden;
  }
  
  /* Reguläre Cards - Padding reduzieren */
  .sfs-card__header {
    padding: 20px;
  }
  
  .sfs-card__content {
    padding: 20px;
  }
  
  .sfs-card__footer {
    padding: 20px;
  }
  
  .sfs-card__media-footer {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .sfs-gallery-trigger {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  /* Container Padding anpassen */
  .section--showcase .wrap {
    padding: 0 12px;
  }
  
  /* Showcase Grid schmaler */
  .sfs-showcase-layout-v9 {
    gap: 24px;
  }
  
  /* Testimonial Cards - noch kompakter */
  .sfs-card--testimonial .sfs-card__header {
    padding: 14px 12px;
  }
  
  .sfs-card--testimonial .sfs-card__content {
    padding: 14px 12px;
  }
  
  /* Kleinere Elemente auf sehr kleinen Screens */
  .sfs-card--testimonial .sfs-card__logo-box {
    width: 70px;
    height: 45px;
    margin-right: 12px;
  }
  
  .sfs-card--testimonial .sfs-card__title {
    font-size: 1.05rem;
  }
  
  .sfs-card--testimonial blockquote::before {
    font-size: 2.2rem;
    top: -5px;
  }
  
  .sfs-card--testimonial blockquote p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .sfs-card--testimonial .sfs-card__year {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

/* =========================================
   SHOWCASE SYSTEM
========================================= */

/* Box-sizing Fix für alle Showcase-Elemente */
.sfs-showcase-layout-v9 *,
.sfs-card *,
.sfs-lightbox * {
  box-sizing: border-box;
}

/* Layout & Grid */
.sfs-showcase-layout-v9 {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}
@media(min-width: 1024px) {
  .sfs-showcase-layout-v9 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }
}
.sfs-showcase-main-column, .sfs-showcase-sidebar-column {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  align-content: start;
  width: 100%;
  min-width: 0;
}

/* Card Base */
.sfs-card {
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: var(--clip-path-cut);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.sfs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Card Header */
.sfs-card__header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  box-sizing: border-box;
}
.sfs-card__logo-box {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  display: flex; justify-content: center; align-items: center;
  background-color: transparent; padding: 0;
}
.sfs-card__logo-box a {
  display: flex; justify-content: center; align-items: center;
  width: 100%; height: 100%; transition: opacity 0.3s ease;
}
.sfs-card__logo-box a:hover { opacity: 0.7; }
.sfs-card__logo-box img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
}
.sfs-card__title {
  font-size: 1.5rem; line-height: 1.2; margin: 0;
  padding-right: 60px; flex-grow: 1;
}
.sfs-card__year {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted);
  background-color: var(--bg); padding: 6px 12px; border: 1px solid var(--line);
  clip-path: var(--clip-path-cut); transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.sfs-card:hover .sfs-card__year {
  background-color: var(--accent); color: var(--ink); border-color: var(--accent);
}

/* Testimonial Header Layout */
.sfs-card--testimonial .sfs-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 16px;
  padding: 24px 16px;
}
.sfs-card__header-line1 {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  order: 1;
  width: 100%;
}
.sfs-card--testimonial .sfs-card__logo-box {
  width: 90px;
  height: 60px;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 16px;
}
.sfs-card--testimonial .sfs-card__year {
  position: static;
  margin: 0;
  margin-left: auto;
  align-self: center;
}
.sfs-card--testimonial:hover .sfs-card__year {
   transform: none;
}
.sfs-card--testimonial .sfs-card__title {
  padding-right: 0;
  font-size: 1.2rem;
  margin: 0;
  flex-basis: 100%;
  order: 2;
}

/* MOBILE: Alle Karten bekommen das gleiche Layout wie Testimonials */
@media (max-width: 768px) {
  /* Case Study Cards wie Testimonials layouten */
  .sfs-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 16px;
    padding: 20px;
  }
  
  .sfs-card__logo-box {
    width: 100px;
    height: 70px;
    margin-right: 16px;
  }
  
  .sfs-card__title {
    padding-right: 0;
    font-size: 1.3rem;
    flex-basis: 100%;
    order: 2;
  }
  
  .sfs-card__year {
    position: static;
    margin: 0;
    margin-left: auto;
    align-self: center;
    flex-shrink: 0;
  }
  
  .sfs-card:hover .sfs-card__year {
    transform: none;
  }
}

/* Card Media & Galerie Trigger */
.sfs-card__media { position: relative; background-color: var(--bg); }
.sfs-card__cover { position: relative; overflow: hidden; line-height: 0; }
.sfs-card__cover a { display: block; position: relative; cursor: pointer; }
.sfs-card__cover img {
  display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.sfs-card__cover a:hover img { transform: scale(1.05); }
.sfs-card__cover-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 34, 34, 0.85); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.sfs-card__cover a:hover .sfs-card__cover-overlay { opacity: 1; }
.sfs-card__cover-overlay svg {
  width: 48px; height: 48px; color: var(--accent);
  transform: scale(0.8); transition: transform 0.3s ease;
}
.sfs-card__cover a:hover .sfs-card__cover-overlay svg { transform: scale(1); }
.sfs-card__media-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 16px 32px; border-top: 1px solid var(--line); background-color: var(--surface);
  box-sizing: border-box;
}
.sfs-card__caption { flex: 1; font-size: 0.95rem; line-height: 1.5; color: var(--muted); }
.sfs-gallery-trigger {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700;
  color: var(--ink); background-color: var(--accent); border: none;
  clip-path: var(--clip-path-cut); cursor: pointer;
  transition: box-shadow 0.2s ease;
  white-space: nowrap; flex-shrink: 0;
}
.sfs-gallery-trigger svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.sfs-gallery-trigger:hover { box-shadow: 0 8px 16px rgba(154, 194, 35, 0.3); }
.sfs-gallery-trigger:active { transform: translateY(0); }
.sfs-hidden-gallery { display: none; }

/* Card Content & Zitat */
.sfs-card__content { 
  padding: 32px; 
  flex-grow: 1;
  box-sizing: border-box;
}
.sfs-card--testimonial .sfs-card__content { padding: 24px 16px; }
.sfs-card blockquote { margin: 0; padding: 0 0 0 24px; border: none; font-style: normal; position: relative; }
.sfs-card blockquote::before {
  content: '"'; 
  font-family: Arial, serif; /* Klassischeres Anführungszeichen */
  font-weight: 400; 
  font-size: 5rem;
  color: var(--accent); 
  position: absolute; 
  top: -15px; /* Höher positioniert */
  left: -10px; 
  line-height: 1;
  opacity: 0.8;
}
.sfs-card--testimonial blockquote::before { 
  font-size: 3.5rem; 
  top: -10px;
}
.sfs-card blockquote p {
  position: relative; color: var(--muted); font-size: 1.1rem;
  line-height: 1.7; margin: 0 0 1em 0;
}
.sfs-card--testimonial blockquote p { font-size: 1rem; line-height: 1.6; }
.sfs-card blockquote p:last-child { margin-bottom: 0; }
.sfs-card blockquote cite {
  display: block; font-family: var(--font-mono); font-style: normal;
  font-size: 0.9rem; color: var(--ink); font-weight: 700;
  margin-top: 16px; padding-left: 0;
}

/* Card Footer (Leistungen) */
.sfs-card__footer { 
  padding: 32px; 
  margin-top: auto; 
  border-top: 1px solid var(--line); 
  background: var(--bg);
  box-sizing: border-box;
}
.sfs-card__footer .kicker { font-size: 0.8rem; margin-bottom: 16px; }
.sfs-card__footer .check-liste li:not(:last-child) { margin-bottom: 8px; }
.sfs-card--case-study { box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

/* WEITERE MOBILE ANPASSUNGEN */
@media (max-width: 768px) {
  .sfs-card__content {
    padding: 20px;
  }
  
  .sfs-card__footer {
    padding: 20px;
  }
  
  .sfs-card__media-footer {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .sfs-gallery-trigger {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  /* Showcase Grid noch schmaler */
  .sfs-showcase-layout-v9 {
    gap: 20px;
    padding: 0;
  }
  
  /* Testimonial Cards - noch kompakter */
  .sfs-card--testimonial .sfs-card__header {
    padding: 14px 10px;
    gap: 6px 10px;
  }
  
  .sfs-card--testimonial .sfs-card__content {
    padding: 14px 10px;
  }
  
  /* Kleinere Elemente auf sehr kleinen Screens */
  .sfs-card--testimonial .sfs-card__logo-box {
    width: 65px;
    height: 45px;
    margin-right: 10px;
  }
  
  .sfs-card--testimonial .sfs-card__title {
    font-size: 1.05rem;
  }
  
  .sfs-card--testimonial blockquote::before {
    font-size: 2.5rem;
    top: -8px;
  }
  
  .sfs-card--testimonial blockquote p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .sfs-card--testimonial .sfs-card__year {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  /* Anführungszeichen auf sehr kleinen Screens */
  .sfs-card blockquote::before {
    font-size: 3rem;
  }
}

/* =========================================
   LIGHTBOX V11.3 (Grid Zentrierung & Icon Fix)
========================================= */
.sfs-lightbox {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  transform: translateZ(0);
}
.sfs-lightbox.is-visible { opacity: 1; visibility: visible; }
.sfs-lightbox__overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.9); cursor: pointer;
}
.sfs-lightbox__container {
  position: relative; width: 90%; max-width: 1400px; height: 90vh;
  display: flex; flex-direction: column; z-index: 1; margin: auto;
  pointer-events: none;
}

/* Lightbox Buttons */
.sfs-lightbox__close, .sfs-lightbox__nav {
  position: absolute; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--accent); color: var(--ink);
  border: none; cursor: pointer; clip-path: var(--clip-path-cut);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
  z-index: 10;
  pointer-events: auto;
}
.sfs-lightbox__close:hover, .sfs-lightbox__nav:hover {
  box-shadow: 0 8px 20px rgba(154, 194, 35, 0.4);
}
.sfs-lightbox__close svg, .sfs-lightbox__nav svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.sfs-lightbox__close { top: -60px; right: 0; }
.sfs-lightbox__nav { top: 50%; transform: translateY(-50%); }
.sfs-lightbox__nav--prev { left: -70px; }
.sfs-lightbox__nav--next { right: -70px; }

/* Lightbox Content */
.sfs-lightbox__content {
  display: flex; flex-direction: column; height: 100%;
  background: transparent; clip-path: none; overflow: hidden;
  gap: 15px;
  pointer-events: auto;
  box-sizing: border-box;
}
.sfs-lightbox__image-wrapper {
  flex: 1;
  display: grid;
  place-items: center;
  background: transparent;
  padding: 20px;
  overflow: hidden;
  min-height: 0;
  position: relative;
  box-sizing: border-box;
}
.sfs-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  clip-path: var(--clip-path-cut);
}

/* Lightbox Footer */
.sfs-lightbox__footer {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 8px 16px;
  padding: 0 10px 10px 10px;
  background: transparent; border: none; clip-path: none;
  flex-shrink: 0;
}
.sfs-lightbox__caption {
  flex-grow: 1; flex-basis: 100%;
  font-size: 1rem; line-height: 1.5; color: rgba(255,255,255,0.8);
  text-align: center;
}
.sfs-lightbox__counter {
  font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700;
  color: var(--accent); white-space: nowrap;
  flex-basis: 100%;
  text-align: center;
}

/* Mobile Optimierung Lightbox */
@media (max-width: 768px) {
  .sfs-lightbox__container { width: 95%; height: 95vh; }
  .sfs-lightbox__close { top: 10px; right: 10px; width: 44px; height: 44px; }
  .sfs-lightbox__nav { width: 44px; height: 44px; }
  .sfs-lightbox__close:hover, .sfs-lightbox__nav:hover { transform: none; box-shadow: none; }
  .sfs-lightbox__nav:hover { transform: translateY(-50%); }

  .sfs-lightbox__nav--prev { left: 10px; }
  .sfs-lightbox__nav--next { right: 10px; }
  
  .sfs-lightbox__nav svg, .sfs-lightbox__close svg {
    width: 20px;
    height: 20px;
  }

  .sfs-lightbox__footer { 
    gap: 4px;
  }
}

/* =========================================
   LOGO CAROUSEL & RESTLICHE STYLES
========================================= */
.sfs-logo-carousel-wrapper { margin-top: clamp(80px, 12vw, 120px); }
.sfs-logo-carousel {
  width: 100%; overflow: hidden; padding: 24px 0; background-color: var(--surface);
  clip-path: var(--clip-path-cut); position: relative; border: 1px solid var(--line);
}
.sfs-logo-carousel::before, .sfs-logo-carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.sfs-logo-carousel::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.sfs-logo-carousel::after { right: 0; background: linear-gradient(to left, var(--surface), transparent); }
.sfs-logo-carousel:hover .sfs-logo-track { animation-play-state: paused; }
.sfs-logo-track {
  display: flex; align-items: center; width: fit-content; animation: scroll-logos 60s linear infinite;
}
.sfs-logo-track a, .sfs-logo-track div {
  display: flex; align-items: center; justify-content: center; height: 80px; margin: 0 50px;
}
.sfs-logo-track img {
  height: auto; max-height: 80px; width: auto; max-width: 220px;
  filter: grayscale(100%); opacity: 0.6; transition: all 0.3s ease;
}
.sfs-logo-track a:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
@keyframes scroll-logos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section--showcase {
  padding-top: 0 !important; padding-bottom: 0 !important;
  background-color: transparent !important; clip-path: none !important;
}

.sfs-lightbox__close:focus-visible,
.sfs-lightbox__nav:focus-visible,
.sfs-gallery-trigger:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .sfs-card, .sfs-lightbox, .sfs-card__cover img, .sfs-gallery-trigger, .sfs-lightbox__nav { transition: none; }
  .sfs-logo-track { animation: none; }
}
@media print {
  .sfs-gallery-trigger, .sfs-hidden-gallery, .sfs-lightbox { display: none !important; }
}