/* =========================================================
   ProAccounting GmbH · Frankfurt-Eschborn
   "Mehr." — snap-scroll viewport manifesto
   First massive-single-word reveal pattern in the project.
   ========================================================= */

:root {
  /* Palette — modern tech-green */
  --paper: #F5F5F2;
  --paper-deep: #ECECE5;
  --surface: #FFFFFF;
  --tint: #E7F1E8;
  --tint-deep: #C8DECB;
  --navy: #0A1525;
  --navy-soft: #1A2940;
  --ink: #0D1117;
  --blue: #22852B;
  --blue-bright: #2FA83C;
  --blue-deep: #17631E;
  --rule: rgba(10, 21, 37, 0.12);
  --rule-soft: rgba(10, 21, 37, 0.06);
  --rule-on-dark: rgba(245, 245, 242, 0.16);

  /* Type */
  --font-sans: 'Prompt', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', 'Courier New', monospace;

  /* Type scale */
  --fs-xs: 0.6875rem;
  --fs-sm: 0.8125rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: clamp(1.75rem, 3.4vw, 2.5rem);
  --fs-2xl: clamp(2.5rem, 5.5vw, 4.25rem);
  --fs-3xl: clamp(3.5rem, 7vw, 5.5rem);
  --fs-4xl: clamp(4.5rem, 10vw, 9rem);
  --fs-mehr: clamp(5rem, 22vw, 18rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.5rem;
  --space-6: 5.5rem;
  --space-7: 8rem;

  --container: 1320px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, address { margin: 0; padding: 0; }
ul { list-style: none; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* -------- Base -------- */
body {
  background: var(--paper);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--blue); color: var(--paper); }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}
h1 { font-size: var(--fs-4xl); font-weight: 700; letter-spacing: -0.045em; }
h2 { font-size: var(--fs-3xl); font-weight: 600; letter-spacing: -0.04em; }
h3 { font-size: var(--fs-xl); font-weight: 600; letter-spacing: -0.025em; }
h4 { font-size: var(--fs-lg); font-weight: 600; letter-spacing: -0.015em; }

p { max-width: 64ch; }
p + p { margin-top: 0.85em; }

.mono { font-family: var(--font-mono); }
.label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.label--navy { color: var(--navy); }
.label--paper { color: var(--paper); }
.label--blue { color: var(--blue); }

a.inline {
  color: var(--blue);
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 1px;
  transition: color 200ms;
}
a.inline:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* -------- Layout -------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-3); }
.container--narrow { max-width: 920px; }
@media (min-width: 768px) { .container { padding: 0 var(--space-4); } }
@media (min-width: 1100px) { .container { padding: 0 var(--space-5); } }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.95em 1.6em;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  border-radius: 100px;
  transition: all 220ms;
  white-space: nowrap;
}
.btn--blue { background: var(--blue); color: var(--paper); border-color: var(--blue); }
.btn--blue:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(34, 133, 43, 0.25); }
.btn--navy { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn--navy:hover { background: var(--blue); border-color: var(--blue); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-1px); }
.btn--ghost-paper { background: transparent; color: var(--paper); border-color: var(--rule-on-dark); }
.btn--ghost-paper:hover { background: var(--paper); color: var(--navy); }

.btn::after { content: '→'; font-family: var(--font-mono); }
.btn.no-arrow::after { display: none; }

