/* ─── FONTS ──────────────────────────────────────────────────────── */
@font-face { font-family: 'Gelder Sans'; src: url('../fonts/GelderSans-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gelder Sans'; src: url('../fonts/GelderSans-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Gelder Sans'; src: url('../fonts/GelderSans-Book.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gelder Sans'; src: url('../fonts/GelderSans-DemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gelder Sans'; src: url('../fonts/GelderSans-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Gelder Sans'; src: url('../fonts/GelderSans-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }

/* ─── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ─── VARIABLES — Modern Clear Brand Tokens (R1) ─────────────────── */
:root {
  /* Brand palette — the only allowed colors */
  --mc-dark-blue:    #09214E;
  --mc-light-blue:   #DCEBFF;
  --mc-white:        #FFFFFF;
  --mc-white-tint:   #F9FAFE;
  --mc-accent-blue:  #3358FF;
  --mc-cool-gray-2:  #E7ECF2;

  /* Backwards-compatible aliases (channel old names → brand tokens) */
  --dark-blue:  var(--mc-dark-blue);
  --light-blue: var(--mc-light-blue);
  --white:      var(--mc-white);
  --accent:     var(--mc-accent-blue);
  --accent-h:   var(--mc-accent-blue);
  --gray-1:     var(--mc-white-tint);
  --gray-2:     var(--mc-cool-gray-2);
  --text:       var(--mc-dark-blue);
  --text-muted: rgba(9,33,78,0.78);

  /* Typography (R5) */
  --font-d: 'Gelder Sans', 'Be Vietnam Pro', Arial, sans-serif;
  --font-b: 'Gelder Sans', 'Be Vietnam Pro', Arial, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --py: clamp(72px, 9vw, 112px);
  --px: clamp(20px, 5vw, 60px);
  --r:      30px;
  --r-sm:   20px;
  --r-full: 9999px;

  /* Shadows — derived from brand dark-blue only */
  --sh-sm: 0 2px 8px rgba(9,33,78,0.06);
  --sh-md: 0 4px 20px rgba(9,33,78,0.09);
  --sh-lg: 0 12px 40px rgba(9,33,78,0.13);
  --sh-xl: 0 24px 64px rgba(9,33,78,0.16);

  /* Clear Layer (R11) */
  --glass-bg:           rgba(255,255,255,0.78);
  --glass-bg-light:     rgba(255,255,255,0.78);
  --glass-bg-mid:       rgba(255,255,255,0.72);
  --glass-bg-on-dark:   rgba(255,255,255,0.12);
  --glass-border:       rgba(255,255,255,0.50);
  --glass-border-strong:rgba(255,255,255,0.55);
  --glass-blur:         blur(14px);
  --glass-blur-sm:      blur(10px);
  --sh-glass: 0 8px 32px rgba(9,33,78,0.07), inset 0 1px 0 rgba(255,255,255,0.7);

  /* Subtle accent glows */
  --glow-accent:        0 0 24px rgba(51,88,255,0.10);
  --glow-accent-hover:  0 0 32px rgba(51,88,255,0.14);
  --sh-glow:            0 4px 16px rgba(51,88,255,0.08);

  /* Allowed gradients only (R4) */
  --gradient-primary:   linear-gradient(135deg, var(--mc-light-blue), var(--mc-white));
  --gradient-secondary: linear-gradient(135deg, var(--mc-dark-blue), var(--mc-accent-blue));
  --gradient-accent:    var(--mc-accent-blue);
}

/* ─── KEYFRAMES ──────────────────────────────────────────────────── */
@keyframes floatA {
  0%,100% { transform: translateY(0) scale(1) rotate(0deg); }
  33%     { transform: translateY(-36px) scale(1.06) rotate(4deg); }
  66%     { transform: translateY(-18px) scale(0.97) rotate(-2deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
  50%     { transform: translateY(-26px) rotate(14deg) scale(1.09); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0) scale(1) rotate(0deg); }
  40%     { transform: translateY(-30px) scale(1.07) rotate(-6deg); }
  80%     { transform: translateY(-12px) scale(0.95) rotate(4deg); }
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%     { border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%; }
  50%     { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  75%     { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(300%) skewX(-20deg); }
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 12px rgba(9,33,78,0.12); }
  50%     { box-shadow: 0 0 28px rgba(9,33,78,0.22); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* ─── LAYOUT ─────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); width: 100%; }
.section { padding: var(--py) 0; position: relative; overflow: hidden; }
.section--light {
  background: var(--gradient-primary); /* R4: light_blue → white only */
}
.section--white { background: var(--white); }
.section--gray  { background: var(--gray-1); }
.section--dark  {
  background: var(--mc-dark-blue); /* R1: solid brand dark-blue, no off-palette stops */
  color: var(--white);
}

body {
  font-family: var(--font-b);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: var(--font-b); cursor: pointer; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 800; /* R5: ExtraBold for headlines (italic removed per R9) */
  line-height: 1.15; /* R7: 1.10-1.20 range */
  letter-spacing: -0.3px;
  color: var(--dark-blue); margin-bottom: 14px;
}
.section--dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65; color: var(--text-muted); max-width: 580px;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.62); }

.section-header { margin-bottom: clamp(48px, 6vw, 72px); }
.section-header--center { text-align: left; }
.section-header--center .section-subtitle { margin: 0; }

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-b); font-size: 15px; font-weight: 600;
  border-radius: var(--r-full); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  cursor: pointer; letter-spacing: .1px;
  position: relative; overflow: hidden;
}
.btn--lg { padding: 17px 38px; font-size: 16px; }

/* Shimmer sweep on primary buttons */
.btn--primary::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-100%) skewX(-20deg);
  transition: none; pointer-events: none;
}
.btn--primary:hover::before { animation: shimmer 0.65s ease forwards; }

.btn--primary {
  background: var(--mc-accent-blue); /* R13: solid accent, no gradient */
  color: var(--white); border-color: transparent;
  box-shadow: 0 4px 14px rgba(51,88,255,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover {
  box-shadow: 0 10px 32px rgba(51,88,255,0.48), 0 2px 8px rgba(51,88,255,0.22), inset 0 1px 0 rgba(255,255,255,0.2);
  text-decoration: none; color: var(--white);
  transform: translateY(-3px) scale(1.01);
}
.btn--primary:active { transform: scale(.97); box-shadow: 0 4px 14px rgba(51,88,255,0.3); }

.btn--ghost {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--white); border-color: rgba(255,255,255,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.20); border-color: rgba(255,255,255,0.55);
  color: var(--white); text-decoration: none; transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--outline {
  background: rgba(51,88,255,0.05);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--accent); border-color: rgba(51,88,255,0.28);
}
.btn--outline:hover {
  background: rgba(51,88,255,0.10); border-color: var(--accent);
  text-decoration: none; color: var(--accent-h); transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(51,88,255,0.18);
}

.btn--gray {
  background: var(--glass-bg-light);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--dark-blue); border-color: rgba(9,33,78,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.btn--gray:hover {
  background: rgba(255,255,255,0.92); text-decoration: none;
  color: var(--dark-blue); transform: translateY(-2px); box-shadow: var(--sh-sm);
}

/* ─── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: box-shadow .4s ease, background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
}
.nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(9,33,78,0.10) 35%, rgba(9,33,78,0.05) 65%, transparent 100%);
  pointer-events: none;
  opacity: 0; transition: opacity .4s ease;
}
.nav.scrolled::after { opacity: 1; }
.nav.scrolled {
  background: rgba(255,255,255,0.52);
  backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-color: rgba(255,255,255,0.32);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6),
    0 4px 24px rgba(9,33,78,0.06),
    0 8px 48px rgba(9,33,78,0.04);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; height: 88px;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 72px; width: auto; display: block; }

/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0 clamp(72px, 8vw, 108px);
  background: var(--gradient-primary); /* R4: light_blue → white */
  overflow: hidden;
}

/* floating morphing blobs */
.hero__blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero__blob {
  position: absolute;
  will-change: transform, border-radius;
}
.hero__blob--1 {
  width: 580px; height: 580px;
  top: -200px; right: -140px;
  background: radial-gradient(ellipse at 40% 40%, rgba(51,88,255,0.12) 0%, rgba(51,88,255,0.04) 55%, transparent 100%);
  animation: morphBlob 20s ease-in-out infinite, floatA 14s ease-in-out infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(ellipse at 60% 60%, rgba(220,235,255,0.9) 0%, rgba(200,220,255,0.4) 55%, transparent 100%);
  animation: morphBlob 26s ease-in-out infinite, floatB 18s ease-in-out infinite;
  animation-delay: -5s, -4s;
}
.hero__blob--3 {
  width: 280px; height: 280px;
  top: 25%; right: 30%;
  background: radial-gradient(ellipse, rgba(51,88,255,0.07) 0%, transparent 70%);
  animation: morphBlob 18s ease-in-out infinite, floatC 22s ease-in-out infinite;
  animation-delay: -10s, -8s;
}

.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr;
  grid-template-areas:
    "headline headline"
    "content  visual";
  column-gap: clamp(40px,6vw,88px); row-gap: clamp(24px,3vw,40px);
  align-items: center;
  position: relative; z-index: 1;
}
.hero__content { grid-area: content; }
.hero__visual  { grid-area: visual; }

.hero__headline {
  grid-area: headline;
  font-family: var(--font-d);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -1.2px; color: var(--dark-blue); margin-bottom: 0;
  animation: fadeSlideUp .7s .08s ease both;
}
.hero__body {
  font-size: clamp(14px,1.4vw,16px); line-height: 1.75;
  color: var(--text-muted); margin-bottom: 36px; max-width: 520px;
  animation: fadeSlideUp .7s .22s ease both;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; animation: fadeSlideUp .7s .30s ease both; }

.hero__trust {
  display: flex; align-items: center; gap: 12px;
  padding-top: 28px; border-top: 1px solid rgba(9,33,78,0.08); flex-wrap: nowrap;
  animation: fadeSlideUp .7s .38s ease both;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 7px; flex-shrink: 1; min-width: 0;
  font-size: 12px; font-weight: 600; color: var(--text-muted); white-space: nowrap;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 6px 13px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 2px 8px rgba(9,33,78,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
}
.hero__trust-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--dark-blue); flex-shrink: 0;
  opacity: 0.55;
}

.hero__visual {
  position: relative; animation: fadeSlideUp .7s .12s ease both;
  overflow: visible; z-index: 2;
  align-self: end;
}
.hero__image-wrap {
  position: relative; aspect-ratio: 5/4; overflow: visible;
}
.hero__image-wrap::before {
  content: ''; position: absolute; inset: 8%;
  background: radial-gradient(ellipse at 50% 55%,
    rgba(51,88,255,0.26) 0%,
    rgba(51,88,255,0.10) 38%,
    transparent 72%);
  filter: blur(34px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}
.hero__image-wrap img {
  position: relative; z-index: 1;
  transform: scale(1.48);
  transform-origin: 50% 100%;
  filter:
    drop-shadow(0 28px 42px rgba(9,33,78,0.22))
    drop-shadow(0 10px 18px rgba(9,33,78,0.12));
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "headline" "content";
  }
  .hero__visual { display: none; }
  .hero__body { max-width: 100%; }
}

/* ─── PROBLEM ─────────────────────────────────────────────────────── */
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(16px,2vw,24px);
}
.problem-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: var(--r); padding: clamp(28px,3vw,40px);
  box-shadow: var(--sh-glass);
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51,88,255,0.35), transparent);
  opacity: 0; transition: opacity .35s ease;
}
.problem-card:hover {
  box-shadow: var(--glow-accent-hover), var(--sh-lg);
  transform: translateY(-7px);
  border-color: rgba(51,88,255,0.18);
}
.problem-card:hover::before { opacity: 1; }
.problem-card__num {
  font-family: var(--font-d); font-size: 64px; font-weight: 700;
  color: rgba(51,88,255,0.06); line-height: 1; margin-bottom: 8px;
  letter-spacing: -2px; user-select: none;
}
.problem-card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--light-blue), rgba(9,33,78,0.06));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 2px 8px rgba(51,88,255,0.08);
  transition: box-shadow .3s ease, transform .3s ease;
}
.problem-card:hover .problem-card__icon {
  transform: scale(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 4px 16px rgba(51,88,255,0.2);
}
.problem-card__title { font-size: clamp(14px,1.7vw,17px); font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; line-height: 1.25; }
.problem-card__text { font-size: 16px; line-height: 1.5; color: var(--text-muted); }

@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .problem-grid { grid-template-columns: 1fr 1fr; } }

