/* ==============================================
   WEITBLICK BERATUNG — Main Stylesheet
   Playfair Display + Jost
   Navy #1C2B4A | Steel #4A7FA5
   ============================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: only light; }
body { font-family: 'Jost', system-ui, sans-serif; font-size: 16px; line-height: 1.7; color: #5A6070; background-color: #111C30; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
img { display: block; max-width: 100%; height: auto; }
input, textarea, select { font-family: inherit; font-size: 16px; }

/* TOUCH OPTIMIZATIONS */
* { -webkit-tap-highlight-color: transparent; }
button, a, label, select { touch-action: manipulation; }

/* LAYOUT */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 48px; }

/* TYPOGRAPHY */
.lbl {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #4A7FA5;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.lbl::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background-color: #4A7FA5; flex-shrink: 0;
}
.lbl--light { color: #7AAECF; }
.lbl--light::before { background-color: #7AAECF; }

.ttl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.12; color: #1C2B4A;
}
.ttl--light { color: #ffffff; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  min-height: 50px; padding: 14px 32px; cursor: pointer; border: none;
  transition: background-color 0.25s ease;
}
.btn--navy { background-color: #4A7FA5; color: #ffffff; }
.btn--navy:hover { background-color: #1C2B4A; }
.btn--outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  min-height: 50px; padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.45); color: #ffffff;
  background-color: transparent; cursor: pointer;
  transition: border-color 0.24s, background-color 0.24s;
}
.btn--outline:hover { border-color: #ffffff; background-color: rgba(255,255,255,0.08); }
.btn--ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); padding: 14px 0; min-height: 50px;
  transition: color 0.24s;
}
.btn--ghost:hover { color: #ffffff; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background-color: #111C30; border-top: 3px solid #4A7FA5;
  padding: 20px 48px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
.cb-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 240px; }
.cb-heading { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: #ffffff; margin-bottom: 5px; }
.cb-body { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.cb-body a { color: #7AAECF; text-decoration: underline; }
.cb-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cbtn {
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 22px; height: 44px; border: none; cursor: pointer;
  transition: background-color 0.25s; white-space: nowrap;
}
.cbtn--acc { background-color: #4A7FA5; color: #ffffff; }
.cbtn--acc:hover { background-color: #6a9fc0; }
.cbtn--ess { background-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }
.cbtn--ess:hover { background-color: rgba(255,255,255,0.18); }
.cbtn--set { background-color: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
.cbtn--set:hover { color: #ffffff; border-color: rgba(255,255,255,0.4); }

/* ── COOKIE MODAL ── */
#cookie-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
#cookie-modal[hidden] { display: none; }
.cm-backdrop { position: absolute; inset: 0; background-color: rgba(8,12,22,0.85); cursor: pointer; }
.cm-box {
  position: relative; z-index: 1; background-color: #192236;
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%; max-width: 640px; max-height: 90vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.cm-head { display: flex; align-items: center; justify-content: space-between; padding: 28px 32px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; }
.cm-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: #ffffff; }
.cm-close { background: transparent; border: none; color: rgba(255,255,255,0.5); font-size: 1.1rem; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: color 0.2s, background-color 0.2s; }
.cm-close:hover { color: #ffffff; background-color: rgba(255,255,255,0.07); }
.cm-intro { padding: 16px 32px 0; font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.7; flex-shrink: 0; }
.cm-body { flex: 1; overflow-y: auto; padding: 8px 32px 16px; }
.cm-cat { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cm-cat:last-child { border-bottom: none; }
.cm-cat-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.cm-cat-info { display: flex; flex-direction: column; gap: 5px; }
.cm-cat-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: #ffffff; }
.cm-badge { display: inline-block; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 7px; }
.cm-badge--on { background-color: rgba(74,127,165,0.25); color: #7AAECF; }
.cm-badge--opt { background-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); }
.cm-cat-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 8px; }
.cm-toggle-wrap { flex-shrink: 0; cursor: pointer; display: block; }
.cm-toggle-wrap--locked { cursor: not-allowed; }
.cm-toggle-inp { position: absolute; opacity: 0; width: 0; height: 0; }
.cm-track { display: block; width: 44px; height: 24px; background-color: rgba(255,255,255,0.12); border-radius: 12px; position: relative; transition: background-color 0.25s; }
.cm-track--on { background-color: #4A7FA5; }
.cm-toggle-inp:checked + .cm-track { background-color: #4A7FA5; }
.cm-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background-color: #ffffff; border-radius: 50%; transition: transform 0.25s; }
.cm-track--on .cm-thumb, .cm-toggle-inp:checked + .cm-track .cm-thumb { transform: translateX(20px); }
.cm-det-btn { background: transparent; border: none; font-family: 'Jost', sans-serif; font-size: 0.74rem; font-weight: 500; color: #7AAECF; cursor: pointer; padding: 3px 0; transition: color 0.2s; }
.cm-det-btn:hover { color: #ffffff; }
.cm-det[hidden] { display: none; }
.cm-det { margin-top: 10px; }
.cm-table { width: 100%; border-collapse: collapse; font-size: 0.76rem; }
.cm-table th { text-align: left; padding: 6px 8px; font-weight: 600; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.68rem; text-transform: uppercase; }
.cm-table td { padding: 7px 8px; color: rgba(255,255,255,0.55); border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: top; }
.cm-table tr:last-child td { border-bottom: none; }
.cm-foot { display: flex; gap: 10px; padding: 20px 32px; border-top: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; flex-wrap: wrap; }
.cmbtn { font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 18px; height: 42px; cursor: pointer; border: none; flex: 1; min-width: 110px; transition: background-color 0.25s; }
.cmbtn--rej { background-color: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.12); }
.cmbtn--rej:hover { background-color: rgba(255,255,255,0.12); color: #ffffff; }
.cmbtn--sav { background-color: rgba(255,255,255,0.09); color: #ffffff; border: 1px solid rgba(255,255,255,0.25); }
.cmbtn--sav:hover { background-color: rgba(255,255,255,0.16); }
.cmbtn--all { background-color: #4A7FA5; color: #ffffff; }
.cmbtn--all:hover { background-color: #6a9fc0; }
.cm-legal { text-align: center; padding: 0 32px 18px; font-size: 0.73rem; flex-shrink: 0; }
.cm-legal a { color: #7AAECF; text-decoration: underline; }

/* ── NAV ── */
nav.sitenav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background-color: #111C30; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 48px;
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-mark {
  font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700;
  color: #7AAECF; letter-spacing: 0.05em;
  background-color: rgba(74,127,165,0.12); border: 1px solid rgba(74,127,165,0.3);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-txt { display: flex; flex-direction: column; gap: 2px; }
.logo-name { font-family: 'Jost', sans-serif; font-size: 0.86rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: #ffffff; line-height: 1; }
.logo-sub { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); padding: 8px 14px; min-height: 44px;
  display: flex; align-items: center; transition: color 0.2s;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a.nav-cta { background-color: #4A7FA5; color: #ffffff; padding: 10px 20px; transition: background-color 0.25s; }
.nav-links a.nav-cta:hover { background-color: #1C2B4A; }
.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer; padding: 8px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background-color: #ffffff; transition: transform 0.24s, opacity 0.24s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background-color: #111C30; position: relative;
  min-height: 100vh; display: flex; flex-direction: column; padding-top: 70px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-color: #111C30;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center 40%;
}
.hero-overlay { position: absolute; inset: 0; background-color: rgba(10,17,32,0.82); }
.hero-wrap {
  position: relative; z-index: 1; flex: 1;
  max-width: 1160px; width: 100%; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: #7AAECF; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s ease 0.1s forwards;
}
.hero-eyebrow span { display: inline-block; width: 32px; height: 1px; background-color: #7AAECF; }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700; line-height: 1.07; color: #ffffff; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s ease 0.25s forwards;
}
.hero-h1 em { font-style: italic; font-weight: 400; color: #7AAECF; }
.hero-p {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.8);
  max-width: 520px; line-height: 1.85; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-btns {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s ease 0.55s forwards;
}
.hero-aside {
  border-left: 1px solid rgba(255,255,255,0.1); padding-left: 48px;
  opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
}
.hero-stats { display: flex; flex-direction: column; gap: 36px; }
.hero-stat { display: flex; flex-direction: column; gap: 5px; }
.hs-n { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; line-height: 1; color: #ffffff; }
.hs-n sup { font-size: 1.1rem; font-weight: 400; vertical-align: super; color: #7AAECF; }
.hs-l { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); line-height: 1.4; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ── LEISTUNGEN ── */
.leistungen {
  background-color: #1C2B4A; padding: 110px 0 100px;
  background-image: radial-gradient(circle, rgba(74,127,165,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
.lst-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
.lst-head .ttl { color: #ffffff; }
.lst-intro { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.85; }
.lst-head .lbl { color: #7AAECF; }
.lst-head .lbl::before { background-color: #7AAECF; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background-color: rgba(74,127,165,0.2); border: 1px solid rgba(74,127,165,0.2); }
.card {
  background-color: #1a3a5c; padding: 40px 36px 40px;
  position: relative; overflow: hidden; transition: background-color 0.3s;
  display: flex; flex-direction: column;
  border-top: 2px solid rgba(74,127,165,0.25);
}
/* Top accent bar animates to full opacity on hover */
.card::before {
  content: ''; position: absolute; top: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #4A7FA5, #7AAECF);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
/* Bottom-right corner bracket */
.card::after {
  content: ''; position: absolute; bottom: 18px; right: 18px;
  width: 16px; height: 16px;
  border-bottom: 1.5px solid rgba(74,127,165,0.2);
  border-right: 1.5px solid rgba(74,127,165,0.2);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.card:hover { background-color: #1f4470; }
.card:hover::before { transform: scaleX(1); }
.card:hover::after { width: 24px; height: 24px; border-color: rgba(122,174,207,0.45); }
@media (hover: hover) {
  .card:hover { background-color: #1f4470; }
  .card:hover::before { transform: scaleX(1); }
  .card:hover::after { width: 24px; height: 24px; border-color: rgba(122,174,207,0.45); }
  .card:hover .card-n { color: rgba(122,174,207,0.35); }
  .card:hover .card-divider { width: 44px; }
  .br-item:hover { color: #ffffff; padding-left: 6px; }
  .br-item:hover::after { color: #4A7FA5; }
  .br-cta:hover { border-color: #ffffff; color: #ffffff; background-color: rgba(255,255,255,0.06); }
  .tc-linkedin:hover { color: rgba(255,255,255,0.7); }
  .ref-card:hover { background-color: #213568; border-bottom-color: #4A7FA5; }
  .ref-card--acc:hover { background-color: #1e3f5c; }
  .team-card:hover { background-color: #243a60; }
  .nav-links a:hover { color: #ffffff; }
  .nav-links a.nav-cta:hover { background-color: #1C2B4A; }
  .btn--navy:hover { background-color: #1C2B4A; }
  .btn--outline:hover { border-color: #ffffff; background-color: rgba(255,255,255,0.08); }
  .btn--ghost:hover { color: #ffffff; }
  .btn-send:hover { background-color: #111C30; }
  .ft-legal a:hover { color: rgba(255,255,255,0.65); }
  .ft-cbtn:hover { color: rgba(255,255,255,0.65); }
  .ft-col a:hover, .ft-col address a:hover { color: rgba(255,255,255,0.88); }
  .ka-it a:hover { color: #ffffff; }
  .cbtn--acc:hover { background-color: #6a9fc0; }
  .cbtn--ess:hover { background-color: rgba(255,255,255,0.18); }
  .cbtn--set:hover { color: #ffffff; border-color: rgba(255,255,255,0.4); }
  .cmbtn--rej:hover { background-color: rgba(255,255,255,0.12); color: #ffffff; }
  .cmbtn--sav:hover { background-color: rgba(255,255,255,0.16); }
  .cmbtn--all:hover { background-color: #6a9fc0; }
  .cm-close:hover { color: #ffffff; background-color: rgba(255,255,255,0.07); }
  .cm-det-btn:hover { color: #ffffff; }
  .legal-link:hover { color: var(--copper); border-bottom-color: var(--copper); }
}
.card-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700; line-height: 1;
  color: rgba(122,174,207,0.18);
  margin-bottom: 16px; letter-spacing: -0.02em;
  transition: color 0.3s;
}
.card-divider {
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, #4A7FA5, transparent);
  margin-bottom: 16px; transition: width 0.35s ease;
}
.card-t {
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600;
  color: #ffffff; margin-bottom: 10px; line-height: 1.35;
}
.card-tag {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #4A7FA5; margin-bottom: 14px;
}
.card-p { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.82; flex: 1; }

/* ── WARUM WIR ── */
.warum { background-color: #1C2B4A; }
.warum-band { background-color: #111C30; border-top: 3px solid #4A7FA5; padding: 56px 0; }
.warum-band-inner { display: flex; align-items: center; justify-content: space-between; }
.wb-st { text-align: center; flex: 1; padding: 0 24px; }
.wb-n { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 700; line-height: 1; color: #ffffff; margin-bottom: 10px; }
.wb-n span { font-size: 50%; color: #7AAECF; font-weight: 400; }
.wb-l { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); line-height: 1.5; }
.wb-rule { width: 1px; height: 56px; background-color: rgba(255,255,255,0.1); flex-shrink: 0; }
.warum-body { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 0; background-color: #1C2B4A; }
.warum-left .ttl { color: #ffffff; margin-bottom: 20px; }
.warum-left .lbl { color: #7AAECF; }
.warum-left .lbl::before { background-color: #7AAECF; }
.warum-intro { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.85; }
.warum-right { display: flex; flex-direction: column; justify-content: center; }
.w-pt { display: flex; gap: 24px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.09); }
.w-pt:first-child { border-top: 1px solid rgba(255,255,255,0.09); }
.w-bar { width: 3px; background-color: #4A7FA5; flex-shrink: 0; border-radius: 2px; }
.w-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: #ffffff; margin-bottom: 8px; }
.w-body p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ── BRANCHEN ── */
.branchen { padding: 0; }
.br-split { display: grid; grid-template-columns: 40% 1fr; min-height: 680px; }
.br-img { position: relative; overflow: hidden; }
.br-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: brightness(0.82); }
.br-caption { position: absolute; bottom: 24px; left: 24px; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); writing-mode: vertical-lr; transform: rotate(180deg); }
.br-content { background-color: #1C2B4A; padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.br-intro { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.85; margin-bottom: 40px; }
.br-list { margin-bottom: 44px; }
.br-item {
  font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.78);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; gap: 16px;
  letter-spacing: 0.02em; transition: color 0.2s, padding-left 0.2s;
}
.br-item:first-child { border-top: 1px solid rgba(255,255,255,0.09); }
.br-item-n { font-family: 'Playfair Display', serif; font-size: 0.62rem; color: rgba(74,127,165,0.6); font-weight: 400; flex-shrink: 0; width: 20px; }
.br-item-txt { flex: 1; }
.br-item::after { content: '—'; font-size: 0.72rem; color: rgba(255,255,255,0.15); flex-shrink: 0; transition: color 0.2s; }
.br-item:hover { color: #ffffff; padding-left: 6px; }
.br-item:hover::after { color: #4A7FA5; }
.br-cta { display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85);
  background-color: transparent; padding: 14px 36px; min-height: 50px; cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background-color 0.25s;
}

/* ── REFERENZEN ── */
.referenzen { background-color: #111C30; padding: 100px 0; }
.ref-head { margin-bottom: 56px; }
.ref-head .ttl { margin-top: 8px; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ref-card {
  background-color: #1a2d55; padding: 42px 38px 38px;
  display: flex; flex-direction: column; gap: 26px;
  border-bottom: 3px solid transparent; transition: background-color 0.25s, border-color 0.25s;
}
.ref-card:hover { background-color: #213568; border-bottom-color: #4A7FA5; }
.ref-card--acc { background-color: #193248; border-bottom-color: #4A7FA5; }
.ref-card--acc:hover { background-color: #1e3f5c; }
.ref-qm { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 0.6; color: #4A7FA5; font-weight: 700; opacity: 0.45; }
.ref-txt { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.72; flex: 1; }
.ref-foot { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(255,255,255,0.09); padding-top: 20px; }
.ref-av { width: 42px; height: 42px; border-radius: 50%; background-color: #4A7FA5; color: #ffffff; font-size: 0.7rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ref-foot strong { display: block; font-size: 0.82rem; font-weight: 600; color: #ffffff; margin-bottom: 2px; }
.ref-foot span { font-size: 0.72rem; color: rgba(255,255,255,0.4); display: block; line-height: 1.4; }

/* ── TEAM ── */
.team { background-color: #162338; padding: 100px 0; }
.team-head { max-width: 700px; margin-bottom: 56px; }
.team-head .ttl { color: #ffffff; margin: 8px 0 14px; }
.team-head .lbl { color: #7AAECF; }
.team-head .lbl::before { background-color: #7AAECF; }
.team-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.82; }
.team-grid { display: flex; flex-direction: column; gap: 2px; }
.team-card { display: grid; grid-template-columns: 280px 1fr; background-color: #1e3050; overflow: hidden; transition: background-color 0.25s; }
.team-card:hover { background-color: #243a60; }
.tc-vis { position: relative; min-height: 220px; }
.tc-photo { width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: flex-start; padding: 28px; position: relative; overflow: hidden; }
.tc-a { background: linear-gradient(160deg, #1a3a5c 0%, #0f1e38 100%); }
.tc-b { background: linear-gradient(160deg, #162440 0%, #0a1628 100%); }
.tc-c { background: linear-gradient(160deg, #0f2035 0%, #06111e 100%); }
.tc-photo::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(74,127,165,0.18) 0%, transparent 65%); }
/* Large decorative initial */
.tc-init {
  position: absolute; bottom: -10px; right: -4px; z-index: 0;
  font-family: 'Playfair Display', serif; font-size: 8rem; font-weight: 700;
  color: rgba(255,255,255,0.04); letter-spacing: -0.04em; line-height: 1;
  user-select: none; pointer-events: none;
}
/* Name plate at bottom */
.tc-nameplate { position: relative; z-index: 1; }
.tc-nameplate-name { font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1; }
.tc-nameplate-role { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #7AAECF; margin-top: 4px; }
.tc-stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #4A7FA5, transparent); }
.tc-info { padding: 36px 44px; display: flex; flex-direction: column; justify-content: center; background-color: #1e3050; }
.tc-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: #ffffff; margin-bottom: 4px; }
.tc-role { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #7AAECF; margin-bottom: 14px; }
.tc-bio { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.78; margin-bottom: 20px; }
.tc-footer { display: flex; align-items: center; justify-content: space-between; }
.tc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tc-tags span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #7AAECF; border: 1px solid rgba(74,127,165,0.35); padding: 4px 10px; background-color: rgba(74,127,165,0.08); }
.tc-linkedin { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); display: flex; align-items: center; gap: 6px; transition: color 0.2s; flex-shrink: 0; padding-left: 20px; }
.tc-linkedin::before { content: 'in'; font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 700; font-style: italic; color: rgba(74,127,165,0.5); }
.tc-linkedin:hover { color: rgba(255,255,255,0.7); }

/* ── KONTAKT ── */
.kontakt { background-color: #1C2B4A; padding-top: 0; padding-bottom: 100px; }
.kontakt-bar { height: 4px; background-color: #4A7FA5; margin-bottom: 80px; }
.kontakt-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.kt-txt { font-size: 0.93rem; color: rgba(255,255,255,0.78); line-height: 1.85; margin-bottom: 36px; }
.kt-addr { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.ka-it { display: flex; flex-direction: column; gap: 2px; }
.ka-lbl { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #7AAECF; margin-bottom: 3px; }
.ka-it p, .ka-it a { font-size: 0.87rem; color: rgba(255,255,255,0.78); line-height: 1.6; transition: color 0.2s; }
.ka-it a:hover { color: #ffffff; }
.kt-avail { display: flex; align-items: center; gap: 10px; font-size: 0.73rem; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.ka-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #5CB85C; box-shadow: 0 0 0 3px rgba(92,184,92,0.18); flex-shrink: 0; }
.kt-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.fg input, .fg textarea, .fg select {
  font-size: 15px; font-weight: 300; font-family: 'Jost', sans-serif;
  background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.3); color: #ffffff; padding: 12px 16px;
  outline: none; transition: border-color 0.2s, background-color 0.2s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.28); }
.fg input:focus, .fg textarea:focus, .fg select:focus { background-color: rgba(255,255,255,0.08); border-color: #7AAECF; }
.fg select { color: rgba(255,255,255,0.5); cursor: pointer; }
.fg select option { background-color: #111C30; color: #ffffff; }
.fg textarea { resize: vertical; }
.btn-send {
  width: 100%; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; min-height: 52px; padding: 16px 32px;
  background-color: #4A7FA5; color: #ffffff; border: none; cursor: pointer; transition: background-color 0.25s;
}
.btn-send:hover { background-color: #111C30; }
.form-priv { font-size: 0.73rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.form-priv a { color: #7AAECF; text-decoration: underline; }

/* ── FOOTER ── */
footer.sitefooter { background-color: #111C30; border-top: 1px solid rgba(255,255,255,0.06); }
.ft-top { display: grid; grid-template-columns: auto 1fr; gap: 80px; padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ft-brand { display: flex; align-items: flex-start; gap: 16px; }
.ft-mark { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 700; color: #7AAECF; background-color: rgba(74,127,165,0.1); border: 1px solid rgba(74,127,165,0.25); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ft-firm { font-size: 0.83rem; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.78); line-height: 1; margin-bottom: 4px; }
.ft-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col-lbl { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 5px; }
.ft-col a, .ft-col address span, .ft-col address a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color 0.2s; line-height: 1; display: block; }
.ft-col a:hover, .ft-col address a:hover { color: rgba(255,255,255,0.88); }
.ft-bot { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; gap: 24px; flex-wrap: wrap; }
.ft-copy { font-size: 0.7rem; color: rgba(255,255,255,0.28); }
.ft-legal { display: flex; gap: 22px; }
.ft-legal a { font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.32); transition: color 0.2s; min-height: 44px; display: flex; align-items: center; }
.ft-legal a:hover { color: rgba(255,255,255,0.65); }
.ft-cbtn { background: transparent; border: none; font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.32); cursor: pointer; padding: 0; min-height: 44px; display: flex; align-items: center; transition: color 0.2s; }
.ft-cbtn:hover { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container, .nav-inner { padding: 0 36px; }
  .hero-wrap { padding: 60px 36px; grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .lst-head { grid-template-columns: 1fr; gap: 20px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .warum-body { grid-template-columns: 1fr; gap: 48px; }
  .warum-band-inner { flex-wrap: wrap; }
  .wb-st { flex-basis: 50%; padding: 16px; }
  .wb-rule { display: none; }
  .br-split { grid-template-columns: 1fr; }
  .br-img { height: 320px; }
  .br-content { padding: 60px 48px; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .team-card { grid-template-columns: 220px 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 52px; }
  .ft-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hero-eyebrow, .hero-h1, .hero-p, .hero-btns { animation: none; opacity: 1; transform: none; }
  .scroll-line { animation: none; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background-color: #111C30; flex-direction: column;
    padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08); gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 14px 32px; font-size: 0.85rem; min-height: 52px; width: 100%; }
  .container, .nav-inner { padding: 0 24px; }
  .hero-wrap { padding: 48px 24px; }
  .leistungen { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
  .warum-band-inner { flex-direction: column; }
  .wb-st { flex-basis: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .wb-st:last-child { border-bottom: none; }
  .warum-body { padding-top: 48px; padding-bottom: 48px; }
  .br-content { padding: 48px 24px; }
  .ref-grid { grid-template-columns: 1fr; }
  .ref-card { padding: 30px 22px; }
  .team-card { grid-template-columns: 1fr; }
  .tc-vis { min-height: 160px; }
  .tc-info { padding: 24px; background-color: #1e3050; }
  .kontakt { padding-bottom: 64px; }
  .form-row { grid-template-columns: 1fr; }
  .ft-top { padding: 48px 0 36px; gap: 28px; }
  .ft-cols { grid-template-columns: 1fr; gap: 24px; }
  .ft-bot { flex-direction: column; align-items: flex-start; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  #cookie-banner { padding: 16px 24px; }
  .cb-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cb-btns { width: 100%; flex-direction: column; }
  .cbtn { width: 100%; text-align: center; }
  .cm-box { box-shadow: none; max-height: 95vh; }
  .cm-head, .cm-body, .cm-foot, .cm-intro, .cm-legal { padding-left: 20px; padding-right: 20px; }
  .cm-foot { flex-direction: column; }
}
@media (max-width: 480px) { .hero-h1 { font-size: 2.2rem; } .ttl { font-size: 1.8rem; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }















/* ══════════════════════════════════════════════
   LEGAL PAGES — Impressum / Datenschutz / AGB / Cookie
   Add to bottom of weitblick.css — no separate file needed
   ══════════════════════════════════════════════ */

/* ── FULL WIDTH FOUNDATION ── */
html, body {
  width: 100%;
  min-height: 100vh;
}

/* ── SHARED LAYOUT ── */
.legal-page {
  padding-top: 70px;
  min-height: 100vh;
}

.legal-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── PAGE HEADER ── */
.legal-hero {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 64px 0 52px;
}

.legal-eyebrow {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #4A7FA5;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.legal-eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background-color: #4A7FA5;
}

.legal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.06; color: #ffffff;
  margin-bottom: 14px;
}

.legal-subtitle {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em; line-height: 1.6;
}

/* ── BODY ── */
.legal-body {
  padding: 64px 0 100px;
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── SECTION CARDS ── */
.ls {
  background-color: #1C2B4A;
  border: 1px solid rgba(74,127,165,0.18);
  padding: 36px 40px;
  transition: border-color 0.25s;
}
.ls:hover {
  border-color: rgba(74,127,165,0.35);
}

.ls__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 600; color: #ffffff;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ls__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Address block */
.ls__address-block {
  background-color: rgba(74,127,165,0.07);
  border-left: 2px solid #4A7FA5;
  padding: 16px 20px;
}
.ls__address-block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}
.ls__company-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem !important;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 4px;
}

/* Key-value rows */
.ls__kv-list {
  display: flex;
  flex-direction: column;
}
.ls__kv {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: baseline;
}
.ls__kv:last-child { border-bottom: none; }
.ls__kv-key {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ls__kv-val {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* Body text */
.ls__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.88;
}
.ls__text + .ls__text { padding-top: 4px; }

/* Links */
.ls__link {
  color: #7AAECF;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.ls__link:hover { color: #ffffff; }

/* ── FOOTER ROW ── */
.legal-updated {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}
.legal-back {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.legal-back:hover { color: #7AAECF; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .legal-container { padding: 0 24px; }
  .legal-hero { padding: 48px 0 36px; }
  .legal-body { padding: 40px 0 72px; }
  .ls { padding: 26px 24px; }
  .ls__kv { grid-template-columns: 1fr; gap: 4px; }
  .ls__kv-key { font-size: 0.6rem; }
  .legal-updated { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
  .legal-container { padding: 0 20px; }
  .legal-title { font-size: 2.2rem; }
}

/* ── COOKIE TABLE (cookie-policy.html only) ── */
.ls__cookie-table {
  border: 1px solid rgba(74,127,165,0.2);
  overflow: hidden;
  margin-top: 8px;
}
.ls__cookie-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  align-items: center;
}
.ls__cookie-row:last-child { border-bottom: none; }
.ls__cookie-row--head {
  background-color: rgba(74,127,165,0.1);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ls__code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: #7AAECF;
  background-color: rgba(74,127,165,0.12);
  padding: 2px 6px;
}
@media (max-width: 600px) {
  .ls__cookie-row { grid-template-columns: 1fr 1.5fr; }
  .ls__cookie-row span:last-child { display: none; }
  .ls__cookie-row--head span:last-child { display: none; }
}