/* -------- HEADER -------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 242, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
@media (min-width: 768px) { .header__inner { padding: 1rem var(--space-5); } }

.brand { display: inline-flex; align-items: center; color: var(--navy); }
.brand__logo { display: block; height: 34px; width: auto; }
@media (min-width: 768px) { .brand__logo { height: 40px; } }

.nav { display: none; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
@media (min-width: 1000px) { .nav { display: flex; } }
.nav a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--navy);
  position: relative;
  padding: 0.4em 0;
  transition: color 200ms;
}
.nav a:hover { color: var(--blue); }
.nav a::after { content: ''; position: absolute; left: 50%; right: 50%; bottom: 0; height: 1.5px; background: var(--blue); transition: left 200ms, right 200ms; }
.nav a:hover::after { left: 0; right: 0; }

.header__right { display: flex; align-items: center; gap: var(--space-2); }

.header__login {
  display: none;
  align-items: center;
  gap: 0.4em;
  color: var(--navy);
  padding: 0.6em 1.1em;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1.5px solid var(--rule);
  border-radius: 100px;
  transition: color 200ms, border-color 200ms;
}
.header__login:hover { color: var(--blue); border-color: var(--blue); }
@media (min-width: 600px) { .header__login { display: inline-flex; } }

.header__cta {
  display: none;
  align-items: center;
  gap: 0.4em;
  background: var(--navy);
  color: var(--paper);
  padding: 0.65em 1.1em;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 100px;
  transition: background 200ms;
}
.header__cta:hover { background: var(--blue); }
.header__cta::after { content: '→'; font-family: var(--font-mono); }
@media (min-width: 600px) { .header__cta { display: inline-flex; } }

.header__menu { display: inline-flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
@media (min-width: 1000px) { .header__menu { display: none; } }
.header__menu span { display: block; width: 22px; height: 1.5px; background: var(--navy); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--paper);
  display: none;
  flex-direction: column;
  padding: var(--space-4);
  /* Content (6 nav links + actions) exceeds short viewports — a fixed box with
     overflow:visible cannot be scrolled, so the actions would be unreachable. */
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.is-open { display: flex; }
body.drawer-open { overflow: hidden; }
.mobile-drawer__close { align-self: flex-end; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
.mobile-drawer__nav { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.mobile-drawer__nav a { font-family: var(--font-sans); font-size: 2rem; font-weight: 600; color: var(--navy); letter-spacing: -0.03em; }
.mobile-drawer__actions {
  margin-top: auto;
  padding-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mobile-drawer__actions .btn { justify-content: center; }

/* -------- HERO — split: text-left, image-right -------- */
.hero {
  padding: var(--space-5) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: var(--space-6) 0 var(--space-7); } }

.hero__bg-mesh {
  position: absolute;
  top: -10%; right: -10%;
  width: 70%; height: 90%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(34, 133, 43, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(231, 241, 232, 0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 768px) { .hero__inner { padding: 0 var(--space-5); } }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.15fr 1fr; gap: var(--space-6); } }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--surface);
  padding: 0.5em 1em;
  border: 1px solid var(--rule);
  border-radius: 100px;
  margin-bottom: var(--space-4);
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

.hero__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.hero__title .blue { color: var(--blue); }
.hero__title .punct { color: var(--blue); }

.hero__lede {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--navy-soft);
  max-width: 50ch;
  margin-bottom: var(--space-4);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-4); }

.hero__signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3) var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--rule);
  max-width: 540px;
}
@media (min-width: 600px) { .hero__signals { grid-template-columns: repeat(4, 1fr); } }
.hero__signal-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.hero__signal-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-top: 0.4em;
  display: block;
}

/* Hero photo right side */
.hero__photo {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
  border: 1px solid var(--rule);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(0.95); }
.hero__photo-tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: rgba(13, 17, 23, 0.7);
  color: var(--paper);
  padding: 0.5em 0.9em;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__photo-tag .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); margin-right: 0.4em; vertical-align: 1px; }

/* Floating data card on hero photo */
.hero__data-card {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  background: var(--surface);
  color: var(--navy);
  padding: var(--space-3);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(13, 17, 23, 0.16);
  width: 220px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.hero__data-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.hero__data-card-row:last-child { border-bottom: none; }
.hero__data-card-row span:first-child { color: var(--navy-soft); }
.hero__data-card-row .num { font-family: var(--font-sans); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; color: var(--navy); }
.hero__data-card-row .num--blue { color: var(--blue); }

/* -------- PRO. MANIFESTO — wordplay section ----------------------
   Plays with Pro = Professional. Six PRO-prefix words define the brand.
   Sits between hero and Klarheit. Deep black, typographic poster feel.
   ---------------------------------------------------------------- */
.pro-section {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-6) 0 var(--space-7);
  border-block: 1px solid rgba(245, 245, 242, 0.08);
  position: relative;
  overflow: hidden;
}
.pro-section__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(34, 133, 43, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(47, 168, 60, 0.12), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.pro-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .pro-section__inner { padding: 0 var(--space-5); } }

.pro-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(245, 245, 242, 0.16);
}
.pro-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 1em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.pro-section__eyebrow::before { content: '//'; opacity: 0.6; }
.pro-section__lat {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 242, 0.55);
  font-style: italic;
}

.pro-headline {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--paper);
  max-width: 22ch;
  margin-bottom: var(--space-5);
}
.pro-headline .blue { color: var(--blue-bright); }
.pro-headline .punct { color: var(--blue-bright); }

.pro-stack {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--space-3);
  border-top: 1px solid rgba(245, 245, 242, 0.16);
}

.pro-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  align-items: baseline;
  padding: clamp(1rem, 2.4vw, 1.85rem) 0;
  border-bottom: 1px solid rgba(245, 245, 242, 0.16);
  transition: background 200ms;
}
.pro-row:hover { background: rgba(34, 133, 43, 0.05); }

@media (min-width: 700px) {
  .pro-row {
    grid-template-columns: auto 1fr auto;
    gap: clamp(1rem, 3vw, 3rem);
  }
}

