/* ============================================================
   KUNDENKERN – Premium Design System v5.0
   Palette: Navy · Gold · Cream
   Fonts:   Playfair Display (Headlines) · Inter (Body)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:          #0C1F3F;
  --navy-mid:      #183564;
  --navy-light:    #274D8E;
  --gold:          #B8933A;
  --gold-dark:     #9A7B2E;
  --gold-light:    #D4AF65;
  --gold-pale:     #F5EDDA;
  --cream:         #F8F4EE;
  --cream-dark:    #EDE6D8;
  --white:         #FFFFFF;

  /* Typography Colors */
  --text-dark:     #0C1F3F;
  --text-body:     #2D3550;
  --text-muted:    #637082;
  --text-light:    rgba(255,255,255,0.82);
  --text-subtle:   rgba(255,255,255,0.52);

  /* Borders */
  --border:        #DDD6CC;
  --border-light:  #EDE9E2;
  --border-navy:   rgba(255,255,255,0.12);

  /* Fonts */
  --font-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  64px;
  --space-4xl:  80px;
  --space-5xl:  100px;
  --space-6xl:  128px;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  18px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;

  /* Shadows */
  --shadow-xs:   0 1px 3px rgba(12,31,63,0.05);
  --shadow-sm:   0 2px 8px rgba(12,31,63,0.08);
  --shadow-md:   0 4px 20px rgba(12,31,63,0.10);
  --shadow-lg:   0 8px 40px rgba(12,31,63,0.12);
  --shadow-xl:   0 16px 56px rgba(12,31,63,0.14);
  --shadow-2xl:  0 24px 72px rgba(12,31,63,0.16);
  --shadow-gold: 0 4px 20px rgba(184,147,58,0.28);
  --shadow-gold-lg: 0 8px 40px rgba(184,147,58,0.36);

  /* Legacy aliases (keep other pages compatible) */
  --mint:          var(--gold);
  --mint-dark:     var(--gold-dark);
  --mint-light:    var(--gold-pale);
  --mint-glow:     rgba(184,147,58,0.15);
  --flieder:       var(--navy-mid);
  --flieder-dark:  var(--navy);
  --flieder-light: #E8EEF6;
  --flieder-glow:  rgba(24,53,100,0.10);
  --color-primary: var(--navy);
  --anthrazit:     var(--navy);
  --hellgrau:      var(--cream);
  --weiss:         var(--white);
  --line:          var(--border);
  --line-light:    var(--border-light);
  --shadow-mint:   var(--shadow-gold);
  --shadow-mint-lg:var(--shadow-gold-lg);
  --shadow-flieder:0 4px 20px rgba(24,53,100,0.20);
  --green:  #1A8A5A;
  --yellow: #C68A14;
  --gray:   #8896A4;
  --red:    #B91C1C;

  /* Transitions */
  --transition:      220ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 420ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container:        1200px;
  --container-wide:   1280px;
  --container-narrow: 720px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::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);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 100px;
}

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
h4 { font-size: clamp(1rem, 1.5vw, 1.125rem); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

p { color: var(--text-body); font-size: 1.0625rem; line-height: 1.75; }

strong { font-weight: 600; color: var(--text-dark); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-wide   { max-width: var(--container-wide); }
.container-narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--space-6xl) 0;
}

.section-sm { padding: var(--space-4xl) 0; }

/* Section Backgrounds */
.section-cream   { background: var(--cream); }
.section-light   { background: #F2EDE5; }
.section-white   { background: var(--white); }
.section-surface { background: #F2EDE5; }
.section-navy    { background: var(--navy); position: relative; overflow: hidden; }
.section-navy-mid { background: var(--navy-mid); }
.section-gold-pale { background: var(--gold-pale); }

.section-navy::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(184,147,58,0.07) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.section-navy::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(39,77,142,0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Section Header */
.section-header {
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.section-header h2 { margin-bottom: var(--space-md); }
.section-header p  { font-size: 1.125rem; color: var(--text-muted); }

.section-header-left { text-align: left; margin-left: 0; }

.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: var(--text-light); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-header-values .section-tag { color: var(--gold); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
  letter-spacing: 0.01em;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Gold = primary CTA */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold-lg);
  color: var(--white);
}

/* Navy = secondary CTA */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
}

/* Legacy btn-secondary → gold variant */
.btn-secondary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-secondary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* Outline on light background */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-pale);
}

/* Outline on dark background */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.30);
}
.btn-outline-light:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(184,147,58,0.08);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--gold-dark); transform: none; }

