/* =========================================================
   ber-consulting.ch — landingpage.css
   Geteilt von index.html, projekte.html, impressum.html,
   datenschutz.html. Systemschriften, keine externen Ressourcen.
   ========================================================= */

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #f4f3ee;
  --bg-card:     #ffffff;
  --bg-alt:      #eceae4;
  --bg-deep:     #10201a;
  --bg-deep-2:   #16281f;
  --text:        #1a1d1c;
  --text-light:  #4a5250;
  --text-mute:   #6b716e;
  --accent:      #1a3a2e;
  --accent-mid:  #2d6651;
  --accent-soft: #e7efea;
  --accent-line: #c5d8cf;
  /* Messing/Gold — Goldschmied-Referenz, sehr sparsam einsetzen */
  --brass:       #b08636;
  --brass-lite:  #d8b878;
  --brass-soft:  #f2e9d6;
  --border:      #d9d6cf;
  --radius:      8px;
  --radius-lg:   14px;
  --max-w:       1120px;
  --max-prose:   680px;
  --shadow-sm:   0 1px 2px rgba(20, 40, 32, 0.04), 0 2px 6px rgba(20, 40, 32, 0.05);
  --shadow-md:   0 4px 14px rgba(20, 40, 32, 0.08), 0 2px 6px rgba(20, 40, 32, 0.04);
  --shadow-lg:   0 18px 48px rgba(18, 33, 27, 0.14), 0 6px 16px rgba(18, 33, 27, 0.08);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-mid);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ===== Layout Helpers ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.prose {
  max-width: var(--max-prose);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  line-height: 1.14;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -0.022em; }
h3 { font-size: 1.1rem; font-weight: 600; }

p { text-wrap: pretty; }

/* Abschnitts-Label mit Nummer (roter Faden) */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 1rem;
}

.label::before {
  content: "";
  width: 1.7rem;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}

.label[data-num]::after {
  content: attr(data-num);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brass);
  letter-spacing: 0.05em;
  margin-left: 0.1rem;
  font-variant-numeric: tabular-nums;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 + .section-intro,
.section-header .section-intro {
  margin-top: 0.9rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
              border-color 0.18s var(--ease), transform 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
  line-height: 1.1;
  border: 2px solid transparent;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-mid);
  border-color: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent-line);
}

.btn-outline:hover {
  background: var(--accent-soft);
  border-color: var(--accent-mid);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn .btn-ico {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s var(--ease);
}

.btn:hover .btn-ico { transform: translateX(3px); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 243, 238, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(20, 40, 32, 0.03), 0 6px 20px rgba(20, 40, 32, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1rem;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}

.nav-links a {
  padding: 0.4rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius);
  transition: color 0.14s, background 0.14s;
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.nav-links .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  margin-left: 0.4rem;
}

/* ===== Reveal-on-scroll (first-party, JS-gated) ===== */
.reveal { opacity: 1; }

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

html.js .reveal.delay-1 { transition-delay: 0.08s; }
html.js .reveal.delay-2 { transition-delay: 0.16s; }
html.js .reveal.delay-3 { transition-delay: 0.24s; }
html.js .reveal.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .btn:hover .btn-ico { transform: none; }
}

/* =========================================================
   HERO — dunkel, editorial. Nur auf index.html.
   ========================================================= */
.hero {
  position: relative;
  color: #fff;
  padding-block: 6rem 5.25rem;
  overflow: hidden;
  background:
    radial-gradient(1000px 640px at 84% -12%, rgba(45, 102, 81, 0.30), transparent 62%),
    radial-gradient(680px 460px at -4% 112%, rgba(176, 134, 54, 0.15), transparent 58%),
    linear-gradient(180deg, var(--bg-deep-2), var(--bg-deep));
  border-bottom: 1px solid #0b1712;
}

