/* ============================================================
   REALVATION — Immobiliengutachter · Redesign
   Brand DNA: Hexagon-Geometrie · Cyan-geführt · Lime als Akzent
   Type: Space Grotesk (Display) + Hanken Grotesk (Text)
   ============================================================ */

:root {
  /* Ink / neutrals (cool, premium) */
  --ink:        #0B1C28;
  --ink-2:      #102A3C;
  --ink-soft:   #34495A;
  --muted:      #69808F;
  --line:       #E2ECF1;
  --line-soft:  #EEF4F7;

  /* Paper / backgrounds */
  --paper:      #FFFFFF;
  --bg:         #F3F8FA;
  --bg-tint:    #E9F4F8;

  /* Brand */
  --cyan:       #18AEE0;   /* brand cyan, slightly deepened for contrast */
  --cyan-bright:#2AB9E4;
  --cyan-deep:  #0C7AA8;
  --cyan-ink:   #074a66;
  --lime:       #5BD22B;   /* logo lime — used sparingly */
  --lime-deep:  #3DAE18;
  --mint:       #7DEFC5;   /* logo mint */
  --mint-soft:  #D7F8EC;

  /* tints */
  --cyan-05:  rgba(24,174,224,.05);
  --cyan-08:  rgba(24,174,224,.08);
  --cyan-12:  rgba(24,174,224,.12);
  --cyan-20:  rgba(24,174,224,.20);

  --radius:   14px;
  --radius-lg:24px;
  --radius-sm:9px;

  --shadow-sm: 0 2px 10px rgba(11,28,40,.05);
  --shadow-md: 0 14px 40px rgba(11,28,40,.09);
  --shadow-lg: 0 30px 70px rgba(11,28,40,.14);
  --shadow-cyan: 0 24px 60px rgba(24,174,224,.22);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  /* flat-top hexagon */
  --hex: polygon(25% 1%, 75% 1%, 100% 50%, 75% 99%, 25% 99%, 0% 50%);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: var(--ink); }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 36px; }
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 90px 0; }
.section--bg { background: var(--bg); }
.section--ink { background: var(--ink); color: #fff; }

/* ── TYPE HELPERS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan-deep);
}
.eyebrow::before {
  content: ''; width: 22px; height: 12px; flex: none;
  background: var(--cyan); -webkit-clip-path: var(--hex); clip-path: var(--hex);
}
.eyebrow--lime::before { background: var(--lime); }
.eyebrow--light { color: var(--mint); }

.h-sec {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700; line-height: 1.06; letter-spacing: -.02em;
  color: var(--ink); margin-top: 20px;
  text-wrap: balance;
}
.section--ink .h-sec { color: #fff; }
.sub {
  font-size: 18.5px; line-height: 1.65; color: var(--muted);
  margin-top: 20px; max-width: 620px; text-wrap: pretty;
}
.section--ink .sub { color: rgba(255,255,255,.62); }
.head-center { text-align: center; max-width: 680px; margin: 0 auto 70px; }
.head-center .sub { margin-left: auto; margin-right: auto; }
em.hl { font-style: normal; color: var(--cyan-deep); }
.lime-underline {
  background-image: linear-gradient(transparent 62%, rgba(91,210,43,.35) 0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 700; letter-spacing: .01em;
  padding: 16px 28px; border-radius: 100px; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-cyan { background: var(--cyan); color: #fff; box-shadow: 0 10px 26px rgba(24,174,224,.32); }
.btn-cyan:hover { background: var(--cyan-bright); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(24,174,224,.42); }
.btn-cyan:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--cyan); background: var(--cyan-05); transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 10px 26px rgba(91,210,43,.3); }
.btn-lime:hover { background: #66e034; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(91,210,43,.4); }
.btn-block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-size: 14px; font-weight: 700; color: var(--cyan-deep);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ── HEX UTILITIES ── */
.hex { -webkit-clip-path: var(--hex); clip-path: var(--hex); }
.hex-tile {
  width: 56px; height: 60px; display: grid; place-items: center; flex: none;
  -webkit-clip-path: var(--hex); clip-path: var(--hex);
}
.hex-tile svg { width: 26px; height: 26px; fill: none; stroke-width: 1.7; }

/* decorative hexagon outline */
.hex-outline {
  position: absolute; -webkit-clip-path: var(--hex); clip-path: var(--hex);
  pointer-events: none;
}

/* ============================================================
   VARIANT SWITCHER (preview tool)
   ============================================================ */
.vswitch {
  position: fixed; z-index: 300; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  background: rgba(11,28,40,.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 100px;
  padding: 7px 8px 7px 16px; box-shadow: var(--shadow-lg);
}
.vswitch-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-right: 4px; white-space: nowrap;
}
.vswitch button {
  font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer;
  color: rgba(255,255,255,.7); background: transparent; border: none;
  padding: 9px 16px; border-radius: 100px; transition: all .2s;
  display: flex; align-items: center; gap: 7px;
}
.vswitch button .vdot { width: 9px; height: 10px; background: currentColor; -webkit-clip-path: var(--hex); clip-path: var(--hex); opacity: .7; }
.vswitch button:hover { color: #fff; }
.vswitch button.active { background: var(--cyan); color: #fff; }
.vswitch button.active .vdot { opacity: 1; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
nav.scrolled { border-color: var(--line); box-shadow: 0 2px 24px rgba(11,28,40,.05); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 36px; height: 78px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 13px; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo-div { width: 1px; height: 30px; background: var(--line); }
.nav-logo-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; line-height: 1.05; color: var(--ink); letter-spacing: -.01em; }
.nav-logo-name span { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .04em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { position: relative; font-size: 15px; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--cyan); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.lang { font-size: 13px; font-weight: 700; color: var(--muted); cursor: pointer; padding: 6px 10px; border-radius: 8px; transition: all .2s; letter-spacing: .04em; }
.lang:hover { color: var(--ink); background: var(--bg); }
.nav-cta {
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 22px; border-radius: 100px; transition: all .25s var(--ease);
}
.nav-cta:hover { background: var(--cyan); transform: translateY(-1px); color: #fff; }

/* ============================================================
   HERO — shared
   ============================================================ */
.hero { position: relative; padding-top: 78px; overflow: hidden; }
.hero-variant { display: none; }
.hero-variant.active { display: block; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--cyan-08); border: 1px solid var(--cyan-20); color: var(--cyan-deep);
  padding: 7px 15px 7px 11px; border-radius: 100px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em;
}
.kicker .dot { width: 8px; height: 9px; background: var(--lime); -webkit-clip-path: var(--hex); clip-path: var(--hex); }

.hero-trustbar {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px;
}
.tbadge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.tbadge svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 2; flex: none; }
.tbadge span { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }

/* ---- Variant A: Hexagon Cluster ---- */
.heroA-inner {
  max-width: 1180px; margin: 0 auto; padding: 80px 36px 110px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center;
}
.heroA-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 55% at 88% 22%, var(--cyan-08) 0%, transparent 62%),
    radial-gradient(ellipse 42% 48% at 96% 80%, rgba(125,239,197,.16) 0%, transparent 60%);
}
.heroA-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, #000 0%, transparent 75%);
}
.heroA-copy { position: relative; z-index: 2; }
.h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 5.4vw, 70px); line-height: 1.02; letter-spacing: -.03em;
  color: var(--ink); margin: 26px 0 0; text-wrap: balance;
}
.h1 em { font-style: normal; color: var(--cyan-deep); }
.hero-lead {
  font-size: 19px; line-height: 1.62; color: var(--ink-soft);
  max-width: 500px; margin: 26px 0 0; text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* hex cluster */
.hexcluster { position: relative; z-index: 2; height: 560px; }
.hc-cell { position: absolute; -webkit-clip-path: var(--hex); clip-path: var(--hex); overflow: hidden; }
.hc-portrait { width: 300px; height: 322px; left: 86px; top: 60px; box-shadow: var(--shadow-lg); }
.hc-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hc-cyan { width: 150px; height: 162px; left: 8px; top: 250px; background: linear-gradient(150deg, var(--cyan) 0%, var(--cyan-deep) 100%); display: grid; place-items: center; }
.hc-cyan .hc-stat-n { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: #fff; line-height: 1; }
.hc-cyan .hc-stat-l { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85); margin-top: 6px; text-align: center; max-width: 90px; }
.hc-lime { width: 96px; height: 104px; right: 18px; top: 30px; background: var(--lime); display: grid; place-items: center; }
.hc-lime svg { width: 38px; height: 38px; stroke: var(--ink); fill: none; stroke-width: 1.8; }
.hc-mint { width: 80px; height: 86px; right: 70px; bottom: 70px; background: var(--mint); }
.hc-outline-1 { width: 130px; height: 140px; right: 0; bottom: 110px; border: 2px solid var(--cyan-20); background: transparent; }
.hexcluster .hc-cell, .hexcluster .hc-outline-1 { animation: floaty 7s var(--ease) infinite; }
.hexcluster .hc-lime { animation-delay: -1.5s; }
.hexcluster .hc-cyan { animation-delay: -3s; }
.hexcluster .hc-mint { animation-delay: -2.2s; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

/* floating credential chip on portrait */
.hc-chip {
  position: absolute; z-index: 4; left: -6px; bottom: 118px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 13px 16px; display: flex; align-items: center; gap: 11px;
}
.hc-chip .pulse { position: relative; width: 10px; height: 10px; flex: none; }
.hc-chip .pulse i { position: absolute; inset: 0; border-radius: 50%; background: var(--lime); }
.hc-chip .pulse::after { content:''; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid rgba(91,210,43,.5); animation: pulsering 2.2s var(--ease) infinite; }
@keyframes pulsering { 0%{ transform: scale(.5); opacity: 1;} 100%{ transform: scale(2.1); opacity: 0;} }
.hc-chip-txt b { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.hc-chip-txt span { font-size: 12px; color: var(--muted); }

/* ---- Variant B: Editorial Bold Type ---- */
.heroB-inner {
  max-width: 1180px; margin: 0 auto; padding: 96px 36px 90px; position: relative; z-index: 2;
}
.heroB-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.heroB-bg .bhex { position: absolute; -webkit-clip-path: var(--hex); clip-path: var(--hex); }
.bhex-1 { width: 420px; height: 454px; border: 2px solid var(--cyan-12); right: -120px; top: 40px; background: transparent; }
.bhex-2 { width: 260px; height: 280px; background: var(--cyan-05); right: 120px; top: 220px; }
.bhex-3 { width: 70px; height: 76px; background: var(--lime); left: 6%; bottom: 90px; opacity: .9; }
.heroB-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.h1-mega {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(52px, 9.5vw, 132px); line-height: .92; letter-spacing: -.045em;
  color: var(--ink); margin: 30px 0 0; text-wrap: balance;
}
.h1-mega em { font-style: normal; color: var(--cyan-deep); position: relative; }
.h1-mega .stroke {
  -webkit-text-stroke: 2px var(--ink); color: transparent;
}
.heroB-meta { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-top: 56px; padding-top: 40px; border-top: 1.5px solid var(--line); align-items: start; }
.heroB-lead { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 460px; text-wrap: pretty; }
.heroB-stat .n { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--ink); line-height: 1; }
.heroB-stat .n em { color: var(--cyan-deep); font-style: normal; }
.heroB-stat .l { font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.heroB-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }

/* ---- Variant C: Immersive Dark Panel ---- */
.heroC { background: var(--ink); color: #fff; }
.heroC-inner {
  max-width: 1180px; margin: 0 auto; padding: 96px 36px 110px; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.heroC-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.heroC-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 46% 50% at 78% 30%, rgba(24,174,224,.30) 0%, transparent 60%),
    radial-gradient(ellipse 38% 42% at 90% 88%, rgba(125,239,197,.14) 0%, transparent 60%);
}
.heroC-mesh {
  position: absolute; inset: 0; opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 75% 45%, #000, transparent 72%);
          mask-image: radial-gradient(ellipse 60% 70% at 75% 45%, #000, transparent 72%);
}
.heroC .h1 { color: #fff; }
.heroC .h1 em { color: var(--mint); }
.heroC .hero-lead { color: rgba(255,255,255,.68); }
.heroC .kicker { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--mint); }
.heroC-visual { position: relative; z-index: 2; height: 520px; }
.cc-cell { position: absolute; -webkit-clip-path: var(--hex); clip-path: var(--hex); overflow: hidden; }
.cc-portrait { width: 320px; height: 344px; left: 70px; top: 40px; box-shadow: 0 40px 90px rgba(0,0,0,.5); }
.cc-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.cc-ring { width: 360px; height: 388px; left: 50px; top: 20px; border: 1.5px solid rgba(255,255,255,.16); background: transparent; }
.cc-cyan { width: 132px; height: 142px; right: 6px; top: 30px; background: linear-gradient(150deg, var(--cyan) 0%, var(--cyan-deep) 100%); display: grid; place-items: center; box-shadow: var(--shadow-cyan); }
.cc-cyan svg { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 1.7; }
.cc-glass {
  position: absolute; z-index: 5; right: 0; bottom: 40px; width: 220px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 18px; backdrop-filter: blur(10px);
}
.cc-glass .g-n { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--mint); line-height: 1; }
.cc-glass .g-l { font-size: 13px; color: rgba(255,255,255,.62); margin-top: 6px; line-height: 1.4; }
.heroC .hero-trustbar .tbadge { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.13); box-shadow: none; }
.heroC .hero-trustbar .tbadge span { color: rgba(255,255,255,.82); }
.heroC .hero-trustbar .tbadge svg { stroke: var(--mint); }
.heroC .btn-ghost { color: #fff; border-color: rgba(255,255,255,.22); }
.heroC .btn-ghost:hover { background: rgba(255,255,255,.07); border-color: var(--mint); }

/* ============================================================
   MARQUEE / proof strip
   ============================================================ */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.proof-inner { max-width: 1180px; margin: 0 auto; padding: 26px 36px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 12px; }
.proof-item .pn { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--ink); line-height: 1; }
.proof-item .pn em { color: var(--cyan-deep); font-style: normal; }
.proof-item .pl { font-size: 13.5px; color: var(--muted); line-height: 1.3; max-width: 130px; }
.proof-sep { width: 11px; height: 12px; background: var(--cyan-12); -webkit-clip-path: var(--hex); clip-path: var(--hex); flex: none; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* Ausklappbare zweite Reihe */
.leist-more {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s var(--ease);
}
.leist-more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: calc(66.66% + 13px);
  margin: 26px auto 0;
}

/* Toggle-Button */
.leist-toggle-wrap { display: flex; justify-content: center; margin-top: 28px; }
.leist-toggle-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1.5px solid var(--line);
  border-radius: 999px; padding: 10px 22px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--ink); cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.leist-toggle-btn:hover { border-color: var(--cyan); color: var(--cyan-deep); background: var(--cyan-faint, #f0faff); }
.leist-toggle-label { display: flex; align-items: center; gap: 7px; pointer-events: none; }
.leist-toggle-icon { width: 16px; height: 16px; transition: transform .35s var(--ease); flex-shrink: 0; }
.leist-toggle-btn.open .leist-toggle-icon { transform: rotate(180deg); }
.lcard {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px 34px 34px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.lcard::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 140px; height: 150px;
  -webkit-clip-path: var(--hex); clip-path: var(--hex);
  background: var(--cyan-05); transition: background .3s, transform .4s var(--ease);
}
.lcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.lcard:hover::before { background: var(--cyan-12); transform: scale(1.15) rotate(8deg); }
.lcard.feat { background: var(--ink); border-color: var(--ink); color: #fff; }
.lcard.feat::before { background: rgba(255,255,255,.05); }
.lcard.feat:hover::before { background: rgba(24,174,224,.22); }
.lcard-tag {
  position: absolute; top: 26px; right: 26px; z-index: 2;
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); background: var(--lime); padding: 5px 11px; border-radius: 100px;
}
.lcard .hex-tile { background: var(--cyan-12); position: relative; z-index: 2; }
.lcard .hex-tile svg { stroke: var(--cyan-deep); }
.lcard.feat .hex-tile { background: rgba(255,255,255,.1); }
.lcard.feat .hex-tile svg { stroke: var(--mint); }
.lcard-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.18; letter-spacing: -.01em; margin: 22px 0 0; position: relative; z-index: 2; }
.lcard-desc { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 12px 0 0; position: relative; z-index: 2; }
.lcard.feat .lcard-desc { color: rgba(255,255,255,.6); }
.lcard-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 0; position: relative; z-index: 2; }
.lcard-tags span { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); background: var(--bg); padding: 5px 11px; border-radius: 100px; }
.lcard.feat .lcard-tags span { color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); }
.lcard-foot { margin-top: auto; padding-top: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; position: relative; z-index: 2; }
.lcard-price { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--ink); line-height: 1; }
.lcard.feat .lcard-price { color: #fff; }
.lcard-price small { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--muted); margin-top: 6px; }
.lcard-price small[data-en] { display: none; }
body.en .lcard-price small[data-de] { display: none; }
body.en .lcard-price small[data-en] { display: block; }
.lcard.feat .lcard-price small { color: rgba(255,255,255,.5); }
.lcard.feat .link-arrow { color: var(--mint); }
.fineprint { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 26px; }