.btn-sm  { padding: 10px 20px; font-size: 0.8125rem; min-height: 40px; }
.btn-lg  { padding: 18px 36px; font-size: 1.0625rem; min-height: 56px; }
.btn-block { width: 100%; justify-content: center; }

/* ── Page Loader ──────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-content { text-align: center; }

.page-loader-logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto var(--space-lg);
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.page-loader-text {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
}

.page-loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.page-loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ── Header ───────────────────────────────────────────────── */
.header, .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 100px;
  padding: 14px 0;
  background: rgba(248,244,238,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header.scrolled, .site-header.scrolled {
  background: rgba(248,244,238,0.97);
  box-shadow: 0 2px 24px rgba(12,31,63,0.08);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-image {
  width: clamp(150px, 12vw, 220px);
  height: auto;
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.logo:hover .logo-image,
.brand:hover img {
  opacity: 0.82;
  transform: scale(0.97);
}
.logo-text { display: none; }

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav a:hover { color: var(--navy); background: var(--gold-pale); }
.nav a.active { color: var(--gold-dark); background: var(--gold-pale); font-weight: 600; }

.nav-cta {
  margin-left: var(--space-md);
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover { background: var(--gold-pale); }

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

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-top: clamp(72px, 7vw, 110px);
  padding-bottom: clamp(80px, 8vw, 120px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0C1F3F 0%, #183564 55%, #0C1F3F 100%);
  z-index: 0;
}

/* Subtle diagonal gold band */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: rgba(184,147,58,0.035);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 560px; }

/* Eyebrow / Badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(184,147,58,0.12);
  border: 1px solid rgba(184,147,58,0.30);
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

/* Hero Badge (legacy alias) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(184,147,58,0.12);
  border: 1px solid rgba(184,147,58,0.30);
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
}

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

.hero-lead, .hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}

.hero-trust-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* CTA Row */
.hero-buttons, .hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

/* Trust Points */
.hero-trust, .hero-points {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-navy);
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.hero-point::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(184,147,58,0.20);
  border: 1.5px solid var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23B8933A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
}

/* Trust Bar (legacy) */
.trust-bar {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-navy);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-bar-item strong {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 2px;
}

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

/* Hero Image */
.hero-visual, .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.40);
  border: 1px solid rgba(184,147,58,0.20);
  width: 100%;
  max-width: 520px;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  z-index: 2;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.hero-image-frame:hover img { transform: scale(1.02); }

/* Hero Premium variant */
.hero-premium {
  min-height: 92vh;
}

.hero-premium .hero-content {
  padding: var(--space-3xl);
}

/* ── Section Components ────────────────────────────────────── */

/* Divider */
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: var(--space-md) 0 var(--space-xl);
}

.section-divider-center { margin: var(--space-md) auto var(--space-xl); }

/* ── Value Cards ──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-xl);
  right: var(--space-xl);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.value-card:hover::before { opacity: 1; }

.value-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color var(--transition);
}

.value-card:hover .value-number { color: var(--gold-light); }

.value-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: background var(--transition);
}

.value-card-icon svg { color: var(--gold); width: 22px; height: 22px; }
.value-card:hover .value-card-icon { background: var(--gold); }
.value-card:hover .value-card-icon svg { color: var(--white); }

.value-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Team Cards ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card-image img { transform: scale(1.04); }

.team-card-body {
  padding: var(--space-xl);
}

.team-card-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-card-role {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.team-card-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* Team status */
.team-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.team-card-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray);
}

.status-available .team-card-status-dot { background: var(--green); }
.status-busy      .team-card-status-dot { background: var(--yellow); }
.status-away      .team-card-status-dot { background: var(--gray); }

/* Team Quote Box */
.team-quote-box {
  margin-top: var(--space-3xl);
  padding: var(--space-2xl) var(--space-3xl);
  background: rgba(184,147,58,0.08);
  border: 1px solid rgba(184,147,58,0.22);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.team-quote-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.team-quote-box p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(184,147,58,0.30) 50%, var(--gold) 100%);
  pointer-events: none;
}

.process-step { text-align: center; padding: 0 var(--space-md); }

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.service-card:hover::before { opacity: 1; }

.service-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-media img { transform: scale(1.05); }

.service-card-body {
  padding: var(--space-xl);
}

.service-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.service-card-body h3 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.service-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition), color var(--transition);
}

.service-card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-card:hover .service-card-link { color: var(--navy); gap: 10px; }

/* Service card with icon (no image) */
.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: background var(--transition);
}

