/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-bg: #FDF6F0;
  --color-bordeaux: #6B1D2A;
  --color-bordeaux-light: #8B2D3A;
  --color-rosa: #E8A0A8;
  --color-rosa-light: #F5D5D9;
  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-white: #FFFFFF;
  --color-border: #E8DDD5;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(107, 29, 42, 0.08);
  --shadow-lg: 0 8px 40px rgba(107, 29, 42, 0.14);

  --nav-height: 104px;
  --container: 1200px;
  --gutter: clamp(1.5rem, 5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-bordeaux);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-bordeaux);
  flex-shrink: 0;
}

.section-eyebrow--light {
  color: var(--color-rosa-light);
}

.section-eyebrow--light::before {
  background-color: var(--color-rosa-light);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 5.5vw, 4.5rem);
}

.section-header .section-eyebrow {
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

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

section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

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

.btn--primary {
  background-color: var(--color-bordeaux);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(107, 29, 42, 0.3);
}
.btn--primary:hover {
  background-color: var(--color-bordeaux-light);
  box-shadow: 0 6px 24px rgba(107, 29, 42, 0.4);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-bordeaux);
  border-color: var(--color-bordeaux);
}
.btn--ghost:hover {
  background-color: var(--color-rosa-light);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-bordeaux);
}
.btn--white:hover {
  background-color: var(--color-rosa-light);
  box-shadow: 0 6px 24px rgba(255,255,255,0.2);
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in--delay {
  transition-delay: 0.15s;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background-color: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  border-color: var(--color-border);
  box-shadow: 0 2px 16px rgba(107, 29, 42, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.nav__logo img {
  height: 92px;
  width: 92px;
  display: block;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.nav__logo:hover img {
  transform: scale(1.06);
}

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-bordeaux);
  transition: width 0.25s ease;
}

.nav__links a:hover { color: var(--color-bordeaux); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 1rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-bordeaux);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__shape {
  position: absolute;
  display: block;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  will-change: transform, opacity;
}

.hero__shape::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.35), transparent 70%);
}

.hero__shape--1 {
  top: 12%;
  left: -8%;
  width: clamp(280px, 38vw, 560px);
  height: clamp(70px, 9vw, 130px);
  transform: rotate(12deg);
  background: linear-gradient(to right, rgba(107, 29, 42, 0.12), transparent);
  border: 1px solid rgba(107, 29, 42, 0.14);
  animation: hero-shape-in 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) 0.3s forwards,
             hero-shape-float 14s ease-in-out 2.7s infinite;
}

.hero__shape--2 {
  top: 68%;
  right: -6%;
  width: clamp(240px, 32vw, 460px);
  height: clamp(60px, 8vw, 110px);
  transform: rotate(-18deg);
  background: linear-gradient(to right, rgba(232, 160, 168, 0.28), transparent);
  border: 1px solid rgba(232, 160, 168, 0.32);
  animation: hero-shape-in 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) 0.5s forwards,
             hero-shape-float 16s ease-in-out 2.9s infinite;
}

.hero__shape--3 {
  bottom: 8%;
  left: 8%;
  width: clamp(180px, 24vw, 320px);
  height: clamp(50px, 6vw, 80px);
  transform: rotate(-8deg);
  background: linear-gradient(to right, rgba(245, 213, 217, 0.55), transparent);
  border: 1px solid rgba(232, 160, 168, 0.28);
  animation: hero-shape-in 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) 0.4s forwards,
             hero-shape-float 12s ease-in-out 2.5s infinite;
}

.hero__shape--4 {
  top: 6%;
  right: 22%;
  width: clamp(120px, 16vw, 220px);
  height: clamp(40px, 5vw, 65px);
  transform: rotate(22deg);
  background: linear-gradient(to right, rgba(232, 160, 168, 0.22), transparent);
  border: 1px solid rgba(232, 160, 168, 0.22);
  animation: hero-shape-in 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) 0.7s forwards,
             hero-shape-float 18s ease-in-out 3.1s infinite;
}

@keyframes hero-shape-in {
  0% { opacity: 0; transform: translateY(-120px) rotate(var(--shape-rot, 0deg)); }
  100% { opacity: 1; transform: translateY(0) rotate(var(--shape-rot, 0deg)); }
}

