/* =====================================================================
   AKADO Immobilien Management — Premium Design System
   Basisfarbe: Dunkelblau (Navy)  |  Akzente: Gold + Sky
   Autor: Redesign 2026  |  Statisches HTML/CSS/JS
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Design Tokens                                                    */
/* ------------------------------------------------------------------ */
:root {
  /* --- Markenfarben: Dunkelblau (Basis) --- */
  --navy-950: #050E1C;
  --navy-900: #08172B;
  --navy-800: #0C2138;
  --navy-700: #102A47;
  --navy-600: #163A5F;
  --navy-500: #1F4E7A;
  --navy-400: #2E6CA3;

  /* --- Akzente --- */
  --gold-500: #2470ad;   /* Stahlblau Mitte */
  --gold-400: #357fbe;
  --gold-300: #5A96C4;
  --sky-500:  #5B95C4;
  --sky-400:  #7FB2DA;

  /* --- Neutrale --- */
  --ink:       #0B1A2B;  /* Headlines auf Hell */
  --body:      #44566B;  /* Fließtext auf Hell */
  --muted:     #7A8A9C;
  --line:      #E4EAF1;  /* Trennlinien hell */
  --line-dark: rgba(255,255,255,.10);
  --bg:        #FFFFFF;
  --bg-soft:   #F5F8FC;  /* helle Sektion */
  --bg-mute:   #EEF3F9;
  --white:     #FFFFFF;
  --white-70:  rgba(255,255,255,.72);
  --white-55:  rgba(255,255,255,.55);
  --white-40:  rgba(255,255,255,.40);

  /* --- Typografie --- */
  --font-display: "KontrapunktMiki", "Segoe UI", system-ui, sans-serif;
  --font-sans: "KontrapunktMiki", "Inter", system-ui, sans-serif;

  /* --- Radius / Schatten --- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 10px rgba(8,23,43,.06);
  --shadow-md: 0 18px 40px -18px rgba(8,23,43,.22);
  --shadow-lg: 0 40px 80px -30px rgba(8,23,43,.40);
  --shadow-gold: 0 16px 36px -14px rgba(34,109,172,.45);

  /* --- Layout --- */
  --container: 1200px;
  --container-narrow: 880px;
  --gap: clamp(1.25rem, 3vw, 2rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --header-h: 125px;

  --ease: cubic-bezier(.22,.61,.36,1);
}


/* ------------------------------------------------------------------ */
/* 2. Reset & Base                                                     */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;

}

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold-300); color: var(--navy-900); }

/* ------------------------------------------------------------------ */
/* 3. Typografie                                                       */
/* ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.8vw, 4.1rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--body); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.7; color: var(--body); }
.text-gold { color: var(--gold-500); }
.serif-em { font-family: var(--font-display); font-style: italic; }

/* ------------------------------------------------------------------ */
/* 4. Layout-Helfer                                                    */
/* ------------------------------------------------------------------ */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, var(--container-narrow)); margin-inline: auto; }
.section { padding-block-start: var(--section-y); padding-block-end: var(--section-y); }

.section-head { max-width: 900px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; }

.bg-soft { background: var(--bg-soft); }
.bg-mute { background: var(--bg-mute); }

/* dunkle Sektion */
.bg-navy {
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(91,149,196,.16), transparent 55%),
    radial-gradient(90% 90% at 0% 110%, rgba(199,162,78,.10), transparent 50%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700));
  color: var(--white-70);
  position: relative;
}
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: var(--white-70); }
.bg-navy strong { color: var(--white); }

.grid { display: grid; gap: var(--gap); }
@media (min-width: 720px){ .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 760px){ .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 980px){ .grid-4 { grid-template-columns: repeat(4,1fr); } }
.items-center { align-items: center; }
.split { display: grid; gap: clamp(2rem,5vw,4.5rem); }
@media (min-width: 920px){ .split { grid-template-columns: 1fr 1fr; align-items: start; } .split.wide-left { grid-template-columns: 1.05fr .95fr; } }
.split .media { margin-top: 3.7rem; }

/* ------------------------------------------------------------------ */
/* 5. Buttons                                                          */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  letter-spacing: .01em; line-height: 1;
  padding: 1.05rem 1.8rem; border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(199,162,78,.6); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy-600); transform: translateY(-3px); }
.btn-light { background: rgba(255,255,255,.08); color: var(--white); box-shadow: inset 0 0 0 1.5px var(--white-40); backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--navy-600);
  transition: gap .3s var(--ease), color .3s;
}
.bg-navy .link-arrow { color: var(--gold-400); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: .85rem; color: var(--gold-500); }