.pro-row__num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--blue-bright);
  align-self: start;
}
@media (max-width: 699px) { .pro-row__num { display: inline-block; margin-bottom: 0.2em; } }

.pro-row__word {
  display: flex;
  align-items: baseline;
  gap: 0.05em;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.5rem, 7.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}
.pro-row__pro {
  color: var(--blue-bright);
}
.pro-row__pro::after {
  content: '·';
  display: inline-block;
  margin: 0 0.05em;
  color: var(--paper);
  opacity: 0.4;
}
.pro-row__suffix {
  color: var(--paper);
}
.pro-row__suffix .dot { color: var(--blue-bright); }

.pro-row__def {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(245, 245, 242, 0.7);
  letter-spacing: -0.005em;
  line-height: 1.5;
  max-width: 32ch;
}
@media (min-width: 700px) { .pro-row__def { text-align: right; } }

.pro-section__footer {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(245, 245, 242, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  align-items: center;
}
.pro-section__quote {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.125rem, 1.8vw, 1.4rem);
  color: rgba(245, 245, 242, 0.85);
  max-width: 50ch;
  line-height: 1.45;
}
.pro-section__quote em { color: var(--blue-bright); font-style: italic; }

/* PRO badge stamp — small circular seal element */
.pro-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 2px solid var(--blue-bright);
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  flex-shrink: 0;
  position: relative;
  background: transparent;
  transform: rotate(-6deg);
  flex-direction: column;
  gap: 0.2em;
  padding: 0.5em;
}
.pro-stamp::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid var(--blue-bright);
  opacity: 0.6;
}
.pro-stamp__big {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* -------- BIG WORD — single massive word reveal section -------- */
.mehr-section {
  padding: var(--space-7) 0 var(--space-6);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule-soft);
}
.mehr-section--dark { background: var(--navy); color: var(--paper); border-top-color: var(--rule-on-dark); }
.mehr-section--tint { background: var(--tint); }

.mehr-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  position: relative;
}
@media (min-width: 768px) { .mehr-section__inner { padding: 0 var(--space-5); } }

.mehr-word {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--fs-mehr);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--navy);
  margin: 0 0 var(--space-5);
}
.mehr-word .dot { color: var(--blue); }
.mehr-section--dark .mehr-word { color: var(--paper); }
.mehr-section--dark .mehr-word .dot { color: var(--blue-bright); }

.mehr-eyebrow {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: var(--space-3);
}
.mehr-eyebrow__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--blue);
}
.mehr-eyebrow__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.mehr-section--dark .mehr-eyebrow__label { color: rgba(245, 245, 242, 0.7); }
.mehr-eyebrow__line { flex: 1; height: 1px; background: var(--rule); }
.mehr-section--dark .mehr-eyebrow__line { background: var(--rule-on-dark); }

.mehr-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 900px) { .mehr-content { grid-template-columns: 1fr 1.2fr; gap: var(--space-6); align-items: start; } }

.mehr-content h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-2xl);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--navy);
  max-width: 14ch;
}
.mehr-section--dark .mehr-content h3 { color: var(--paper); }
.mehr-content p {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--navy-soft);
  max-width: 56ch;
}
.mehr-section--dark .mehr-content p { color: rgba(245, 245, 242, 0.85); }

/* List of services / values */
.list-bullet {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: var(--space-3);
  border-top: 1px solid var(--rule);
}
.mehr-section--dark .list-bullet { border-top-color: var(--rule-on-dark); }

.list-bullet li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  color: var(--navy);
}
.mehr-section--dark .list-bullet li { border-bottom-color: var(--rule-on-dark); color: var(--paper); }

.list-bullet li::before {
  content: counter(list, decimal-leading-zero);
  counter-increment: list;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue);
  flex-shrink: 0;
  min-width: 2em;
}
.list-bullet { counter-reset: list; }
.mehr-section--dark .list-bullet li::before { color: var(--blue-bright); }

/* Werte chips for Klarheit section */
.werte-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-3);
}
.werte-chips span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--surface);
  padding: 0.5em 0.9em;
  border: 1px solid var(--rule);
  border-radius: 100px;
}
.mehr-section--dark .werte-chips span { color: var(--paper); background: rgba(245, 245, 242, 0.06); border-color: var(--rule-on-dark); }

/* -------- VERTRAUEN — 5 reasons grid -------- */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: var(--space-4);
}
.mehr-section--dark .reasons-grid { background: var(--rule-on-dark); border-color: var(--rule-on-dark); }
@media (min-width: 700px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }

.reason {
  background: var(--paper);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.mehr-section--dark .reason { background: var(--navy); }
.reason__num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 1;
}
.mehr-section--dark .reason__num { color: var(--blue-bright); }
.reason__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-lg);
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
}
.mehr-section--dark .reason__title { color: var(--paper); }
.reason__desc { font-size: 0.9375rem; line-height: 1.55; color: var(--navy-soft); }
.mehr-section--dark .reason__desc { color: rgba(245, 245, 242, 0.78); }