.hero__shape--1 { --shape-rot: 12deg; }
.hero__shape--2 { --shape-rot: -18deg; }
.hero__shape--3 { --shape-rot: -8deg; }
.hero__shape--4 { --shape-rot: 22deg; }

@keyframes hero-shape-float {
  0%, 100% { transform: translateY(0) rotate(var(--shape-rot, 0deg)); }
  50% { transform: translateY(18px) rotate(var(--shape-rot, 0deg)); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__text {
  opacity: 0;
  animation: hero-fade-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 0.7s forwards;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bordeaux);
  background-color: rgba(232, 160, 168, 0.18);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(232, 160, 168, 0.35);
  margin-bottom: 1.75rem;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-bordeaux);
  flex-shrink: 0;
}

.hero__headline {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: var(--color-text);
}

.hero__headline-line {
  display: block;
}

.hero__headline-line--2 {
  color: var(--color-bordeaux);
}

.hero__headline-line em {
  font-style: italic;
  font-weight: 600;
  position: relative;
}

.hero__headline-line em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: linear-gradient(90deg, transparent, rgba(232, 160, 168, 0.55), transparent);
  z-index: -1;
}

.hero__subtext {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 520px;
  color: var(--color-text-muted);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  opacity: 0;
  animation: hero-fade-up 1.2s cubic-bezier(0.25, 0.4, 0.25, 1) 0.9s forwards;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(107, 29, 42, 0.35);
}

.hero__image-frame img {
  width: 100%;
  height: clamp(440px, 60vw, 660px);
  object-position: top center;
  display: block;
}

.hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(107, 29, 42, 0.18));
  pointer-events: none;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem {
  background-color: var(--color-white);
  position: relative;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.problem__card {
  position: relative;
  padding: 2.75rem 2rem 2.5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.problem__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.problem__card:hover {
  border-color: var(--color-rosa);
  box-shadow: 0 12px 32px -12px rgba(107, 29, 42, 0.15);
}

.problem__card:hover::after {
  transform: scaleX(1);
}

.problem__num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-text-muted);
  pointer-events: none;
  user-select: none;
}

.problem__num::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-text-muted);
  vertical-align: middle;
  margin-right: 0.5rem;
}

.problem__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.75rem;
  color: var(--color-bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem__icon svg {
  width: 100%;
  height: 100%;
}

.problem__card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

/* ============================================================
   KEYFAKTOREN
   ============================================================ */
.keyfaktoren {
  background-color: var(--color-bg);
  position: relative;
}

.keyfaktoren__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.keyfaktoren__card {
  position: relative;
  padding: 2.75rem 2rem 2.5rem;
  background-color: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-align: left;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.keyfaktoren__card:hover {
  border-color: var(--color-rosa);
  box-shadow: 0 12px 32px -12px rgba(107, 29, 42, 0.15);
}

.keyfaktoren__step {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-bordeaux);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.keyfaktoren__step::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-bordeaux);
  margin-left: 0.65rem;
  opacity: 0.6;
}

.keyfaktoren__icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 1.75rem;
  color: var(--color-bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.4s ease, transform 0.4s ease;
}

.keyfaktoren__icon-wrap svg {
  width: 100%;
  height: 100%;
}

.keyfaktoren__card:hover .keyfaktoren__icon-wrap {
  transform: translateY(-2px);
}

.keyfaktoren__card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

/* ============================================================
   KPIs / FALLSTUDIE
   ============================================================ */
.kpis {
  background-color: var(--color-bordeaux);
  color: var(--color-white);
}

.kpis h2 { color: var(--color-white); }
.kpis p { color: rgba(255,255,255,0.75); }

.kpis__intro {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.kpis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: center;
}

.kpis__card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.kpis__card:hover {
  border-color: rgba(232, 160, 168, 0.5);
}

.kpis__card--center {
  transform: scale(1.06);
  background: linear-gradient(180deg, rgba(232,160,168,0.18), rgba(255,255,255,0.06));
  border-color: rgba(232, 160, 168, 0.4);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
}

.kpis__card--center:hover {
  transform: scale(1.08);
}

.kpis__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
}

.kpis__graph {
  position: relative;
  width: 100%;
  height: 240px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.18) 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kpis__graph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.kpis__bar {
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--bar-delay, 0s);
}

.kpis__card.is-visible .kpis__bar {
  transform: scaleY(1);
}