/* ─── DIFFERENZIERUNG ─────────────────────────────────────────────── */
#differenzierung.section--dark {
  background: linear-gradient(-45deg, #09214E, #163876, #0f2a5e, #09214E);
  background-size: 400% 400%;
  animation: gradientShift 12s ease-in-out infinite;
}
#differenzierung.section--dark::before {
  content: ''; position: absolute; inset: -15%;
  background:
    radial-gradient(560px circle at 28% 32%, rgba(51,88,255,0.28), transparent 55%),
    radial-gradient(480px circle at 78% 72%, rgba(220,235,255,0.10), transparent 60%);
  animation: diffSpotlight 16s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
#differenzierung > .container { position: relative; z-index: 1; }
@keyframes diffSpotlight {
  0%,100% { transform: translate(0%, 0%); }
  50%     { transform: translate(6%, 4%); }
}
.diff__inner { display: flex; align-items: center; gap: clamp(40px,5vw,80px); max-width: 1160px; margin: 0; text-align: left; }
.diff__content { flex: 1; min-width: 0; }
.diff__visual { flex: 0 0 clamp(90px,11vw,150px); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.diff__visual img { width: 100%; height: auto; border-radius: 10px; object-fit: contain; display: block; }
@media (max-width: 860px) {
  .diff__inner { flex-direction: column; }
  .diff__visual {
    flex: 0 0 auto; width: 100%;
    flex-direction: row; justify-content: center;
    gap: clamp(20px,5vw,40px);
  }
  .diff__visual img { width: auto; max-width: clamp(100px,28vw,160px); }
  .diff__visual-placeholder { min-height: 220px; }
}
.diff__headline {
  font-family: var(--font-d); font-size: clamp(26px,4vw,50px);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: clamp(32px,4vw,52px);
}

.diff__box-wrap {
  position: relative; border-radius: 30px;
  display: inline-block; max-width: 100%;
}
.diff__box {
  position: relative; z-index: 1; border-radius: 28px;
  padding: clamp(36px,5vw,52px) clamp(56px,7vw,88px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.10) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    1px 0 0 rgba(255,255,255,0.06) inset,
    -1px 0 0 rgba(0,0,0,0.12) inset,
    0 24px 60px rgba(0,0,0,0.32),
    0 4px 16px rgba(0,0,0,0.18);
}
/* top highlight line */
.diff__box::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  border-radius: 1px;
}
.diff__list { list-style: none; display: flex; flex-direction: column; gap: 20px; text-align: left; max-width: 500px; margin: 0 auto; }
.diff__item {
  display: flex; align-items: center; gap: 16px;
  font-size: clamp(15px,1.7vw,18px); font-weight: 500;
  color: rgba(255,255,255,0.92); line-height: 1.4;
}
.diff__check {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

/* ─── PROZESS ────────────────────────────────────────────────────── */
.process__steps {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 12px; position: relative;
}
.process__connector { position: absolute; }

.process__step {
  position: relative; z-index: 1;
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--r);
  padding: clamp(24px,3vw,38px);
  display: flex; flex-direction: column;
  box-shadow: var(--sh-glass);
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  text-align: left;
}
.process__step:hover {
  box-shadow: var(--glow-accent), var(--sh-md);
  transform: translateY(-6px);
  border-color: rgba(51,88,255,0.20);
}

