/* ============================================
   DESIGN SYSTEM – Slobo Finanz
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  /* Colors – Petrol/Kupfer Palette (abgeleitet aus alter Markenidentität) */
  /* Dunkles Petrol für große Flächen (Hero, Nav, Footer, Kontakt) */
  --navy: #0C2A30;
  --navy-light: #1D4F57;
  --navy-dark: #061A1E;
  --navy-rgb: 12, 42, 48;
  /* Kupfer / Orange-Braun als Akzentfarbe */
  --gold: #B97650;
  --gold-light: #D4915F;
  --gold-dark: #9A5F3D;
  --gold-rgb: 185, 118, 80;
  /* Helles Petrol als sekundärer Akzent */
  --teal: #3BA89A;
  --teal-light: #66B1BD;
  --teal-rgb: 59, 168, 154;
  --white: #FFFFFF;
  --off-white: #F5F1EC;
  --gray-100: #EDE9E4;
  --gray-200: #E6E5E3;
  --gray-300: #D6D8D7;
  --gray-400: #C6CBCB;
  --gray-500: #98A8AA;
  --gray-600: #6B7280;
  --gray-700: #4B5563;
  --gray-800: #343A40;
  --gray-900: #111827;
  --text-dark: #111827;
  --text-light: #4B5563;
  --text-on-dark: #E6F2F4;
  --danger: #EF4444;
  --success: #10B981;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
  --fs-sm: clamp(0.85rem, 0.8rem + 0.3vw, 0.95rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --fs-md: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  --fs-lg: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fs-2xl: clamp(2rem, 1.6rem + 1.8vw, 2.75rem);
  --fs-3xl: clamp(2.5rem, 2rem + 2.5vw, 3.75rem);
  --fs-4xl: clamp(3rem, 2.2rem + 3.5vw, 4.5rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(var(--gold-rgb), 0.3);
  --shadow-navy: 0 4px 20px rgba(var(--navy-rgb), 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-in-out);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --nav-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Utility --- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-xl); }
.container--narrow { max-width: var(--container-narrow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }

/* --- Section Base --- */
.section { padding: var(--space-5xl) 0; position: relative; }
.section--dark { background: var(--navy); color: var(--text-on-dark); }
.section--gray { background: var(--gray-100); }
.section__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: block;
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}
.section__subtitle {
  font-size: var(--fs-md);
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.6;
}
.section--dark .section__subtitle { color: var(--gray-400); }
.section__header { text-align: center; margin-bottom: var(--space-3xl); }
.section__header .section__subtitle { margin: 0 auto; }

/* --- Legal Pages --- */
.legal-content {
  color: var(--text-light);
  font-size: var(--fs-base);
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: 1.25;
  color: var(--navy);
  margin: var(--space-3xl) 0 var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(var(--navy-rgb), 0.12);
}
.legal-content h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-content p {
  margin-bottom: var(--space-md);
}
.legal-content strong {
  color: var(--text-dark);
  font-weight: 700;
}
.legal-content ul {
  list-style: disc;
  margin: 0 0 var(--space-xl) 1.25rem;
  padding-left: var(--space-sm);
}
.legal-content li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-xs);
}
.legal-content a {
  font-weight: 600;
  overflow-wrap: anywhere;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* Staggered children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children > *:nth-child(6) { transition-delay: 500ms; }
.stagger-children > *:nth-child(7) { transition-delay: 600ms; }
.stagger-children > *:nth-child(8) { transition-delay: 700ms; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}
.nav.scrolled {
  background: rgba(var(--navy-rgb), 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--white);
  z-index: 1001;
}
.nav__logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__link {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-sm);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__campaign {
  margin-left: var(--space-sm);
  padding-left: var(--space-md);
  color: rgba(255,255,255,0.8);
}
.nav__campaign::before {
  content: '';
  position: absolute;
  left: calc(var(--space-sm) * -1);
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%);
}
.nav__campaign:hover,
.nav__campaign.active {
  color: var(--white);
}
.nav__campaign::after {
  left: var(--space-md);
  right: auto;
  width: 0;
}
.nav__campaign:hover::after,
.nav__campaign.active::after {
  width: calc(100% - var(--space-md));
}
.nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.nav__cta::after { display: none; }

