/* ============================================================
   WP THEME ISOLATION — surgical, preserves SVG & natural flow
   ============================================================ */
.cc-page {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  background: #faf9f5;
  color: #0f1411;
  font-family: 'Manrope', -apple-system, sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.cc-page *, .cc-page *::before, .cc-page *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
}
.cc-page button, .cc-page a, .cc-page input, .cc-page textarea, .cc-page select {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.cc-page input, .cc-page textarea {
  -webkit-user-select: auto;
  user-select: auto;
}
.cc-page button:focus, .cc-page a:focus, .cc-page .pref-option:focus, .cc-page .contact-card:focus {
  outline: none !important;
  background-color: inherit;
}
.cc-page button:active, .cc-page a:active, .cc-page .pref-option:active, .cc-page .contact-card:active {
  -webkit-tap-highlight-color: transparent !important;
}
.cc-page button:focus-visible, .cc-page a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* Neutralize theme link & button baseline */
.cc-page a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  box-shadow: none;
}
.cc-page button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  margin: 0;
  line-height: normal;
}
/* Kill any Elementor/WP container padding forcing space */
.cc-page, .cc-page section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* Preserve SVG rendering — crucial! */
.cc-page svg {
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
}
/* Reset list styles inside our page */
.cc-page ul, .cc-page ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Reset heading margins — we control them explicitly with !important */
.cc-page h1, .cc-page h2, .cc-page h3, .cc-page h4, .cc-page h5, .cc-page h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
/* Reset paragraph margins */
.cc-page p { margin: 0; padding: 0; }

/* ============ FORCE LIGHT MODE ============ */
:root { color-scheme: light only; }
@media (prefers-color-scheme: dark) {
  :root { color-scheme: light only; }
}

:root {
  --green: #7BA428;
  --green-dark: #5d7d1e;
  --green-deep: #3f5614;
  --green-soft: #f1f5e3;
  --green-mist: #f7faec;
  --ink: #0f1411;
  --ink-soft: #1f2620;
  --ink-mute: #2f3630;
  --paper: #faf9f5;
  --paper-warm: #eef3e3;
  --paper-deep: #e4ecd2;
  --line: #d6dcc4;
  --line-soft: #e4e8d4;
  --muted: #6b6b5e;
  --muted-deep: #4a4a40;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Manrope', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #faf9f5 !important;
  color-scheme: light only;
}

body {
  font-family: var(--sans);
  background: #faf9f5 !important;
  color: #0f1411 !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Defensive: prevent dark-mode overrides */
body, p, h1, h2, h3, h4, h5, h6, span, div, a, li {
  -webkit-text-fill-color: initial;
}
a { -webkit-text-decoration-skip: objects; }

/* === ATMOSPHERIC BACKGROUND === */
.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,20,17,.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,20,17,.022) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 80%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 249, 245, .82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s, background .3s;
  min-height: 72px;
}
.nav.scrolled {
  border-bottom-color: rgba(216, 212, 196, .6);
  padding: 1.1rem 3rem;
  background: rgba(250, 249, 245, .94);
  min-height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #0f1411 !important;
  max-height: 76px;
}
.nav-logo-img {
  height: 48px !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: 48px !important;
  display: block;
  object-fit: contain;
  transition: transform .3s;
}
.nav.scrolled .nav-logo-img {
  height: 38px !important;
  max-height: 38px !important;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); }

/* Footer logo — slightly smaller than nav */
.footer-logo .nav-logo-img {
  height: 44px !important;
  max-height: 44px !important;
  max-width: 200px !important;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: #0f1411 !important;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .005em;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width .35s ease;
}
.nav-links a:hover { color: var(--green-deep) !important; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  position: relative;
  background: var(--green) !important;
  color: #0f1411 !important;
  padding: .8rem 1.6rem !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  letter-spacing: .015em;
  transition: background .25s, transform .2s, box-shadow .25s;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: .55rem;
  line-height: normal !important;
  box-shadow: 0 4px 14px -4px rgba(123, 164, 40, .5) !important;
  overflow: visible;
}
.nav-cta-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: var(--green);
  opacity: 0;
  z-index: -1;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%   { opacity: .35; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.15); }
  100% { opacity: 0;   transform: scale(1.15); }
}
.nav-cta svg {
  transition: transform .2s;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px rgba(123, 164, 40, .6) !important;
}
.nav-cta:hover svg {
  transform: translateX(3px);
}