.service-card-icon svg { color: var(--gold); width: 24px; height: 24px; }
.service-card:hover .service-card-icon { background: var(--gold); }
.service-card:hover .service-card-icon svg { color: var(--white); }

/* Service grid with images */
.services-grid-image { grid-template-columns: repeat(3, 1fr); }

/* ── Offer / Angebots-Cards ──────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.offer-card h3 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.offer-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.offers-disclaimer {
  margin-top: var(--space-xl);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.75;
}

/* ── Trust Section ────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.trust-card {
  padding: var(--space-2xl);
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.trust-card-icon svg { color: var(--gold); width: 26px; height: 26px; }

.trust-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.trust-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Location Section ─────────────────────────────────────── */
.location-section { }
.location-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: start; }
.location-card    { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: var(--space-2xl); }
.location-contact { margin-bottom: var(--space-xl); }
.location-contact p { margin-bottom: var(--space-sm); font-size: 0.9375rem; color: var(--text-body); }
.location-contact a { color: var(--gold-dark); font-weight: 500; }
.location-contact a:hover { color: var(--navy); }
.location-map-note { font-size: 0.875rem; color: var(--text-muted); }
.location-map-note a { color: var(--gold-dark); font-weight: 500; }

/* ── Contact Promo ────────────────────────────────────────── */
.contact-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.contact-promo-copy { padding: var(--space-2xl) var(--space-3xl); }
.contact-promo-copy h2 { margin-bottom: var(--space-md); }
.contact-promo-copy p  { color: var(--text-muted); margin-bottom: var(--space-xl); }

.contact-promo-image { height: 100%; min-height: 320px; }
.contact-promo-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Social Media ─────────────────────────────────────────── */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-navy);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(184,147,58,0.12);
  border-color: rgba(184,147,58,0.30);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.social-link svg { color: inherit; }

/* ── Section Social ───────────────────────────────────────── */
.section-social { }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,147,58,0.20);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .footer-logo {
  width: clamp(130px, 10vw, 175px);
  height: auto;
  display: block;
  margin-bottom: var(--space-lg);
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  margin: 0;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
}

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

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}

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

.footer-contact { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.58);
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.58); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(184,147,58,0.15);
  border-color: rgba(184,147,58,0.30);
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.38); margin: 0; }

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}

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

/* ── Forms ────────────────────────────────────────────────── */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
}

.form-group { margin-bottom: var(--space-lg); }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  min-height: 48px;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,147,58,0.12);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }

.form-intro {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: none;
}

.form-select option { color: var(--text-dark); background: var(--white); }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.form-checkbox-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.2s ease;
  position: relative;
}

.form-checkbox input:checked + .form-checkbox-mark {
  background: var(--gold);
  border-color: var(--gold);
}

