@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Mulish:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  --black: #2a2020;
  --gray: #505050;
  --soft: #FFF5E1;
  --white: #ffffff;
  --accent-a: #870059;
  --accent-b: #D4AF37;
  --grad: linear-gradient(100deg, #870059 0%, #D4AF37 100%);
  --dark: #870059;
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

a { color: var(--accent-a); }
a:hover { color: var(--dark); }

body {
  font-family: 'Mulish', -apple-system, 'Segoe UI', sans-serif;
  color: var(--gray);
  background: var(--white);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(3rem, 8vw, 5.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 26px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }

/* Blog-Artikel: mehr Luft zwischen Absaetzen und vor Zwischentiteln */
.article-body p { margin-bottom: 26px; line-height: 1.8; }
.article-body h2 { margin-top: 58px; margin-bottom: 24px; }
.article-body h3 { margin-top: 40px; margin-bottom: 16px; }
.article-body p:last-child { margin-bottom: 0; }

.article-body ol, .article-body ul { margin: 0 0 26px; padding-left: 26px; }
.article-body ol { list-style: decimal; }
.article-body ul { list-style: disc; }
.article-body li { margin-bottom: 12px; line-height: 1.8; }
.article-body li:last-child { margin-bottom: 0; }

.article-body .step-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
  margin: 12px 0 30px;
}

.article-body .callout {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 30px 0;
}
.article-body .callout p { margin-bottom: 0; }
.article-body .callout strong { color: var(--accent-a); }

.article-body .toc {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 30px;
}
.article-body .toc p { margin-bottom: 10px; font-weight: 700; }
.article-body .toc ul { margin: 0; padding-left: 22px; }
.article-body .toc li { margin-bottom: 8px; }
.article-body .toc a { color: var(--gray); text-decoration: none; }
.article-body .toc a:hover { color: var(--accent-a); }

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 12px 0 30px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.inner { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.slim { max-width: 760px; }
.center { text-align: center; }

.lead { color: var(--gray); font-size: 1.2rem; max-width: 640px; margin: 0 auto 50px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.brand {
  display: inline-block;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-item {
  display: inline-block;
  vertical-align: middle;
}

.links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.2s;
}

.links a:hover { color: var(--accent-a); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 28px 0;
  max-width: 980px;
  margin: 0 auto;
}

.crumb {
  display: inline-block;
  font-family: 'Mulish', -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 22px;
}

.hero h1 { margin-bottom: 30px; }

/* Grosse Hero-Zeile: SEO-h1 ist der .crumb-Titel, dies hier ist nur die optische Headline */
.hero-title {
  font-family: 'Lora', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--black);
  font-size: clamp(3rem, 8vw, 4.4rem);
  margin-bottom: 30px;
}

.hero-sub {
  color: var(--gray);
  font-size: 1.25rem;
  max-width: 660px;
  margin: 0 auto 40px;
}

.chip-row { margin-top: 54px; }

.chip {
  display: inline-block;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
}

.chip-sub {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 14px auto 0;
}

.hero-visual {
  margin-top: 70px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  max-height: 480px;
  box-shadow: 0 30px 80px rgba(135, 0, 89, 0.18);
}

.hero-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Button */
.btn {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 38px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(135, 0, 89, 0.35);
  color: var(--white);
}

/* Ribbon */
.ribbon {
  text-align: center;
  padding: 90px 28px 50px;
  background: var(--white);
}

.ribbon p {
  font-family: 'Lora', serif;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 880px;
  margin: 0 auto;
  color: var(--black);
}

/* Blocks */
.block { padding: 80px 0; }
.block-first { padding-top: 80px; }
.block-soft { background: var(--soft); }

#preis { padding-top: 40px; }

.duo {
  display: flex;
  gap: 70px;
  align-items: center;
}

.duo-img { flex: 0 0 40%; }

.duo-img img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.duo-text { flex: 1; }

/* Check list */
.check-list { list-style: none; text-align: left; }

.check-list li {
  position: relative;
  padding: 10px 0 10px 36px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.4-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4-7 7z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.4-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4-7 7z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Flow prose */
.flow { max-width: 640px; margin: 0 auto; }
.flow p { margin-bottom: 18px; color: var(--gray); }
.flow.left { margin: 0; }

.big-grad {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 30px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* Tiles */
.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 50px 0;
  text-align: left;
}

.tile {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 28px;
  font-weight: 500;
}

/* Feature cards */
.feature-cards {
  display: flex;
  gap: 28px;
  margin-bottom: 50px;
  text-align: left;
}

.feature-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.icon-dot {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

/* Feature-Card-Variante: Icon links, Text rechts, kompakter (z.B. Kontakt-Karten) */
.feature-card--row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
}
.feature-card--row .icon-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}
.feature-card--row h3 { margin-bottom: 4px; font-size: 1.1rem; }
.feature-card--row p:last-child { margin-bottom: 0; }

.dates { color: var(--gray); font-size: 1rem; }
.dates strong { color: var(--black); }

/* Media row */
.media-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.media-row img {
  width: 290px;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.pill {
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 500;
}

.topic-duo {
  display: flex;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.topic-card {
  flex: 1;
  border-radius: var(--radius);
  padding: 34px;
  background: var(--soft);
}

.topic-card p { color: var(--gray); }

.topic-now {
  background: var(--dark);
  color: var(--white);
}

.topic-now .tag {
  color: var(--accent-b);
  background: none;
  -webkit-text-fill-color: initial;
}

.topic-now h3 { color: var(--white); }
.topic-now p { color: rgba(255, 255, 255, 0.8); }

.tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* Price */
.price-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 24px 80px rgba(135, 0, 89, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card > p { color: var(--gray); margin-bottom: 30px; }

.price-list { max-width: 440px; margin: 0 auto 36px; }

.price {
  font-family: 'Lora', serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--black);
}

.price-sub {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 10px 0 34px;
}

.fine { font-size: 0.85rem; color: var(--gray); margin-top: 20px; }

/* FAQ */
.faq {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 26px;
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--black);
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 16px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-a);
  transition: transform 0.25s;
}

.faq[open] summary::after { transform: rotate(45deg); }

.faq p { padding: 0 26px 22px; color: var(--gray); }

/* Final */
.final-block { padding-bottom: 140px; }

.final-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(135, 0, 89, 0.25);
}

.option-grid {
  display: flex;
  gap: 28px;
  margin: 50px 0;
  text-align: left;
}

.option {
  flex: 1;
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--soft);
}

