/* =============================================
   frauen-innere-kraft.de – Site CSS
   ============================================= */

:root {
  --red:       #E62525;
  --red-dark:  #C0392B;
  --red-light: #FDEDEC;
  --ink:       #1a1a1a;
  --ink-2:     #444;
  --muted:     #666;
  --line:      #e8e8e8;
  --bg:        #fff;
  --bg-alt:    #faf9f8;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow:    0 8px 28px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --max:       1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
p { margin-bottom: 1rem; color: var(--ink-2); }
p:last-child { margin-bottom: 0; }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
section.tight { padding: 48px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-red { background: var(--red); }
.bg-dark { background: #1a1a1a; }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  letter-spacing: .02em;
}
.btn:hover { background: var(--red-dark); text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: #f5f5f5; }
.btn-lg { padding: 18px 42px; font-size: 1.08rem; }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--red); }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--ink-2); font-size: .96rem; font-weight: 500; text-decoration: none; transition: color .15s; }
.nav a:hover { color: var(--red); }
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; padding: 16px 24px 20px; }
.mobile-nav a { display: block; padding: 10px 0; color: var(--ink-2); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: block; }
@media(max-width:760px) {
  .nav, .header .btn { display: none; }
  .burger { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f8 0%, #fff 60%);
  padding: 60px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media(min-width:860px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero h1 { margin-bottom: 20px; }
.hero .sub { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 28px; }
.hero-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img img, .hero-img video {
  width: 100%;
  max-width: 640px;
  display: block;
  animation: slideFromRight 1.2s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes slideFromRight {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* Quote hero */
.hero-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
}
.hero-quote strong { color: var(--red); font-style: normal; }

/* Section titles */
.section-title { margin-bottom: 8px; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 600px; }
.section-sub.center { margin: 0 auto; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media(min-width:600px) { .cards { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .cards.three { grid-template-columns: 1fr 1fr 1fr; } }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.card .ico {
  width: 52px; height: 52px;
  background: var(--red-light);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .97rem; }

/* Bullet list */
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.check-list li:last-child { border-bottom: none; }
.check-list .ic { color: var(--red); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media(min-width:640px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .testi-grid { grid-template-columns: 1fr 1fr 1fr; } }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testi .stars { color: #f0a500; font-size: 1rem; margin-bottom: 12px; }
.testi p { font-size: .97rem; color: var(--ink-2); font-style: italic; margin-bottom: 16px; }
.testi .author { font-weight: 700; font-size: .9rem; color: var(--ink); }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media(min-width:860px) { .split { grid-template-columns: 1fr 1fr; } }
.split .img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split .img-wrap img { width: 100%; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 32px 0; display: grid; gap: 20px; }
.steps li { display: flex; gap: 20px; align-items: flex-start; }
.steps .n {
  flex: 0 0 42px; width: 42px; height: 42px;
  background: var(--red); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.steps h3 { margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: .96rem; margin: 0; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media(min-width:640px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(192,57,43,.08);
}
.price-card .label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin-bottom: 12px; }
.price-card .amount { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--ink); line-height: 1; margin: 8px 0 4px; }
.price-card .old { text-decoration: line-through; color: var(--muted); font-size: .95rem; }
.price-card p { font-size: .95rem; color: var(--muted); margin: 12px 0 20px; }

/* Opt-in box */
.optin-box {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.optin-box h2 { color: #fff; margin-bottom: 10px; }
.optin-box p { color: rgba(255,255,255,.88); margin-bottom: 28px; }
.optin-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
.optin-form input {
  padding: 14px 18px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  width: 100%;
}
.optin-form .btn-white { width: 100%; padding: 14px; font-size: 1rem; }
.optin-note { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 10px; }

/* CTA bar */
.cta-bar {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
}
.cta-bar h2 { color: #fff; margin-bottom: 12px; }
.cta-bar p { color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 28px; }

/* Page hero */
.pagehero {
  background: linear-gradient(135deg, #fff8f8, #fff);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--line);
}
.pagehero .eyebrow { margin-bottom: 8px; }
.pagehero h1 { margin-bottom: 14px; }
.pagehero p { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }

/* About layout */
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
}
.about-photo img { width: 100%; }

/* Quote block */
.blockquote {
  border-left: 4px solid var(--red);
  padding: 16px 24px;
  background: var(--red-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

/* Footer */
footer {
  background: #111;
  color: #9CA3AF;
  padding: 48px 0 32px;
}
footer .f-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media(min-width:640px) { footer .f-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
footer .logo-foot {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
footer .logo-foot span { color: var(--red); }
footer h4 { color: #fff; font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; font-family: 'Lato', sans-serif; }
footer a { color: #9CA3AF; font-size: .93rem; display: block; margin-bottom: 8px; transition: color .15s; }
footer a:hover { color: #fff; text-decoration: none; }
footer .divider { border: none; border-top: 1px solid #2a2a2a; margin-bottom: 24px; }
footer .small { font-size: .83rem; color: #6B7280; line-height: 1.6; }
