* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #7c35c9;
  --purple-soft: #b76cff;
  --turquoise: #18cfd0;
  --turquoise-soft: #78f2ef;
  --dark: #090b12;
  --text: #111520;
  --muted: #5d6878;
  --white: #ffffff;
  --glass: rgba(255,255,255,.64);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #dcdcdc;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  min-height: 82px;
  padding: 10px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24,207,208,.18);
  transform: translateY(-120%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.site-header.show {
  transform: translateY(0);
  opacity: 1;
}

.site-header.hide {
  transform: translateY(-120%);
  opacity: 0;
}

.mini-logo img {
  width: 180px;
  display: block;
}

.mini-phone {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--purple);
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 1000;
  box-shadow: 0 14px 42px rgba(124,53,201,.16);
  text-shadow: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 34px 4% 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 14% 30%, rgba(124,53,201,.22), transparent 30%),
    radial-gradient(circle at 86% 70%, rgba(24,207,208,.34), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f0fdff 100%);
}

.hero-card {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1720px;
  min-height: 790px;
  padding: 58px 9%;
  border-radius: 58px;
  border: 2px solid rgba(24,207,208,.22);
  background: var(--glass);
  box-shadow: 0 35px 120px rgba(9,11,18,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(124,53,201,.13), transparent 38%),
    linear-gradient(300deg, rgba(24,207,208,.17), transparent 40%);
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(780px, 90vw);
  margin-bottom: 30px;
  filter: drop-shadow(0 24px 45px rgba(24,207,208,.16));
  animation: logoFloat 5s ease-in-out infinite;
}

.eyebrow,
.section-label {
  position: relative;
  z-index: 2;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1.05rem;
  font-weight: 1000;
}

h1 {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-size: clamp(3.2rem, 6.5vw, 7.3rem);
  line-height: .92;
  letter-spacing: -4px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin: 22px auto 0;
  max-width: 900px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: var(--muted);
  line-height: 1.45;
}

.hero-phone {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  flex-wrap: wrap;
  margin-top: 34px;
  text-decoration: none;
  color: var(--purple);
  font-size: clamp(3.2rem, 8vw, 9.8rem);
  font-weight: 1000;
  letter-spacing: -4px;
  line-height: .92;
  text-shadow: none;
}

.phone-piece {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  filter: blur(4px);
}

.phone-piece.active {
  animation: phoneSoftIn 650ms ease forwards;
}

.hero-phone.ready {
  animation: phoneSettle 700ms ease forwards;
}

.hero-actions,
.contact-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 42px;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 1000;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--turquoise));
  box-shadow: 0 18px 50px rgba(24,207,208,.34);
}

.secondary {
  color: var(--purple);
  background: rgba(255,255,255,.78);
  border: 2px solid rgba(124,53,201,.20);
}

.button:hover {
  transform: translateY(-5px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-purple {
  width: 440px;
  height: 440px;
  background: var(--purple-soft);
  left: -130px;
  top: 18%;
}

.orb-turquoise {
  width: 560px;
  height: 560px;
  background: var(--turquoise-soft);
  right: -180px;
  bottom: 7%;
  animation-delay: -3s;
}

.wind {
  position: absolute;
  height: 18px;
  width: 70vw;
  border-radius: 999px;
  opacity: .22;
  background: linear-gradient(90deg, transparent, var(--purple), var(--turquoise), transparent);
  transform: skewX(-18deg);
  animation: windMove 10s linear infinite;
}

.wind-one { top: 26%; left: -80vw; }
.wind-two { top: 57%; left: -96vw; animation-delay: -3s; }
.wind-three { bottom: 18%; left: -88vw; animation-delay: -7s; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 34px 7%;
  background: var(--dark);
  color: white;
}

.trust div {
  border-left: 5px solid var(--turquoise);
  padding: 18px 24px;
}

.trust strong {
  display: block;
  font-size: 1.45rem;
}

.trust span {
  color: rgba(255,255,255,.72);
}

.section {
  padding: 100px 7%;
  text-align: center;
}

.section h2,
.pflege h2,
.kontakt h2 {
  margin: 18px auto 48px;
  max-width: 980px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  padding: 34px;
  min-height: 250px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, #f4fdff);
  box-shadow: 0 18px 60px rgba(9,11,18,.09);
  border: 1px solid rgba(24,207,208,.16);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 80px rgba(9,11,18,.14);
}

.card span {
  font-size: 2.5rem;
}

.card h3 {
  margin: 18px 0 10px;
  color: var(--purple);
  font-size: 1.5rem;
}

.card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.pflege {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
  padding: 100px 7%;
  background:
    radial-gradient(circle at 85% 30%, rgba(24,207,208,.24), transparent 30%),
    linear-gradient(135deg, #f4fdff, #ffffff);
}

.pflege-text {
  text-align: left;
}

.pflege-text p:not(.section-label) {
  font-size: 1.32rem;
  color: var(--muted);
  line-height: 1.5;
}

.pflege-box {
  background: var(--dark);
  color: white;
  border-radius: 38px;
  padding: 42px;
  box-shadow: 0 25px 90px rgba(0,0,0,.18);
}

.pflege-box strong {
  color: var(--turquoise);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.pflege-box p {
  margin-top: 18px;
  font-size: 1.22rem;
  line-height: 1.45;
}

.kontakt {
  padding: 100px 7%;
  text-align: center;
}

.kontakt p:not(.section-label) {
  color: var(--muted);
  font-size: 1.3rem;
}

.final-phone {
  display: inline-block;
  margin-top: 24px;
  color: var(--purple);
  text-decoration: none;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 1000;
  text-shadow: none;
}

.address {
  margin: 30px auto 0;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--muted);
}

.address strong {
  color: var(--dark);
  font-size: 1.35rem;
}

footer {
  padding: 45px 7%;
  text-align: center;
  background: var(--dark);
  color: white;
}

footer img {
  width: 170px;
  margin-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@keyframes phoneSoftIn {
  0% { opacity: 0; transform: translateY(26px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes phoneSettle {
  0% { opacity: .92; transform: scale(.985); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes orbFloat {
  50% { transform: translateY(-26px) scale(1.06); }
}

@keyframes windMove {
  to { transform: translateX(180vw) skewX(-18deg); }
}

@media (max-width: 1080px) {
  .mini-logo img { width: 170px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pflege { grid-template-columns: 1fr; }
  .pflege-text { text-align: center; }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    padding: 8px 5%;
  }

  .mini-logo img { width: 135px; }
  .mini-phone { font-size: 1.05rem; min-height: 44px; padding: 0 16px; }

  .hero {
    padding: 24px 4% 55px;
  }

  .hero-card {
    padding: 38px 5%;
    border-radius: 34px;
    min-height: 720px;
    overflow: visible;
  }

  .hero-logo {
    width: min(460px, 86vw);
    margin-bottom: 28px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .hero-phone {
    letter-spacing: -2px;
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .trust,
  .cards {
    grid-template-columns: 1fr;
  }
}


/* FINAL FIX: mausgrauer Seitenhintergrund */
html,
body {
  background: #dcdcdc !important;
}

.hero,
.section,
.kontakt,
.legal-page {
  background: #dcdcdc !important;
}

.legal-links {
  margin-top: 16px;
  font-size: 0.95rem;
  text-align: center;
}

.legal-links a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}

.legal-page {
  min-height: 100vh;
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 7%;
  text-align: center;
  line-height: 1.7;
  color: #111520;
}

.legal-page h1 {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.back-btn {
  display: inline-block;
  margin-top: 34px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c35c9, #18cfd0);
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 900;
}
