/* ── FEEMINA GLOBAL STYLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: #FDF8F5; color: #1E2A32;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  padding-top: 68px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --pink: #ED7C9E; --pink-dark: #C85C80; --pink-light: #FDF0F4;
  --pink-mid: #F5C8D8; --cream: #FDF8F5; --dark: #1E2A32; --mid: #7A6872;
  --border: rgba(237,124,158,0.15);
  --shadow: 0 2px 8px rgba(0,0,0,0.04), 0 16px 48px rgba(0,0,0,0.08);
}

/* ── SHARED COMPONENTS ── */
.eyebrow {
  display: block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 0.8rem; text-align: center;
}
.sec-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 900;
  text-align: center; letter-spacing: -0.025em;
  line-height: 1.2; margin-bottom: 0.8rem;
}
.sec-sub {
  text-align: center; color: var(--mid); font-size: 1rem;
  font-weight: 400; line-height: 1.7; max-width: 520px;
  margin: 0 auto 3rem;
}
.pink { color: var(--pink); }

/* ── PAGE HERO (Unterseiten) ── */
.page-hero {
  padding: calc(68px + 5rem) 5% 5rem;
  position: relative; overflow: hidden;
  text-align: center;
  background: var(--cream);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #FDE8F0 0%, transparent 65%);
  z-index: 0; pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1.05rem; color: var(--mid);
  line-height: 1.8; margin-bottom: 2rem;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 2.2rem; justify-content: center;
}
.chip {
  background: white; border: 1px solid rgba(237,124,158,0.25);
  color: #A05070; border-radius: 100px; padding: 7px 16px;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 1px 4px rgba(237,124,158,0.1);
}
.page-hero .btn-pink { display: inline-flex; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-pink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--pink); color: white; padding: 1rem 2.2rem;
  border-radius: 100px; font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s; box-shadow: 0 8px 24px rgba(237,124,158,0.35);
  font-family: 'Manrope', sans-serif;
}
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--pink); padding: 1rem 2.2rem;
  border-radius: 100px; font-weight: 800; font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ── SECTIONS ── */
section { padding: 5rem 5%; }
section.alt { background: white; }
.inner { max-width: 1100px; margin: 0 auto; }

/* Section header block — eyebrow + title + sub together */
.sec-head { margin-bottom: 3rem; }
.sec-head .eyebrow { margin-bottom: 0.6rem; }
.sec-head .sec-title { margin-bottom: 0.7rem; }
.sec-head .sec-sub { margin-bottom: 0; }

/* ── GRIDS ── */
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

/* ── CARDS ── */
.card {
  background: white; border-radius: 20px; padding: 1.8rem;
  border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
section.alt .card { background: #FDF8F5; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-ico { font-size: 2rem; margin-bottom: 1rem; }
.card-title { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.card-text { font-size: 0.88rem; color: var(--mid); line-height: 1.65; }

/* ── INCLUDE LIST ── */
.include-list {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 0.85rem;
  max-width: 720px; margin: 0 auto 2rem;
  padding: 2rem; background: white; border-radius: 20px;
  border: 1px solid var(--border);
}
section.alt .include-list { background: #FDF8F5; }
.include-list li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.92rem; font-weight: 500; color: var(--dark);
}
.include-list li::before {
  content: '✓'; color: var(--pink); font-weight: 900;
  font-size: 1rem; flex-shrink: 0; width: 20px; height: 20px;
  background: var(--pink-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}

/* ── CTA BOX ── */
.cta-box {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: white; border-radius: 28px;
  padding: 4rem 3rem; text-align: center;
  box-shadow: 0 20px 60px rgba(237,124,158,0.3);
}
.cta-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900;
  letter-spacing: -0.02em; margin-bottom: 0.8rem;
}
.cta-box p { opacity: 0.88; margin-bottom: 2rem; line-height: 1.7; font-size: 1.05rem; }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  background: white; border-radius: 0;
}
.faq-item:first-child { border-radius: 16px 16px 0 0; border: 1px solid var(--border); border-bottom: none; }
.faq-item:last-child { border-radius: 0 0 16px 16px; border: 1px solid var(--border); border-top: none; }
.faq-item:only-child { border-radius: 16px; border: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 1.5rem; cursor: pointer; font-weight: 700;
  font-size: 0.97rem; gap: 1rem;
}
.faq-q:hover { color: var(--pink); }
.faq-icon { font-size: 1.3rem; color: var(--pink); flex-shrink: 0; transition: transform 0.2s; }
.faq-a { font-size: 0.92rem; color: var(--mid); line-height: 1.75; padding: 0 1.5rem 1.3rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── PROSE (legal + blog) ── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; font-weight: 800; margin: 2.5rem 0 0.8rem; letter-spacing: -0.015em; }
.prose h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.prose p { font-size: 0.95rem; color: var(--mid); line-height: 1.85; margin-bottom: 1rem; }
.prose ul { margin: 0.5rem 0 1rem 1.5rem; }
.prose ul li { font-size: 0.95rem; color: var(--mid); line-height: 1.75; margin-bottom: 0.4rem; }
.prose a { color: var(--pink); }
.prose a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 3.5rem 4%; }
  .page-hero { padding: calc(68px + 3.5rem) 4% 3.5rem; }
  .grid3 { grid-template-columns: repeat(2,1fr); }
  .grid2 { grid-template-columns: 1fr; }
  .include-list { grid-template-columns: 1fr; padding: 1.5rem; }
  .cta-box { padding: 3rem 1.5rem; }
}
@media (max-width: 500px) {
  .grid3 { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.9rem; }
}