.kpis__line-stroke {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.kpis__card.is-visible .kpis__line-stroke {
  stroke-dashoffset: 0;
}

.kpis__line-fill {
  opacity: 0;
  transition: opacity 1.4s ease 1.4s;
}

.kpis__card.is-visible .kpis__line-fill {
  opacity: 1;
}

.kpis__line-dot {
  opacity: 0;
  transition: opacity 0.5s ease 2.2s;
}

.kpis__card.is-visible .kpis__line-dot {
  opacity: 1;
}

.kpis__stat {
  padding: 2.25rem 1.5rem;
  position: relative;
}

.kpis__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bordeaux);
  background-color: var(--color-rosa-light);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}

.kpis__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.kpis__card--center .kpis__number {
  font-size: clamp(3.6rem, 7vw, 5.4rem);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-rosa-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kpis__label {
  display: block;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  max-width: 220px;
  margin-inline: auto;
}

/* ============================================================
   ÜBER TANIA
   ============================================================ */
.ueber {
  background-color: var(--color-white);
}

.ueber__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.ueber__image img {
  width: 100%;
  height: clamp(420px, 50vw, 580px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-position: top center;
}

.ueber__text h2 {
  margin-bottom: 1.25rem;
}

.ueber__text p {
  margin-bottom: 1rem;
}

.ueber__text p:last-of-type {
  margin-bottom: 2rem;
}

/* ============================================================
   LEISTUNGEN / PHASEN
   ============================================================ */
.leistungen {
  background-color: var(--color-bg);
  position: relative;
}

.phases {
  display: flex;
  flex-direction: column;
  gap: clamp(4.5rem, 9vw, 8rem);
}

.phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.phase--reverse .phase__media {
  order: 2;
}

.phase__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -30px rgba(107, 29, 42, 0.35);
}

.phase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phase:hover .phase__media img {
  transform: scale(1.04);
}

.phase__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(107, 29, 42, 0.18));
  pointer-events: none;
}

.phase__content {
  position: relative;
}

.phase__num {
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  line-height: 0.8;
  color: var(--color-rosa-light);
  position: absolute;
  top: -3rem;
  left: -1rem;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.phase__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-bordeaux);
  margin-bottom: 1.25rem;
}

.phase__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-bordeaux);
}

.phase__content h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.phase__desc {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.phase__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.phase__list li {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  padding-left: 1.75rem;
  position: relative;
  letter-spacing: 0.01em;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.phase__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 16px;
  height: 1px;
  background-color: var(--color-bordeaux);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.phase__list li:hover {
  padding-left: 2rem;
  color: var(--color-bordeaux);
}

.phase__list li:hover::before {
  width: 24px;
}

/* ============================================================
   VERTRAUEN
   ============================================================ */
.vertrauen {
  background-color: var(--color-bg);
  padding-block: clamp(3rem, 5vw, 5rem);
}

.vertrauen__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.vertrauen__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  min-height: 160px;
  width: clamp(220px, 24vw, 280px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-white);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

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

.vertrauen__logo img {
  height: 140px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform: scale(1.25);
  transition: transform 0.35s ease;
}

.vertrauen__logo:hover img {
  transform: scale(1.4);
}

.vertrauen__logo-img--small {
  transform: scale(0.95) !important;
}

.vertrauen__logo:hover .vertrauen__logo-img--small {
  transform: scale(1.05) !important;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background-color: var(--color-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonials__card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.testimonials__card--featured {
  border-color: var(--color-rosa);
  background: linear-gradient(180deg, var(--color-rosa-light) 0%, var(--color-white) 25%);
}

.testimonials__arrow {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-bordeaux);
  pointer-events: none;
}

.testimonials__arrow svg {
  width: 28px;
  height: 38px;
  display: block;
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.testimonials__card--featured {
  position: relative;
}

@media (max-width: 900px) {
  .testimonials__arrow {
    display: none;
  }
}

.testimonials__stars {
  font-size: 1.1rem;
  color: var(--color-bordeaux);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonials__text {
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-bordeaux);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text);
}

.testimonials__author span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonials__video-card {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 760px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background-color: var(--color-bordeaux);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

.testimonials__video-media {
  position: relative;
  flex-shrink: 0;
  width: clamp(180px, 22vw, 240px);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #000;
}

.testimonials__video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 0;
}

.testimonials__video-overlay:hover .testimonials__video-play {
  transform: scale(1.08);
}

.testimonials__video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.testimonials__video-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.testimonials__video-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}

.testimonials__video-play svg {
  width: 26px;
  height: 26px;
  transform: translateX(2px);
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.testimonials__video-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  transition: transform 0.25s ease;
}

a.testimonials__video-meta:hover {
  transform: translateX(4px);
}

a.testimonials__video-meta:hover .testimonials__video-hint {
  color: var(--color-white);
}

.testimonials__video-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-rosa);
}