.form-checkbox input:checked + .form-checkbox-mark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.form-checkbox input:focus-visible + .form-checkbox-mark {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-checkbox-text a {
  color: var(--gold-dark);
  text-decoration: underline;
  font-weight: 500;
}

.form-checkbox-text a:hover {
  color: var(--gold);
}

.btn-submit {
  padding: 16px 32px;
  font-size: 1rem;
  margin-top: var(--space-sm);
  transition: all 0.25s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-control::placeholder {
  color: #9CA3AF;
  opacity: 1;
}

.form-control:user-invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control:user-valid {
  border-color: #10B981;
}

.form-control:user-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ── Inner Page Components ────────────────────────────────── */

/* Page Hero */
.page-hero {
  background: var(--navy);
  padding: var(--space-5xl) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,147,58,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.page-hero h1 { color: var(--white); }
.page-hero p  { color: var(--text-light); max-width: 520px; }

.page-hero-premium {
  min-height: 480px;
  display: flex;
  align-items: center;
}

/* Service Detail */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.comparison-col {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.comparison-col.highlight {
  background: var(--navy);
  border-color: var(--navy);
}

.comparison-col.highlight h3 { color: var(--white); }
.comparison-col.highlight p  { color: var(--text-light); }

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 72px;
  height: 72px;
  stroke: var(--gold-dark);
  stroke-width: 2.5;
  fill: none;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-item a {
  color: var(--gold-dark);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--navy);
}

/* Profile */
.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.profile-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Hero benefits */
.hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* Wofür grid */
.wofuer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* DNA grid */
.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Brand story */
.brand-story-grid,
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Team premium */
.team-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ── Utilities ────────────────────────────────────────────── */
.text-gold    { color: var(--gold-light); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.gap-sm       { gap: var(--space-sm); }
.gap-md       { gap: var(--space-md); }
.gap-lg       { gap: var(--space-lg); }
.gap-xl       { gap: var(--space-xl); }

/* Error page */
.error-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.34s; }

/* Hero entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.9); }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.hero-eyebrow,
.hero-badge      { animation: fadeIn 0.6s ease 0.1s both; }
.hero h1         { animation: fadeUp 0.7s ease 0.2s both; }
.hero-lead,
.hero-trust-text { animation: fadeUp 0.7s ease 0.35s both; }
.hero-buttons,
.hero-actions    { animation: fadeUp 0.7s ease 0.48s both; }
.hero-trust,
.hero-points     { animation: fadeUp 0.7s ease 0.58s both; }
.hero-visual,
.hero-image      { animation: fadeIn 0.9s ease 0.3s both; }

/* ── prefers-reduced-motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html { scroll-behavior: auto; }
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1100px) {
  .values-grid          { grid-template-columns: repeat(2, 1fr); }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .features-grid        { grid-template-columns: repeat(2, 1fr); }
  .trust-grid           { grid-template-columns: repeat(2, 1fr); }
  .dna-grid             { grid-template-columns: repeat(2, 1fr); }
  .hero-benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .offers-grid          { grid-template-columns: repeat(2, 1fr); }
  .wofuer-grid          { grid-template-columns: repeat(2, 1fr); }
  .services-grid-image  { grid-template-columns: repeat(2, 1fr); }
  .team-grid-premium    { grid-template-columns: repeat(2, 1fr); }
  .brand-story-grid,
  .founder-grid         { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .contact-promo        { grid-template-columns: 1fr; }
  .page-hero-grid       { grid-template-columns: 1fr; }
  .service-detail       { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }

  .hero-content        { max-width: 100%; }
  .hero-lead, .hero p  { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons,
  .hero-actions        { justify-content: center; }
  .trust-bar           { justify-content: center; }
  .hero-visual,
  .hero-image          { justify-content: center; }
  .hero-image-frame    { max-width: 480px; }
  .hero                { min-height: auto; padding: 100px 0 80px; }
  .hero-trust,
  .hero-points         { justify-content: center; }

  .comparison-grid     { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .content-grid        { grid-template-columns: 1fr; }
  .cards-grid          { grid-template-columns: repeat(2, 1fr); }
  .profile-grid        { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .form-row            { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
  .location-grid       { grid-template-columns: 1fr; }
  .section             { padding: var(--space-5xl) 0; }
  .process-grid        { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-step        { text-align: left; display: flex; gap: var(--space-lg); align-items: flex-start; padding: 0; }
  .process-step-number { flex-shrink: 0; margin: 0; }
}

@media (max-width: 768px) {
  body { padding-top: 90px; }

  .header, .site-header { min-height: 90px; padding: 10px 0; }
  .header-inner          { height: auto; }
  .logo-image            { width: clamp(130px, 38vw, 155px); }

  .nav {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248,244,238,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-xl);
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border);
  }

  .nav.open { display: flex; }

  .nav a {
    font-size: 1.0625rem;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    border-radius: 0;
  }

  .nav a.active { background: var(--gold-pale); border-radius: var(--radius-sm); }
  .nav-cta      { margin-left: 0; margin-top: var(--space-md); justify-content: center; border-radius: var(--radius-sm) !important; }
  .nav-toggle   { display: flex; }

  .hero                { padding: 72px 0 56px; }
  .hero-image-frame    { max-width: 100%; }
  .hero-image-frame img { min-height: 280px; }

  .values-grid         { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .services-grid       { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .trust-grid          { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .cards-grid          { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .offers-grid         { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .wofuer-grid         { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .team-grid-premium   { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-grid-image { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .features-grid       { grid-template-columns: 1fr; }
  .dna-grid            { grid-template-columns: 1fr; }
  .hero-benefits-grid  { grid-template-columns: 1fr; }

  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .hero-buttons,
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn,
  .hero-actions .btn { width: 100%; justify-content: center; }

  .trust-bar { flex-direction: column; gap: var(--space-sm); align-items: center; }

  .page-hero       { padding: var(--space-4xl) 0 var(--space-3xl); }
  .page-hero-premium { min-height: auto; }
  .contact-promo   { padding: var(--space-2xl); }
  .footer-grid     { grid-template-columns: 1fr; gap: var(--space-xl); }

  .team-quote-box  { padding: var(--space-xl); }
  .section-social  .social-links { flex-direction: column; }

  .contact-form-wrapper { padding: var(--space-xl); }

  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--space-lg); }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .hero { padding: 64px 0 48px; }
  .section { padding: var(--space-4xl) 0; }
  .comparison-col { padding: var(--space-lg); }
  .contact-form-wrapper { padding: var(--space-lg); }
  .profile-buttons .btn { width: 100%; justify-content: center; }
  .error-actions { flex-direction: column; }
  .error-actions .btn { width: 100%; justify-content: center; }
  .values-grid { max-width: 100%; }
  .team-card-body { padding: var(--space-lg); }
  .team-card-body h3 { font-size: 1.125rem; }
  .team-card-motto { font-size: 0.8125rem; }
  .page-hero.page-hero-premium { padding: 64px 0 40px; }
  .contact-icon { width: 52px; height: 52px; }
  .contact-icon svg { width: 52px; height: 52px; }
  .contact-item { gap: 16px; }
}

/* ============================================================
   KUNDENKERN – Live Review Improvements v5.1
   ============================================================ */

/* ── .highlight: hero h1 gold italic span ─────────────────── */
.highlight {
  color: var(--gold-light);
  font-style: italic;
}

/* ── Hero image caption ────────────────────────────────────── */
.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(12,31,63,0.80) 0%, transparent 100%);
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-image-caption svg { color: var(--gold-light); flex-shrink: 0; }

/* ── Process step title (light section background) ─────────── */
.process-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

/* Override: process section is light bg → text must be dark */
.section-light .process-step h3,
.section-light .process-step p {
  color: var(--text-dark);
}
.section-light .process-step p {
  color: var(--text-muted);
}
.section-light .process-step-number {
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(12,31,63,0.22);
}

/* ── Geschäftskunden highlight grid ────────────────────────── */
.biz-highlight-grid {
  position: relative;
  z-index: 1;
}
.biz-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* ── Location card (Standort section) ─────────────────────── */
/* Override the generic .location-card for this specific use */
.section-white .location-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

/* ── CTA section centered block ────────────────────────────── */
.cta-centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── CTA contact links (replaces inline JS hover) ──────────── */
.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.cta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.60);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.cta-contact-link:hover { color: var(--gold-light); }
.cta-contact-link svg   { color: inherit; flex-shrink: 0; }

/* ── Sticky Mobile CTA ─────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px 16px;
    background: rgba(12,31,63,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(184,147,58,0.25);
    z-index: 990;
    justify-content: center;
  }

  .sticky-mobile-cta .btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }

  /* Compensate sticky bar height in footer area */
  .footer { padding-bottom: calc(var(--space-xl) + 72px); }
}