.process__step-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--light-blue), rgba(9,33,78,0.06));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 2px 8px rgba(51,88,255,0.10);
  transition: transform .3s ease, box-shadow .3s ease;
}
.process__step:hover .process__step-icon {
  transform: scale(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 4px 16px rgba(51,88,255,0.22);
}
.process__label { font-size: clamp(13px,1.6vw,16px); font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; line-height: 1.25; }
.process__sublabel { font-size: 16px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr; gap: 10px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .process__steps { grid-template-columns: repeat(3,1fr); }
}

/* ─── BUSINESS / WIRTSCHAFT ─────────────────────────────────────── */
.economy-layout { display: flex; flex-direction: column; gap: clamp(40px,5vw,64px); margin-top: 48px; }

.economy-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px,4vw,52px); align-items: start;
}
@media (max-width: 768px) { .economy-intro { grid-template-columns: 1fr; } }

.checklist { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.65; color: var(--text); }
.check-item svg { flex-shrink: 0; margin-top: 3px; }

.info-box {
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(220,235,255,0.75), rgba(200,220,255,0.45));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  border: 1px solid rgba(9,33,78,0.10);
  border-left: 3px solid var(--dark-blue);
  font-size: 15px; line-height: 1.7; color: var(--dark-blue);
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,0.8);
}
.info-box p { margin: 0; }