/* Mobile Menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-2xl);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: var(--fs-md); }
  .nav__campaign {
    margin-left: 0;
    padding-left: 0;
  }
  .nav__campaign::before {
    display: none;
  }
  .nav__cta { margin-top: var(--space-md); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(var(--gold-rgb), 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(var(--teal-rgb), 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(var(--gold-rgb), 0.04) 0%, transparent 50%);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s infinite linear;
}
.hero__particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.hero__particle:nth-child(2) { left: 30%; top: 60%; animation-delay: -3s; animation-duration: 22s; width: 3px; height: 3px; }
.hero__particle:nth-child(3) { left: 70%; top: 30%; animation-delay: -7s; animation-duration: 16s; width: 5px; height: 5px; opacity: 0.2; }
.hero__particle:nth-child(4) { left: 85%; top: 70%; animation-delay: -11s; animation-duration: 20s; }
.hero__particle:nth-child(5) { left: 50%; top: 80%; animation-delay: -5s; animation-duration: 24s; width: 3px; height: 3px; opacity: 0.15; }
.hero__particle:nth-child(6) { left: 20%; top: 85%; animation-delay: -9s; animation-duration: 19s; width: 6px; height: 6px; opacity: 0.1; }

@keyframes floatParticle {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 0.3; }
  50% { transform: translate(120px, -200px) scale(1.5); }
  90% { opacity: 0.3; }
  100% { transform: translate(250px, -400px) scale(1); opacity: 0; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content { max-width: 580px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 16px;
  background: rgba(var(--gold-rgb), 0.12);
  border: 1px solid rgba(var(--gold-rgb), 0.25);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: var(--space-xl);
  animation: fadeInDown 0.8s var(--ease-out) forwards;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s 0.2s var(--ease-out) both;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: var(--fs-md);
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  animation: fadeInUp 0.8s 0.4s var(--ease-out) both;
}
.hero__mobile-intro {
  display: none;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s var(--ease-out) both;
}
.hero__topic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: var(--space-2xl) 0 calc(var(--space-xl) * -1);
  color: var(--gray-400);
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.35;
  animation: fadeInUp 0.8s 0.72s var(--ease-out) both;
}
.hero__topic-link svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.hero__topic-link:hover {
  color: var(--gold-light);
}
.hero__topic-link:hover svg {
  transform: translateX(3px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.08);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-navy);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn svg { width: 18px; height: 18px; }

/* Hero Image Area */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s 0.5s var(--ease-out) both;
}
.hero__image-wrapper {
  position: relative;
  width: 380px;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(var(--gold-rgb), 0.2);
}
.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(var(--gold-rgb), 0.15), transparent 70%);
  z-index: -1;
  border-radius: 50%;
}
.hero__float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: floatCard 6s infinite ease-in-out;
}
.hero__float-card--top {
  top: 20px;
  right: -40px;
}
.hero__float-card--bottom {
  bottom: 40px;
  left: -50px;
  animation-delay: -3s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__float-icon {
  width: 40px;
  height: 40px;
  background: rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__float-icon svg { width: 20px; height: 20px; color: var(--gold); }
.hero__float-text { font-size: var(--fs-xs); color: var(--gray-300); font-weight: 500; }
.hero__float-value { font-size: var(--fs-sm); color: var(--white); font-weight: 700; }

/* Trust Bar */
.hero__trust {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.8s 0.8s var(--ease-out) both;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--gray-400);
}
.hero__trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__trust-icon svg { width: 16px; height: 16px; color: var(--gold); }

@media (max-width: 968px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__mobile-intro {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 100%;
    margin: 0 auto var(--space-2xl);
    padding: 10px 16px 10px 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    border-radius: var(--radius-full);
    box-shadow: 0 12px 34px rgba(0,0,0,0.16);
    animation: fadeInUp 0.8s 0.52s var(--ease-out) both;
  }
  .hero__mobile-intro img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 28%;
    border: 2px solid rgba(var(--gold-rgb), 0.55);
    flex-shrink: 0;
  }
  .hero__mobile-intro div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
  }
  .hero__mobile-intro strong {
    color: var(--white);
    font-size: var(--fs-sm);
    line-height: 1.25;
  }
  .hero__mobile-intro span {
    color: var(--gray-300);
    font-size: var(--fs-xs);
    line-height: 1.35;
  }
  .hero__topic-link { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { display: none; }
  .hero__trust { justify-content: center; flex-wrap: wrap; gap: var(--space-lg); }
}

