/* ============================================================
   FÄH CONSULTING — COMPLETE STYLESHEET
   Design: McKinsey-Qualität · Boutique-Persönlichkeit
   Navy #0a1628 · Gold #c49a3c · Fonts: Playfair + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --navy:     #0a1628;
  --navy2:    #0f2040;
  --navy3:    #162848;
  --gold:     #c49a3c;
  --gold2:    #d4aa4c;
  --white:    #ffffff;
  --off:      #f7f5f0;
  --gray50:   #f0ede8;
  --gray200:  #e5e0d8;
  --gray400:  #9ca3af;
  --gray600:  #374151;
  --text:     #111827;
  --max:      1360px;
  --nav-h:    72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
h1,h2,h3,h4,h5 { margin: 0; }
button { cursor: pointer; border: none; background: none; padding: 0; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ── TYPOGRAPHY ── */
.t-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
}
.t-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -.015em;
}
.t-h1 em { color: var(--gold); font-style: normal; }
.t-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600; color: var(--navy); line-height: 1.2; letter-spacing: -.01em;
}
.t-h2--white { color: #fff; }
.t-h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600; color: var(--navy); line-height: 1.3;
}
.t-lead { font-size: 19px; line-height: 1.75; color: rgba(255,255,255,.86); }
.t-body { font-size: 17px; line-height: 1.85; color: var(--gray600); }
.t-small { font-size: 15px; line-height: 1.75; color: var(--gray600); }