/* ── section-tag: decorative gold line before label ────────── */
.section-tag {
  position: relative;
  padding-left: 20px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* section-tag on dark background */
.section-navy .section-tag::before { background: var(--gold-light); }
.section-navy .section-tag { color: var(--gold-light); }

/* ── Value card: always-visible top accent ─────────────────── */
.value-card::before { opacity: 0.35; }  /* visible even without hover */

/* ── Card items (geschaeftskunden / karriere) ──────────────── */
.card-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition);
}
.card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-item-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-item-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.card-item h3 { font-size: 1.125rem; margin-bottom: var(--space-sm); }
.card-item p  { font-size: 0.9375rem; margin-bottom: 0; color: var(--text-muted); }

/* ── Benefits list (geschaeftskunden / karriere) ───────────── */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.benefit-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.benefit-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.benefit-item h4 {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 4px;
  letter-spacing: 0;
}
.benefit-item p {
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--text-muted);
}
.content-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-visual-placeholder {
  width: 100%;
  max-width: 360px;
  padding: var(--space-3xl);
  background: var(--gold-pale);
  border-radius: var(--radius-2xl);
  color: var(--gold);
}
.content-visual-placeholder svg {
  width: 100%;
  height: auto;
}

/* ── Page hero tag (bigger for geschaeftskunden hero) ──────── */
.page-hero .section-tag {
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
}
.page-hero .section-tag::before {
  background: var(--gold-light);
}

