/* ============================================================
   DIE GESETZE DER GEWINNER - Main Stylesheet
   Domain: bodoschaferdiegesetzedergewinner.de
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --dark: #1A1A1A;
  --dark-2: #242424;
  --dark-3: #2E2E2E;
  --white: #F5F0E8;
  --white-pure: #FFFFFF;
  --text-muted: #9A9A8A;
  --red-cta: #D94F3D;
  --red-cta-hover: #B83D2D;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .04em;
}
.site-logo span { color: var(--white); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--white); font-size: .88rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }

.btn-header {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
  transition: background .2s, transform .1s;
}
.btn-header:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #111 0%, #1e1a10 50%, #111 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.12) 0%, transparent 65%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge::before { content: '★'; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--white-pure);
  margin-bottom: 18px;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}
.hero-meta-item .label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

.btn-cta {
  display: inline-block;
  background: var(--red-cta);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(217,79,61,.4);
  text-align: center;
}
.btn-cta:hover { background: var(--red-cta-hover) !important; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(217,79,61,.5); }
.btn-cta-sub { font-size: .78rem; color: var(--text-muted); margin-top: 10px; }

.hero-book img {
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.7));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 8px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-muted);
}
.trust-item .icon { font-size: 1.2rem; }
.trust-item strong { color: var(--white); }

/* ── SECTIONS ── */
section { padding: 72px 0; }
.section-alt { background: var(--dark-2); }
.section-dark { background: var(--dark-3); }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--white-pure);
  margin-bottom: 18px;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-lead {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 660px;
}
.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ── REVIEW CONTENT ── */
.review-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--white-pure);
  margin: 48px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.review-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin: 32px 0 12px;
}
.review-body p { color: #CCC8BC; margin-bottom: 18px; line-height: 1.8; }
.review-body p:first-child { font-size: 1.1rem; color: var(--white); }
.review-body strong { color: var(--white); }

.review-body ul {
  margin: 16px 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.review-body ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #CCC8BC;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.review-body ul li::before {
  content: '✦';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: .7rem;
  top: 12px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}
.highlight-box p { color: var(--white); margin: 0; font-style: italic; font-family: 'Source Serif 4', serif; font-size: 1.05rem; }

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.benefit-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.benefit-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; margin: 0; }

/* ── CHAPTERS ── */
.chapters-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.chapter-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color .2s;
}
.chapter-item:hover { border-color: var(--gold); }
.chapter-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
  min-width: 44px;
  opacity: .7;
}
.chapter-content h3 { color: var(--white-pure); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.chapter-content p { color: var(--text-muted); font-size: .9rem; margin: 0; line-height: 1.6; }

/* ── AUTHOR ── */
.author-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.author-img { border-radius: 12px; overflow: hidden; border: 2px solid var(--border); }
.author-img img { width: 100%; filter: grayscale(20%); }
.author-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.author-bio p { color: #CCC8BC; line-height: 1.8; margin-bottom: 16px; }
.author-stat-row { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; }
.author-stat { display: flex; flex-direction: column; }
.author-stat .val { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); font-weight: 900; line-height: 1; }
.author-stat .lbl { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 12px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 12px; }
.testi-text { color: #CCC8BC; font-size: .95rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 900;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .9rem; color: var(--white); }
.testi-role { font-size: .78rem; color: var(--text-muted); }

/* ── OFFER BOX ── */
.offer-box {
  background: linear-gradient(135deg, #1a1500, #2a2000, #1a1500);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.15) 0%, transparent 60%);
}
.offer-badge {
  display: inline-block;
  background: var(--red-cta);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
  position: relative;
}
.offer-box .offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white-pure);
  margin-bottom: 12px;
  position: relative;
}
.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
  margin: 16px 0 4px;
  position: relative;
}
.offer-shipping { font-size: .9rem; color: var(--text-muted); margin-bottom: 28px; position: relative; }
.offer-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
}
.offer-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--white);
}
.offer-feature .check { color: var(--gold); font-size: 1rem; }
.offer-box .btn-cta { font-size: 1.15rem; padding: 18px 48px; position: relative; }
.offer-guarantee { font-size: .8rem; color: var(--text-muted); margin-top: 16px; position: relative; }

/* ── FAQ ── */
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .arrow { font-size: 1.2rem; transition: transform .3s; color: var(--gold); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--text-muted); font-size: .95rem; line-height: 1.7;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(26,26,26,.75); font-size: 1.05rem; margin-bottom: 28px; }
.btn-cta-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--gold) !important;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  transition: background .2s, transform .15s;
  border: 2px solid var(--dark);
}
.btn-cta-dark:hover { background: var(--dark-2) !important; transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  background: #111;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .site-logo { font-size: 1.05rem; margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; }
.footer-col h4 { color: var(--gold); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: var(--text-muted); font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }

/* ── INNER PAGES ── */
.page-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--border); background: var(--dark-2); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white-pure); }
.page-hero p { color: var(--text-muted); margin-top: 8px; }
.page-content { padding: 64px 0; }
.page-content h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); margin: 36px 0 12px; }
.page-content p, .page-content li { color: #CCC8BC; line-height: 1.8; margin-bottom: 14px; }
.page-content ul { padding-left: 24px; }
.page-content a { color: var(--gold); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 600px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--red-cta);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  transition: background .2s;
  font-family: 'DM Sans', sans-serif;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--red-cta-hover); }

/* ── MOBILE NAV ── */
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.6rem; cursor: pointer; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-book { order: -1; max-width: 280px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .author-section { grid-template-columns: 1fr; }
  .author-img { max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark-2);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  .header-inner { position: relative; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .offer-box { padding: 28px 20px; }
  .offer-price { font-size: 2.8rem; }
  .cta-banner h2 { font-size: 1.7rem; }
  .trust-items { flex-direction: column; align-items: center; }
}

/* ── UTILITY ── */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.tag-gratis {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
}
