/* ============================================================
   Z3R0 FINANCE – style.css
   Sauber für direktes Webhosting geschrieben.
   Keine IONOS-Reste, kein Baukasten-Ballast.
   ============================================================ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  /* Farben */
  --emerald-deeper: #003533;
  --emerald-dark:   #004A46;
  --emerald:        #00615C;
  --emerald-light:  #E8F4F3;
  --gold:           #857550;
  --gold-accent:    #BDA774;

  --white:          #FFFFFF;
  --off-white:      #F8F9FA;
  --border:         #E5E7EB;
  --text-primary:   #0F172A;
  --text-secondary: #475569;

  /* Typografie */
  --font-heading: 'Exo 2', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Abstände */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 96px;

  /* Layout */
  --container: 1200px;
  --header-h:  92px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Übergänge */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--emerald-deeper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAFIE ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

p { color: var(--text-secondary); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.section {
  padding: var(--sp-8) 0;
  background: var(--white);
}

.section--sm {
  padding: var(--sp-6) 0;
  background: var(--white);
}

.section--gray {
  background: var(--off-white);
}

/* ── ANIMATIONEN ────────────────────────────────────────────── */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-ready .fade-up {
  opacity: 0;
  transform: translateY(24px);
}

.js-ready .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.site-header--scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: rgba(0,97,92,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.site-header::before {
  content: '';
  display: block;
  height: 6px;
  background: var(--emerald-deeper);
}

.header-inner {
  height: calc(var(--header-h) - 6px);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--emerald);
}

.logo-text span { color: var(--gold-accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-inline-start: auto;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-accent);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover { color: var(--emerald); }

.header-cta { margin-inline-start: var(--sp-3); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-inline-start: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--emerald-deeper);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.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 Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: var(--white);
  z-index: 999;
  padding: var(--sp-5) var(--sp-4);
  flex-direction: column;
  gap: var(--sp-2);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}

/* Mobile Nav Backdrop Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,53,51,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav .nav-link {
  font-size: 18px;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
}

.btn--secondary {
  background: var(--emerald);
  color: var(--white);
  border: 2px solid var(--emerald);
}
.btn--secondary:hover { background: var(--emerald-dark); border-color: var(--emerald-dark); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--ghost-dark {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn--ghost-dark:hover { background: var(--emerald); color: var(--white); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* ── LABELS / TAGS ──────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: var(--sp-2);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(133,117,80,0.15);
  border: 1px solid rgba(133,117,80,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: var(--sp-3);
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
}

/* ── HERO (STARTSEITE) ──────────────────────────────────────── */
.hero {
  background: var(--emerald-deeper);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,97,92,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(133,117,80,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(133,117,80,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-7) 0;
  gap: var(--sp-5);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(133,117,80,0.12);
  border: 1px solid rgba(133,117,80,0.25);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.hero h1 {
  color: var(--white);
  max-width: 760px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-accent);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.65;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.trust-item svg { color: var(--gold-accent); flex-shrink: 0; }

/* ── PAGE HERO (UNTERSEITEN) ────────────────────────────────── */
.page-hero {
  background: var(--emerald-deeper);
  padding: calc(var(--header-h) + var(--sp-6)) 0 var(--sp-6);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0,97,92,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.page-hero h1 { color: var(--white); margin-bottom: var(--sp-3); }

.subline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.subline--white { color: rgba(255,255,255,0.75); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--off-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.breadcrumb a { color: var(--emerald); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ── SECTION TITLES ─────────────────────────────────────────── */
.section-title { margin-bottom: var(--sp-2); }
.section-title--center { text-align: center; }
.text-center { text-align: center; }

.gold-divider {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: var(--sp-2) 0 var(--sp-4);
}
.gold-divider--center { margin-inline: auto; }

/* ── LEISTUNGS-GRID (STARTSEITE) ────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.service-card:hover {
  border-color: var(--emerald);
  box-shadow: 0 12px 40px rgba(0,97,92,0.12);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}

.service-card h3 { font-size: 18px; color: var(--text-primary); }
.service-card p { font-size: 14px; flex: 1; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald);
  margin-top: auto;
}

.service-card-link:hover { gap: 10px; }

.services-cta {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  background: var(--emerald);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.services-cta p { color: rgba(255,255,255,0.85); font-size: 15px; }
.services-cta strong { color: var(--white); display: block; font-size: 17px; margin-bottom: 4px; }

/* ── FÜR WEN ────────────────────────────────────────────────── */
.targets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.target-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  gap: var(--sp-4);
}

.target-icon {
  width: 48px;
  height: 48px;
  background: var(--emerald-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
}

.target-card h3 { font-size: 17px; margin-bottom: 6px; }
.target-card p { font-size: 14px; }

/* ── PROZESS ────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: var(--border);
}

.process-step {
  text-align: center;
  padding: var(--sp-4);
}

.process-number {
  width: 56px;
  height: 56px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto var(--sp-3);
  position: relative;
  z-index: 1;
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 14px; }

/* ── TRUST / VERTRAUEN ──────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.trust-card {
  text-align: center;
  padding: var(--sp-4);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-card p { font-size: 13px; }

/* ── ÜBER UNS ───────────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-7);
  align-items: center;
}

.about-photo-frame {
  aspect-ratio: 4/5;
  background: var(--emerald-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}

.about-stat {
  text-align: center;
  padding: var(--sp-3);
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
}

.about-stat p { font-size: 12px; margin-top: 4px; }

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.credential-item svg { color: var(--emerald); flex-shrink: 0; }

/* ── KONTAKT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: var(--sp-4); }

.contact-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
}

.contact-item h4 { font-size: 14px; margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--text-secondary); }
.contact-item a:hover { color: var(--emerald); }

.contact-form { display: flex; flex-direction: column; gap: var(--sp-3); }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-primary); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--emerald); }

.form-group textarea { min-height: 140px; resize: vertical; }

.form-note { font-size: 12px; color: var(--text-secondary); }

/* ── LEISTUNGSDETAIL (UNTERSEITEN) ──────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}

.service-list { display: flex; flex-direction: column; gap: var(--sp-3); margin: var(--sp-4) 0; }

.service-list-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3);
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--emerald);
}

.service-list-item-icon {
  width: 32px;
  height: 32px;
  background: var(--emerald-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
}

.service-list-item-text strong { display: block; font-size: 14px; color: var(--text-primary); margin-bottom: 2px; }
.service-list-item-text { font-size: 14px; color: var(--text-secondary); }

/* Sidebar Boxes */
.benefits-box {
  background: var(--emerald);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.benefits-box h4 { color: var(--white); font-size: 15px; margin-bottom: var(--sp-3); }

.benefit-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.benefit-item:last-child { border-bottom: none; }
.benefit-icon { color: var(--gold-accent); flex-shrink: 0; margin-top: 2px; }
.benefit-text { font-size: 13px; color: rgba(255,255,255,0.85); }
.benefit-text strong { color: var(--white); display: block; margin-bottom: 2px; }

.contact-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  text-align: center;
}

.contact-box h4 { margin-bottom: var(--sp-2); font-size: 16px; }
.contact-box p { font-size: 14px; margin-bottom: var(--sp-3); }

.contact-box-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--emerald);
  margin-bottom: var(--sp-3);
}

/* ── CTA BLOCK ──────────────────────────────────────────────── */
.cta-block {
  background: var(--emerald-deeper);
}

.cta-block-inner {
  text-align: center;
  padding: var(--sp-6) 0;
  max-width: 640px;
  margin: 0 auto;
}

.cta-block h2 { color: var(--white); margin-bottom: var(--sp-3); }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: var(--sp-5); font-size: 16px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: var(--sp-3); }

/* ── VERWANDTE LEISTUNGEN ───────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: all var(--transition-base);
}

.related-card:hover {
  border-color: var(--emerald);
  box-shadow: 0 12px 40px rgba(0,97,92,0.12);
  transform: translateY(-4px);
}

.related-card-icon {
  width: 40px;
  height: 40px;
  background: var(--emerald-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}

.related-card h3 { font-size: 16px; }
.related-card p { font-size: 13px; flex: 1; }

.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald);
  margin-top: var(--sp-2);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--emerald-deeper);
  padding: var(--sp-7) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: var(--sp-3);
  line-height: 1.6;
}

.footer-legal-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-2);
}

.footer-col h5 {
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-2);
}

.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item svg { color: var(--gold-accent); flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-4);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--white); }

/* ── IMPRESSUM / DATENSCHUTZ ────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-7) 0;
}

.legal-block {
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}

.legal-block:last-child { border-bottom: none; }

.legal-block h2 {
  font-size: 22px;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.legal-block h3 { font-size: 16px; margin: var(--sp-4) 0 var(--sp-2); }
.legal-block p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: var(--sp-3); }
.legal-block ul { margin: 0 0 var(--sp-3) var(--sp-4); }
.legal-block li { font-size: 15px; color: var(--text-secondary); margin-bottom: 6px; list-style: disc; }
.legal-block a { color: var(--emerald); text-decoration: underline; }

.highlight-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-4);
  margin: var(--sp-3) 0;
}

.highlight-box p { margin-bottom: 6px; }
.highlight-box p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-frame { max-width: 400px; aspect-ratio: 4/3; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --sp-7: 48px;
    --sp-8: 64px;
    --header-h: 70px;
  }

  /* Header */
  .site-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-logo img { height: 44px; max-width: 160px; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-bottom: var(--sp-6);
  }

  .hero-inner { padding: var(--sp-5) 0; }
  .hero h1 { font-size: clamp(28px, 8vw, 38px); }
  .hero-sub { font-size: 16px; }
  .hero-trust { gap: var(--sp-3); }

  /* Page Hero */
  .page-hero { padding-bottom: var(--sp-4); }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .targets-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-4); }

  /* Buttons */
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }

  /* Services CTA */
  .services-cta { flex-direction: column; text-align: center; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ── STICKY MOBILE CTA ────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  gap: 8px;
}

.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sticky-cta__call {
  background: var(--gold);
  color: var(--white);
}

.sticky-cta__contact {
  background: transparent;
  border: 2px solid var(--emerald);
  color: var(--emerald);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 80px;
  }
}

/* ── ADDITIONAL ANIMATION DELAYS ───────────────────────────────── */
.fade-up--delay-4 { transition-delay: 0.4s; }
.fade-up--delay-5 { transition-delay: 0.5s; }