.gold-bar { width: 44px; height: 3px; background: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  padding: 13px 28px; transition: all .22s ease; cursor: pointer;
}
.btn--gold  { background: var(--gold); color: #fff; border: 2px solid var(--gold); }
.btn--gold:hover { background: transparent; color: var(--gold); }
.btn--navy  { background: var(--navy); color: #fff; border: 2px solid var(--navy); }
.btn--navy:hover { background: transparent; color: var(--navy); }
.btn--ghost-w { background: transparent; color: rgba(255,255,255,.85); border: 2px solid rgba(255,255,255,.3); }
.btn--ghost-w:hover { border-color: #fff; color: #fff; }
.btn--ghost-n { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--ghost-n:hover { background: var(--navy); color: #fff; }
.btn svg { flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section--navy  { background: var(--navy); }
.section--off   { background: var(--off); }
.section--white { background: #fff; }
.section--gold  { background: linear-gradient(110deg, var(--gold) 0%, var(--gold2) 60%, var(--gold) 100%); }

.section-hd { text-align: center; margin-bottom: 64px; }
.section-hd .gold-bar { margin: 0 auto 24px; }
.section-hd .t-h2 { margin-bottom: 14px; }
.section-hd .t-body { max-width: 520px; margin: 0 auto; }

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.35); }

.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  height: var(--nav-h); display: flex; align-items: center; gap: 32px;
}
@media (max-width: 640px) { .nav__inner { padding: 0 20px; } }

/* Logo */
.nav__logo {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: #fff; letter-spacing: -.01em; flex-shrink: 0; white-space: nowrap;
}
.nav__logo em { color: var(--gold); font-style: normal; }

/* Menu */
.nav__menu { flex: 1; display: flex; justify-content: center; align-items: center; gap: 0; }

.nav__item { position: relative; }

.nav__link {
  display: block; padding: 8px 15px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .2s ease; white-space: nowrap;
}
.nav__link:hover,
.nav__item.active > .nav__link { color: var(--gold); }

/* Dropdown */
.nav__sub {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy); border: 1px solid rgba(255,255,255,.08);
  min-width: 220px; padding: 16px 0 8px;
  box-shadow: 0 24px 56px rgba(0,0,0,.5); z-index: 100;
}
.nav__sub::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav__item:hover .nav__sub { display: block; }
.nav__sub a {
  display: block; padding: 11px 22px;
  font-size: 13px; color: rgba(255,255,255,.6); transition: all .2s ease;
}
.nav__sub a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

/* Nav CTA */
.nav__cta { flex-shrink: 0; }

/* ── Language Switcher ── */
.lang-switcher { display:flex; align-items:center; gap:1px; margin-right:12px; flex-shrink:0; }
.lang-btn {
  background:none; border:1px solid transparent; cursor:pointer;
  font-family:'Inter',sans-serif; font-size:11px; font-weight:700;
  letter-spacing:.08em; color:rgba(255,255,255,0.38);
  padding:4px 7px; border-radius:3px; line-height:1;
  transition:color .2s, border-color .2s;
}
.lang-btn:hover { color:rgba(255,255,255,.75); }
.lang-btn.active { color:var(--gold); border-color:rgba(196,154,60,.45); }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; padding: 8px; margin-left: auto;
  width: 44px; height: 44px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: all .25s ease; transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  background:
    linear-gradient(140deg, rgba(7,17,32,0.93) 0%, rgba(10,26,53,0.86) 55%, rgba(15,40,69,0.90) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 110px 0 90px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 900px; height: 900px; border-radius: 50%;
  border: 1.5px solid rgba(196,154,60,.09); top: -350px; right: -200px;
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 580px; height: 580px; border-radius: 50%;
  border: 1px solid rgba(196,154,60,.06); top: -180px; right: -60px;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; text-align: center; }
.hero__tag { margin-bottom: 20px; }
.hero__title { margin: 0 0 24px; }
.hero__lead { margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; justify-content: center; }

/* Stats row */
.hero__stats {
  display: flex; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero__stat { flex: 1; padding-right: 28px; }
.hero__stat + .hero__stat { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.07); }
.hero__stat-n {
  font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.hero__stat-l {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.68);
  letter-spacing: .08em; text-transform: uppercase;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(140deg, #071120 0%, #0a1a35 55%, #0f2845 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(196,154,60,.08); top: -280px; right: -150px;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.page-hero__breadcrumb {
  font-size: 11px; color: rgba(255,255,255,.38); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.38); transition: color .2s; }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__title { color: #fff; margin-bottom: 18px; }
.page-hero__sub { font-size: 19px; line-height: 1.75; color: rgba(255,255,255,.84); max-width: 540px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════ */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }

.card {
  background: #fff; padding: 48px 36px 44px;
  position: relative; overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(10,22,40,.1); }
.card:hover::after { transform: scaleX(1); }

.card__num {
  font-size: 10px; font-weight: 700; letter-spacing: .18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 20px; display: block;
}
.card__icon { width: 48px; height: 48px; color: var(--gold); margin-bottom: 24px; }
.card__title { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.card__text { font-size: 16px; line-height: 1.8; color: var(--gray600); margin-bottom: 28px; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.card__tag { font-size: 12px; font-weight: 500; color: var(--navy); background: var(--gray50); padding: 6px 13px; border-radius: 20px; }

/* ═══════════════════════════════════════════════
   IMAGE BANNERS (full-width atmospheric)
   ═══════════════════════════════════════════════ */
.img-banner {
  position: relative; height: 400px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.img-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(7,15,30,0.58);
}
.img-banner__inner {
  position: relative; z-index: 2; text-align: center; padding: 0 48px;
}
.img-banner__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 38px);
  color: #fff; font-style: italic; line-height: 1.45;
  max-width: 820px; margin: 0 auto 22px;
}
.img-banner__author {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
.img-banner--alps {
  background-image: url('../images/banner-alps.jpg');
  background-position: center 65%;
}
.img-banner--future {
  background-image: url('../images/banner-future.jpg');
  background-position: center top;
}
@media (max-width: 640px) {
  .img-banner { height: 260px; }
  .img-banner__inner { padding: 0 24px; }
}

/* ═══════════════════════════════════════════════
   WHY FÄH (dark section)
   ═══════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-lead { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,.80); margin-top: 16px; }

.features { display: flex; flex-direction: column; }
.feature { display: flex; gap: 18px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.06); }
.feature:last-child { border-bottom: 1px solid rgba(255,255,255,.06); }
.feature__icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.feature__name { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.feature__desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.75); }

/* ═══════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 35px;
  left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 1px; background: var(--gray200);
}
.step { text-align: center; padding: 0 16px; }
.step__circle {
  width: 70px; height: 70px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 1;
}
.step__n { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gold); }
.step__title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.step__text { font-size: 15px; line-height: 1.75; color: var(--gray600); }

/* ═══════════════════════════════════════════════
   ABOUT / PHOTO
   ═══════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }

.photo-wrap { position: relative; }
.photo-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  aspect-ratio: 3/4; position: relative; overflow: hidden;
}
.photo-box img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.photo-box__svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 42%; background: linear-gradient(transparent, rgba(10,22,40,.85)); z-index: 1; }
.photo-label { position: absolute; bottom: 28px; left: 28px; z-index: 2; }
.photo-label__name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.photo-label__role { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.photo-gold { position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; background: var(--gold); opacity: .15; z-index: -1; }

.about-body { font-size: 17px; line-height: 1.9; color: var(--gray600); margin-bottom: 20px; }
.quote-block {
  border-left: 4px solid var(--gold); padding: 24px 28px; margin: 28px 0;
  background: var(--off);
  font-family: 'Playfair Display', serif; font-size: 18px; line-height: 1.65;
  color: var(--navy); font-style: italic;
}

.creds { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 36px; }
.cred { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; color: var(--text); }
.cred__check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 11px; font-weight: 700;
}

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
.cta-banner { padding: 80px 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner__title { font-family: 'Playfair Display', serif; font-size: clamp(22px,3vw,36px); font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.cta-banner__sub { font-size: 17px; color: rgba(255,255,255,.9); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; }
.quote-card { background: var(--off); padding: 44px 40px; position: relative; }
.quote-card--dark { background: var(--navy); }
.quote-card::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 96px;
  color: var(--gold); opacity: .2; position: absolute; top: 12px; left: 32px; line-height: 1;
}
.quote-card__text {
  font-family: 'Playfair Display', serif; font-size: 18px; line-height: 1.75;
  color: var(--navy); font-style: italic; margin-bottom: 28px; position: relative; z-index: 1;
}
.quote-card--dark .quote-card__text { color: #fff; }
.quote-card__author { display: flex; align-items: center; gap: 16px; }
.quote-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.quote-card--dark .quote-card__avatar { background: rgba(255,255,255,.1); }
.quote-card__name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.quote-card--dark .quote-card__name { color: #fff; }
.quote-card__role { font-size: 13px; color: var(--gray600); letter-spacing: .03em; }
.quote-card--dark .quote-card__role { color: rgba(255,255,255,.55); }
.quote-card__result {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  color: var(--gold); margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.22); position: relative; z-index: 1;
}
.testi-grid .quote-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* ═══════════════════════════════════════════════
   CREDENTIALS GRID
   ═══════════════════════════════════════════════ */
.creds-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; }
.cred-card {
  background: #fff; padding: 40px 36px; position: relative;
  transition: box-shadow .3s;
}
.cred-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .3s;
}
.cred-card:hover { box-shadow: 0 8px 32px rgba(10,22,40,.08); }
.cred-card:hover::before { transform: scaleY(1); }
.cred-card__icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 20px; }
.cred-card__title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.cred-card__text { font-size: 15px; line-height: 1.8; color: var(--gray600); }

/* ═══════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════ */
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 40px;
  padding: 32px 0; border-top: 1px solid rgba(255,255,255,.07);
}
.tl-item:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
.tl-year { font-size: 14px; font-weight: 600; color: var(--gold); letter-spacing: .04em; padding-top: 4px; }
.tl-title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.tl-text { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.78); }

