/* ================================================================
   Bella.tax — Steuerberatung Matthias Bella
   Tech / SaaS-modern · Hell &amp; luftig · Slate Brand
   ================================================================ */

:root {
  /* Brand — slate from logo */
  --brand: #71778D;
  --brand-deep: #2A3142;
  --brand-soft: #E4E5EA;
  --brand-tint: #F2F2F5;

  /* Neutrals */
  --paper: #FBFAF7;
  --bg: #F4F2EC;
  --bg-warm: #ECE9E1;
  --ink: #14181F;
  --ink-soft: #3F4654;
  --muted: #8A8F9C;
  --line: rgba(20, 24, 31, 0.10);
  --line-2: rgba(20, 24, 31, 0.18);

  /* Accent for CTAs — derived from brand, deeper */
  --accent: #2A3142;
  --accent-hover: #14181F;
  --accent-light: #B9BEC9;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ Layout helpers ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
}

.section__h {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
}
.section__h em { font-style: italic; color: var(--brand); }

.section__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn--lg { padding: 16px 24px; font-size: 15px; }
.btn--block { display: flex; justify-content: center; width: 100%; }

.btn--primary {
  background: var(--brand);
  color: #fff;
}
.btn--primary:hover { background: var(--brand-deep); }
.btn--primary .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.22);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: var(--accent-hover); }
.btn--accent .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: rgba(20,24,31,0.04); }

.btn--ghost-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.18); }