@media (max-width: 520px) {
  .container {
    padding: 0 var(--space-lg);
  }
  .section {
    padding: var(--space-3xl) 0;
  }
  .section__header {
    margin-bottom: var(--space-2xl);
  }
  .section__label {
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
  }
  .section__title {
    font-size: clamp(1.75rem, 1.45rem + 1vw, 2.1rem);
    line-height: 1.18;
  }
  .section__subtitle {
    font-size: var(--fs-base);
    line-height: 1.65;
  }
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-3xl);
  }
  .hero:not(.avd-hero):not(.portal-hero) {
    min-height: 100svh;
    padding-bottom: calc(var(--space-4xl) + env(safe-area-inset-bottom));
  }
  .hero__particles {
    display: none;
  }
  .hero__title {
    font-size: clamp(2rem, 1.7rem + 1vw, 2.35rem);
    line-height: 1.16;
    margin-bottom: var(--space-xl);
  }
  .hero__desc {
    font-size: var(--fs-base);
    line-height: 1.78;
    margin-bottom: var(--space-xl);
  }
  .hero__mobile-intro {
    width: 100%;
    margin-bottom: var(--space-2xl);
    padding: 12px 18px 12px 12px;
    border-radius: var(--radius-lg);
  }
  .hero__mobile-intro img {
    width: 64px;
    height: 64px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-lg);
  }
  .hero__ctas .btn {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .hero__topic-link {
    width: auto;
    justify-content: center;
    margin: var(--space-lg) auto 0;
  }
  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
  }
  .hero__trust-item {
    width: 100%;
    color: var(--gray-300);
  }
  .hero__trust-icon {
    background: rgba(var(--gold-rgb), 0.16);
  }
  .trust {
    padding: var(--space-2xl) 0;
  }
  .service-card,
  .target-card,
  .contact__form {
    padding: var(--space-xl);
  }
  .approach__card {
    padding: var(--space-xl) var(--space-md);
  }
  .process__timeline {
    gap: var(--space-xl);
  }
  .faq__question {
    padding: var(--space-lg);
    gap: var(--space-md);
  }
  .faq__answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
  }
  .contact__detail {
    align-items: flex-start;
  }
  .footer {
    padding: var(--space-3xl) 0 var(--space-xl);
  }
  .cookie-banner {
    padding: var(--space-lg);
  }
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   TRUST / CREDENTIALS SECTION
   ============================================ */
.trust { background: var(--white); padding: var(--space-3xl) 0; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.trust__item {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}
.trust__item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.trust__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust__icon svg { width: 28px; height: 28px; color: var(--gold); }
.trust__label { font-weight: 600; font-size: var(--fs-sm); color: var(--text-dark); margin-bottom: 4px; }
.trust__desc { font-size: var(--fs-xs); color: var(--text-light); }

@media (max-width: 768px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}
@media (max-width: 480px) {
  .trust__grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { background: var(--gray-100); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.service-card {
  display: block;
  position: relative;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--gold-rgb), 0.2);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--gold); transition: color var(--transition-base); }
.service-card:hover .service-card__icon svg { color: var(--navy); }
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}
.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach { background: var(--white); }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.approach__card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}
.approach__number {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), rgba(var(--gold-rgb), 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-md);
}
.approach__card-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.approach__card-desc {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .approach__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}
@media (max-width: 480px) {
  .approach__grid { grid-template-columns: 1fr; }
}