/* ═══════════════════════════════════════════════
   TOOL BLOCKS
   ═══════════════════════════════════════════════ */
.tool-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 80px 0; border-top: 1px solid var(--gray200);
}
.tool-block:first-of-type { padding-top: 0; border-top: none; }
.tool-block--reverse { direction: rtl; }
.tool-block--reverse > * { direction: ltr; }

.tool-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-decoration: none;
}
a.tool-visual { cursor: pointer; display: flex; }
a.tool-visual::after {
  content: 'Tool öffnen →';
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.82);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0; transition: opacity 0.3s ease;
}
a.tool-visual:hover::after { opacity: 1; }
.tool-visual__label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: rgba(10,22,40,.85); padding: 20px 24px;
}
.tool-visual__name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.tool-visual__type { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.tool-body__num { font-size: 10px; font-weight: 700; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; display: block; }
.tool-body__title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.tool-body__text { font-size: 17px; line-height: 1.85; color: var(--gray600); margin-bottom: 24px; }
.tool-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.tool-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--text); font-weight: 500; }
.tool-feat__check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 10px; font-weight: 700; margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   SECTORS
   ═══════════════════════════════════════════════ */
.sectors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.sector { background: #fff; padding: 32px 24px; text-align: center; transition: box-shadow .25s; }
.sector:hover { box-shadow: 0 8px 32px rgba(10,22,40,.08); }
.sector__icon { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 16px; }
.sector__name { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: .02em; }

/* ═══════════════════════════════════════════════
   SERVICE DETAIL BLOCKS (Angebot page)
   ═══════════════════════════════════════════════ */
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 80px 0; border-top: 1px solid var(--gray200);
}
.svc-block:first-of-type { padding-top: 0; border-top: none; }
.svc-block--alt { direction: rtl; }
.svc-block--alt > * { direction: ltr; }
.svc-block--dark { background: var(--navy); direction: ltr; }
.svc-block--dark .svc-body__title { color: #fff; }
.svc-block--dark .svc-body__text { color: rgba(255,255,255,.6); }
.svc-block--dark .svc-body__feat-name { color: #fff; }
.svc-block--dark .svc-body__feat-desc { color: rgba(255,255,255,.48); }

.svc-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.svc-visual--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%); }
.svc-visual__num {
  font-family: 'Playfair Display', serif; font-size: 120px; font-weight: 700;
  color: rgba(255,255,255,.08); position: absolute; bottom: -20px; right: 20px; line-height: 1;
}
.svc-body__num { font-size: 10px; font-weight: 700; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; display: block; }
.svc-body__title { font-family: 'Playfair Display', serif; font-size: clamp(24px,2.5vw,34px); font-weight: 600; color: var(--navy); margin-bottom: 18px; line-height: 1.2; }
.svc-body__text { font-size: 15px; line-height: 1.8; color: var(--gray600); margin-bottom: 28px; }
.svc-body__feats { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.svc-body__feat { display: flex; gap: 16px; }
.svc-body__feat-ico { width: 32px; height: 32px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.svc-body__feat-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.svc-body__feat-desc { font-size: 13px; line-height: 1.65; color: var(--gray600); }

/* ═══════════════════════════════════════════════
   DISCRETION NOTE
   ═══════════════════════════════════════════════ */
.note-box {
  display: flex; gap: 24px; align-items: flex-start;
  max-width: 720px; margin: 0 auto;
}
.note-box__icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.note-box__title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.note-box__text { font-size: 16px; line-height: 1.8; color: var(--gray600); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer { background: var(--navy); }
.footer__main { padding: 80px 0; }
.footer__inner {
  display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start;
}
.footer__logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.footer__logo em { color: var(--gold); font-style: normal; }
.footer__tagline { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.75); margin: 0 0 14px; line-height: 1.5; }
.footer__desc { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.58); margin: 0 0 28px; }
.footer__contact { margin-bottom: 28px; }
.footer__contact a { font-size: 15px; color: rgba(255,255,255,.78); transition: color .2s; }
.footer__contact a:hover { color: var(--gold); }

.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; padding-top: 4px; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__col a { display: block; font-size: 14px; color: rgba(255,255,255,.68); margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: rgba(255,255,255,.9); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 24px 0; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.45); gap: 20px; flex-wrap: wrap;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,.25); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════
   IMPRESSUM
   ═══════════════════════════════════════════════ */