/* ============================================================
   ANLÄSSE
   ============================================================ */
.anl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.anl { background: var(--paper); padding: 36px 32px; transition: background .3s; position: relative; }
.anl:hover { background: var(--bg); }
.anl-n { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--cyan-deep); letter-spacing: .04em; }
.anl-n::before { content: ''; display: inline-block; width: 9px; height: 10px; background: var(--cyan); -webkit-clip-path: var(--hex); clip-path: var(--hex); margin-right: 9px; vertical-align: middle; }
.anl:nth-child(4) .anl-n::before, .anl:nth-child(5) .anl-n::before { background: var(--lime); }
.anl-t { font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.2; letter-spacing: -.01em; margin: 16px 0 0; }
.anl-b { font-size: 14.5px; line-height: 1.62; color: var(--muted); margin: 12px 0 0; }

/* ============================================================
   HONORAR WIDGET
   ============================================================ */
.widget {
  max-width: 920px; margin: 0 auto; background: var(--paper);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.widget-head { background: var(--ink); padding: 32px 44px; position: relative; overflow: hidden; }
.widget-head::after { content: ''; position: absolute; right: -40px; top: -40px; width: 160px; height: 170px; -webkit-clip-path: var(--hex); clip-path: var(--hex); background: rgba(24,174,224,.2); }
.widget-head h3 { font-family: var(--font-display); font-size: 23px; font-weight: 700; color: #fff; position: relative; z-index: 2; }
.widget-head p { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 5px; position: relative; z-index: 2; }
.steps { display: flex; background: #08151E; }
.step-btn {
  flex: 1; padding: 16px 20px; font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.4); background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 9px;
}
.step-btn .sn { width: 23px; height: 23px; border-radius: 50%; border: 1.5px solid currentColor; display: grid; place-items: center; font-size: 11px; font-weight: 800; flex: none; }
.step-btn.active { color: var(--cyan-bright); border-color: var(--cyan-bright); }
.step-btn.done { color: var(--lime); }
.step-btn.done .sn { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.widget-body { padding: 44px; }
.wsection { display: none; }
.wsection.active { display: block; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fgroup { margin-bottom: 30px; }
.flabel { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 13px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 11px 18px; border: 1.5px solid var(--line); border-radius: 100px; font-size: 14.5px;
  cursor: pointer; transition: all .18s var(--ease); background: var(--paper); color: var(--ink-soft); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.chip:hover { border-color: var(--cyan); color: var(--cyan-deep); background: var(--cyan-05); }
.chip.selected { border-color: var(--cyan); background: var(--cyan); color: #fff; }
.chip .ck { width: 0; height: 11px; overflow: hidden; transition: width .2s; }
.chip.selected .ck { width: 13px; }
.chip .ck svg { width: 13px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; }
.range-row { display: flex; align-items: center; gap: 18px; }
input[type=range] { flex: 1; -webkit-appearance: none; appearance: none; height: 5px; background: var(--line); border-radius: 10px; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--cyan); cursor: pointer; border: 4px solid #fff; box-shadow: 0 0 0 2px var(--cyan), var(--shadow-sm); transition: transform .15s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--cyan); cursor: pointer; border: 4px solid #fff; box-shadow: 0 0 0 2px var(--cyan); }
.range-val { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--ink); min-width: 96px; text-align: right; }
.wnav { display: flex; justify-content: space-between; align-items: center; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.wback { background: none; border: none; color: var(--muted); font-family: var(--font-body); font-size: 14.5px; font-weight: 600; cursor: pointer; padding: 12px 6px; transition: color .2s; }
.wback:hover { color: var(--ink); }

/* result */
.result {
  background: var(--ink); border-radius: var(--radius); padding: 40px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.result::after { content: ''; position: absolute; left: -50px; bottom: -50px; width: 180px; height: 190px; -webkit-clip-path: var(--hex); clip-path: var(--hex); background: rgba(125,239,197,.1); }
.result-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); position: relative; z-index: 2; }
.result-num { font-family: var(--font-display); font-size: clamp(36px, 6vw, 52px); font-weight: 700; color: var(--mint); line-height: 1; margin-top: 12px; position: relative; z-index: 2; }
.result-vat { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 8px; position: relative; z-index: 2; }
.result-break { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; position: relative; z-index: 2; }
.result-break .ri { background: rgba(255,255,255,.07); border-radius: 12px; padding: 16px 14px; text-align: left; }
.result-break .ri .k { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.45); }
.result-break .ri .v { font-size: 15px; font-weight: 700; color: #fff; margin-top: 5px; }
.result .btn { margin-top: 30px; position: relative; z-index: 2; }
.result-disc { font-size: 11.5px; color: rgba(255,255,255,.35); margin-top: 16px; line-height: 1.5; position: relative; z-index: 2; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-portrait { width: 100%; max-width: 380px; aspect-ratio: 1/1.08; -webkit-clip-path: var(--hex); clip-path: var(--hex); overflow: hidden; margin: 0 auto; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.about-ring { position: absolute; width: 120%; left: -10%; top: -6%; aspect-ratio: 1/1.08; max-width: none; -webkit-clip-path: var(--hex); clip-path: var(--hex); border: 1.5px solid var(--cyan-20); z-index: -1; }
.about-badge {
  position: absolute; bottom: 6%; right: -2%; background: var(--lime); color: var(--ink);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1;
}
.about-badge span { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; margin-top: 6px; opacity: .7; }
.about-body { font-size: 17px; line-height: 1.74; color: var(--ink-soft); margin: 22px 0 0; max-width: 580px; }
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.cred { display: flex; gap: 15px; align-items: flex-start; }
.cred .hex-tile { background: var(--cyan-08); width: 46px; height: 50px; }
.cred .hex-tile svg { width: 21px; height: 21px; stroke: var(--cyan-deep); }
.cred-t { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.cred-s { font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tcat { display: inline-flex; align-self: flex-start; font-size: 11.5px; font-weight: 700; color: var(--cyan-deep); background: var(--cyan-08); padding: 5px 13px; border-radius: 100px; }
.tstars { display: flex; gap: 3px; margin: 18px 0 0; }
.tstars span { color: var(--lime); font-size: 17px; }
.ttext { font-size: 15.5px; line-height: 1.66; color: var(--ink-soft); margin: 16px 0 0; }
.tauthor { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.tav { width: 46px; height: 50px; -webkit-clip-path: var(--hex); clip-path: var(--hex); background: var(--cyan-12); display: grid; place-items: center; flex: none; }
.tav span { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--cyan-deep); }
.tn { font-size: 15px; font-weight: 700; color: var(--ink); }
.tc { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 26px 0; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; transition: color .2s; letter-spacing: -.01em; }
.faq-q:hover { color: var(--cyan-deep); }
.faq-ic { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; transition: all .25s var(--ease); }
.faq-ic svg { width: 13px; height: 13px; stroke: var(--ink-soft); fill: none; stroke-width: 2.5; transition: transform .25s var(--ease); }
.faq-item.open .faq-ic { background: var(--cyan); border-color: var(--cyan); }
.faq-item.open .faq-ic svg { stroke: #fff; transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s var(--ease); }
.faq-item.open .faq-a { max-height: 360px; padding-bottom: 26px; }
.faq-a p { font-size: 16px; line-height: 1.72; color: var(--muted); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact-info .h-sec { color: #fff; }
.contact-items { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.citem { display: flex; align-items: center; gap: 15px; }
.citem .hex-tile { background: rgba(255,255,255,.08); width: 48px; height: 52px; }
.citem .hex-tile svg { width: 21px; height: 21px; stroke: var(--mint); }
.citem .ck-l { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); }
.citem .ck-v { font-size: 16.5px; font-weight: 600; color: #fff; margin-top: 3px; }
.contact-hex-deco { position: absolute; right: 4%; bottom: 8%; width: 200px; height: 214px; border: 1.5px solid rgba(255,255,255,.07); -webkit-clip-path: var(--hex); clip-path: var(--hex); pointer-events: none; }

.cform { background: var(--paper); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.cform h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 26px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 15px; font-family: var(--font-body); color: var(--ink); background: var(--paper);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-12); }
.field textarea { resize: vertical; min-height: 110px; }
.cform-note { font-size: 11.5px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.cform-msg { font-size: 13.5px; font-weight: 600; line-height: 1.5; margin-top: 16px; padding: 12px 16px; border-radius: var(--radius-sm); text-align: center; }
.cform-msg.info { color: var(--cyan-ink); background: var(--cyan-08); }
.cform-msg.ok   { color: #1d7a4d; background: rgba(34,160,100,.10); }
.cform-msg.err  { color: #b3331f; background: rgba(200,60,40,.09); }
#contactSubmit:disabled { opacity: .6; cursor: not-allowed; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #08151E; color: rgba(255,255,255,.5); padding: 56px 0 36px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 36px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 40px; }
.footer-brand .fb-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #fff; }
.footer-brand .fb-name span { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 400; color: rgba(255,255,255,.45); margin-top: 3px; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; }
.footer-rics { display: flex; align-items: center; gap: 9px; }
.footer-rics .badge { background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 800; padding: 4px 9px; border-radius: 5px; letter-spacing: .04em; }
.footer-rics span:last-child { font-size: 11px; color: rgba(255,255,255,.4); }

/* ============================================================
   REVEAL / MOTION (subtle)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hexcluster .hc-cell, .hexcluster .hc-outline-1 { animation: none; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   LANG
   ============================================================ */
[data-en] { display: none; }
body.en [data-de] { display: none; }
body.en [data-en] { display: revert; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .heroA-inner, .heroC-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .hexcluster, .heroC-visual { display: none; }
  .leist-grid, .leist-more-grid, .anl-grid, .tgrid { grid-template-columns: 1fr; }
  .leist-more-grid { max-width: 100%; margin-top: 0; }
  .anl-grid { gap: 1px; }
  .heroB-meta { grid-template-columns: 1fr; gap: 24px; }
  .creds { grid-template-columns: 1fr; }
  .result-break { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { padding: 0 22px; }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-inner { padding: 0 22px; }
  .heroA-inner { padding: 50px 22px 70px; }
  .heroB-inner, .heroC-inner { padding: 60px 22px 70px; }
  .frow { grid-template-columns: 1fr; }
  .widget-body { padding: 28px 22px; }
  .widget-head { padding: 26px 24px; }
  .steps .step-btn span:not(.sn) { display: none; }
  .vswitch { left: 12px; right: 12px; transform: none; bottom: 12px; justify-content: center; }
  .vswitch-label { display: none; }
  .footer-top { flex-direction: column; }
}