.btn .arr {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arr { transform: translateX(3px); }

/* ============ AMPEL — Status banner ============ */
.ampel {
  position: relative;
  z-index: 40;
  background: var(--brand-deep);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ampel__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 14px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.ampel__lights {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  align-items: center;
}
.light {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: block;
  position: relative;
}
.light--red.is-active {
  background: #FF4D4F;
  box-shadow: 0 0 0 0 rgba(255,77,79,0.55);
  animation: pulse-red 2.4s infinite;
}
.light--yellow.is-active {
  background: #F7B500;
  box-shadow: 0 0 8px rgba(247,181,0,0.5);
}
.light--green.is-active {
  background: #28C76F;
  box-shadow: 0 0 8px rgba(40,199,111,0.5);
}
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,79,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,77,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,79,0); }
}
.ampel__text {
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ampel__text strong {
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.ampel__text span {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.ampel__text em { font-style: italic; color: #B9BEC9; }
.ampel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  transition: all .2s;
  white-space: nowrap;
}
.ampel__cta:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.4);
}
.ampel__cta .arr { transition: transform .2s; }
.ampel__cta:hover .arr { transform: translateX(3px); }

/* ============ WhatsApp button ============ */
.btn--wa {
  background: #25D366;
  color: #0F2C16;
}
.btn--wa:hover { background: #1FB855; color: #fff; }
.wa-icon {
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16.001 3C8.82 3 3 8.82 3 16c0 2.293.6 4.444 1.65 6.31L3 29l6.85-1.62A12.94 12.94 0 0 0 16 29c7.18 0 13-5.82 13-13S23.181 3 16.001 3Zm0 23.6c-2.04 0-3.95-.57-5.57-1.55l-.4-.24-4.07.96.97-3.97-.26-.42A10.55 10.55 0 0 1 5.4 16c0-5.85 4.75-10.6 10.6-10.6 5.85 0 10.6 4.75 10.6 10.6 0 5.85-4.75 10.6-10.6 10.6Zm6.07-7.96c-.34-.17-2-.99-2.31-1.1-.31-.11-.54-.17-.77.17-.23.34-.88 1.1-1.08 1.33-.2.23-.4.26-.74.09-.34-.17-1.43-.53-2.72-1.69-1-.9-1.68-2-1.88-2.34-.2-.34-.02-.52.15-.69.15-.15.34-.4.51-.6.17-.2.23-.34.34-.57.11-.23.06-.43-.03-.6-.09-.17-.77-1.86-1.06-2.55-.28-.66-.56-.57-.77-.58l-.66-.01c-.23 0-.6.08-.91.43-.31.34-1.19 1.16-1.19 2.83 0 1.67 1.22 3.29 1.39 3.52.17.23 2.4 3.66 5.81 5.13.81.35 1.44.56 1.94.71.81.26 1.55.22 2.13.13.65-.1 2-.82 2.28-1.61.28-.79.28-1.47.2-1.61-.09-.15-.31-.23-.65-.4Z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16.001 3C8.82 3 3 8.82 3 16c0 2.293.6 4.444 1.65 6.31L3 29l6.85-1.62A12.94 12.94 0 0 0 16 29c7.18 0 13-5.82 13-13S23.181 3 16.001 3Zm0 23.6c-2.04 0-3.95-.57-5.57-1.55l-.4-.24-4.07.96.97-3.97-.26-.42A10.55 10.55 0 0 1 5.4 16c0-5.85 4.75-10.6 10.6-10.6 5.85 0 10.6 4.75 10.6 10.6 0 5.85-4.75 10.6-10.6 10.6Zm6.07-7.96c-.34-.17-2-.99-2.31-1.1-.31-.11-.54-.17-.77.17-.23.34-.88 1.1-1.08 1.33-.2.23-.4.26-.74.09-.34-.17-1.43-.53-2.72-1.69-1-.9-1.68-2-1.88-2.34-.2-.34-.02-.52.15-.69.15-.15.34-.4.51-.6.17-.2.23-.34.34-.57.11-.23.06-.43-.03-.6-.09-.17-.77-1.86-1.06-2.55-.28-.66-.56-.57-.77-.58l-.66-.01c-.23 0-.6.08-.91.43-.31.34-1.19 1.16-1.19 2.83 0 1.67 1.22 3.29 1.39 3.52.17.23 2.4 3.66 5.81 5.13.81.35 1.44.56 1.94.71.81.26 1.55.22 2.13.13.65-.1 2-.82 2.28-1.61.28-.79.28-1.47.2-1.61-.09-.15-.31-.23-.65-.4Z'/></svg>") center / contain no-repeat;
  display: inline-block;
  flex-shrink: 0;
}

/* Red status accents */
.dot--red {
  background: #FF4D4F !important;
  box-shadow: 0 0 0 0 rgba(255,77,79,0.55);
  animation: pulse-red 2.4s infinite;
}
.badge__dot--red {
  background: #FF4D4F !important;
  box-shadow: 0 0 0 4px rgba(255,77,79,0.20);
  animation: pulse-red 2.4s infinite;
}
.about__badge--red {
  background: rgba(20,24,31,0.92) !important;
  color: #fff !important;
}

.cta__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 18px 48px;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-deep);
}
.nav__mark {
  height: 48px;
  width: auto;
}
.nav__wordmark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--brand);
}
.nav__dot { color: var(--brand-deep); }
.nav__links {
  display: flex;
  gap: 32px;
  justify-self: center;
}
.nav__links a {
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
}
.nav__links a:hover { color: var(--brand); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--brand);
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .2s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--brand-deep);
  color: #fff;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.hero__photo {
  position: absolute; inset: 0;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 30%;
  filter: saturate(0.9) contrast(1.02);
}
.hero__grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,49,66,0.35) 0%, rgba(42,49,66,0.08) 32%, rgba(42,49,66,0.55) 78%, rgba(42,49,66,0.92) 100%),
    linear-gradient(90deg, rgba(42,49,66,0.78) 0%, rgba(42,49,66,0.45) 38%, rgba(42,49,66,0.0) 70%);
}
.hero__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 48px 56px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 999px;
  align-self: flex-start;
  backdrop-filter: blur(8px);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #B9F2C4;
}
.dot--pulse {
  box-shadow: 0 0 0 0 rgba(185,242,196,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(185,242,196,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(185,242,196,0); }
  100% { box-shadow: 0 0 0 0 rgba(185,242,196,0); }
}

.hero__h {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 36px 0 0;
  max-width: 14ch;
}
.hero__h em {
  font-style: italic;
  color: #fff;
  position: relative;
}
.hero__h em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 6px;
  background: rgba(113,119,141,0.55);
  border-radius: 4px;
  z-index: -1;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
  margin: 0;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__meta {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero__meta > div {
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__meta > div:last-child { border-right: none; }
.meta__k {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}
.hero__scroll {
  display: flex; align-items: center; gap: 10px;
  justify-content: flex-end;
}

/* ============ TICKER ============ */
.ticker {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  animation: ticker 38s linear infinite;
}
.ticker__sep { color: var(--brand); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ INTRO ============ */
.intro {
  padding: 140px 48px 80px;
  background: var(--paper);
}
.intro__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.intro__statement {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 28px 0 0;
  max-width: 22ch;
  text-wrap: pretty;
}
.intro__statement em {
  font-style: italic;
  color: var(--brand);
}
.intro__sig {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.intro__sig img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
}
.intro__sig-name {
  font-weight: 600;
  font-size: 15px;
}
.intro__sig-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ SERVICES ============ */
.services {
  padding: 80px 48px 120px;
  background: var(--paper);
}
.services__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  max-width: 1340px;
  margin: 0 auto 72px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1340px;
  margin: 0 auto;
}
.svc {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px 26px;
  gap: 20px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -10px rgba(42, 49, 66, 0.18);
  border-color: var(--line-2);
}
.svc__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.svc__icon {
  font-size: 14px;
  color: var(--brand);
  transition: transform .2s;
}
.svc:hover .svc__icon { transform: translate(2px,-2px); }
.svc__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 4px 10px;
}
.svc__img {
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-warm);
}
.svc__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.svc__t {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}
.svc__p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.svc__list {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.svc__list li {
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 14px;
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
}
.svc__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brand-deep);
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
  margin-top: -8px;
}
.svc__cta:hover { color: var(--brand); }
.svc__cta .arr { transition: transform .2s; }
.svc__cta:hover .arr { transform: translateX(3px); }