/* === BURGER === */
.burger {
  display: none;
  background: none !important;
  border: none !important;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 101;
  padding: 0 !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-appearance: none;
  outline: none !important;
  box-shadow: none !important;
}
.burger:focus, .burger:active, .burger:hover {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.burger span {
  width: 26px;
  height: 1.5px;
  background: #0f1411;
  transition: .3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #faf9f5;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--sans);
  font-size: 2.2rem;
  color: #0f1411 !important;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: -.025em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s, color .2s;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: .15s; }
.mobile-menu.open a:nth-child(2) { transition-delay: .2s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .25s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .3s; }
.mobile-menu.open a:nth-child(5) { transition-delay: .35s; }
.mobile-menu a:hover { color: var(--green-deep) !important; }

.mobile-menu-cta {
  margin-top: 1rem;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  background: var(--green) !important;
  color: #0f1411 !important;
  padding: 1.1rem 2rem !important;
  border-radius: 100px !important;
  letter-spacing: .01em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .6rem !important;
  box-shadow: 0 6px 20px -6px rgba(123, 164, 40, .55) !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
}
.mobile-menu-cta:hover {
  background: var(--green-dark) !important;
  color: #0f1411 !important;
}
.mobile-menu-cta:active {
  transform: scale(.97);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 8rem 3rem 5rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 1;
}

/* subtle hero atmospheric gradient */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 90vh;
  background:
    radial-gradient(ellipse 50% 40% at 75% 40%, rgba(123, 164, 40, .10), transparent 65%),
    radial-gradient(ellipse 35% 55% at 15% 85%, rgba(123, 164, 40, .05), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--muted-deep);
  font-weight: 600;
  margin: 0 0 3rem 0 !important;
  opacity: 0;
  animation: fadeUp .8s .15s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green);
}

.hero-title {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #0f1411 !important;
  margin: 0 0 2.2rem 0 !important;
  padding: 0 !important;
}
.hero-title em {
  font-style: normal;
  color: var(--green-deep) !important;
  font-weight: 500;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordIn .85s forwards;
}
/* Line break after "Struktur" — visible on desktop+tablet */
.hero-title-break { display: inline; }
@media (max-width: 600px) {
  .hero-title-break { display: none; }
}

@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--muted-deep) !important;
  max-width: 520px;
  margin: 0 0 3.5rem 0 !important;
  padding: 0 !important;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp .8s 1s forwards;
  font-weight: 400;
}
.hero-sub strong {
  color: #0f1411 !important;
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s 1.2s forwards;
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2.5rem 0 !important;
  opacity: 0;
  animation: fadeUp .8s 1.1s forwards;
}
.hero-signature-line {
  width: 32px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}
.hero-signature-text {
  font-size: .88rem;
  color: var(--muted-deep) !important;
  letter-spacing: .03em;
}
.hero-signature-text strong {
  color: #0f1411 !important;
  font-weight: 600;
}

.btn-primary {
  position: relative;
  background: #0f1411 !important;
  color: #faf9f5 !important;
  padding: 1.2rem 2.4rem !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  letter-spacing: .015em;
  display: inline-flex !important;
  align-items: center;
  gap: .7rem;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 6px 24px -8px rgba(15, 20, 17, .35);
  border: none !important;
  line-height: normal !important;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  opacity: 0;
  z-index: -1;
  transition: opacity .25s;
}
.btn-primary:hover {
  background: var(--green-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(63, 86, 20, .55) !important;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.cta-trust-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.1rem;
  font-size: .82rem;
  color: var(--muted-deep);
  flex-wrap: wrap;
}
.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.cta-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

.btn-secondary {
  color: #0f1411 !important;
  padding: 1.1rem .2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  border-bottom: 1px solid #0f1411;
  transition: color .2s, border-color .2s;
  background: transparent;
}
.btn-secondary:hover {
  color: var(--green-deep) !important;
  border-color: var(--green-deep);
}

/* === HERO VISUAL — Photo + Cubes + Art Claims === */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s 1.4s forwards;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-visual-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
}

.hero-photo-frame {
  position: relative;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-self: start !important;
  z-index: 1 !important;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  box-shadow:
    0 1px 0 rgba(15, 20, 17, .04),
    0 30px 60px -25px rgba(15, 20, 17, .35);
}

.hero-photo {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 1s cubic-bezier(.2, .9, .3, 1);
}
.hero-photo-frame:hover .hero-photo {
  transform: scale(1.03);
}

.hero-photo-overlay {
  display: none;
}