.testimonials__video-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}

.testimonials__video-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin-top: 0.15rem;
}

.testimonials__video-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--color-rosa-light);
  margin-top: 0.85rem;
  font-weight: 600;
}

.testimonials__video-hint-icon {
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 600px) {
  .testimonials__video-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonials__video-media {
    width: 220px;
  }
}

/* ============================================================
   SOCIAL (invertiert – helle Variante)
   ============================================================ */
.socials {
  background-color: var(--color-white);
}

.socials__card {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-rosa-light) 140%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-text);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  box-shadow: 0 30px 80px -30px rgba(107, 29, 42, 0.2);
}

.socials__card::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 168, 0.35), transparent 70%);
  pointer-events: none;
}

.socials__intro {
  position: relative;
  z-index: 1;
}

.socials__logo {
  width: 200px;
  height: 200px;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 50%;
}

.socials__intro h2 {
  color: var(--color-text);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.socials__lead {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 420px;
}

.socials__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.socials__link {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.4rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  animation: socials-link-in 0.7s cubic-bezier(0.25, 0.4, 0.25, 1) var(--delay, 0s) forwards;
}

@keyframes socials-link-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.socials__link:hover {
  border-color: var(--color-bordeaux);
  transform: translateX(4px);
  box-shadow: 0 8px 24px -8px rgba(107, 29, 42, 0.18);
}

.socials__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
  flex-shrink: 0;
}

.socials__icon svg {
  width: 22px;
  height: 22px;
}

.socials__link:hover .socials__icon {
  background-color: var(--color-rosa);
  color: var(--color-bordeaux);
  transform: scale(1.05);
}

.socials__platform {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
  display: block;
}

.socials__handle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.1;
  display: block;
  margin-top: 0.2rem;
}

.socials__platform,
.socials__handle {
  grid-column: 2;
}

.socials__platform { grid-row: 1; align-self: end; }
.socials__handle { grid-row: 2; align-self: start; }

.socials__cta {
  grid-column: 3;
  grid-row: 1 / span 2;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-bordeaux);
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.socials__link:hover .socials__cta {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .socials__card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .socials__logo {
    width: 140px;
    height: 140px;
  }
  .socials__cta {
    display: none;
  }
}

/* ============================================================
   BUCHUNG / CALENDLY
   ============================================================ */
.cta-section {
  background-color: var(--color-bg);
}

.cta-section__intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.cta-section__logo {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
}

.cta-section__widget {
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  max-width: 1100px;
  margin-inline: auto;
}

.cta-section__widget .calendly-inline-widget {
  border-radius: var(--radius-sm);
}

@media (max-width: 600px) {
  .cta-section__widget .calendly-inline-widget {
    height: 1000px !important;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-text);
  padding-block: 3rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__logo img {
  width: 120px;
  height: 120px;
  display: block;
  border-radius: 50%;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

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

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .problem__grid,
  .keyfaktoren__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .phase {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .phase--reverse .phase__media {
    order: -1;
  }

  .phase__num {
    font-size: 7rem;
    top: -2rem;
  }

  .phase__media {
    aspect-ratio: 5 / 4;
    max-height: 480px;
  }

  .kpis__grid {
    grid-template-columns: 1fr;
  }

  .kpis__card--center {
    transform: none;
  }

  .hero__inner,
  .ueber__inner {
    grid-template-columns: 1fr;
  }

  .hero__image {
    order: -1;
  }

  .hero__image-frame img {
    height: clamp(320px, 70vw, 460px);
  }

  .hero__shape--4 {
    display: none;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .vertrauen__logos {
    gap: 1rem;
  }

  .footer__links {
    gap: 1rem;
  }
}

/* Mobile nav open state */
.nav.is-open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  padding: 2rem var(--gutter);
  gap: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  z-index: 99;
}

.nav.is-open .nav__cta {
  display: inline-flex;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