/* ------------------------------------------------------------------ */
/* 6. Header / Navigation                                              */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header.solid {
  background: rgba(8,23,43,.85);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-dark), 0 16px 40px -28px rgba(0,0,0,.7);
  height: 125px;
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 2rem; padding-right: clamp(.5rem, 2.5vw, 2rem); }
.nav-logo { margin-left: clamp(.5rem, 2.5vw, 2rem); display: inline-flex; }
.nav-logo img { height: 46px; width: auto; }
.site-header.solid .nav-logo img { height: 46px; }
.nav-menu { display: none; align-items: center; gap: 2.1rem; }
.nav-menu a {
  position: relative; color: var(--white-55); font-weight: 500; font-size: .96rem;
  padding: .4rem 0; transition: color .3s;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold-400); transition: width .35s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-actions { display: none; align-items: center; gap: 1rem; }
.nav-cta { padding: .8rem 1.4rem; font-size: .92rem; }

@media (min-width: 1040px){
  .nav-menu, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile Toggle */
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 46px; height: 46px; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(255,255,255,.08);
  margin-right: clamp(1rem, 2.5vw, 2rem);
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .35s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(91,149,196,.16), transparent 55%),
    radial-gradient(90% 90% at 0% 110%, rgba(199,162,78,.10), transparent 50%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700));
  padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
  display: flex; flex-direction: column; gap: .25rem;
  overflow-y: auto;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease), opacity .4s;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--white);
  padding: .65rem 0; border-bottom: 1px solid var(--line-dark);
}
.mobile-nav .btn { margin-top: auto; }
.mobile-nav .m-contact { margin-top: 1.5rem; color: var(--white-55); font-size: .95rem; }
.mobile-nav .m-contact a { font-family: var(--font-sans); font-size: .95rem; color: var(--gold-400); padding: 0; border: 0; display: inline; }
body.nav-open { overflow: hidden; }

/* Dropdown Navigation (Desktop) */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trigger {
  display: inline-flex; align-items: center; gap: .3rem;
  background: none; border: none; cursor: pointer; padding: .4rem 0;
  color: var(--white-55); font-weight: 500; font-size: .96rem; font-family: var(--font-sans);
  transition: color .3s; position: relative;
}
.nav-dd-trigger::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold-400); transition: width .35s var(--ease);
}
.nav-dd-trigger svg { transition: transform .3s; flex-shrink: 0; }
.nav-dd:hover .nav-dd-trigger,
.nav-dd-trigger.active { color: var(--white); }
.nav-dd:hover .nav-dd-trigger::after,
.nav-dd-trigger.active::after { width: calc(100% - 16px); }
.nav-dd:hover .nav-dd-trigger svg { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(8,23,43,.97); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm);
  padding: .75rem 0 .5rem; min-width: 170px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 200;
}
.nav-dd-menu::before {
  content: ""; position: absolute; top: -.75rem; left: 0; right: 0; height: .75rem;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd.is-open .nav-dd-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  display: block; padding: .65rem 1.25rem;
  color: var(--white-70); font-size: .93rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-dd-menu a:hover, .nav-dd-menu a.active {
  color: var(--white); background: rgba(255,255,255,.07);
}
.nav-dd-menu a::after { display: none !important; }

/* Founder Card */
.founder-card {
  display: flex; align-items: stretch;
  background: var(--bg-soft); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.founder-img-wrap {
  flex-shrink: 0; width: 340px;
  overflow: hidden;
  border-radius: 0 0 0 var(--r-xl);
  align-self: stretch;
  position: relative;
}
.founder-img-wrap img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.founder-body {
  flex: 1; padding: 3rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.founder-role {
  font-size: .88rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-500); margin: 0;
}
.founder-name {
  font-family: var(--font-display); font-size: 2rem; color: var(--ink);
  font-weight: 700; margin: 0; line-height: 1.2;
}
.founder-quote {
  border-left: 3px solid var(--gold-400); padding-left: 1.25rem;
  font-size: 1.05rem; line-height: 1.75; color: var(--body);
  font-style: italic; margin: 0;
}
.founder-bio { font-size: 1rem; line-height: 1.75; color: var(--body); margin: 0; }
.founder-stats {
  display: flex; gap: 2rem; padding-top: 1.5rem;
  border-top: 2px solid rgba(8,23,43,.25); margin-top: .5rem;
}
.founder-stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700;
  color: var(--gold-500); line-height: 1;
}
.stat-label { font-size: .82rem; color: var(--muted); font-weight: 500; }

@media (max-width: 860px) {
  .founder-card { flex-direction: column; }
  .founder-img-wrap { width: 100%; min-height: 320px; }
  .founder-body { padding: 2rem; }
  .founder-stats { gap: 1.5rem; }
}

/* Objekt-Filter Tabs */
.obj-filter {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 2rem;
}
.obj-tab {
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 2rem;
  padding: .55rem 1.25rem; font-size: .92rem; font-weight: 500; color: var(--body);
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.obj-tab:hover { border-color: var(--gold-400); color: var(--gold-500); }
.obj-tab.active {
  background: var(--gold-500); border-color: var(--gold-500); color: #fff;
}

/* Mobile dropdown section label */
.m-nav-section {
  display: block; font-family: var(--font-sans); font-size: .75rem;
  color: var(--white-40); padding: .9rem 0 .3rem;
  border-bottom: 1px solid var(--line-dark); letter-spacing: .08em; text-transform: uppercase;
}

/* ------------------------------------------------------------------ */
/* 7. Hero                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; padding-top: calc(var(--header-h) + clamp(2.5rem,6vw,5rem));
  padding-bottom: var(--section-y); overflow: hidden;
}
.hero::after { /* feine Bodenlinie / Verlauf zum nächsten Block */
  content:""; position:absolute; inset:auto 0 0 0; height:140px;
  background: linear-gradient(transparent, rgba(5,14,28,.4));
  pointer-events:none;
}
.hero-grid { display: grid; gap: clamp(2.5rem,5vw,4rem); align-items: center; position: relative; z-index: 2; }
@media (min-width: 980px){ .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: stretch; } }
@media (min-width: 980px){ .hero-visual { position: relative; } .hero-visual .media { position: absolute; top: 0; left: 0; width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center; } }
.hero h1 { margin: 1.4rem 0 0; }
.hero h1 .accent,
.page-hero h1 .accent { color: var(--gold-400); }
.hero-sub { margin-top: 1.6rem; font-size: 1.15rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem,4vw,3rem); margin-top: 3.2rem; padding-top: 2.2rem; border-top: 1px solid #226DAC; }
.stat .num { font-family: var(--font-display); font-size: clamp(1.9rem,3vw,2.6rem); color: var(--white); line-height: 1; }
.stat .num .text-gold { color: var(--gold-400); }
.stat .label { font-size: .85rem; color: var(--white-55); margin-top: .5rem; letter-spacing: .02em; }