/* === CUBES — Keyframes only, alles andere ist inline (überschreibt Plugin-CSS) === */
@keyframes shadowPulse {
  0%, 100% { width: 280px; opacity: .8; }
  50%      { width: 240px; opacity: .5; }
}
@keyframes cubeStackIntro {
  from { opacity: 0; transform: rotateX(-18deg) rotateY(28deg) translateY(40px) scale(.85); }
  to   { opacity: 1; transform: rotateX(-18deg) rotateY(28deg) translateY(0) scale(1); }
}
@keyframes floatRotate {
  0%, 100% { transform: rotateX(-18deg) rotateY(28deg) translateY(0); }
  50%      { transform: rotateX(-15deg) rotateY(38deg) translateY(-16px); }
}
@keyframes ccCubeBob1 {
  0%, 100% { transform: translateZ(0) translateY(0); }
  50%      { transform: translateZ(28px) translateY(-6px); }
}
@keyframes ccCubeBob2 {
  0%, 100% { transform: translateZ(0) translateY(0); }
  50%      { transform: translateZ(-15px) translateY(8px); }
}
@keyframes ccCubeBob3 {
  0%, 100% { transform: translateZ(0) translateY(0); }
  50%      { transform: translateZ(20px) translateY(-4px); }
}
@keyframes ccFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25%      { transform: translateY(-8px) translateX(3px); }
  50%      { transform: translateY(-14px) translateX(0); }
  75%      { transform: translateY(-8px) translateX(-3px); }
}

/* === Art Claims under Photo+Cubes === */
.hero-art-claims {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  justify-content: center;
  padding: .5rem 0 0;
  opacity: 0;
  animation: fadeUp .8s 2.2s forwards;
}
.hero-art-claim {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -.005em;
  color: var(--muted-deep);
  line-height: 1.4;
}
.hero-art-claim-mark {
  width: 22px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

/* Logo signet badge — removed */

.corner-mark {
  display: none;
}

/* === SECTION BASE === */
section {
  padding: 7rem 3rem;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--green-deep) !important;
  font-weight: 700;
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
}
.section-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--green);
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -.032em;
  line-height: 1.1;
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  max-width: 900px;
  color: #0f1411 !important;
}
.section-title em {
  font-style: normal;
  color: var(--green-deep) !important;
  font-weight: 500;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted-deep) !important;
  max-width: 640px;
  line-height: 1.7;
  margin: 0 0 4rem 0 !important;
  padding: 0 !important;
}

/* === MANIFEST (Helmut's voice section, premium) === */
.manifest {
  background: #faf9f5;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.manifest::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 164, 40, .06), transparent 60%);
  pointer-events: none;
}

.manifest-quote {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: -.018em;
  color: #0f1411 !important;
  max-width: 880px;
  margin: 3rem 0 3rem !important;
  padding: 0 0 0 5rem !important;
  border-left: 3px solid var(--green);
  position: relative;
}
.manifest-quote::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 40%;
  background: linear-gradient(to bottom, var(--green-deep), var(--green));
}
.manifest-quote em {
  color: var(--green-deep) !important;
  font-style: normal;
  font-weight: 500;
  font-size: .95em;
}

.manifest-attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 0 0 !important;
  padding: 0 !important;
}
.manifest-attribution-line {
  width: 40px;
  height: 1px;
  background: var(--green-dark);
}
.manifest-attribution-text {
  font-size: .85rem;
  color: var(--muted-deep) !important;
  font-weight: 500;
  letter-spacing: .04em;
}
.manifest-attribution-text strong {
  color: #0f1411 !important;
  font-weight: 600;
}

/* === ÜBER HELMUT === */
.about {
  position: relative;
  background: #faf9f5;
  border-bottom: 1px solid var(--line-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-lead {
  font-family: var(--sans);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.45;
  color: #0f1411 !important;
  margin: 0 0 2rem 0 !important;
  letter-spacing: -.012em;
}
.about-body {
  font-size: 1rem;
  color: var(--muted-deep) !important;
  line-height: 1.75;
  margin: 0 0 1.2rem 0 !important;
  max-width: 540px;
}
.about-body:last-child { margin-bottom: 0 !important; }

/* LinkedIn pill — dezent, premium */
.about-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 2rem;
  padding: .75rem 1.3rem .75rem 1.1rem;
  background: transparent;
  color: #0f1411 !important;
  border: 1px solid var(--line);
  border-radius: 100px;
  text-decoration: none !important;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .005em;
  transition: border-color .25s, color .25s, background .25s, transform .25s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent !important;
}
.about-linkedin svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: color .25s, transform .3s;
}
.about-linkedin svg:first-child {
  color: var(--green-deep);
}
.about-linkedin-arrow {
  width: 14px !important;
  height: 14px !important;
  margin-left: .15rem;
  opacity: .55;
}
.about-linkedin:hover {
  border-color: var(--green);
  background: var(--green-soft);
  color: #0f1411 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -10px rgba(123, 164, 40, .35);
}
.about-linkedin:hover svg:first-child {
  color: var(--green-deep);
}
.about-linkedin:hover .about-linkedin-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
  color: var(--green-deep);
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
  align-items: start;
}
.about-img {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 40px -22px rgba(15, 20, 17, .3);
  position: relative;
  background: var(--paper-warm);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(.2, .9, .3, 1);
}
.about-img-main {
  aspect-ratio: 4 / 5;
}
.about-img-main img {
  object-position: center 25%;
}
.about-img:hover img { transform: scale(1.04); }