/* ── Responsive fixes for new classes ─────────────────────── */
@media (max-width: 1024px) {
  .biz-highlight-inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .section-white .location-card {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .hero-image-caption { font-size: 0.75rem; }

  .cta-contact-row {
    flex-direction: column;
    gap: var(--space-md);
  }

  .section-white .location-card {
    padding: var(--space-xl);
  }
}

/* ============================================================
   KUNDENKERN – DNA-Veredelung v5.2
   ============================================================ */

/* ── Hero: Highlight italic gold – emotionaler ─────────────── */
.highlight {
  color: var(--gold-light);
  font-style: italic;
}

/* ── Team cards: Persönlichere Karten-Wirkung ──────────────── */
/* Links linksausgerichtet, role-tag prominenter */
.team-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

/* ── Team quote box: etwas offener / weniger corporate ─────── */
.team-quote-box {
  border-left-color: var(--gold-light);
}
.team-quote-box h3 {
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
}

/* ── Trust cards: linksausgerichtet für mehr Nähe ───────────── */
@media (min-width: 769px) {
  .trust-card { text-align: left; }
  .trust-card-icon { margin: 0 0 var(--space-lg) 0; }
}

/* ── Process step: sanftere Verbindungslinie ────────────────── */
.process-grid::before {
  opacity: 0.45;
}

/* ── Standort-Karte: etwas wärmer ───────────────────────────── */
.section-white .location-card {
  background: var(--gold-pale);
  border-color: rgba(184,147,58,0.20);
}

/* ── Footer brand: smaller, ehrlicher ───────────────────────── */
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.60);
}


/* ════════════════════════════════════════════════════════════════════
   KUNDENKERN v6.0 — WOW LAYER
   Palette:   Anthrazit · Mint/Teal · Weiß · Grün · Roter Akzent
   Features:  Animated Shapes · Parallax · Magnetic Buttons ·
              Floating Cards · Premium Hover · Scroll Progress ·
              Dynamic Team Cards · Section Decorators
   ════════════════════════════════════════════════════════════════════ */

/* ── 1. New Palette Override ───────────────────────────────────────── */
:root {
  /* Core palette */
  --navy:          #0D1117;
  --navy-mid:      #161B26;
  --navy-light:    #1E2638;
  --navy-glass:    rgba(13,17,23,0.85);

  /* Mint / Teal (replaces Gold as primary accent) */
  --gold:          #00C4A1;
  --gold-dark:     #00A287;
  --gold-light:    #2DD4BF;
  --gold-pale:     #E0FAF7;
  --gold-glow:     rgba(0,196,161,0.20);

  /* Surface colors */
  --cream:         #F8FAFB;
  --cream-dark:    #EDF2F7;
  --white:         #FFFFFF;

  /* Text */
  --text-dark:     #0D1117;
  --text-body:     #2B3350;
  --text-muted:    #64748B;
  --text-light:    rgba(255,255,255,0.90);

  /* Borders */
  --border:        #E2E8F0;
  --border-light:  rgba(226,232,240,0.60);

  /* New accent colors */
  --accent-red:    #EF4444;
  --accent-red-bg: rgba(239,68,68,0.08);
  --accent-green:  #10B981;

  /* Shadows */
  --shadow-xs:     0 1px 3px rgba(13,17,23,0.08);
  --shadow-sm:     0 4px 12px rgba(13,17,23,0.10);
  --shadow-md:     0 8px 28px rgba(13,17,23,0.14);
  --shadow-lg:     0 16px 56px rgba(13,17,23,0.20);
  --shadow-gold:   0 4px 24px rgba(0,196,161,0.28);
  --shadow-gold-lg:0 8px 48px rgba(0,196,161,0.40);

  /* Legacy compatibility */
  --mint:          var(--gold);
  --mint-dark:     var(--gold-dark);
  --mint-light:    var(--gold-pale);
  --mint-glow:     var(--gold-glow);
  --flieder:       var(--navy-mid);
  --anthrazit:     var(--navy);
  --hellgrau:      var(--cream);
}

/* ── 2. Scroll Progress Bar ────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent-green) 60%, var(--gold-light) 100%);
  z-index: 9999;
  transition: width 0.05s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 12px rgba(0,196,161,0.60);
}

/* ── 3. Loader Enhancement ─────────────────────────────────────────── */
.loader-bar {
  background: linear-gradient(90deg, var(--gold), var(--accent-green), var(--gold-light));
  background-size: 200% 100%;
  animation: loaderShimmer 1.2s ease-in-out infinite, loaderFill 1.8s ease-out forwards;
}
@keyframes loaderShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── 4. Animated Hero Background Shapes ────────────────────────────── */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.14;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: shapeFloat1 18s ease-in-out infinite;
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: shapeFloat2 22s ease-in-out infinite;
}
.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #6366F1 0%, transparent 70%);
  top: 40%;
  left: 30%;
  opacity: 0.08;
  animation: shapeFloat3 28s ease-in-out infinite;
}
@keyframes shapeFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-40px, 60px) scale(1.08); }
  66%       { transform: translate(50px, -30px) scale(0.95); }
}
@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(60px, -40px) scale(1.12); }
  70%       { transform: translate(-30px, 50px) scale(0.92); }
}
@keyframes shapeFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(80px, -60px) scale(1.20); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-shape { animation: none; }
}