/* Hero Visual / Bild-Komposition */
.hero-visual { position: relative; }
.hero-visual .ph { aspect-ratio: 4/5; border-radius: var(--r-lg); }
.hero-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: rgba(8,23,43,.72); backdrop-filter: blur(10px);
  border: 1px solid var(--line-dark); border-radius: var(--r-md);
  padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: .9rem;
  box-shadow: var(--shadow-lg); max-width: 270px;
}
.hero-badge .dot { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); flex-shrink: 0; }
.hero-badge .dot svg { width: 22px; height: 22px; }
.hero-badge b { color: var(--white); font-size: .98rem; display: block; }
.hero-badge span { color: var(--white-55); font-size: .82rem; }

/* Trust / Logo-Leiste */
.trust { border-top: 1px solid var(--line-dark); }
.trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem; padding-block: 2rem; }
.trust .trust-label { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--white-40); }
.trust .trust-logos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem,4vw,3rem); }
.trust .ph-logo { width: 118px; height: 34px; border-radius: 8px; }

/* ------------------------------------------------------------------ */
/* 8. Bild-Platzhalter (.ph)                                           */
/* ------------------------------------------------------------------ */
.ph {
  position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(22,58,95,.10), rgba(91,149,196,.06)),
    repeating-linear-gradient(45deg, rgba(11,26,43,.035) 0 14px, transparent 14px 28px),
    var(--bg-mute);
  border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted);
}
.bg-navy .ph, .ph.on-dark {
  background:
    linear-gradient(135deg, rgba(91,149,196,.16), rgba(199,162,78,.07)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 14px, transparent 14px 28px),
    rgba(255,255,255,.03);
  border: 1px solid var(--line-dark); color: var(--white-40);
}
.ph .ph-inner { text-align: center; padding: 1rem; display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.ph .ph-icon { width: 40px; height: 40px; opacity: .6; }
.ph .ph-label { font-family: var(--font-sans); font-size: .82rem; font-weight: 600; letter-spacing: .04em; }
.ph .ph-dim { font-size: .72rem; opacity: .7; letter-spacing: .05em; }
.ph.is-tall { aspect-ratio: 4/5; }
.ph.is-wide { aspect-ratio: 21/9; }
.ph.is-square { aspect-ratio: 1/1; }
/* Echte Bilder: <img class="media is-tall"> statt <div class="ph"> */
.media { width: 100%; height: auto; max-height: 480px; object-fit: cover; object-position: center; display: block; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); align-self: flex-start; }
/* TEST: aspect-ratio deaktiviert – max-height statt erzwungenem Zuschnitt */
/* .media.is-tall { aspect-ratio: 4/5; } */
/* .media.is-wide { aspect-ratio: 21/9; } */
.media.is-square { aspect-ratio: 1/1; }
/* Bild im Pillar-Kopf (randlos oben, Linie unten) */
.pillar-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center 80%; display: block; border-bottom: 1px solid var(--line); }
.pillar-img.square { aspect-ratio: 1/1; }