.about-quote {
  background: var(--paper-warm);
  border-left: 3px solid var(--green);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0;
}
.about-quote-text {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.45;
  color: #0f1411 !important;
  letter-spacing: -.01em;
  margin: 0 !important;
}
.about-quote-attr {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--green-deep) !important;
  font-weight: 700;
  margin-top: .9rem !important;
}

/* === FÜR WEN === */
.audience {
  background: var(--paper-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.audience-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .35s;
  background: transparent;
}
.audience-card:last-child { border-right: none; }
.audience-card:hover {
  background: linear-gradient(to bottom, rgba(123, 164, 40, .09), rgba(123, 164, 40, .03));
}
.audience-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.audience-card:hover::after { transform: scaleX(1); }

/* === GEAR ICONS — synced rotation on hover === */
.audience-gear-wrap {
  width: 56px;
  height: 56px;
  margin: 0 0 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-gear {
  width: 100%;
  height: 100%;
  color: var(--green-deep);
  transform-origin: center;
  transition: color .35s;
  animation: gearIdle 14s linear infinite;
}
.gear-2 {
  animation: gearIdleReverse 14s linear infinite;
}
.gear-3 {
  animation: gearIdle 14s linear infinite;
  animation-delay: -2s;
}

@keyframes gearIdle {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes gearIdleReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* When hovering ANY card → ALL gears speed up (synced reaction) */
#audienceGrid:hover .audience-gear {
  animation-duration: 3s;
  color: var(--green);
}
.audience-card:hover .audience-gear {
  color: var(--green-dark);
}

.audience-num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1rem;
  color: var(--green-deep) !important;
  margin: 0 0 1.2rem 0 !important;
  display: block;
  font-weight: 400;
}
.audience-h {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -.018em;
  margin: 0 0 1.2rem 0 !important;
  color: #0f1411 !important;
  line-height: 1.25;
}
.audience-p {
  font-size: .96rem;
  color: var(--muted-deep) !important;
  line-height: 1.7;
  margin: 0 !important;
}

/* === SERVICES === */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.5fr 80px;
  gap: 2rem;
  padding: 3.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  cursor: pointer;
  position: relative;
  transition: padding .35s, background .4s;
  text-decoration: none !important;
  color: inherit !important;
  background: transparent;
  overflow: hidden;
}
.service-row:hover {
  padding-left: 1.5rem;
  background: linear-gradient(to right, rgba(123, 164, 40, .06), transparent 70%);
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--green);
  transition: width .45s ease;
}
.service-row:hover::before { width: 4px; }
.service-row:hover .service-title { color: var(--green-deep) !important; }
.service-row:hover .service-arrow svg { stroke: var(--green-deep); }

.service-num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.15rem;
  color: var(--green-deep) !important;
  font-weight: 400;
  padding-top: .4rem;
}

.service-title {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -.022em;
  line-height: 1.15;
  color: #0f1411 !important;
}

.service-desc {
  color: var(--muted-deep) !important;
  font-size: 1rem;
  line-height: 1.7;
  padding-top: .5rem;
}