/* ============================================
   TARGET GROUPS SECTION
   ============================================ */
.targets { background: var(--navy); color: var(--text-on-dark); }
.targets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.target-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.target-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.target-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(var(--gold-rgb), 0.3);
  transform: translateY(-4px);
}
.target-card:hover::after { opacity: 1; }
.target-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-lg);
  background: rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.target-card__icon svg { width: 28px; height: 28px; color: var(--gold); }
.target-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--white);
}
.target-card__desc {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.target-card__features { display: flex; flex-direction: column; gap: var(--space-sm); }
.target-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--gray-300);
}
.target-card__feature svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

@media (max-width: 768px) {
  .targets__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ============================================
   PROCESS / TIMELINE SECTION
   ============================================ */
.process { background: var(--white); }
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}
.process__step { text-align: center; position: relative; z-index: 1; }
.process__step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.process__step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(var(--gold-rgb), 0.2);
}
.process__step-title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.process__step-desc {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process__timeline { grid-template-columns: 1fr; gap: var(--space-2xl); max-width: 400px; margin: 0 auto; }
  .process__timeline::before { display: none; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { background: var(--gray-100); }
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq__item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  font-weight: 600;
  font-size: var(--fs-base);
  text-align: left;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.faq__question:hover { color: var(--gold-dark); }
.faq__chevron {
  width: 20px;
  height: 20px;
  color: var(--gray-500);
  transition: transform var(--transition-base), color var(--transition-fast);
  flex-shrink: 0;
}
.faq__item.active .faq__chevron { transform: rotate(180deg); color: var(--gold); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq__answer-inner {
  padding: 0 var(--space-xl) var(--space-xl);
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { background: var(--navy); color: var(--text-on-dark); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}
.contact__info-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.contact__info-desc {
  font-size: var(--fs-base);
  color: var(--gray-400);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}
.contact__details { display: flex; flex-direction: column; gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--gold-rgb), 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact__detail-label { font-size: var(--fs-xs); color: var(--gray-500); }
.contact__detail-value { font-weight: 600; color: var(--white); font-size: var(--fs-sm); }
.contact__detail-value a { transition: color var(--transition-fast); }
.contact__detail-value a:hover { color: var(--gold); }
.contact__social {
  display: flex;
  gap: var(--space-md);
}
.contact__social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.contact__social-link:hover {
  background: rgba(var(--gold-rgb), 0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.contact__social-link svg { width: 20px; height: 20px; color: var(--gray-400); transition: color var(--transition-fast); }
.contact__social-link:hover svg { color: var(--gold); }

/* Form */
.contact__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}
.form__group { margin-bottom: var(--space-lg); }
.form__label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: var(--fs-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  outline: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--gray-600); }
.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.04);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.form__consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: var(--space-sm);
}
.form__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
}
.form__consent-label {
  color: var(--gray-300);
  font-size: var(--fs-xs);
  line-height: 1.6;
}
.form__consent-label a {
  color: var(--gold);
  text-decoration: underline;
}
.form__submit { width: 100%; padding: 16px; font-size: var(--fs-base); }
.form__success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}
.form__success.show { display: block; }
.form__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: rgba(40, 167, 69, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__success-icon svg { width: 32px; height: 32px; color: var(--success); }
.form__success-title { font-size: var(--fs-lg); font-weight: 600; color: var(--white); margin-bottom: var(--space-xs); }
.form__success-desc { font-size: var(--fs-sm); color: var(--gray-400); }

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .form__row { grid-template-columns: 1fr; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
}
.cta-banner__desc {
  font-size: var(--fs-md);
  color: var(--navy-dark);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--gray-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-style: italic;
}
.footer__brand-desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: var(--space-md);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--gray-300);
}
.footer__contact a {
  color: var(--white);
  font-weight: 500;
}
.footer__contact a:hover {
  color: var(--gold);
}
.footer__heading {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
}
.footer__links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__link {
  font-size: var(--fs-sm);
  color: var(--gray-400);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer__link:hover { color: var(--gold); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-xl);
  font-size: var(--fs-xs);
  line-height: 1.6;
  width: 100%;
}
.footer__legal {
  margin-top: var(--space-xs);
  max-width: 100%;
}

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

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(var(--gold-rgb), 0.2);
  padding: var(--space-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
.cookie-banner__text {
  font-size: var(--fs-sm);
  color: var(--gray-300);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.cookie-banner__btn--accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
}
.cookie-banner__btn--accept:hover { background: var(--gold-light); }
.cookie-banner__btn--decline {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-banner__btn--decline:hover { border-color: var(--gray-400); color: var(--white); }

@media (max-width: 768px) {
  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg { width: 22px; height: 22px; }

/* ============================================
   BOOKING SECTION (CAL.COM)
   ============================================ */
.booking-section {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  min-height: 100vh;
}
.booking-widget {
  background: var(--navy-dark);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-sm);
  margin: 0 auto;
  max-width: 1100px;
  height: 700px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

@media (max-width: 768px) {
  .booking-widget {
    height: 850px;
    padding: 0;
    border-radius: var(--radius-lg);
  }
}

/* ============================================
   ALTERSVORSORGE-DEPOT LANDINGPAGE
   ============================================ */
.avd-hero {
  min-height: auto;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
}
.avd-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.avd-hero__text {
  color: var(--gray-300);
  font-size: var(--fs-base);
  max-width: 680px;
  margin: 0 0 var(--space-xl);
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.45s var(--ease-out) both;
}
.avd-hero__trust {
  margin-top: var(--space-xl);
}
.avd-hero__panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.avd-hero__panel-label {
  color: var(--gold);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.avd-hero__panel-value {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.avd-hero__panel p {
  color: var(--gray-300);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}
.avd-hero__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.avd-hero__mini-grid div {
  padding: var(--space-md);
  background: rgba(var(--gold-rgb), 0.12);
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  border-radius: var(--radius-md);
}
.avd-hero__mini-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: 1.15;
  margin-bottom: 4px;
}
.avd-hero__mini-grid span {
  display: block;
  color: var(--gray-300);
  font-size: var(--fs-xs);
  line-height: 1.45;
}
.avd-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.avd-info-card,
.avd-example,
.avd-option,
.avd-note,
.avd-legal-note {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.avd-info-card {
  padding: var(--space-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.avd-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--gold-rgb), 0.35);
  box-shadow: var(--shadow-md);
}
.avd-info-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  font-weight: 800;
  font-size: var(--fs-xs);
  margin-bottom: var(--space-md);
}
.avd-info-card h3,
.avd-note h3,
.avd-option h3 {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  line-height: 1.25;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}
.avd-info-card p,
.avd-example p,
.avd-note p,
.avd-option p {
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.65;
}
.avd-explain {
  background: var(--white);
}
.avd-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: var(--space-4xl);
  align-items: center;
}
.avd-split--reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}
.avd-split p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.section--dark .avd-split p {
  color: var(--gray-300);
}
.avd-note {
  padding: var(--space-2xl);
  border-color: rgba(var(--gold-rgb), 0.22);
  position: relative;
  overflow: hidden;
}
.avd-note::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--gold), var(--teal));
}
.avd-note--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.avd-note--dark h3 {
  color: var(--white);
}
.avd-note--dark p {
  color: var(--gray-300);
}
.avd-table-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.avd-table {
  width: 100%;
  border-collapse: collapse;
}
.avd-table th {
  background: var(--navy);
  color: var(--white);
  font-size: var(--fs-sm);
  text-align: left;
  padding: var(--space-lg);
}
.avd-table td {
  padding: var(--space-lg);
  border-top: 1px solid var(--gray-200);
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.55;
  vertical-align: top;
}
.avd-table td:first-child {
  color: var(--text-dark);
  font-weight: 700;
}
.avd-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.avd-example {
  padding: var(--space-xl);
}
.avd-example strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}
.avd-small-note {
  color: var(--text-light);
  font-size: var(--fs-sm);
  margin-top: var(--space-lg);
  text-align: center;
}
.avd-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.avd-option {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  padding: var(--space-xl);
}
.avd-option h3 {
  color: var(--white);
}
.avd-option p {
  color: var(--gray-300);
}
.avd-questions {
  background: var(--white);
}
.avd-questions .approach__grid {
  grid-template-columns: repeat(3, 1fr);
}
.avd-sources {
  background: var(--off-white);
}
.avd-legal-note {
  padding: var(--space-2xl);
}
.avd-legal-note h2 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}
.avd-legal-note p,
.avd-legal-note li {
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.avd-legal-note ul {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.avd-legal-note a {
  color: var(--teal);
  font-weight: 600;
}
.avd-legal-note a:hover {
  color: var(--gold-dark);
}

@media (max-width: 968px) {
  .avd-hero__inner,
  .avd-split,
  .avd-split--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .avd-card-grid,
  .avd-example-grid,
  .avd-option-grid,
  .avd-questions .approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .avd-hero {
    padding-top: calc(var(--nav-height) + var(--space-3xl));
  }
  .avd-hero .hero__title {
    font-size: clamp(2rem, 1.65rem + 1vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: var(--space-md);
  }
  .avd-hero .hero__desc {
    font-size: var(--fs-base);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
  }
  .avd-hero__text {
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
  }
  .avd-hero__panel,
  .avd-note,
  .avd-legal-note {
    padding: var(--space-xl);
  }
  .avd-hero__mini-grid,
  .avd-card-grid,
  .avd-example-grid,
  .avd-option-grid,
  .avd-questions .approach__grid {
    grid-template-columns: 1fr;
  }
  .avd-table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
  }
  .avd-table,
  .avd-table thead,
  .avd-table tbody,
  .avd-table tr,
  .avd-table th,
  .avd-table td {
    display: block;
    width: 100%;
  }
  .avd-table thead {
    display: none;
  }
  .avd-table tr {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-md);
    overflow: hidden;
  }
  .avd-table td {
    border-top: none;
    padding: var(--space-md) var(--space-lg);
  }
  .avd-table td::before {
    content: attr(data-label);
    display: block;
    color: var(--gold-dark);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
.avd-table td + td {
    border-top: 1px solid var(--gray-200);
  }
}

/* ============================================
   KUNDENPORTAL LANDINGPAGE
   ============================================ */
.portal-hero {
  min-height: auto;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
}
.portal-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.portal-hero__trust {
  margin-top: var(--space-xl);
}
.portal-preview {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.portal-preview__toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-xl);
}
.portal-preview__toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
}
.portal-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.portal-preview__header span,
.portal-preview__card span {
  display: block;
  color: var(--gray-400);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.portal-preview__header strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: 1.15;
}
.portal-preview__mark {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
}
.portal-preview__cards {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.portal-preview__card {
  min-height: 112px;
  padding: var(--space-lg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
}
.portal-preview__card--wide {
  grid-row: span 2;
}
.portal-preview__card strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1;
}
.portal-preview__list {
  display: grid;
  gap: var(--space-sm);
}
.portal-preview__list div {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: var(--space-sm);
  align-items: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(6,26,30,0.56);
}
.portal-preview__list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}
.portal-preview__list p {
  color: var(--gray-200);
  font-size: var(--fs-sm);
  line-height: 1.3;
}
.portal-preview__list strong {
  color: var(--gold-light);
  font-size: var(--fs-xs);
  text-transform: uppercase;
}
.portal-steps {
  background: var(--navy-dark);
  color: var(--text-on-dark);
  overflow: hidden;
}
.portal-steps .section__subtitle {
  color: var(--gray-400);
}
.portal-timeline {
  position: relative;
  display: grid;
  gap: var(--space-3xl);
}
.portal-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.24);
  transform: translateX(-50%);
}
.portal-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.7fr);
  gap: var(--space-2xl);
  align-items: center;
  min-height: 230px;
  padding: var(--space-2xl);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.02);
  z-index: 1;
}
.portal-step:last-child {
  grid-template-columns: 1fr;
}
.portal-step__number {
  position: absolute;
  top: -34px;
  left: 50%;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-lg);
  background: #D8FFD0;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  transform: translateX(-50%);
  z-index: 2;
}
.portal-step__eyebrow {
  display: block;
  color: var(--gold-light);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.portal-step h3 {
  color: #D8FFD0;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.12;
  margin-bottom: var(--space-lg);
}
.portal-step p {
  color: var(--gray-300);
  max-width: 540px;
  line-height: 1.65;
}
.portal-step__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.portal-device {
  justify-self: center;
  width: min(100%, 280px);
  aspect-ratio: 0.72;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(150deg, var(--gray-100), var(--gray-400));
  box-shadow: 0 18px 45px rgba(0,0,0,0.32);
  transform: rotate(8deg);
}
.portal-device__screen {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #EAF8F8, #FFFFFF);
  padding: var(--space-lg);
  display: grid;
  gap: var(--space-md);
}
.portal-device__screen div {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-light), var(--teal));
}
.portal-device__screen div:nth-child(2) {
  background: var(--gray-200);
}
.portal-device__screen div:nth-child(3) {
  background: rgba(var(--gold-rgb), 0.45);
}
.portal-form-card {
  justify-self: center;
  width: min(100%, 420px);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-xl);
}
.portal-form-card__title {
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-lg);
}
.portal-form-card span {
  display: block;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  margin-bottom: var(--space-md);
}
.portal-form-card__button {
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--teal-light);
  margin-top: var(--space-lg);
}
.portal-features {
  background: var(--white);
}
.portal-cta {
  background: linear-gradient(135deg, var(--gold), var(--teal));
}
.portal-disclaimer {
  background: var(--navy);
  color: var(--gray-400);
  padding: var(--space-lg) 0;
}
.portal-disclaimer p {
  max-width: 920px;
  margin: 0 auto;
  font-size: var(--fs-xs);
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 1160px) and (min-width: 769px) {
  .nav__links {
    gap: var(--space-md);
  }
  .nav__link,
  .nav__cta {
    font-size: var(--fs-xs);
  }
  .nav__cta {
    padding: 9px 18px;
  }
}