/* ------------------------------------------------------------------ */
/* 9. Cards / Säulen                                                   */
/* ------------------------------------------------------------------ */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.card::before {
  content:""; position:absolute; left:0; top:0; height:3px; width:0;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  transition: width .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { width: 100%; }
.card .icon {
  width: 68px; height: 68px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500)); color: var(--gold-400);
  margin-bottom: 1.4rem; box-shadow: var(--shadow-sm);
}
.card .icon svg { width: 34px; height: 34px; }
.card h3 { margin-bottom: .7rem; }
.card p { font-size: .98rem; }
.card .num-tag { position: absolute; right: 1.5rem; top: 1.4rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--body-muted, #8a9ab0); }

/* Säulen mit Bild */
.pillar { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); z-index: 2; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); transition-delay: 0s; }
.pillar::before, .pillar:hover::before { transition-delay: 0s; }
.pillar:hover::before { transform: scaleX(1); }
.pillar .ph { aspect-ratio: 16/10; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); }
.pillar .pillar-body { padding: 1.8rem; }
.pillar .pillar-body h3 { margin-bottom: .6rem; }
.pillar .num-tag { color: var(--gold-500); font-family: var(--font-display); font-size: 1rem; }
/* Feature-Liste mit Häkchen */
.feature-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(34,109,172,.12); color: var(--gold-500); margin-top: 2px;
}
.bg-navy .feature-list .tick { background: rgba(34,109,172,.22); }
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list li span b { display: block; color: var(--ink); margin-bottom: .15rem; }
.bg-navy .feature-list li span b { color: var(--white); }
.feature-list li span { font-size: .98rem; }

/* ------------------------------------------------------------------ */
/* 10. Prozess / Onboarding-Steps                                      */
/* ------------------------------------------------------------------ */
.steps { display: grid; gap: 1.5rem; counter-reset: step; }
@media (min-width: 860px){ .steps.cols-4 { grid-template-columns: repeat(4,1fr); } .steps.cols-3 { grid-template-columns: repeat(3,1fr); } }
.step {
  position: relative; padding: 2rem 1.6rem; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.bg-navy .step { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.step .step-no {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-500);
  line-height: 1; margin-bottom: 1rem; display: block;
}
.step h4 { margin-bottom: .5rem; font-size: 1.18rem; }
.bg-navy .step h4 { color: var(--white); }
.step p { font-size: .94rem; }

/* ------------------------------------------------------------------ */
/* 11. Stats / Zahlen-Band                                             */
/* ------------------------------------------------------------------ */
.stat-band { display: grid; gap: 2rem 1.5rem; text-align: center; }
@media (min-width: 700px){ .stat-band { grid-template-columns: repeat(4,1fr); } }
.stat-band .s-num { font-family: var(--font-display); font-size: clamp(2.6rem,5vw,3.6rem); color: var(--white); line-height: 1; }
.stat-band .s-num .text-gold { color: var(--gold-400); }
.stat-band .s-label { color: var(--white-55); margin-top: .7rem; font-size: .95rem; }
.stat-band > div { position: relative; }
.bg-mute .stat-band > div { background: radial-gradient(120% 120% at 85% -10%, rgba(91,149,196,.16), transparent 55%), radial-gradient(90% 90% at 0% 110%, rgba(199,162,78,.10), transparent 50%), linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700)); border-radius: var(--r-lg); padding: 2rem 1.5rem; box-shadow: var(--shadow-md); }
.bg-mute .stat-band .s-num { color: var(--gold-400); }
.bg-mute .stat-band .s-num .text-gold { color: var(--gold-400); }
.bg-mute .stat-band .s-label { color: var(--white-70); }
.bg-mute .stat-band > div::after { display: none !important; }
.stat-band > div:not(:last-child)::after {
  content:""; position:absolute; right:-.75rem; top:10%; height:80%; width:1px; background: var(--line-dark);
}
@media (max-width:699px){ .stat-band > div::after { display:none !important; } }