.service-arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: .8rem;
  transition: transform .35s;
}
.service-row:hover .service-arrow { transform: translateX(8px); }
.service-arrow svg {
  width: 28px !important;
  height: 28px !important;
  stroke: #0f1411 !important;
  stroke-width: 1.5 !important;
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* === PROCESS / RESULTS === */
.process {
  background: #0f1411 !important;
  color: #faf9f5 !important;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.process::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 164, 40, .12), transparent 60%);
  pointer-events: none;
}
.process .section-eyebrow { color: var(--green) !important; }
.process .section-eyebrow::before { background: var(--green); }
.process .section-title { color: #faf9f5 !important; }
.process .section-title em { color: var(--green) !important; }
.process .section-intro { color: rgba(250,249,245,.7) !important; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  position: relative;
  padding-top: 2rem;
  border-top: 2px solid var(--green);
}
.process-step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #9bc73f;
  box-shadow: 0 0 10px rgba(155, 199, 63, .6);
}

.process-num {
  font-family: var(--sans);
  font-size: 4.2rem;
  font-weight: 300;
  font-style: normal;
  color: var(--green) !important;
  line-height: 1;
  margin: 0 0 1.8rem 0 !important;
  display: block;
}

.process-h {
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0 0 1.2rem 0 !important;
  letter-spacing: -.018em;
  color: #faf9f5 !important;
  line-height: 1.25;
}

.process-p {
  font-size: .98rem;
  line-height: 1.7;
  color: rgba(250,249,245,.72) !important;
  margin: 0 !important;
}

/* === WARUM === */
.why {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.why-stats {
  display: grid;
  gap: 2.5rem;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--green);
}
.stat-num {
  font-family: var(--sans);
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1;
  color: #0f1411 !important;
  display: block;
  margin: 0 0 .6rem 0 !important;
}
.stat-num em {
  font-style: normal;
  color: inherit !important;
}
.stat-label {
  font-size: .9rem;
  color: var(--muted-deep) !important;
  letter-spacing: .015em;
  line-height: 1.55;
  margin: 0 !important;
}

.why-content h3 {
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 2.2rem 0 1.2rem !important;
  color: #0f1411 !important;
  line-height: 1.3;
}
.why-content h3:first-child { margin-top: 0 !important; }
.why-content p {
  color: var(--muted-deep) !important;
  line-height: 1.75;
  margin: 0 0 1.2rem 0 !important;
  font-size: 1rem;
}
.why-content p:last-child { margin-bottom: 0 !important; }
.why-content p strong {
  color: #0f1411 !important;
  font-weight: 600;
}

/* === REFERENCES === */
.refs {
  background: var(--paper-warm);
  border-top: 1px solid var(--line-soft);
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.ref-card {
  background: #faf9f5;
  padding: 3rem;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.ref-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -22px rgba(15,20,17,.15);
  border-color: var(--green);
}
.ref-card:hover::after { transform: scaleX(1); }

.ref-tag {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--green-deep) !important;
  font-weight: 700;
  margin: 0 0 1.8rem 0 !important;
  padding: .4rem .9rem !important;
  background: var(--green-soft);
  border-radius: 100px;
}

.ref-title {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -.022em;
  margin: 0 0 1.2rem 0 !important;
  color: #0f1411 !important;
  line-height: 1.25;
}

.ref-desc {
  color: var(--muted-deep) !important;
  line-height: 1.75;
  font-size: .98rem;
  margin: 0 !important;
}

.ref-quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.8rem;
  font-family: var(--sans);
  font-size: 5rem;
  font-style: normal;
  color: var(--green) !important;
  opacity: .25;
  line-height: 1;
  font-weight: 300;
}

/* === CTA SECTION === */
.cta-section {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  background: #faf9f5;
  overflow: hidden;
}
.cta-section > .reveal {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(123, 164, 40, .07), transparent 60%);
  pointer-events: none;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--green-deep) !important;
  font-weight: 700;
  margin: 0 auto 2rem !important;
  position: relative;
  z-index: 1;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--green);
}

.cta-title {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 auto 2rem !important;
  max-width: 900px;
  color: #0f1411 !important;
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title em {
  font-style: normal;
  color: var(--green-deep) !important;
  font-weight: 500;
}

.cta-sub {
  font-size: 1.15rem;
  color: var(--muted-deep) !important;
  max-width: 580px;
  margin: 0 auto 4rem !important;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto !important;
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-card {
  padding: 2.8rem 2rem;
  border: 1px solid var(--line);
  background: #faf9f5;
  text-decoration: none;
  color: #0f1411 !important;
  transition: all .35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-deep), #0f1411);
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card:hover {
  border-color: #0f1411;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(15,20,17,.25);
  color: #faf9f5 !important;
}
.contact-card:hover::before { opacity: 1; }
.contact-card svg {
  width: 28px !important;
  height: 28px !important;
  stroke: var(--green-deep) !important;
  stroke-width: 1.5 !important;
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .35s;
}
.contact-card:hover svg { stroke: var(--green) !important; }
.contact-card-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted) !important;
  font-weight: 700;
  transition: color .35s;
}
.contact-card:hover .contact-card-label { color: rgba(250,249,245,.65) !important; }
.contact-card-value {
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: -.012em;
}

/* === FOOTER === */
footer {
  background: #0f1411 !important;
  color: #faf9f5 !important;
  padding: 5rem 3rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250,249,245,.12);
  align-items: start;
}

.footer-brand-text {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -.018em;
  margin: 1.4rem 0 1rem !important;
  color: #faf9f5 !important;
  line-height: 1.3;
}
.footer-brand-text em {
  font-style: normal;
  color: var(--green) !important;
  font-weight: 500;
}

.footer-tagline {
  color: rgba(250,249,245,.6) !important;
  font-size: .95rem;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 !important;
}

.footer-col h4 {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--green) !important;
  font-weight: 700;
  margin: 0 0 1.8rem 0 !important;
  padding: 0 !important;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.footer-col a, .footer-col li {
  color: rgba(250,249,245,.7) !important;
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--green) !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .85rem;
  color: rgba(250,249,245,.5) !important;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  color: rgba(250,249,245,.5) !important;
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--green) !important; }

/* ========================================
   FUNNEL SECTION — 3-Step Situations-Qualifier
   ======================================== */