/* Benefit cards */
.benefit-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(14px,2vw,22px);
}
.benefit-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: var(--r); padding: clamp(24px,3vw,38px);
  box-shadow: var(--sh-glass);
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .35s ease;
}
.benefit-card:hover {
  box-shadow: var(--glow-accent-hover), var(--sh-lg);
  transform: translateY(-6px);
  border-color: rgba(51,88,255,0.18);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--light-blue), rgba(9,33,78,0.06));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 2px 8px rgba(51,88,255,0.10);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit-card:hover .benefit-card__icon {
  transform: scale(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 4px 16px rgba(51,88,255,0.22);
}
.benefit-card__title { font-size: clamp(13px,1.6vw,16px); font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; line-height: 1.25; }
.benefit-card__text { font-size: 16px; line-height: 1.5; color: var(--text-muted); }

@media (max-width: 768px) { .benefit-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }

/* ─── TRUST ──────────────────────────────────────────────────────── */
.trust-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(14px,2vw,20px);
}
.trust-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: var(--glass-blur-sm); -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: var(--r); padding: clamp(24px,2.8vw,36px);
  box-shadow: var(--sh-glass);
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  position: relative; overflow: hidden;
}
.trust-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(51,88,255,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.trust-card:hover {
  box-shadow: var(--glow-accent), var(--sh-lg);
  transform: translateY(-6px);
  border-color: rgba(51,88,255,0.16);
}
.trust-card:hover::after { opacity: 1; }
.trust-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--light-blue), rgba(9,33,78,0.06));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 2px 8px rgba(51,88,255,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.trust-card:hover .trust-card__icon {
  transform: scale(1.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 4px 16px rgba(51,88,255,0.2);
}
.trust-card__title { font-size: clamp(13px,1.6vw,16px); font-weight: 700; color: var(--dark-blue); margin-bottom: 10px; line-height: 1.25; }
.trust-card__text { font-size: 16px; line-height: 1.5; color: var(--text-muted); }

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

/* ─── CTA ─────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--mc-dark-blue) !important;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(51,88,255,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta__inner { text-align: left; max-width: 680px; margin: 0; position: relative; z-index: 1; }
.cta__headline {
  font-family: var(--font-d); font-size: clamp(30px,4.5vw,56px);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: 18px;
}
.cta__subline { font-size: clamp(15px,1.7vw,18px); line-height: 1.65; color: rgba(255,255,255,0.68); margin-bottom: 40px; }
.cta__buttons { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 22px; }
.cta__reassurance { font-size: 13px; color: rgba(255,255,255,0.35); text-align: left; margin-top: 22px; }
.cta__contact {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cta__contact-title {
  font-size: clamp(15px,1.6vw,18px); font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.cta__contact-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(20px,3vw,40px);
}
.cta__contact-item {
  display: flex; align-items: center; gap: 12px;
  margin: 0;
  font-size: clamp(15px,1.4vw,17px); line-height: 1.4;
  color: rgba(255,255,255,0.85);
}
.cta__contact-item svg { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.65; }
.cta__contact-item a { color: rgba(255,255,255,0.85); text-decoration: none; }
.cta__contact-item a:hover { color: #fff; }
@media (max-width: 768px) {
  .cta__contact-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── CTA Booking Widget ─────────────────────────────────────────── */
.cta-booking {
  max-width: 960px;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.cta-switch {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 6px;
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 22px rgba(9,33,78,0.25);
}
.cta-switch__thumb {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc(50% - 6px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), rgba(51,88,255,0.78));
  box-shadow: 0 6px 18px rgba(51,88,255,0.40), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
}
.cta-switch[data-state="form"] .cta-switch__thumb {
  transform: translateX(100%);
}
.cta-switch__label {
  position: relative;
  z-index: 1;
  background: none;
  border: 0;
  padding: 13px 20px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  color: rgba(255,255,255,0.62);
  cursor: pointer;
  transition: color .3s ease;
  outline: none;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}
.cta-switch__label[aria-selected="true"] { color: var(--white); }
.cta-switch__label:focus-visible {
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 4px;
  border-radius: 999px;
}

.cta-widget {
  width: 100%;
  max-width: 960px;
  background: var(--glass-bg-light);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--sh-glass);
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  text-align: left;
}
.cta-widget__panel[hidden] { display: none; }
.cta-widget__panel iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  border-radius: 14px;
  background: var(--white);
}
.cta-widget .contact-form { padding: clamp(10px, 2vw, 20px); }