/* ── 5. Hero "cinematic" grid — children above shapes ──────────────── */
.hero > .hero-grid {
  position: relative;
  z-index: 1;
}
.hero > .hero-badge {
  position: relative;
  z-index: 1;
}
.hero > .hero-scroll {
  position: relative;
  z-index: 1;
}

/* ── 6. Hero Floating Stat Cards ────────────────────────────────────── */
.hero-float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.90);
  animation: floatCard 5s ease-in-out infinite;
  box-shadow: 0 4px 24px rgba(0,0,0,0.20);
  white-space: nowrap;
}
.hero-float-card .float-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--accent-green));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hero-float-card .float-label {
  font-weight: 600;
  color: #fff;
}
.hero-float-card .float-sub {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.55);
  display: block;
}
.hero-float-card-1 {
  right: 20px;
  top: 22%;
  animation-delay: 0s;
}
.hero-float-card-2 {
  right: 60px;
  bottom: 24%;
  animation-delay: 1.5s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float-card { animation: none; }
}
@media (max-width: 1024px) {
  .hero-float-cards { display: none; }
}

/* ── 7. Gradient Text ───────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--accent-green) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent-red {
  color: var(--accent-red);
}

/* ── 8. Section Decorator Numbers ──────────────────────────────────── */
.section-decorator {
  position: relative;
  overflow: visible;
}
.section-decorator::after {
  content: attr(data-num);
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: var(--font-heading);
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
}
.section-cream .section-decorator::after,
.section-white .section-decorator::after,
.section-light .section-decorator::after {
  -webkit-text-stroke: 1px rgba(13,17,23,0.05);
}

/* ── 9. Magnetic Buttons ────────────────────────────────────────────── */
.btn-magnetic {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s ease;
  will-change: transform;
}
.btn-magnetic:hover {
  box-shadow: var(--shadow-gold-lg);
}

/* Updated primary button color to match new palette */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-green) 100%);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-color: transparent;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

/* ── 10. Value Cards — Floating + Enhanced Hover ────────────────────── */
.value-card {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  will-change: transform;
}
.value-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 64px rgba(0,196,161,0.16), 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(0,196,161,0.35);
}
.value-card-icon {
  background: linear-gradient(135deg, var(--gold-glow), rgba(16,185,129,0.15));
  border: 1px solid rgba(0,196,161,0.25);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s;
}
.value-card:hover .value-card-icon {
  transform: scale(1.12) rotate(6deg);
  background: linear-gradient(135deg, var(--gold-glow), rgba(16,185,129,0.25));
}

/* ── 11. Team Cards — Dynamic Hover ─────────────────────────────────── */
.team-card {
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.45s ease;
  will-change: transform;
  cursor: default;
}
.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 72px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,196,161,0.25);
}
.team-card-img {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.team-card:hover .team-card-img img {
  transform: scale(1.06);
}
.team-card-body {
  position: relative;
}
/* Mint line that slides in on hover */
.team-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.team-card:hover::before {
  transform: scaleX(1);
}

/* ── 12. Service Cards — Premium Hover ──────────────────────────────── */
.service-card {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease;
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  overflow: hidden;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

/* ── 13. Process Steps — Animated Connector ─────────────────────────── */
.process-step {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.process-step:hover {
  transform: translateY(-5px);
}
.process-step-number {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-green) 100%);
  color: var(--navy);
  font-weight: 700;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease;
}
.process-step:hover .process-step-number {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(0,196,161,0.45);
}

/* ── 14. Nav Enhancement ────────────────────────────────────────────── */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent-green));
  transition: left 0.3s ease, right 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  left: 0;
  right: 0;
}

/* ── 15. Header Scrolled State ──────────────────────────────────────── */
.header-scrolled {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-scrolled .nav-link {
  color: rgba(255,255,255,0.85);
}

/* ── 16. Trust Cards — Slide-In Hover ──────────────────────────────── */
.trust-card {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease,
              border-color 0.3s;
}
.trust-card:hover {
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--gold), var(--shadow-md);
  border-color: rgba(0,196,161,0.40);
}