.svc--featured {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  color: #fff;
}
.svc--featured .svc__num { color: rgba(255,255,255,0.6); }
.svc--featured .svc__p { color: rgba(255,255,255,0.78); }
.svc--featured .svc__list { border-top-color: rgba(255,255,255,0.18); }
.svc--featured .svc__list li { color: rgba(255,255,255,0.85); }
.svc--featured .svc__list li::before { background: #B9BEC9; }
.svc--featured .svc__cta {
  color: #fff;
  border-top-color: rgba(255,255,255,0.18);
}
.svc--featured .svc__cta:hover { color: #B9BEC9; }

/* ============ ABOUT ============ */
.about {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.about__media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.about__photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-warm);
}
.about__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.about__photo--main {
  aspect-ratio: 4 / 5;
}
.about__photo--main img {
  height: 100%;
  object-position: center 20%;
}
.about__photo--small {
  aspect-ratio: 16 / 10;
}
.about__photo--small img {
  height: 100%;
  object-position: center 30%;
}
.about__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28C76F;
  box-shadow: 0 0 0 4px rgba(40,199,111,0.20);
  animation: pulse-green 2.4s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(40,199,111,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(40,199,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,199,111,0); }
}

.about__body { padding-top: 8px; }
.about__h { margin-bottom: 32px; }
.about__p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 56ch;
  text-wrap: pretty;
}
.about__p strong { color: var(--ink); font-weight: 600; }

