:root{
  --bg: #fff7fb; /* heller, weicher Hintergrund */
  --surface: #ffffff;
  --surface2: #fff1f7; /* zarte Rosé-Fläche */
  --text: #3f3f3f;
  --headline: #2a2a2a;
  --muted: #6f6f6f;

  --brand: #d96a99; /* heller als vorher */
  --brand2: #f2a9c6; /* Akzent hell */
  --brandDeep: #c4497c; /* für Hover/Highlights */
  --line: #f0e6ec;

  --radius: 18px;
  --max: 1100px;
  --shadow: 0 18px 40px rgba(0,0,0,.06);
  --shadow2: 0 18px 50px rgba(201,72,124,.14);

  /* 🔧 KOMPATIBILITÄTS-ALIASE (wichtig!) */
  --brand-2: var(--brand2);
  --border: var(--line);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(217,106,153,.20), transparent 60%),
    radial-gradient(900px 500px at 95% 10%, rgba(242,169,198,.24), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.7;
}

.wrap{max-width:var(--max);margin:0 auto;padding:32px 24px}
a{color:inherit;text-decoration:none}
.section{margin-bottom:72px}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:34px;
  flex-wrap:wrap;
}

/* brand left */
.brand{display:flex;align-items:center;gap:14px}
.logo{
  background: rgba(255,255,255,.9);
  border-radius:16px;
  padding:10px 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}
.logo img{height:60px;width:auto;display:block}

.brand-text strong{
  display:block;
  font-family:'Playfair Display',serif;
  color:var(--headline);
  font-size:16px;
  font-weight:700;
}
.brand-text span{display:block;color:var(--muted);font-size:13px}

/* nav right-aligned */
nav{
  margin-left:auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
}
nav a{
  margin-left:12px;
  color:var(--muted);
  font-weight:500;
  font-size:14px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
}
nav a:hover{
  color:var(--headline);
  border-color:var(--line);
  background:rgba(255,255,255,.6);
}

h1,h2,h3{
  font-family:'Playfair Display',serif;
  color:var(--headline);
  margin:0 0 12px;
}
h1{font-size:clamp(36px, 4.2vw, 56px);line-height:1.06}
h2{font-size:30px}
h3{font-size:18px}

.muted{color:var(--muted)}

.hero{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:54px;
  align-items:center;
  padding:28px;
  border-radius:24px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
@media(max-width:900px){
  .hero{grid-template-columns:1fr; padding:22px}
}

.hero p{margin:0 0 14px}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(217,106,153,.10);
  border:1px solid rgba(217,106,153,.20);
  color: var(--headline);
  font-size:13px;
  font-weight:600;
}

.avatar img{
  width:100%;
  border-radius:16px;
  border:1px solid var(--line);
  box-shadow:0 18px 44px rgba(0,0,0,.08);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  background:linear-gradient(135deg, var(--brand), var(--brandDeep));
  color:#fff;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.2px;
  transition:.2s ease;
  border:1px solid rgba(196,73,124,.18);
  box-shadow: 0 14px 34px rgba(201,72,124,.20);
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow: 0 16px 44px rgba(201,72,124,.26);
}
.btn:focus{outline:3px solid rgba(217,106,153,.28); outline-offset:3px}

.btn-ghost{
  background:rgba(255,255,255,.85);
  color:var(--headline);
  border:1px solid var(--line);
  box-shadow: 0 12px 26px rgba(0,0,0,.05);
}
.btn-ghost:hover{
  transform:translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.07);
}

.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.microtrust{font-size:14px;color:var(--muted);margin-top:10px}

ul{list-style:none;padding:0;margin:0}
ul li{
  margin:12px 0;
  padding-left:20px;
  position:relative;
}
ul li:before{
  content:"";
  width:8px;height:8px;
  background:var(--brandDeep);
  border-radius:50%;
  position:absolute;
  left:0;top:10px;
}

.hr{height:1px;background:var(--line);margin:26px 0}

.kicker{
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:22px;
}
@media(max-width:900px){
  .cards{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
  position:relative;
}
.card .price{font-weight:700;color:var(--muted);margin:0 0 10px}
.card p{margin:0}

.card .tag{
  position:absolute;
  top:14px; right:14px;
  font-size:12px;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(242,169,198,.25);
  border:1px solid rgba(217,106,153,.22);
  color: var(--headline);
}

.featured{
  border:1px solid rgba(201,72,124,.26);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,241,247,.75));
  box-shadow: var(--shadow2);
  transform: translateY(-2px);
}

.offer-list{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.offer-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:14px;
  color:var(--muted);
}
.dot{
  width:10px;height:10px;border-radius:50%;
  margin-top:6px;
  background: rgba(201,72,124,.9);
}

.softbox{
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}

.cal-wrap{
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.7);
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media(max-width:900px){
  .two-col{grid-template-columns:1fr}
}

.faq details{
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}
.faq details + details{margin-top:12px}
.faq summary{
  cursor:pointer;
  font-weight:700;
  color:var(--headline);
}
.faq p{margin:10px 0 0;color:var(--muted)}

footer{
  border-top:1px solid var(--line);
  padding-top:26px;
  font-size:13px;
  color:var(--muted);
}
footer a{color:var(--muted)}
footer a:hover{color:var(--headline)}

.sticky{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
}