/* ------------------------------------------------------------------ */
/* 12. Testimonial                                                     */
/* ------------------------------------------------------------------ */
.quote {
  position: relative; border-radius: var(--r-xl); padding: clamp(2.5rem,5vw,4rem);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.quote .mark { font-family: var(--font-display); font-size: 6rem; line-height: .6; color: var(--gold-300); position: absolute; top: 1.6rem; left: 2rem; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.4; color: var(--ink); position: relative; z-index: 1; margin-bottom: 1.8rem; }
.quote .by { display: flex; align-items: center; gap: 1rem; }
.quote .by .ph { width: 56px; height: 56px; border-radius: 50%; aspect-ratio: 1; flex-shrink: 0; }
.quote .by b { color: var(--ink); display: block; }
.quote .by span { font-size: .9rem; color: var(--muted); }

/* ------------------------------------------------------------------ */
/* 13. CTA-Band                                                        */
/* ------------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(3rem,6vw,5rem); text-align: center; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { margin: 1rem auto 1rem; max-width: 16ch; }
.cta-band p { max-width: 46ch; margin: 0 auto 2.2rem; }
.cta-band .hero-cta { justify-content: center; }
.cta-band::after {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background: radial-gradient(60% 80% at 50% -20%, rgba(199,162,78,.18), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }

/* ------------------------------------------------------------------ */
/* 14. Kontakt / Formular / Cal                                        */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; gap: clamp(2rem,4vw,3.5rem); }
@media (min-width: 920px){ .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.info-list { display: grid; gap: 1.4rem; margin-top: 2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(34,109,172,.12); color: var(--gold-500); }
.bg-navy .info-item .ic { background: rgba(34,109,172,.22); }
.info-item .ic svg { width: 27px; height: 27px; }
.info-item b { display: block; color: var(--ink); margin-bottom: .15rem; }
.bg-navy .info-item b { color: var(--white); }
.info-item a, .info-item p { color: var(--body); }
.bg-navy .info-item a, .bg-navy .info-item p { color: var(--white-70); }

.form { display: grid; gap: 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem,3vw,2.6rem); box-shadow: var(--shadow-md); }
.form .row { display: grid; gap: 1.2rem; }
@media (min-width: 560px){ .form .row.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .5rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  padding: .9rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-soft); transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); background: var(--white);
  box-shadow: 0 0 0 4px rgba(199,162,78,.12);
}
.form .consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.form .consent input { margin-top: 3px; accent-color: var(--gold-500); }
.form .consent a { color: var(--navy-600); text-decoration: underline; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; }

/* Expertise Block (Referenzen) */
.expertise-block { display: grid; gap: 2rem; }
.expertise-block .lead { font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: var(--body); line-height: 1.75; }
.expertise-divider { height: 2px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); border: none; }

/* Cal Terminbuchung – Pills & Fallback */
.cal-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.2rem;
  margin-top: 1.2rem;
}
.cal-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 600; color: var(--navy-700);
}
.cal-pill svg { width: 16px; height: 16px; color: var(--gold-500); flex-shrink: 0; }
.cal-fallback-hint {
  margin-top: 1.4rem; font-size: .9rem; color: var(--muted); line-height: 1.5;
}
.cal-fallback-hint a { display: inline-flex; align-items: center; gap: .3rem; font-weight: 600; }