.about__sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin: 28px 0 0;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-2);
}
.fact { padding-right: 24px; }
.fact__n {
  font-family: var(--font-serif);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.fact__l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

.about__actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ============ PROZESS ============ */
.process {
  padding: 120px 48px;
  background: var(--paper);
}
.process__inner {
  max-width: 1340px;
  margin: 0 auto;
}
.process__head {
  text-align: center;
  margin-bottom: 72px;
}
.process__head .eyebrow {
  justify-content: center;
}
.process__head .section__h {
  max-width: 18ch;
  margin: 18px auto 0;
}
.process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 8%, var(--line-2) 92%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  background: var(--paper);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
.step__n {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--brand);
  margin-bottom: 24px;
}
.step:nth-child(2) .step__n { background: var(--brand-deep); color: #fff; border-color: var(--brand-deep); }
.step__t {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.step__p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 32ch;
}

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: 120px 48px;
  background: var(--brand-deep);
  color: #fff;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  opacity: 0.28;
}
.cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.6);
}
.cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(42,49,66,0.4), rgba(42,49,66,0.95) 75%),
    linear-gradient(180deg, rgba(42,49,66,0.6), rgba(42,49,66,0.95));
}
.cta__inner {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta__logo {
  width: 64px; height: auto;
  margin-bottom: 28px;
  opacity: 0.95;
}
.cta__h {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
}
.cta__h em { font-style: italic; color: #B9BEC9; }
.cta__p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 42ch;
}

.cta__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 8px;
  padding: 28px 28px 24px;
}
.cta__card-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  width: 100%;
}
.cta__contact {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta__contact li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.10);
  font-size: 15px;
}
.cta__contact li:last-child { border-bottom: none; padding-bottom: 0; }
.cta__lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cta__contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.cta__contact a:hover { color: #B9BEC9; }
.cta .btn--primary {
  background: #fff;
  color: var(--brand-deep);
}
.cta .btn--primary:hover { background: #F4F2EC; }
.cta .btn--primary .dot { background: var(--brand-deep); box-shadow: 0 0 0 4px rgba(42,49,66,0.18); }
.cta__fineprint {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin: 14px 0 0;
}

/* ============ FOOTER ============ */
.foot {
  padding: 80px 48px 32px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

/* TOP row: brand + contact tiles */
.foot__top {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
  align-items: end;
}
.foot__brand-wrap {
  max-width: 460px;
}
.foot__brand-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1;
}
.foot__brand-dot {
  color: var(--brand);
}
.foot__claim {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
}

.foot__contact {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.foot__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  text-decoration: none;
  color: var(--ink);
  border-right: 1px solid var(--line);
  transition: background .2s ease;
  min-width: 0;
}
.foot__contact-item:last-child { border-right: none; }
.foot__contact-item:hover:not(.foot__contact-item--static) {
  background: var(--bg-warm);
}
.foot__contact-k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot__contact-v {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}

/* MIDDLE: horizontal link rows */
.foot__nav {
  max-width: 1340px;
  margin: 0 auto;
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.foot__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 28px;
}
.foot__row-k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 130px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
}
.foot__nav a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color .2s ease;
}
.foot__nav a:hover { color: var(--brand); }
.foot__nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
}