/* -------- BRANCHEN strip -------- */
.branchen {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-6) 0;
  overflow: hidden;
}
.branchen__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-3); }
@media (min-width: 768px) { .branchen__inner { padding: 0 var(--space-5); } }

.branchen__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  color: var(--paper);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.branchen__title .blue { color: var(--blue-bright); }

.branchen-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(245, 245, 242, 0.12);
  border-block: 1px solid rgba(245, 245, 242, 0.12);
  margin-top: var(--space-3);
}
.branchen-list__item {
  background: var(--ink);
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.015em;
  transition: background 200ms;
}
.branchen-list__item:hover { background: var(--navy-soft); }
.branchen-list__num { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.18em; color: var(--blue-bright); }
.branchen-list__name { font-family: var(--font-sans); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; letter-spacing: -0.04em; }
.branchen-list__tag { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; color: rgba(245, 245, 242, 0.55); }

/* -------- CTA Card — large card with skyline -------- */
.cta-block {
  background: var(--blue);
  color: var(--paper);
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}
.cta-block__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-block__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
.cta-block__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .cta-block__inner { padding: 0 var(--space-5); } }
.cta-block__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--paper);
  max-width: 18ch;
  margin-bottom: var(--space-4);
}
.cta-block__title .accent { color: var(--tint); }

/* -------- KONTAKT -------- */
.kontakt {
  padding-block: var(--space-7);
  background: var(--paper);
}
.kontakt__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) { .kontakt__inner { padding: 0 var(--space-5); } }
@media (min-width: 900px) { .kontakt__inner { grid-template-columns: 1fr 1.2fr; gap: var(--space-6); } }

.kontakt__info { display: flex; flex-direction: column; gap: var(--space-3); }
.kontakt__row {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--rule);
}
.kontakt__row-label { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.kontakt__row-value { font-family: var(--font-sans); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.025em; color: var(--navy); line-height: 1.15; }

.kontakt__form {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: var(--space-4);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 600px) { .kontakt__form { padding: var(--space-5); } }

.field { display: flex; flex-direction: column; gap: 0.4em; }
.field__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  color: var(--navy);
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  transition: all 200ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(34, 133, 43, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }

/* -------- FOOTER -------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-5) 0 var(--space-3);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 768px) { .footer__inner { padding: 0 var(--space-5); grid-template-columns: 1.5fr 1fr 1fr 1fr; align-items: start; } }
.footer__brand-line { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.14em; color: var(--blue-bright); display: block; margin-bottom: 0.6em; }
.footer__brand { font-family: var(--font-sans); font-weight: 700; font-size: 1.5rem; color: var(--paper); letter-spacing: -0.025em; margin-bottom: var(--space-2); }
.footer__about { font-family: var(--font-sans); font-size: 0.9375rem; color: rgba(245, 245, 242, 0.78); line-height: 1.6; max-width: 38ch; margin-top: var(--space-2); }
.footer__col h4 { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-bright); font-weight: 500; margin-bottom: var(--space-2); }
.footer__col ul { display: flex; flex-direction: column; gap: 0.4em; }
.footer__col a { font-family: var(--font-sans); font-size: 0.9375rem; color: rgba(245, 245, 242, 0.85); }
.footer__col a:hover { color: var(--blue-bright); }
.footer__legal {
  grid-column: 1 / -1;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(245, 245, 242, 0.16);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 242, 0.55);
}

/* -------- Reveal -------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 800ms ease, transform 800ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-mehr { opacity: 0; transform: translateY(40px) scale(0.96); transition: opacity 1100ms ease, transform 1100ms ease; }
.reveal-mehr.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-mehr { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* -------- Legal pages -------- */
.legal-page { padding: var(--space-5) 0 var(--space-7); }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-family: var(--font-sans); font-weight: 700; font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.045em; margin-bottom: var(--space-3); }
.legal-page h1 .blue { color: var(--blue); }
.legal-page h2 { font-family: var(--font-sans); font-weight: 600; font-size: 1.5rem; margin-top: var(--space-4); margin-bottom: var(--space-2); color: var(--blue); letter-spacing: -0.02em; }
.legal-page h2:first-of-type { margin-top: var(--space-2); }
.legal-page p, .legal-page address, .legal-page li { font-family: var(--font-sans); font-size: 1rem; line-height: 1.7; }
.legal-page address { font-style: normal; }
.legal-page ul { margin-top: var(--space-2); padding-left: 1.2em; list-style: '— '; }
.legal-page li { padding-left: 0.4em; }