.option p { color: var(--gray); }

.option-active {
  background: var(--dark);
  color: var(--white);
  position: relative;
}

.option-active h3 {
  color: var(--accent-b);
}

.option-active p { color: rgba(255, 255, 255, 0.8); }

/* Footer */
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-inner p { font-size: 0.9rem; color: var(--gray); }

.footer-inner p a {
  color: var(--black);
  text-decoration: none;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 18px;
}

.footer-links a:hover { color: var(--accent-a); }

/* Responsive */
@media (max-width: 840px) {
  .block { padding: 80px 0; }
  .duo { flex-direction: column; gap: 44px; }
  .duo-img { flex: none; max-width: 360px; }
  .feature-cards, .topic-duo, .option-grid { flex-direction: column; }
  .tile-grid { grid-template-columns: 1fr; }

  .menu-toggle { display: flex; }

  .links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 28px 20px;
    max-height: calc(100vh - 70px);
    max-height: calc(100svh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .links.open { display: flex; }

  .links a {
    margin-left: 0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.98rem;
  }

  .price-card { padding: 44px 26px; }

  .block-first { padding-top: 50px; }
  .ribbon { padding-top: 30px; }
}

/* Offer cards (Startseite) */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  text-align: left;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(135, 0, 89, 0.16);
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offer-card-body { padding: 30px 32px 34px; }

.offer-card h3 { margin-bottom: 10px; font-size: 1.5rem; color: var(--black); }

.offer-card p { color: var(--gray); margin-bottom: 18px; }

.offer-card .read-more {
  color: var(--accent-a);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.offer-card:hover .read-more { color: var(--dark); }

/* Link-in-Bio Liste */
.link-list {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 20px 26px;
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(135, 0, 89, 0.18);
}

.link-card h3 { margin-bottom: 4px; font-size: 1.1rem; }

.link-card p { color: var(--gray); margin: 0; font-size: 0.92rem; }

/* Blog-Uebersicht: gleiche Karten wie Angebote, eigenes Grid (3 Spalten) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  text-align: left;
}

/* Promo-Banner: fuer aktuelle Aktionen (Freebie, Sonderangebot usw.), austauschbarer Inhalt */
.promo-banner {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 44px;
  margin: 50px 0 0;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(135, 0, 89, 0.25);
}

.promo-banner img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.promo-banner-text { flex: 1; }

.promo-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.promo-banner h2 { color: var(--white); }

.promo-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
  font-size: 1.1rem;
}

.promo-banner .btn { background: var(--white); color: var(--dark); }
.promo-banner .btn:hover { background: rgba(255, 255, 255, 0.9); }

@media (max-width: 840px) {
  .promo-banner { flex-direction: column; text-align: center; }
  .promo-banner img { width: 100%; height: 220px; }
}

/* Testimonials (Startseite) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  text-align: left;
}

.testimonial-card {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 32px 30px;
}

.testimonial-card p {
  color: var(--black);
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-who span {
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}

/* Dropdown submenu */
.nav-item { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 0;
  min-width: 230px;
  z-index: 60;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  margin-left: 0 !important;
  padding: 10px 22px;
  font-size: 1.06rem;
  color: var(--gray);
  border-bottom: none !important;
  white-space: nowrap;
}

.dropdown a:hover { background: var(--soft); color: var(--accent-a); }

/* Mobile: stack offer/testimonial cards, dropdown becomes inline */
@media (max-width: 840px) {
  .offer-grid, .testimonial-grid, .blog-grid { grid-template-columns: 1fr; }

  .nav-item { display: block; }

  /* LichtImpuls-Hero: mobil linksbuendig statt zentriert, wie auf den anderen Seiten */
  .hero { text-align: left; }
  .hero-sub, .chip-sub { margin-left: 0; margin-right: 0; }

  .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 6px 16px;
    min-width: 0;
  }

  .dropdown a { padding: 8px 0; font-size: 0.96rem; }

  .quote-item { flex-direction: column; }
}

/* Kompakte Kundenstimmen-Liste */
.quote-list {
  display: grid;
  gap: 20px;
  text-align: left;
}

.quote-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--soft);
  border-radius: var(--radius);
  padding: 26px 30px;
}

.quote-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.quote-item p { color: var(--black); font-style: italic; margin-bottom: 10px; }
.quote-who { font-weight: 700; color: var(--black); font-size: 0.95rem; font-style: normal; }
.quote-role { color: var(--gray); font-size: 0.85rem; font-style: normal; }
.quote-role a { color: var(--gray); }

/* Presse/Screenshot-Testimonials */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.press-grid img { border-radius: var(--radius); width: 100%; }

@media (max-width: 840px) {
  .press-grid { grid-template-columns: 1fr; }
}

/* Gestapelte Feature-Cards, volle Breite untereinander statt nebeneinander */
.feature-cards.stacked { flex-direction: column; }
.feature-cards.stacked .feature-card { width: 100%; }