@media (max-width: 768px) {
  .cta-widget { padding: 12px; border-radius: 18px; }
  .cta-widget__panel iframe { height: 560px; }
  .cta-switch { max-width: 100%; }
  .cta-switch__label { font-size: 14px; padding: 12px 12px; }
}
@media (max-width: 480px) {
  .cta-widget__panel iframe { height: 520px; }
  .cta-switch__label { font-size: 13px; padding: 11px 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-switch__thumb { transition: none; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: var(--mc-dark-blue);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__name { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.88); }
.footer__links { display: flex; gap: 24px; list-style: none; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color .2s; }
.footer__links a:hover { color: rgba(255,255,255,0.70); }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.28); }

/* ─── COOKIE BANNER ──────────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(32px) saturate(180%); -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 -12px 48px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.7);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  max-height: 80vh; overflow-y: auto;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 920px; margin: 0 auto; padding: 24px 28px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start;
}
.cookie-title { font-size: 17px; font-weight: 700; color: var(--dark-blue); margin-bottom: 8px; }
.cookie-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.cookie-cats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.cookie-cat {
  border: 1px solid rgba(9,33,78,0.08); border-radius: var(--r-sm);
  background: rgba(255,255,255,0.60); overflow: hidden;
  transition: box-shadow .2s ease;
}
.cookie-cat:hover { box-shadow: var(--sh-sm); }
.cookie-cat-hdr {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: transparent; cursor: pointer; width: 100%; text-align: left;
  border: none; transition: background .2s;
}
.cookie-cat-hdr:hover { background: rgba(51,88,255,0.04); }
.cookie-cat-name { font-size: 14px; font-weight: 600; color: var(--dark-blue); flex: 1; }
.cookie-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.cookie-badge--req { background: var(--gray-2); color: var(--text-muted); }
.cookie-badge--opt { background: rgba(51,88,255,0.10); color: var(--accent); }
.cookie-toggle { transition: transform .25s; flex-shrink: 0; color: var(--text-muted); }
.cookie-cat-hdr[aria-expanded="true"] .cookie-toggle { transform: rotate(180deg); }
.cookie-cat-body { display: none; padding: 0 16px 14px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.cookie-cat-body.open { display: block; }
.cookie-cat-body ul { padding-left: 16px; margin-top: 6px; }
.cookie-cat-body li { margin-bottom: 3px; }
.cookie-checkbox {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; border: 2px solid var(--gray-2); border-radius: 5px;
  flex-shrink: 0; cursor: pointer; transition: all .2s; position: relative;
}
.cookie-checkbox:checked {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 8px rgba(51,88,255,0.35);
}
.cookie-checkbox:checked::after {
  content: ''; position: absolute; left: 4px; top: 1px;
  width: 8px; height: 12px;
  border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg);
}
.cookie-checkbox:disabled { opacity: .5; cursor: not-allowed; }
.cookie-links { display: flex; gap: 16px; font-size: 12px; }
.cookie-links a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; min-width: 160px; }
.cookie-actions .btn { width: 100%; justify-content: center; font-size: 14px; padding: 12px 20px; }

#cookie-prefs-btn {
  display: none; position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--mc-accent-blue);
  color: var(--white); border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(51,88,255,0.40), inset 0 1px 0 rgba(255,255,255,0.2);
  font-size: 22px;
  transition: transform .22s ease, box-shadow .22s ease;
  align-items: center; justify-content: center;
}
#cookie-prefs-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(51,88,255,0.60), inset 0 1px 0 rgba(255,255,255,0.25);
}

@media (max-width: 640px) {
  .cookie-inner { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
}

/* ─── DIVIDER ─────────────────────────────────────────────────────── */
.divider {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent 0%, rgba(9,33,78,0.12) 35%, rgba(9,33,78,0.06) 65%, transparent 100%);
  margin: 0;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0) scale(1); }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }

.process__step.fade-up {
  transform: translateY(46px) scale(0.88);
  transition: opacity 1.15s cubic-bezier(.34,1.56,.64,1),
              transform 1.15s cubic-bezier(.34,1.56,.64,1);
}
.process__step.fade-up.visible { transform: translateY(0) scale(1); }
.process__step.d1 { transition-delay: .07s; }
.process__step.d2 { transition-delay: .14s; }
.process__step.d3 { transition-delay: .21s; }
.process__step.d4 { transition-delay: .28s; }
.process__step.d5 { transition-delay: .35s; }

/* ─── REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero__blob, .hero__headline,
  .hero__body, .hero__actions, .hero__trust, .hero__visual { animation: none !important; }
  .diff__box-wrap::before, .diff__check,
  #differenzierung.section--dark::before { animation: none !important; }
  .section--light, .section--dark, .cta-section { animation: none !important; }
  .btn--primary::before { display: none; }
}

/* ─── CONTACT FORM ───────────────────────────────────────────────── */
.contact-form {
  padding: clamp(22px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
  background: transparent;
}
.contact-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.contact-form__row--3col { grid-template-columns: 0.7fr 1fr 1fr; }
@media (max-width: 560px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__row--3col { grid-template-columns: 1fr; }
}

.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label {
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  color: var(--dark-blue); text-transform: uppercase;
}
.contact-field label .req { color: var(--text-muted); margin-left: 3px; font-weight: 700; }
.contact-field input,
.contact-field textarea,
.contact-field select {
  font-family: var(--font-b);
  font-size: 15px; line-height: 1.5;
  color: var(--dark-blue);
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(9,33,78,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 1px 3px rgba(9,33,78,0.04);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  width: 100%;
}
.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: rgba(51,88,255,0.55);
  background: rgba(255,255,255,0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 0 0 4px rgba(51,88,255,0.12), 0 4px 14px rgba(51,88,255,0.10);
}
.contact-field textarea { resize: vertical; min-height: 110px; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(9,33,78,0.42); }

.contact-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.contact-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  border: 2px solid var(--gray-2); border-radius: 5px;
  cursor: pointer; transition: all .2s; position: relative;
  background: rgba(255,255,255,0.7);
}
.contact-consent input[type="checkbox"]:checked {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 8px rgba(51,88,255,0.35);
}
.contact-consent input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 3px; top: 0;
  width: 7px; height: 11px;
  border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg);
}
.contact-consent a { color: var(--accent); text-decoration: underline; }