@media (max-width: 968px) {
  .portal-hero__inner,
  .portal-step,
  .portal-step:last-child {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .portal-timeline::before {
    left: 34px;
  }
  .portal-step__number {
    left: 34px;
    transform: none;
  }
  .portal-step {
    padding-top: var(--space-3xl);
  }
}

@media (max-width: 640px) {
  .portal-hero {
    padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-3xl);
  }
  .portal-hero .hero__title {
    font-size: clamp(1.9rem, 1.55rem + 1vw, 2.2rem);
    line-height: 1.12;
  }
  .portal-hero .hero__desc {
    font-size: var(--fs-base);
    line-height: 1.7;
  }
  .portal-hero .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .portal-hero .hero__ctas .btn {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .portal-hero__trust {
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--space-md);
  }
  .portal-hero__trust .hero__trust-item {
    width: 100%;
  }
  .portal-timeline {
    gap: var(--space-xl);
  }
  .portal-timeline::before {
    display: none;
  }
  .portal-preview,
  .portal-step,
  .portal-form-card {
    padding: var(--space-xl);
  }
  .portal-step,
  .portal-step:last-child {
    gap: var(--space-lg);
  }
  .portal-step__number {
    position: relative;
    top: auto;
    left: auto;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    font-size: var(--fs-lg);
    transform: none;
    justify-self: start;
  }
  .portal-preview__cards {
    grid-template-columns: 1fr;
  }
  .portal-preview__card--wide {
    grid-row: auto;
  }
  .portal-step h3 {
    font-size: var(--fs-xl);
  }
  .portal-step__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .portal-device {
    width: min(78vw, 250px);
    transform: rotate(3deg);
  }
}