/* Upload */
.upload-drop {
  border: 2px dashed var(--line); border-radius: var(--r-sm);
  background: var(--bg-soft); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  text-align: center; cursor: pointer; transition: border-color .25s, background .25s;
}
.upload-drop:hover, .upload-drop.drag-over { border-color: var(--gold-500); background: rgba(199,162,78,.05); }
.upload-drop p { margin: 0; font-size: .9rem; color: var(--muted); }
.upload-link { color: var(--navy-600); text-decoration: underline; cursor: pointer; font-weight: 600; }
.upload-hint { font-size: .8rem !important; }
.upload-filelist { display: flex; flex-direction: column; gap: .4rem; margin-top: .5rem; }
.upload-file { display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  font-size: .85rem; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: .5rem .8rem; }
.upload-file span { color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-file button { background: none; border: none; cursor: pointer; color: var(--muted); flex-shrink: 0; padding: 0; line-height: 1; }
.upload-file button:hover { color: var(--ink); }
.upload-notice { display: flex; align-items: flex-start; gap: .5rem;
  font-size: .82rem; color: var(--muted); background: rgba(199,162,78,.08);
  border: 1px solid rgba(199,162,78,.25); border-radius: var(--r-sm); padding: .75rem 1rem; margin-top: .25rem; }

/* Form Feedback */
.form-feedback { border-radius: var(--r-sm); padding: 1rem 1.2rem; font-size: .92rem; font-weight: 500; text-align: center; }
.form-feedback.ok  { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #15803d; }
.form-feedback.err { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #b91c1c; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Cal Embed Wrapper */
.cal-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: .5rem; box-shadow: var(--shadow-md); min-height: 620px; overflow: hidden; }
.cal-fallback { padding: 3rem 1.5rem; text-align: center; }

/* ------------------------------------------------------------------ */
/* 15. Page-Hero (Unterseiten)                                         */
/* ------------------------------------------------------------------ */
.page-hero { padding-top: calc(var(--header-h) + clamp(2.5rem,6vw,5rem)); padding-bottom: var(--section-y); position: relative; overflow: hidden; }
.page-hero .breadcrumb { font-size: .85rem; color: var(--white-55); margin-bottom: 1.2rem; display: flex; gap: .5rem; align-items: center; }
.page-hero .breadcrumb a:hover { color: var(--gold-400); }
.page-hero h1 { max-width: 18ch; margin-top: 0.6rem; }
.page-hero p { margin-top: 1.3rem; max-width: 85ch; font-size: 1.15rem; }

/* page-hero Badge (z.B. "Ab 31.08.2026" auf Kontakt-Seite)
   Voraussetzung: .container hat position:relative, .page-hero hat overflow:visible */
.page-hero-badge {
  position: absolute;
  right: 0;
  top: calc(25% + 3rem);
  transform: translateY(-50%);
  width: 180px;
  border-radius: 16px;
  background: #C2185B;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 1rem;
  line-height: 1.3;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(194,24,91,.35);
}
@media (max-width: 700px)           { .page-hero-badge { display: none !important; } }
@media (max-width: 1024px) and (min-width: 701px) {
  .page-hero-badge { right: 0 !important; top: 1rem !important; transform: none !important; width: auto !important; padding: .5rem .75rem !important; }
}

/* ------------------------------------------------------------------ */
/* 16. Akkordeon (FAQ)                                                 */
/* ------------------------------------------------------------------ */
.accordion { display: grid; gap: 1rem; }
.acc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.acc[open] { box-shadow: var(--shadow-sm); border-color: var(--gold-300); }
.acc summary { list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .chev { width: 26px; height: 26px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--bg-mute); transition: transform .35s var(--ease), background .3s; }
.acc[open] summary .chev { transform: rotate(45deg); background: var(--gold-400); color: var(--navy-900); }
.acc .acc-body { padding: 0 1.5rem 1.4rem; color: var(--body); font-size: .98rem; }

/* ------------------------------------------------------------------ */
/* 17. Jobs (Karriere)                                                 */
/* ------------------------------------------------------------------ */
.job { display: flex; flex-wrap: nowrap; gap: 1rem 1.5rem; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem 1.8rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; }
.job:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.job > div { flex: 1; min-width: 0; }
.job > a { flex-shrink: 0; }
.job .job-meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .5rem; }
.tag { font-size: .78rem; font-weight: 600; letter-spacing: .03em; padding: .35rem .8rem; border-radius: 999px; background: var(--bg-mute); color: var(--navy-600); }
.tag.gold { background: rgba(34,109,172,.12); color: var(--gold-500); }
.job h4 { font-family: var(--font-display); }

/* Referenz-Datenliste */
.ref-meta { margin-top: 1rem; display: grid; gap: 0; }
.ref-meta .row { display: flex; justify-content: space-between; gap: 1rem; font-size: .87rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); }
.ref-meta .row:last-child { border-bottom: 0; }
.ref-meta .k { color: var(--muted); }
.ref-meta .v { color: var(--ink); font-weight: 600; text-align: right; }

/* Werte / Benefits */
.value { display: flex; gap: 1rem; align-items: flex-start; }
.value .ic { width: 62px; height: 62px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-700), var(--navy-500)); color: var(--gold-400); }
.value .ic svg { width: 30px; height: 30px; }
.value h4 { margin-bottom: .3rem; }