.contact-form__actions {
  display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap;
  padding-top: 4px;
}
.contact-form__actions .btn { min-width: 140px; }

/* ─── CONTACT SUCCESS – Liquid Glass overlay ─────────────────────── */
.contact-success {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  background: radial-gradient(ellipse at 30% 20%, rgba(51,88,255,0.22), rgba(9,33,78,0.55) 70%);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  opacity: 0; pointer-events: none;
  transition: opacity .28s cubic-bezier(.4,0,.2,1);
}
.contact-success[hidden] { display: none; }
.contact-success.visible { opacity: 1; pointer-events: auto; }

.contact-success__card {
  position: relative;
  width: min(460px, 100%);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 40px) clamp(24px, 3vw, 32px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.64));
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    0 24px 70px rgba(9,33,78,0.35),
    0 6px 22px rgba(9,33,78,0.16),
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(9,33,78,0.05);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.contact-success.visible .contact-success__card {
  transform: translateY(0) scale(1);
}

.contact-success__icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mc-accent-blue), var(--mc-dark-blue));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 10px 28px rgba(51,88,255,0.40),
    0 0 0 6px rgba(255,255,255,0.55),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.contact-success__title {
  font-family: var(--font-d); font-size: clamp(22px, 3vw, 26px); font-weight: 800;
  color: var(--dark-blue);
  letter-spacing: -0.01em;
}
.contact-success__text {
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
  max-width: 360px;
}
.contact-success__close {
  margin-top: 8px;
  min-width: 140px;
}