.hero::before {
  /* feines Blueprint-Raster, handwerklich-technisch */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(880px 620px at 72% 26%, #000 0%, transparent 82%);
  -webkit-mask-image: radial-gradient(880px 620px at 72% 26%, #000 0%, transparent 82%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.75rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.85rem;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-lite);
  box-shadow: 0 0 0 3px rgba(176, 134, 54, 0.22);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.15rem, 4.6vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
  margin-bottom: 1.5rem;
  max-width: 15ch;
  overflow-wrap: break-word;
}

.hero h1 .underline {
  color: var(--brass-lite);
  position: relative;
}

.hero .hero-sub {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.74);
  max-width: 520px;
  margin-bottom: 2.15rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.3rem;
}

/* Fakten-Leiste im Hero */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.75rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-fact svg {
  width: 16px;
  height: 16px;
  stroke: var(--brass-lite);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Leistungsindex — ersetzt das frühere Diagramm */
.hero-index {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: 0.4rem 0.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-index-cap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-index-cap::before {
  content: "";
  width: 1.1rem;
  height: 2px;
  background: var(--brass-lite);
  border-radius: 2px;
}

.hero-index-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: baseline;
  gap: 0 0.6rem;
  padding: 1.05rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.18s var(--ease);
}

.hero-index-item:hover { background: rgba(255, 255, 255, 0.035); }

.hero-index-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brass-lite);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.hero-index-item h3 {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.hero-index-item p {
  grid-column: 2;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ===== Credential-Band (Übergang vom dunklen Hero) ===== */
.brandline {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding-block: 1.15rem;
}

.brandline .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  text-align: center;
}

.brandline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

.brandline-item b { color: var(--text); font-weight: 600; }

.brandline-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.85;
}

@media (max-width: 720px) {
  .brandline-sep { display: none; }
  .brandline .container { justify-content: flex-start; text-align: left; gap: 0.4rem 1.25rem; }
}

/* ===== Trust Strip (Kompetenzkarten) ===== */
.trust {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding-block: 3.75rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ===== Sections shared ===== */
section {
  padding-block: 5.5rem;
}

section.band-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

/* ===== Scanner-Sektion (zentrales Profil / Differenzierung) ===== */
.scanner {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(45, 102, 81, 0.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.scanner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.scanner-lead {
  font-size: 1.14rem;
  color: var(--text);
  line-height: 1.68;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.scanner-body {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 560px;
}

.scanner-strengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.strength {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.strength:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.strength-ico {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strength-ico svg {
  width: 16px; height: 16px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.strength h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.strength p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Verbindungs-Diagramm rechts (einziges "verbinden"-Motiv der Seite) */
.scanner-visual {
  position: relative;
  background: linear-gradient(160deg, #ffffff, #f6f9f7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}

.connect-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.35rem;
  text-align: center;
}

.connect-rows {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.connect-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
}

.connect-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
}

.connect-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-mid);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.connect-out {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px dashed var(--accent-line);
  text-align: center;
}

.connect-out .connect-result {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.connect-out svg {
  width: 15px; height: 15px;
  stroke: #fff; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ===== Offer Cards ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.offer-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--accent-mid), var(--brass));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s var(--ease);
}

.offer-card:hover {
  border-color: var(--accent-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.offer-card:hover::before { transform: scaleY(1); }

.offer-num {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s var(--ease);
}

.offer-card:hover .offer-num { color: var(--brass); }

.offer-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.offer-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.offer-step {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brass);
}

.offer-card > p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.offer-list {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.15rem;
}

.offer-list li {
  font-size: 0.84rem;
  color: var(--text-light);
  padding: 0.22rem 0;
  padding-left: 1.4rem;
  position: relative;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px; height: 7px;
  border-right: 1.6px solid var(--accent-mid);
  border-bottom: 1.6px solid var(--accent-mid);
  transform: rotate(-45deg);
}

/* ===== Arbeitsweise ===== */
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}

.approach-steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(var(--accent-line), var(--brass-soft));
}

.step {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding-block: 0.7rem;
  position: relative;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg);
}

.step-body h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.approach-aside {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.approach-aside h3 {
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
  font-weight: 700;
}

.approach-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.approach-aside li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.approach-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px; height: 8px;
  border-right: 1.7px solid var(--brass);
  border-bottom: 1.7px solid var(--brass);
  transform: rotate(-45deg);
}

.approach-aside .aside-cta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ===== Über mich ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.98rem;
  line-height: 1.78;
}

.about-text p:first-child {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.7;
}

.about-text p:first-child::first-letter {
  font-size: 1.15em;
  font-weight: 700;
  color: var(--accent);
}

.about-photo {
  margin: 0 0 1.5rem;
}

.about-photo-ph {
  aspect-ratio: 4 / 5;
  border: 1px dashed var(--accent-line);
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text-mute);
}

.about-photo-ph svg {
  width: 44px;
  height: 44px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
}

.about-photo-ph span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-photo figcaption {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-mute);
  text-align: center;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.about-card h4 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-card h4 + h4 { margin-top: 1.5rem; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  border-radius: 5px;
  font-size: 0.76rem;
  padding: 0.24rem 0.55rem;
  font-weight: 500;
}

/* Werdegang-Chips unter dem Über-mich-Text: ruhige Reihe, kein Hover-Spiel */
.cred-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.85rem 0 0;
  padding: 0;
}
.cred-chips li {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
}

.about-cred {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-cred li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.about-cred li svg {
  position: absolute;
  left: 0; top: 0.15rem;
  width: 16px; height: 16px;
  stroke: var(--accent-mid); fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ===== Stimmen (Testimonials) ===== */
.voices-lead {
  max-width: 820px;
  margin-bottom: 2.25rem;
  padding: 1.9rem 2rem 1.9rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}

.voices-lead p {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.voice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.voice-card .quote-mark {
  font-size: 2.6rem;
  line-height: 0.6;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  display: block;
  margin-bottom: 0.4rem;
  opacity: 0.55;
}

.voice-card p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.voices-note {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--text-mute);
  text-align: center;
}

/* ===== Beispiele / Situationen ===== */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.example-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.3rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.example-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 3px;
  background: linear-gradient(var(--accent-mid), var(--brass));
  border-radius: 2px;
}

/* ===== Projekt-Teaser (Startseite, kompakt) ===== */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
}

.teaser-card .project-badge { margin-bottom: 0.75rem; }

.teaser-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.teaser-card .teaser-url {
  font-size: 0.8rem;
  color: var(--accent-mid);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.teaser-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
  flex-grow: 1;
}

.teaser-card .teaser-link {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.teaser-card .teaser-link svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.18s var(--ease);
}

.teaser-card:hover .teaser-link svg { transform: translateX(3px); }

.teaser-all {
  text-align: center;
}

/* ===== Kontakt ===== */
section.contact-section {
  background:
    radial-gradient(720px 400px at 80% 0%, rgba(45, 102, 81, 0.38), transparent 60%),
    radial-gradient(560px 340px at 4% 112%, rgba(176, 134, 54, 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg-deep-2), var(--bg-deep));
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(700px 400px at 78% 20%, #000 0%, transparent 82%);
  -webkit-mask-image: radial-gradient(700px 400px at 78% 20%, #000 0%, transparent 82%);
  pointer-events: none;
}

.contact-section .container { position: relative; z-index: 1; }

.contact-section .label { color: rgba(255,255,255,0.7); }
.contact-section .label::before { background: var(--brass-lite); }

.contact-section h2 {
  color: #fff;
  max-width: 640px;
  margin-bottom: 1.1rem;
}

.contact-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.contact-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.28);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-2px);
}

.contact-note {
  margin-top: 1.75rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.contact-note a { color: rgba(255,255,255,0.78); }

/* ===== CTA-Band (ruhiger Wiedereinstieg, eigenes Register) ===== */
.cta-band {
  background:
    radial-gradient(620px 320px at 88% 50%, rgba(176, 134, 54, 0.18), transparent 62%),
    linear-gradient(180deg, var(--accent), var(--accent-mid));
  color: #fff;
  border-block: 1px solid #14352a;
}

.cta-band .container {
  padding-block: 2.75rem;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  flex-wrap: wrap;
}

.cta-band-text { max-width: 640px; }

.cta-band-text h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 0.5rem;
}

.cta-band-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.cta-band-btn {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.cta-band-btn:hover {
  background: var(--brass-soft);
  border-color: var(--brass-soft);
  color: var(--accent);
  transform: translateY(-2px);
}

/* CTA unter den Beispiel-Situationen */
.examples-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1.5rem;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.examples-cta p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== Kontakt: Layout mit Formular ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.contact-intro .contact-sub { margin-bottom: 2rem; }

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.contact-line:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.contact-line-ico {
  display: inline-flex;
  flex-shrink: 0;
}

.contact-line-ico svg {
  width: 20px; height: 20px;
  stroke: var(--brass-lite); fill: none; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

.contact-line-body {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.contact-line-body b { font-size: 1rem; font-weight: 600; color: #fff; }
.contact-line-body span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.contact-form-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.16s var(--ease), background 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.contact-form textarea { resize: vertical; min-height: 96px; line-height: 1.55; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brass-lite);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(176, 134, 54, 0.2);
}

.contact-form.was-validated input:invalid,
.contact-form.was-validated textarea:invalid {
  border-color: #e0a3a3;
}

.contact-form-btn { width: 100%; margin-top: 0.35rem; }

.contact-form-hint {
  margin-top: 0.9rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 560px) {
  .cta-band .container { padding-block: 2.25rem; }
  .cta-band-btn { width: 100%; }
  .contact-form-wrap { padding: 1.35rem; }
}

/* ===== Footer ===== */
.site-footer {
  background: #0b110e;
  color: rgba(255,255,255,0.5);
  padding-block: 2.5rem;
  font-size: 0.84rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a { color: rgba(255,255,255,0.42); }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .hero h1 { max-width: 20ch; }
}

@media (max-width: 900px) {
  .scanner-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card, .approach-aside { position: static; }
}

@media (max-width: 820px) {
  .trust-grid { grid-template-columns: 1fr; gap: 1rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .voices-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .scanner-strengths { grid-template-columns: 1fr; }
  .nav-links .btn { display: none; }
}

@media (max-width: 560px) {
  section { padding-block: 3.5rem; }
  .hero { padding-block: 4rem 3.25rem; }
  .nav-links a:not(.btn) { display: none; }
  .nav-links .btn { display: inline-flex; }
  .hero-cta .btn { flex: 1 1 auto; }
  .contact-cta { flex-direction: column; align-items: stretch; }
  .contact-cta .btn { width: 100%; }
  .hero-eyebrow {
    letter-spacing: 0.08em;
    font-size: 0.66rem;
    white-space: normal;
    line-height: 1.35;
    border-radius: 12px;
  }
  .hero h1 .underline { white-space: normal; }
  .hero-facts { gap: 0.55rem 1.1rem; }
}

/* =========================================================
   Projekte-Seite — geteilte Klassen (unverändert erhalten)
   ========================================================= */
.section-intro {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-top: 0.6rem;
  max-width: var(--max-prose);
  line-height: 1.72;
}

.project-badge {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-mid);
  padding: 0.22rem 0.6rem;
  margin-bottom: 0.5rem;
}

.mahava-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.mahava-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.mahava-domains {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.mahava-domains a { color: var(--accent-mid); font-weight: 500; }
.mahava-domains span { margin: 0 0.3rem; }

.mahava-intro {
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: var(--max-prose);
  margin-bottom: 1.5rem;
}

.mahava-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1.75rem;
}

.flow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.flow-arrow {
  color: var(--accent-mid);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.65;
}

.mahava-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
}

.mahava-point {
  border-left: 2px solid var(--accent-mid);
  padding-left: 0.85rem;
}

.mahava-point h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; }
.mahava-point p { font-size: 0.83rem; color: var(--text-light); line-height: 1.55; }

.mahava-insight {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.mahava-insight h4 { font-size: 0.9rem; font-weight: 600; color: var(--accent); margin-bottom: 0.5rem; }
.mahava-insight p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }

.secondary-project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
}

.secondary-project-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.secondary-project-card > p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 640px;
  margin-top: 0.75rem;
}

.solowerk-cta { margin-top: 1.25rem; display: inline-block; }

@media (max-width: 640px) {
  .mahava-feature { padding: 1.25rem; }
  .mahava-points { grid-template-columns: 1fr; }
}

/* =========================================================
   Rechtsseiten (Impressum, Datenschutz) — unverändert erhalten
   ========================================================= */
.legal-page {
  padding-block: 3.5rem 5rem;
  min-height: 55vh;
}

.legal-content { max-width: 820px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--accent-mid);
  margin-bottom: 2rem;
}

.back-link:hover { text-decoration: underline; }

.legal-intro {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-top: 0.6rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.legal-section {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type { border-bottom: none; padding-bottom: 0; }

.legal-section h2 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section p,
.legal-section address {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: normal;
  margin-bottom: 0.5rem;
}

.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--accent-mid); }
.legal-section a:hover { text-decoration: underline; }
.legal-section strong { color: var(--text); font-weight: 600; }

.legal-section ul { list-style: none; margin: 0.5rem 0; }

.legal-section ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.legal-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent-mid);
}

.legal-todo {
  display: inline-block;
  background: #fef9ec;
  border: 1px dashed #d4a020;
  border-radius: 3px;
  padding: 0.1rem 0.45rem;
  font-size: 0.82rem;
  color: #7a5410;
  font-style: italic;
}

.legal-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