.funnel {
  background: #0f1411 !important;
  color: #faf9f5 !important;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem;
}
.funnel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 80%);
  pointer-events: none;
}
.funnel::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 164, 40, .14), transparent 60%);
  pointer-events: none;
}

.funnel-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.funnel-header {
  text-align: center;
  margin-bottom: 4rem;
}

.funnel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--green) !important;
  font-weight: 700;
  margin-bottom: 1.8rem;
}
.funnel-eyebrow::before, .funnel-eyebrow::after {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--green);
}

.funnel-title {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -.032em;
  line-height: 1.12;
  margin: 0 auto 1.6rem !important;
  color: #faf9f5 !important;
  max-width: 880px;
}
.funnel-title em {
  font-style: normal;
  color: var(--green) !important;
  font-weight: 500;
}
.funnel-intro {
  font-size: 1.05rem;
  color: rgba(250,249,245,.7) !important;
  max-width: 560px;
  margin: 0 auto !important;
  line-height: 1.7;
  text-align: center;
}

/* === PROGRESS INDICATOR === */
.funnel-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 4.5rem;
  margin-top: 1rem;
}
.progress-dot {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.progress-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(250,249,245,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-style: normal;
  font-size: .9rem;
  color: rgba(250,249,245,.45);
  transition: all .4s ease;
  background: transparent;
}
.progress-circle.active {
  border-color: var(--green);
  background: var(--green);
  color: #0f1411;
  font-weight: 600;
  box-shadow: 0 0 0 4px rgba(123, 164, 40, .15);
}
.progress-circle.done {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}
.progress-line {
  width: 40px;
  height: 1px;
  background: rgba(250,249,245,.2);
  transition: background .4s;
}
.progress-line.done { background: var(--green); }

/* === STEPS === */
.funnel-steps {
  position: relative;
  min-height: 380px;
}

.funnel-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity .45s ease, transform .5s ease;
}
.funnel-step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}
.funnel-step.exiting {
  opacity: 0;
  transform: translateX(-30px);
}