@media (prefers-reduced-motion: reduce) {
  .contact-success { transition: none; }
  .contact-success__card { transition: none; transform: none; }
}

body.mc-no-scroll { overflow: hidden; }

/* ─── MOBILE OVERHAUL ────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --py: clamp(48px, 8vw, 112px); }

  .nav__inner { height: 68px; }
  .nav__logo img { height: 46px; }

  .section-header { margin-bottom: clamp(28px, 5vw, 48px); }
  .section-title { line-height: 1.2; }

  .problem-card__title,
  .benefit-card__title,
  .trust-card__title,
  .process__label { font-size: 15px; }

  .hero__headline {
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: -0.5px;
    line-height: 1.1;
  }
  .hero__body { font-size: 15px; line-height: 1.7; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 8px; flex-wrap: wrap; }
  .hero__trust-item { font-size: 11px; padding: 5px 10px; }

  .diff__box {
    padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 36px);
  }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__links { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 640px) {
  .nav__inner { height: 60px; }
  .nav__logo img { height: 40px; }
  .nav .btn { padding: 8px 12px !important; font-size: 12px !important; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(26px, 7.5vw, 34px); }
  .hero__trust { gap: 6px; }
  .section-title { font-size: clamp(24px, 6.5vw, 32px); }
  .diff__visual img { max-width: clamp(80px, 22vw, 130px); }
}

/* ─── UTILITY ────────────────────────────────────────────────────── */
.hero__visual-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer__logo { height: 56px; filter: brightness(0) invert(1); opacity: 0.88; }

/* ─── LEGAL PAGES (Impressum / Datenschutz) ──────────────────────── */
.legal-content { max-width: 760px; }
.legal-content h3 { font-family: var(--font-d); font-size: clamp(18px, 2vw, 22px); color: var(--dark-blue); margin: 32px 0 12px; line-height: 1.3; }
.legal-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.legal-content ul { color: var(--text-muted); line-height: 1.7; margin: 8px 0 14px 22px; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