/* ------------------------------------------------------------------ */
/* 18. Legal (Impressum / Datenschutz)                                 */
/* ------------------------------------------------------------------ */
.legal { max-width: var(--container-narrow); }
.legal h2 { font-size: clamp(1.5rem,3vw,2rem); margin: 2.5rem 0 1rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.2rem; margin: 1.8rem 0 .6rem; }
.legal p, .legal li { font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal a { color: var(--navy-600); text-decoration: underline; }
.legal .legal-block { padding: 1.5rem 1.8rem; background: var(--bg-soft); border-radius: var(--r-md); border: 1px solid var(--line); margin-bottom: 1.5rem; }

/* ------------------------------------------------------------------ */
/* 19. Footer                                                          */
/* ------------------------------------------------------------------ */
.site-footer {
  background:
    radial-gradient(120% 120% at 85% -10%, rgba(91,149,196,.16), transparent 55%),
    radial-gradient(90% 90% at 0% 110%, rgba(199,162,78,.10), transparent 50%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700));
  color: var(--white-55); padding-top: clamp(3.5rem,6vw,5rem);
}
.footer-top { display: grid; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 860px){ .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 1.3rem; }
.footer-brand p { max-width: 30ch; font-size: .95rem; color: var(--white-55); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: var(--white-70); transition: background .3s, color .3s, transform .3s; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h5 { color: var(--white); font-family: var(--font-sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.3rem; }
.footer-col a { display: block; padding: .4rem 0; color: var(--white-55); font-size: .95rem; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--gold-400); padding-left: 5px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; padding-block: 1.8rem; font-size: .85rem; color: var(--white-40); }
.footer-bottom .fb-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ------------------------------------------------------------------ */
/* 20. Back to top + Scroll-Reveal                                     */
/* ------------------------------------------------------------------ */
.to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900); display: grid; place-items: center;
  box-shadow: var(--shadow-md); opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: .4s var(--ease);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold-500); color: var(--navy-900); }
.to-top svg { width: 20px; height: 20px; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal-delay="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ------------------------------------------------------------------ */
/* 20b. Cookie-Consent-Banner                                          */
/* ------------------------------------------------------------------ */
.cookie {
  position: fixed; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 200;
  max-width: 460px; margin-left: auto;
  background: rgba(8,23,43,.96); backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark); border-radius: var(--r-lg);
  padding: 1.6rem 1.6rem 1.4rem; color: var(--white-70);
  box-shadow: var(--shadow-lg);
  transform: translateY(140%); opacity: 0; transition: transform .55s var(--ease), opacity .4s;
}
.cookie.show { transform: none; opacity: 1; }
.cookie h4 { color: var(--white); font-size: 1.1rem; margin-bottom: .5rem; }
.cookie p { font-size: .88rem; color: var(--white-55); margin-bottom: 1.1rem; }
.cookie p a { color: var(--gold-400); text-decoration: underline; }
.cookie .cookie-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie .btn { padding: .8rem 1.3rem; font-size: .9rem; flex: 1; min-width: 120px; }

/* ------------------------------------------------------------------ */
/* 21. Utilities                                                       */
/* ------------------------------------------------------------------ */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-0{margin-bottom:0}.center{text-align:center}.relative{position:relative}
.divider{height:1px;background:var(--line);border:0;margin:0}
.bg-navy .divider{background:var(--line-dark)}
.pill { display:inline-flex; align-items:center; gap:.5rem; padding:.45rem .9rem; border-radius:999px; font-size:.82rem; font-weight:600; background: rgba(34,109,172,.10); color: var(--gold-500); }
.bg-navy .pill { background: rgba(255,255,255,.07); color: var(--gold-400); }
.maxw-sm{max-width:36ch}.maxw-md{max-width:52ch}

@media (max-width: 860px) {
  .founder-img-wrap { border-radius: 32px !important; -webkit-mask-image: -webkit-radial-gradient(white, black); }
}

@media (min-width: 701px) { .block-tablet { display: block; } .inline-tablet { display: inline; } .br-tablet-up { display: block; } }

@media (max-width: 1024px) and (min-width: 701px) {
  .to-top { bottom: 3.5rem; }
  .page-hero p { font-size: 1rem; }
  .mobile-nav a { font-size: 1.45rem; padding: .85rem 0; }
  .hero-visual > a { right: 0 !important; top: 1rem !important; transform: none !important; width: auto !important; padding: .5rem .75rem !important; }
  .hero-visual > a span { font-size: .72rem !important; }
  .hero-badge { padding: .6rem .8rem; gap: .6rem; max-width: 200px; }
  .hero-badge .dot { width: 32px; height: 32px; border-radius: 9px; }
  .hero-badge .dot svg { width: 16px; height: 16px; }
  .hero-badge b { font-size: .85rem; }
  .hero-badge span { font-size: .72rem; }
}

@media (max-width: 919px) and (min-width: 701px) {
  .anspruch-img-wrap { margin-top: 0 !important; order: -1; }
  .link-arrow { font-size: 0.9rem; }
}