.step-question {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: normal;
  color: #faf9f5 !important;
  text-align: center;
  margin: 0 0 3rem !important;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.step-question em {
  font-style: normal;
  color: var(--green) !important;
  font-weight: 500;
}

.step-sub {
  text-align: center;
  color: rgba(250, 249, 245, .6) !important;
  font-size: 1rem;
  margin: -1.5rem 0 3rem !important;
  line-height: 1.5;
}

.funnel-privacy {
  text-align: center;
  font-size: .82rem;
  color: rgba(250, 249, 245, .5) !important;
  margin: 2rem auto 0 !important;
  max-width: 480px;
  line-height: 1.5;
}
.funnel-privacy a {
  color: rgba(250, 249, 245, .75) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.funnel-privacy a:hover {
  color: var(--green) !important;
}

.step-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.step-options.single-col {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.option-card {
  background: rgba(250, 249, 245, .04) !important;
  border: 1px solid rgba(250, 249, 245, .15) !important;
  border-radius: 2px !important;
  padding: 1.7rem 1.6rem !important;
  cursor: pointer;
  transition: all .3s ease;
  display: flex !important;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
  color: #faf9f5 !important;
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: .98rem !important;
  font-weight: 500 !important;
  line-height: 1.45;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-shadow: none !important;
  text-decoration: none !important;
  /* Hover bar needs clipping, but text must still wrap */
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}
.option-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.option-card:hover {
  background: rgba(123, 164, 40, .14) !important;
  border-color: var(--green) !important;
  transform: translateY(-2px);
}
.option-card:hover::before { transform: scaleY(1); }
.option-card.selected {
  background: rgba(123, 164, 40, .18) !important;
  border-color: var(--green) !important;
}
.option-card.selected::before { transform: scaleY(1); }

.option-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(123, 164, 40, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}
.option-card:hover .option-icon {
  background: var(--green);
  transform: scale(1.08);
}
.option-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: var(--green) !important;
  stroke-width: 2 !important;
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.option-card:hover .option-icon svg { stroke: #0f1411 !important; }

.option-text {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  max-width: 100%;
  padding-right: 0;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.option-text > * {
  max-width: 100%;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}
.option-label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(250, 249, 245, .45) !important;
  margin: 0 0 .5rem 0 !important;
  font-weight: 700;
}
.option-card:hover .option-label,
.option-card.selected .option-label { color: var(--green) !important; }

/* === STEP 3: Contact Form === */
.contact-step {
  display: grid;
  gap: 1.2rem;
}

.contact-preference {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-bottom: 1rem;
}
.pref-option {
  padding: 1rem .8rem;
  background: rgba(250, 249, 245, .04);
  border: 1px solid rgba(250, 249, 245, .12);
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  color: #faf9f5 !important;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.pref-option svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}
.pref-option:hover {
  border-color: var(--green);
  background: rgba(123, 164, 40, .08);
}
.pref-option.selected {
  border-color: var(--green);
  background: rgba(123, 164, 40, .12);
}

.input-field {
  background: rgba(250, 249, 245, .04);
  border: 1px solid rgba(250, 249, 245, .15);
  padding: 1rem 1.2rem;
  color: #faf9f5 !important;
  font-family: var(--sans);
  font-size: 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color .25s, background .25s;
  width: 100%;
  margin-top: 1rem;
}
.input-row + .input-field { margin-top: 1rem; }
.input-row .input-field { margin-top: 0; }
.input-field::placeholder { color: rgba(250, 249, 245, .4); }
.input-field:focus {
  border-color: var(--green);
  background: rgba(123, 164, 40, .06);
}

.input-textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-user-select: auto !important;
  user-select: auto !important;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.funnel-submit {
  background: var(--green) !important;
  color: #0f1411 !important;
  padding: 1.3rem 2.8rem !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: .02em;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .7rem;
  margin: 2rem auto 0 !important;
  transition: background .25s, transform .2s, box-shadow .25s;
  width: auto !important;
  min-width: 260px;
  line-height: normal !important;
}
.funnel-submit:hover {
  background: #9bc73f !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(155, 199, 63, .5) !important;
}
.funnel-submit svg {
  transition: transform .3s;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}
.funnel-submit:hover svg { transform: translateX(4px); }

/* Container around submit to ensure centering */
.funnel-submit-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: .5rem;
}

/* === Back link === */
.funnel-back {
  text-align: center;
  margin-top: 1.8rem;
}
.funnel-back a {
  color: rgba(250, 249, 245, .5) !important;
  font-size: .85rem;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
  background: transparent;
  border: none;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.funnel-back a:hover { color: var(--green) !important; }

/* === Success State === */
.funnel-success {
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}
.funnel-success.active { display: block; }

.success-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkPop .6s ease;
}
@keyframes checkPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success-check svg {
  width: 36px;
  height: 36px;
  stroke: #0f1411;
  stroke-width: 3;
  fill: none;
}

.success-title {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: #faf9f5 !important;
  margin: 0 0 1.2rem 0 !important;
  letter-spacing: -.022em;
  line-height: 1.25;
}
.success-title em { font-style: normal; color: var(--green) !important; font-weight: 500; }

.success-text {
  color: rgba(250, 249, 245, .7) !important;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto !important;
}

/* ========================================
   COOKIE CONSENT BANNER — DSGVO-konform
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 540px;
  z-index: 200;
  background: #0f1411;
  color: #faf9f5;
  border: 1px solid rgba(250, 249, 245, .15);
  border-radius: 8px;
  padding: 1.8rem 1.8rem;
  box-shadow: 0 24px 60px -15px rgba(15, 20, 17, .45);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
  font-family: 'Manrope', sans-serif;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  border-radius: 8px 8px 0 0;
}

.cookie-title {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: #faf9f5;
  margin: 0 0 .8rem 0 !important;
  letter-spacing: -.01em;
}

.cookie-text {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(250, 249, 245, .7);
  margin: 0 0 1.5rem 0 !important;
}
.cookie-text a {
  color: var(--green) !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.cookie-text a:hover { color: #9bc73f !important; }

.cookie-actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: .7rem 1.3rem;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .015em;
  cursor: pointer;
  transition: all .25s;
  border: 1px solid transparent;
}
.cookie-btn-accept {
  background: var(--green);
  color: #0f1411;
  border-color: var(--green);
}
.cookie-btn-accept:hover {
  background: #9bc73f;
  border-color: #9bc73f;
  transform: translateY(-1px);
}
.cookie-btn-deny {
  background: transparent;
  color: rgba(250, 249, 245, .8);
  border-color: rgba(250, 249, 245, .2);
}
.cookie-btn-deny:hover {
  background: rgba(250, 249, 245, .05);
  color: #faf9f5;
  border-color: rgba(250, 249, 245, .4);
}

@media (max-width: 560px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem 1.3rem;
  }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */

/* Tablet: 768px - 1100px — keep two-column hero & about */
/* Tablet block — kommt zuerst, wird aber durch späteren 980px-Block überschrieben */
@media (min-width: 600px) and (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 7rem 2rem 4rem;
  }
  .hero > div:first-child { max-width: 100%; }

  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }
  .about-images {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 980px) {
  .nav { padding: .9rem 1.5rem; min-height: 64px; }
  .nav.scrolled { padding: .75rem 1.5rem; min-height: 58px; }
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .burger { display: flex; }
  .nav-logo-img {
    height: 32px !important;
    max-height: 32px !important;
    max-width: 160px !important;
  }
  .nav.scrolled .nav-logo-img {
    height: 28px !important;
    max-height: 28px !important;
  }

  section { padding: 5rem 1.5rem; }

  .hero {
    padding: 6rem 1.5rem 3.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }
  /* CRITICAL: text first on mobile, visual after */
  .hero > div:first-child { order: 1; }
  /* About section mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem;
  }
  .about-img-main {
    aspect-ratio: 4 / 5;
    min-height: 380px;
  }
  .about-img-main img {
    object-position: center 15%;
  }
  .about-quote {
    padding: 1.6rem 1.4rem;
  }
  .about-quote-text { font-size: 1rem; }

  /* Hero photo mobile */
  .hero-visual {
    order: 2;
    height: auto;
    margin-top: 1rem;
    gap: 1.2rem;
  }
  .hero-art-claims {
    gap: .9rem 1.5rem;
    justify-content: center;
  }
  .hero-art-claim { font-size: .85rem; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }

  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 2.5rem 1.5rem;
  }
  .audience-card:last-child { border-bottom: none; }

  .service-row {
    grid-template-columns: 50px 1fr 30px;
    gap: 1rem;
    padding: 2.5rem 0;
  }
  .service-row:hover { padding-left: 0; }
  .service-desc {
    grid-column: 1 / 4;
    padding-top: .5rem;
    padding-left: 0;
  }
  .service-arrow { padding-top: .4rem; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .refs-grid {
    grid-template-columns: 1fr;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .cta-section { padding: 5.5rem 1.5rem; }

  footer { padding: 3.5rem 1.5rem 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  .manifest { padding: 5rem 1.5rem; }
  .manifest-quote {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    padding-left: 2.5rem !important;
  }

  .section-title { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .section-intro { margin-bottom: 3rem; }

  /* Funnel mobile */
  .funnel { padding: 5rem 1.25rem; }
  .funnel-inner { padding: 0; }
  .step-options { grid-template-columns: 1fr; gap: .8rem; }
  .contact-preference { grid-template-columns: 1fr; }
  .input-row { grid-template-columns: 1fr; }
  .funnel-progress { gap: .4rem; margin-bottom: 2.5rem; }
  .progress-line { width: 20px; }
  .progress-circle { width: 28px; height: 28px; font-size: .75rem; }
  .funnel-steps { min-height: 520px; }
  .option-card {
    padding: 1.3rem 1.2rem !important;
    gap: 1rem;
    font-size: .92rem !important;
    line-height: 1.4;
  }
  .option-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }
  .option-icon svg {
    width: 16px !important;
    height: 16px !important;
  }
  .option-label { font-size: .6rem !important; letter-spacing: .15em; margin-bottom: .35rem !important; }
  .step-question { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .cta-title { font-size: clamp(2rem, 6.5vw, 2.8rem); }
}

/* Tablet visual: Foto + Cubes nebeneinander, Cubes überlappen Foto rechts (600-1100px) */
@media (min-width: 600px) and (max-width: 1100px) {
  .hero-visual {
    margin: 0 auto !important;
    max-width: 760px !important;
    width: 100% !important;
  }
  .hero-visual-row {
    grid-template-columns: 1.1fr 1fr !important;
    gap: 0 !important;
    align-items: center !important;
    position: relative !important;
  }
  .hero-photo-frame {
    height: auto !important;
    width: 100% !important;
    max-width: 420px !important;
    z-index: 1 !important;
    position: relative !important;
  }
  .hero-cubes {
    min-height: 460px !important;
    margin-left: -80px !important;
    z-index: 3 !important;
    position: relative !important;
  }
  .hero-art-claims {
    justify-content: center !important;
  }
}

/* Mobile (<600px): Bild über Cubes, einspaltig */
@media (max-width: 599px) {
  .hero-visual-row {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    align-items: center !important;
    justify-items: center !important;
  }
  .hero-photo-frame {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .hero-cubes {
    min-height: 340px !important;
    max-width: 300px !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-left: auto !important;
  }
  .hero-art-claims {
    flex-direction: column;
    gap: .7rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary {
    justify-content: center;
    text-align: center;
  }
  .hero-visual { height: auto; }
  .ref-card { padding: 2rem; }
  .ref-quote-mark { font-size: 3.5rem; right: 1rem; top: .8rem; }
  .audience-h { font-size: 1.3rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .about-images { gap: 1rem; }
  .about-img-main { min-height: 340px; }
}
  .hero-cubes,
  .hero-cubes * {
    box-sizing: border-box !important;
  }
  .cc-cube-stack,
  .cc-cube-stack > div,
  .cc-cube-2,
  .cc-cube-3 {
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;
  }
  .hero-cubes > div:first-child {
    perspective: 1400px !important;
    -webkit-perspective: 1400px !important;
  }