.impressum-body { max-width: 720px; }
.impressum-body h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--navy); margin: 40px 0 12px; }
.impressum-body h2:first-child { margin-top: 0; }
.impressum-body p, .impressum-body li { font-size: 15px; line-height: 1.8; color: var(--gray600); margin-bottom: 12px; }
.impressum-body a { color: var(--gold); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav__menu, .nav__cta { display: none !important; }
  .nav__burger { display: flex !important; }

  .nav.mobile-open .nav__menu {
    display: flex !important; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 24px 24px 120px; overflow-y: auto; z-index: 999;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .nav.mobile-open .nav__menu .nav__link { font-size: 17px; padding: 18px 0; text-transform: none; letter-spacing: 0; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.85); }
  .nav.mobile-open .nav__sub { position: static; display: block; box-shadow: none; border: none; background: transparent; padding: 0 0 8px 20px; min-width: 0; }
  .nav.mobile-open .nav__sub a { padding: 10px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.04); }
  .lang-switcher { margin-right:6px; }
  .nav.mobile-open::after {
    content: attr(data-cta); display: block; position: fixed;
    bottom: 24px; left: 24px; right: 24px; background: var(--gold); color: #fff;
    text-align: center; padding: 16px; font-size: 14px; font-weight: 600;
    letter-spacing: .04em; z-index: 1000;
  }

  .hero__stats { flex-direction: column; gap: 20px; padding-top: 32px; }
  .hero__stat + .hero__stat { border-left: none; border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0 0; }
  .hero__stat { padding: 0; }

  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .tool-block, .tool-block--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .svc-block, .svc-block--alt { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 500px) {
  .hero { padding: 72px 0 56px; }
  .hero__ctas { flex-direction: column; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
}