.show-mobile { display: none; }
.block-mobile { /* inline by default */ }
.br-mobile { display: none; }
.br-tablet-up { display: block; }
.anspruch-text .hide-mobile { padding-left: calc(26px + 0.9rem); }
@media (max-width: 700px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block; }

  .hero h1 { font-size: clamp(2.0rem, 8vw, 2.6rem); }
  .btn { font-size: .8rem; padding: .7rem 1.2rem; }
  .hero-visual { overflow: hidden; }
  .hero-visual > a { right: 0 !important; top: 1rem !important; transform: none !important; width: auto !important; padding: .4rem .6rem !important; }
  .hero-visual > a span { font-size: .6rem !important; }
  .hero-badge { padding: .5rem .65rem; gap: .5rem; left: 0 !important; }
  .hero-badge .dot { width: 26px; height: 26px; border-radius: 8px; }
  .hero-badge .dot svg { width: 13px; height: 13px; }
  .hero-badge b { font-size: .75rem; }
  .hero-badge span { font-size: .65rem; }
  .hero-stats { flex-wrap: nowrap; gap: 1.2rem; }
  .hero-stats .stat .num { font-size: 1.6rem; }
  .split { gap: 2.5rem; }
  .section { padding-block-start: 4.5rem; padding-block-end: 4.5rem; }
  .founder-img-wrap { border-radius: 0; }
  .split .media { margin-top: 0; }
  .anspruch-img { aspect-ratio: 4/3 !important; max-height: none !important; transform: scale(1) !important; object-position: 20% 55% !important; }
  .founder-name { font-size: 1.5rem; }
  .portal-section { padding-block-start: 0 !important; }
  .anspruch-section { padding-block-end: 2.5rem; }
  .card-wide { flex-direction: column !important; gap: 0 !important; }
  .card-wide-header { flex-wrap: wrap !important; }
  .portal-section h2, .portal-section b { color: var(--ink) !important; }
  .portal-section p, .portal-section li { color: var(--body) !important; }
  .portal-section .serif-em { color: var(--gold-500) !important; }
  .portal-section .eyebrow { color: var(--gold-500) !important; }
  .portal-section .btn { color: var(--white) !important; }
  .anspruch-img-wrap { order: 1; margin-top: 0 !important; }
  .anspruch-text { order: 2; margin-top: 2.5rem; }
  .anspruch-link { order: 3; margin-top: 1.5rem; text-align: left; padding-left: calc(26px + 0.9rem); }
  .steps + .center { text-align: left; padding-left: 1.6rem; }
  .steps + .center .link-arrow { justify-content: flex-start !important; }
  .anspruch-section .split { gap: 0; }
  .leistungen-bild { order: -1; }
  .haltung-bild { order: -1; }
  .verkauf-bild { order: -1; }
  .vermietung-bild { order: -1; }
  .nav-logo { margin-left: 1.25rem; }
  .mobile-nav a { font-size: 0.95rem; padding: .55rem 0; }
  .block-mobile { display: block; }
  .br-mobile { display: block; }
  .br-tablet-up { display: none; }
  .link-arrow { font-size: 0.9rem; }
  .job { flex-wrap: wrap; }
  .job > a { width: 100%; text-align: center; }
  .value .ic, .info-item .ic { width: 48px; height: 48px; border-radius: 11px; }
  .value .ic svg, .info-item .ic svg { width: 22px; height: 22px; }
  .card .icon { width: 48px; height: 48px; }
  .card .icon svg { width: 22px; height: 22px; }
  .pill { text-align: center; }

}

/* === Header/Hero: Responsive-Fix (iPad-Querformat & schmale Laptops) ===
   Desktop-Navigation erst ab 1400px (dort passt sie vollständig), darunter Hamburger-Menü.
   Logo schrumpft nie auf 0; das Hero-Badge wird unterhalb 1400px nach innen gesetzt,
   damit es nicht über den rechten Rand hinausragt. */
.nav-logo { flex-shrink: 0; }
@media (max-width: 1399px){
  .nav-menu, .nav-actions { display: none !important; }
  .nav-toggle { display: inline-flex !important; }
  .hero-visual > a { right: 0 !important; top: 1rem !important; transform: none !important; width: auto !important; padding: .5rem .75rem !important; }
  .hero-visual > a span { font-size: .72rem !important; }
}
@media (min-width: 1400px){
  .nav-menu, .nav-actions { display: flex !important; }
  .nav-toggle { display: none !important; }
}

/* iPad/Tablet (701–1399px): Hamburger rechtsbündig mit der Inhaltsspalte
   (1,25rem Rand – wie der Seiteninhalt darunter). iPhone (<=700) & Desktop unberührt. */
@media (min-width: 701px) and (max-width: 1399px){
  .site-header .container.nav { padding-right: 0 !important; }
  .nav-toggle { margin-right: 1.25rem !important; }
}