/* ── 17. CTA Section — Animated Background ──────────────────────────── */
.section-navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0A1628 100%);
  position: relative;
  overflow: hidden;
}
.section-navy::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,196,161,0.08) 0%, transparent 60%);
  top: -300px;
  right: -200px;
  pointer-events: none;
  animation: sectionGlow 12s ease-in-out infinite alternate;
}
.section-navy::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 60%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
  animation: sectionGlow 16s ease-in-out infinite alternate-reverse;
}
@keyframes sectionGlow {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -40px) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .section-navy::before,
  .section-navy::after { animation: none; }
}
/* Children above pseudo-elements */
.section-navy > * {
  position: relative;
  z-index: 1;
}

/* ── 18. Staggered Reveal Enhancement ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay helpers */
.stagger-1  { transition-delay: 0.05s; }
.stagger-2  { transition-delay: 0.12s; }
.stagger-3  { transition-delay: 0.19s; }
.stagger-4  { transition-delay: 0.26s; }
.stagger-5  { transition-delay: 0.33s; }

/* ── 19. Section Tag — Pulse Dot ────────────────────────────────────── */
.section-tag::before {
  background: linear-gradient(90deg, var(--gold), var(--accent-green));
  animation: tagPulse 3s ease-in-out infinite;
  width: 14px;
}
@keyframes tagPulse {
  0%, 100% { opacity: 0.6; width: 10px; }
  50%       { opacity: 1;   width: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .section-tag::before { animation: none; }
}

/* ── 20. Hero Eyebrow Dot — Pulse ───────────────────────────────────── */
.hero-eyebrow-dot {
  background: var(--accent-red);
  animation: dotPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  60%  { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-dot { animation: none; }
}

/* ── 21. Cursor Glow (dark sections) ────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,161,0.07) 0%, transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  z-index: 0;
  mix-blend-mode: screen;
}

/* ── 22. Scroll-to-section animation for hero ───────────────────────── */
.hero-scroll-indicator {
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(8px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-indicator { animation: none; }
}

/* ── 23. Footer — enhanced ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-nav a {
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.footer-nav a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

/* ── 24. Highlight — Gradient version ──────────────────────────────── */
.highlight {
  background: linear-gradient(120deg, var(--gold-light), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ── 25. Nav CTA button — mint accent ───────────────────────────────── */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--accent-green));
  color: var(--navy) !important;
  font-weight: 700;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ── 26. Mobile CTA — gradient ───────────────────────────────────────── */
.sticky-mobile-cta .btn {
  background: linear-gradient(135deg, var(--gold), var(--accent-green));
  color: var(--navy);
  font-weight: 700;
}

/* ── 27. Page Transition Fade ───────────────────────────────────────── */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
main, .hero {
  animation: pageFadeIn 0.6s ease-out forwards;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.45s ease;
  will-change: transform;
  cursor: default;
  height: 100%;
  min-height: 580px;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(184,147,58,0.15);
}

.team-card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.team-card-
/* ── Logo Tablet ─────────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  .logo-image { width: clamp(150px, 16vw, 180px); }
}

/* ── .brand (Legacy-Klassen Kompatibilität) ─────────────── */
.brand img,
.site-logo img,
.navbar-logo img,
.header-logo img {
  width: clamp(150px, 12vw, 220px);
  height: auto;
  display: block;
}
.site-header,
.header,
.navbar {
  min-height: 76px;
}

/* ── Logo scrolled ──────────────────────────────────────── */
.header.scrolled .logo-image, .site-header.scrolled .logo-image { width: clamp(130px, 10vw, 190px); }

/* ── Team-Hierarchie Ebenen ─────────────────────────────── */

/* Section label above leadership grid */
.team-section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Leadership row: centered flex, same card width as sales */
.team-grid-leadership {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.team-grid-leadership .team-card {
  flex: 1 1 280px;
  max-width: calc(33.333% - var(--space-xl));
}

/* Sales grid: 3 columns, last row centered via flexbox trick */
.team-grid-sales {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}
.team-grid-sales .team-card {
  flex: 1 1 280px;
  max-width: calc(33.333% - var(--space-xl));
}

/* Divider between sections */
.team-level-divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: var(--space-3xl) 0 var(--space-2xl);
}
.team-level-divider::before,
.team-level-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,147,58,0.40), transparent);
}
.team-level-divider span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Responsive: tablet */
@media (max-width: 1024px) {
  .team-grid-leadership .team-card,
  .team-grid-sales .team-card {
    max-width: calc(50% - var(--space-xl));
  }
}

/* Responsive: mobile */
@media (max-width: 640px) {
  .team-grid-leadership .team-card,
  .team-grid-sales .team-card {
    flex: 1 1 100%;
    max-width: 380px;
  }
}