/* BOTTOM: legal inline */
.foot__legal {
  max-width: 1340px;
  margin: 0 auto;
  padding: 28px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot__legal-sep { opacity: 0.45; }
.foot__legal-spacer { flex: 1; }
.foot__legal-links {
  display: flex;
  gap: 24px;
}
.foot__legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.foot__legal a:hover { color: var(--brand); }

@media (max-width: 1100px) {
  .foot { padding: 56px 28px 28px; }
  .foot__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .foot__contact {
    flex-direction: column;
  }
  .foot__contact-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .foot__contact-item:last-child { border-bottom: none; }
  .foot__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .foot__row-k {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0 0 8px;
    margin-bottom: 4px;
  }
  .foot__legal-spacer { display: none; }
  .foot__legal-links { width: 100%; padding-top: 8px; border-top: 1px solid var(--line); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .ampel__inner {
    grid-template-columns: auto 1fr;
    padding: 12px 28px;
    gap: 16px;
  }
  .ampel__cta {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }
  .ampel__text { font-size: 13px; }
  .ampel__text span { font-size: 12px; }

  .nav { padding: 16px 28px; gap: 20px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { grid-template-columns: 1fr auto; }

  .hero__inner { padding: 56px 28px 40px; }
  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__meta { font-size: 11px; }
  .hero__meta > div { padding: 14px 16px; gap: 8px; }

  .intro { padding: 100px 28px 56px; }
  .services { padding: 56px 28px 80px; }
  .services__head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc__img { height: 240px; }

  .about { padding: 80px 28px; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__media {
    position: relative;
    top: 0;
    grid-template-columns: 1.4fr 1fr;
  }

  .process { padding: 80px 28px; }
  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process__steps::before { display: none; }
  .step { padding: 0; }

  .cta { padding: 80px 28px; }
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .foot { padding: 56px 28px 24px; }
  .foot__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .foot__legal {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__meta > div { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .hero__meta > div:nth-child(2) { border-right: none; }
  .hero__scroll { grid-column: 1 / -1; justify-content: center; padding: 12px; }

  .about__media { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr 1fr; gap: 24px; row-gap: 32px; }
  .fact__n { font-size: 48px; }

  .cta__contact li { grid-template-columns: 1fr; gap: 4px; }
  .foot__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ Mobile nav drawer (toggled via JS) ============ */
.nav.is-open .nav__links {
  display: flex;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 20px 28px 24px;
  gap: 18px;
}
.nav.is-open .nav__cta {
  display: inline-flex;
  position: absolute;
  top: 100%; right: 28px;
  transform: translateY(calc(100% + 8px));
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ================================================================
   HERO — Waitlist Honest (Variant E) — Editorial Full-Bleed
   ================================================================ */
.hero--honest {
  background: #0e1218;
}
.hero--honest .hero__inner {
  justify-content: space-between;
  padding: 88px 64px 72px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  gap: 0;
}

/* Single column, anchored LEFT — content reads as a poster on top of the photo */
.hero__inner--right {
  display: flex;
  flex-direction: column;
}
.hero__inner--right .hero__col-text {
  max-width: 680px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 24px;
}
.hero__inner--right .hero__col-text > * + * { margin-top: 22px; }
.hero__inner--right .hero__col-text > .hero__h--honest { margin-top: 18px; }

/* Full-bleed portrait — object-position 64%, image shifted further right */
.hero__photo--blur {
  overflow: hidden;
}
.hero__photo--blur img {
  width: 100%;
  height: 100%;
  filter: saturate(1.06) contrast(1.08) brightness(0.94);
  transform: translateX(12%) scale(1.05);
  transform-origin: right center;
  object-position: 64% 22%;
}

/* Cinematic editorial gradient — wash left-to-right, with vignette at bottom for meta strip */
.hero--honest .hero__grad {
  background:
    linear-gradient(96deg,
      rgba(14,18,24,0.96) 0%,
      rgba(14,18,24,0.92) 18%,
      rgba(14,18,24,0.78) 36%,
      rgba(14,18,24,0.40) 56%,
      rgba(14,18,24,0.10) 74%,
      rgba(14,18,24,0.0) 100%),
    linear-gradient(180deg,
      rgba(14,18,24,0.22) 0%,
      rgba(14,18,24,0.0) 28%,
      rgba(14,18,24,0.42) 86%,
      rgba(14,18,24,0.78) 100%);
}
.hero--honest .hero__noise { opacity: 0.32; }

/* Status pill — refined */
.hero__eyebrow--lights {
  gap: 14px;
  padding: 9px 18px 9px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__lights {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding-right: 12px;
  border-right: 1px solid rgba(255,255,255,0.20);
  margin-right: 4px;
}
.lite {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(255,255,255,0.15);
}
.lite--red.is-on {
  background: #FF4D4F;
  box-shadow: 0 0 0 0 rgba(255,77,79,0.55);
  animation: pulse-red 2.4s infinite;
}
.lite--yellow.is-on { background: #F7B500; }
.lite--green.is-on  { background: #28C76F; }

/* Display headline — bigger, tighter, balanced */
.hero__h--honest {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.94;
  letter-spacing: -0.032em;
  max-width: 11ch;
  margin: 18px 0 0;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero__h--honest em {
  font-style: italic;
  color: #C9CDD6;
  position: relative;
}
.hero__h--honest em::after { display: none; }

/* Lede paragraph — quieter, breathable */
.hero__lede--wide {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
  max-width: 52ch;
  margin: 20px 0 0;
  text-wrap: pretty;
  text-shadow: 0 1px 18px rgba(0,0,0,0.30);
}
.hero__lede--wide u {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.40);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  color: #fff;
}

/* Action row */
.hero__actions--block {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Trust meta strip */
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 720px;
}
.trust__k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 8px;
}
.trust__v {
  font-size: 14.5px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ============ RESPONSIVE — honest hero ============ */
@media (max-width: 1100px) {
  .hero--honest .hero__inner { padding: 64px 28px 48px; }
  .hero__inner--right .hero__col-text {
    max-width: 100%;
    margin-left: 0;
    padding-top: 0;
  }
  .hero__trust {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
  }
  .hero__photo--blur img {
    filter: saturate(1.0) contrast(1.04) brightness(0.74);
    object-position: 70% 22%;
  }
  .hero--honest .hero__grad {
    background:
      linear-gradient(180deg, rgba(14,18,24,0.55) 0%, rgba(14,18,24,0.30) 28%, rgba(14,18,24,0.78) 88%, rgba(14,18,24,0.92) 100%);
  }
}
@media (max-width: 640px) {
  .hero__lights {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .hero__trust { grid-template-columns: 1fr; gap: 14px; }
  .hero__lede--wide { font-size: 17px; }
}

/* ================================================================
   Product image variant (svc card with software product image)
   ================================================================ */
.svc__img--product {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  border: 1px solid var(--line);
}
.svc__img--product > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.svc__brand {
  position: absolute;
  left: 16px;
  bottom: 14px;
  height: 18px;
  width: auto;
  opacity: 0.92;
}
.svc--featured .svc__img--product {
  background: rgba(255,255,255,0.96);
}

/* ================================================================
   Mega logo stamp (hims-style oversized footer brand)
   ================================================================ */
.megamark {
  background: var(--paper);
  padding: 16px 24px 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.megamark__logo {
  width: auto;
  height: clamp(280px, 36vw, 560px);
  max-width: 100%;
  display: block;
  opacity: 0.95;
  transform: translateY(14%);
  filter: drop-shadow(0 4px 24px rgba(20,24,31,0.06));
}
@media (max-width: 1100px) {
  .megamark { padding: 12px 16px 0; }
  .megamark__logo { height: clamp(180px, 50vw, 340px); transform: translateY(12%); }
}

/* ================================================================
   Placeholder image (for "Foto folgt")
   ================================================================ */
.svc__img--placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      var(--bg-warm) 0,
      var(--bg-warm) 12px,
      var(--bg) 12px,
      var(--bg) 24px
    );
  border: 1px dashed var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder {
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.placeholder__k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
}
.placeholder__v {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.5;
}
.svc--featured .svc__img--placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 12px,
      rgba(255,255,255,0.02) 12px,
      rgba(255,255,255,0.02) 24px
    );
  border-color: rgba(255,255,255,0.18);
}

/* About — single-photo variant */
.about__media--solo {
  grid-template-columns: 1fr;
}
.about__media--solo .about__photo--main {
  aspect-ratio: 4 / 5.2;
}

/* ================================================================
   STANDORT / Local SEO Section
   ================================================================ */
.standort {
  background: var(--bg);
  padding: 120px 48px;
  border-top: 1px solid var(--line);
}
.standort__inner {
  max-width: 1340px;
  margin: 0 auto;
}
.standort__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.standort__head .section__h {
  grid-column: 1;
}
.standort__head .section__lede {
  grid-column: 2;
  padding-bottom: 8px;
}
.standort__head .eyebrow {
  grid-column: 1;
  grid-row: 1;
}
.standort__head .section__h {
  grid-row: 2;
}
.standort__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.standort__map {
  position: relative;
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
}
.standort__map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.standort__map-cta {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(20,24,31,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 24px -8px rgba(20,24,31,0.4);
  transition: transform .2s, background .2s;
}
.standort__map-cta:hover {
  transform: translateY(-1px);
  background: var(--ink);
}
.standort__map-cta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(185,190,201,0.18);
}
.standort__map-cta .arr { transition: transform .2s; }
.standort__map-cta:hover .arr { transform: translateX(3px); }

.standort__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.standort__row {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: baseline;
}
.standort__row:first-child { padding-top: 4px; }
.standort__row:last-of-type { border-bottom: none; }
.standort__k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.standort__v {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.standort__mut {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.standort__areas {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}
.standort__areas li {
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  padding-left: 14px;
}
.standort__areas li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
}
.standort__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 8px 0 0;
}
.standort__cta {
  margin-top: 18px;
  justify-content: center;
}
@media (max-width: 1100px) {
  .standort { padding: 80px 28px; }
  .standort__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .standort__head .section__h,
  .standort__head .section__lede,
  .standort__head .eyebrow {
    grid-column: 1;
    grid-row: auto;
  }
  .standort__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .standort__map,
  .standort__map iframe { min-height: 360px; }
}
@media (max-width: 640px) {
  .standort__areas { grid-template-columns: 1fr; }
  .standort__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ================================================================
   PROZESS — Visualisierte Steps
   ================================================================ */
.process--viz { padding: 140px 48px 120px; }
.process__lede {
  margin: 28px auto 0;
  max-width: 60ch;
}
.process__head {
  text-align: center;
  margin-bottom: 80px;
}
.process__head .eyebrow { justify-content: center; }
.process__head .section__h {
  max-width: 18ch;
  margin: 18px auto 0;
}
.proc {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.proc__step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.proc__step:last-child { border-bottom: 1px solid var(--line); }
.proc__step:nth-child(even) {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
}
.proc__step:nth-child(even) .proc__viz { order: -1; }

/* Step with multi-path content stacks vertically (single column) */
.proc__step:has(.proc__paths) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 36px;
}
.proc__step:has(.proc__paths) .proc__viz { order: 0; align-self: center; }

/* Two-path card grid (Privat / Einzelunternehmer) */
.proc__paths {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.path {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.path:hover {
  border-color: var(--line-2);
}
.path__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.path__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--brand-deep);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.path--lex .path__num {
  background: var(--brand-deep);
  color: #fff;
}
.path__t {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
}
.path__sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.path__p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.path__p strong { color: var(--ink); font-weight: 600; }
.path__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.path__chips li {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: #fff;
}
.path--lex .path__chips li {
  background: rgba(42,49,66,0.04);
  border-color: rgba(42,49,66,0.18);
}
@media (max-width: 1100px) {
  .proc__paths { grid-template-columns: 1fr; }
}

.proc__meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}
.proc__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.proc__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.proc__t {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.proc__p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 48ch;
}
.proc__p strong { color: var(--ink); font-weight: 600; }

.proc__viz {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Step 01: Chat mockup --- */
.chat {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow:
    0 24px 60px -16px rgba(20,24,31,0.18),
    0 1px 0 rgba(255,255,255,0.6) inset;
  overflow: hidden;
  font-family: var(--font-sans);
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #075E54;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.chat__head .wa-icon { width: 18px; height: 18px; flex-shrink: 0; }
.chat__name { flex: 1; }
.chat__online {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28C76F;
  box-shadow: 0 0 0 3px rgba(40,199,111,0.25);
}
.chat__body {
  padding: 20px 14px;
  background:
    linear-gradient(rgba(251,250,247,0.92), rgba(251,250,247,0.92)),
    repeating-linear-gradient(135deg, #e9e6dc 0 2px, transparent 2px 8px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bubble {
  position: relative;
  max-width: 82%;
  padding: 10px 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}
.bubble--in {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-top-left-radius: 4px;
}
.bubble--out {
  align-self: flex-end;
  background: #DCF8C6;
  border-top-right-radius: 4px;
}
.bubble__time {
  position: absolute;
  right: 10px;
  bottom: 4px;
  font-size: 10px;
  color: rgba(20,24,31,0.45);
  letter-spacing: 0.02em;
}
.chat__compose {
  padding: 10px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat__placeholder {
  flex: 1;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg);
  border-radius: 999px;
  padding: 8px 14px;
}
.chat__send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* --- Step 02: Calendar mockup --- */
.cal {
  width: 100%;
  max-width: 440px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 50px -16px rgba(20,24,31,0.14);
}
.cal__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cal__head span:first-child {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.cal__week { color: var(--brand); }
.cal__grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slot {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 13px;
  position: relative;
}
.slot > span:first-child {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.slot em {
  font-style: normal;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.slot--past {
  opacity: 0.5;
  background: var(--bg-warm);
  border-style: dashed;
}
.slot--active {
  background: var(--brand-deep);
  color: #fff;
  border-color: var(--brand-deep);
}
.slot--active > span:first-child { color: #fff; }
.slot--active em { color: #B9BEC9; text-transform: none; font-style: italic; font-family: var(--font-serif); font-size: 14px; letter-spacing: -0.005em; }
.slot__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28C76F;
  box-shadow: 0 0 0 4px rgba(40,199,111,0.22);
}
.cal__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cal__cue { color: var(--brand); }

/* --- Step 03: Lexware Office mockup --- */
.lex {
  width: 100%;
  max-width: 580px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(20,24,31,0.18);
}
.lex__shot {
  background: var(--paper);
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
}
.lex__shot img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
}
.lex__legend {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.lex__logo {
  height: 22px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.95;
}
.lex__k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.lex__v {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.lex__chips {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lex__chips li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
}
.lex__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 500;
}
.lex__link:hover { color: var(--brand); }
.lex__link .arr { transition: transform .2s; }
.lex__link:hover .arr { transform: translateX(3px); }

@media (max-width: 1100px) {
  .process--viz { padding: 80px 28px; }
  .process__head { margin-bottom: 48px; }
  .proc__step {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }
  .proc__step:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .proc__step:nth-child(even) .proc__viz { order: 0; }
  .proc__num { font-size: 48px; }
  .proc__viz { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .proc__meta { flex-wrap: wrap; gap: 12px; }
  .lex__chips li { font-size: 10.5px; }
  .slot { grid-template-columns: 52px 1fr auto; }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
