/* ==========================================================================
   DER MANN AM STEUER – LANDINGPAGE STYLES
   --------------------------------------------------------------------------
   🔧 Alles, was du regelmäßig anpassen willst, findest du oben in
      :root als CSS-Variablen. Einfach Werte ändern – fertig.
   ========================================================================== */

:root {
  /* ---------- FARBEN ---------- */
  --color-bg:           #0d0e15;     /* Sehr dunkles Anthrazit (Premium-Look) */
  --color-bg-soft:      #14161f;     /* Leicht heller für Sektionen */
  --color-surface:      #1c1f2c;     /* Karten / Boxen */
  --color-border:       #2a2e3d;     /* Subtile Trennlinien */

  --color-text:         #ececef;     /* Haupttext */
  --color-text-muted:   #9a9aab;     /* Sekundärtext */
  --color-text-soft:    #c8c8d3;     /* Weicher Text */

  --color-accent:       #d8a64b;     /* Warmes Gold – Premium / Vertrauen */
  --color-accent-hover: #e8b85a;
  --color-accent-soft:  rgba(216, 166, 75, 0.15);

  --color-success:      #6ec07a;
  --color-danger:       #d36464;

  /* ---------- SCHRIFTEN ---------- */
  --font-display: 'Fraunces', Georgia, serif;   /* Headlines */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* ---------- ABSTÄNDE ---------- */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-width: 1100px;
  --max-width-narrow: 720px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

p { margin-bottom: 1rem; }

strong { color: #fff; font-weight: 600; }
em { font-style: italic; color: var(--color-accent); font-weight: 500; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container.narrow { max-width: var(--max-width-narrow); }

.centered { text-align: center; }
.muted { color: var(--color-text-muted); }
.small { font-size: 0.875rem; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  background: var(--color-bg-soft);
  color: var(--color-text-muted);
  text-align: center;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .topbar { font-size: 0.7rem; padding: 0.5rem; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(ellipse at top, rgba(216,166,75,0.10) 0%, transparent 60%),
    var(--color-bg);
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero__image-wrap { order: -1; }
}

.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 600px) {
  .hero__image { max-width: 280px; }
}

.hero__pill {
  display: inline-block;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero__headline .accent { color: var(--color-accent); font-style: italic; font-weight: 600; }

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--color-text-soft);
  margin: 0 0 2rem;
  line-height: 1.6;
}
@media (max-width: 850px) {
  .hero__sub { max-width: 620px; margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   CTA-BUTTONS
   ========================================================================== */
.cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 0;
  letter-spacing: 0.01em;
}
.cta--primary {
  background: var(--color-accent);
  color: #1a1410;
  box-shadow: 0 8px 30px rgba(216,166,75,0.35);
}
.cta--primary:hover {
  background: var(--color-accent-hover);
  color: #1a1410;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(216,166,75,0.45);
}
.cta--big {
  padding: 1.25rem 2.6rem;
  font-size: 1.15rem;
}
.cta--inline { margin-top: 1.5rem; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}
.section--dark   { background: var(--color-bg-soft); }
.section--accent {
  background: linear-gradient(160deg, var(--color-bg-soft) 0%, #1f1810 100%);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section__intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 3rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--color-text-soft);
  margin-bottom: 1.25rem;
}
.lead--highlight {
  text-align: center;
  font-size: 1.25rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ==========================================================================
   GRID + KARTEN
   ========================================================================== */
.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
}
.card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.card p {
  color: var(--color-text-muted);
  font-size: 0.97rem;
  margin: 0;
}

.callout {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.1rem;
}
.callout p { margin: 0; }

/* ==========================================================================
   PRODUKT-SEKTION
   ========================================================================== */
.product {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) {
  .product { grid-template-columns: 1fr; gap: 2.5rem; }
}

.product__image { display: flex; justify-content: center; }
.product__copy .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.product__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* Echtes Produkt-Bild (Buchcover + Aubergine) */
.product-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  transition: transform .4s ease;
}
.product-image:hover { transform: translateY(-6px); }

.checks {
  list-style: none;
  margin: 1.5rem 0;
}
.checks li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  color: var(--color-text-soft);
  border-bottom: 1px solid var(--color-border);
}
.checks li:last-child { border-bottom: none; }
.checks li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.5rem;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ==========================================================================
   OUTCOMES (Was du in den nächsten Wochen lernen wirst)
   ========================================================================== */
.outcomes {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.outcome {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, transform .2s ease;
}
.outcome:hover {
  border-color: var(--color-accent);
  transform: translateX(4px);
}
.outcome__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #1a1410;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 2px;
}
.outcome__text {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text-soft);
  line-height: 1.55;
}
.outcome__text strong { color: #fff; font-weight: 600; }

/* ==========================================================================
   TRANSFORMATION (VORHER/NACHHER)
   ========================================================================== */
.transformation .card { padding: 2rem; }
.transformation h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.card--before {
  border-color: rgba(211,100,100,0.3);
}
.card--before h3 { color: var(--color-danger); }

.card--after {
  border-color: rgba(110,192,122,0.3);
  background: linear-gradient(180deg, var(--color-surface) 0%, rgba(110,192,122,0.05) 100%);
}
.card--after h3 { color: var(--color-success); }

.x-list, .check-list { list-style: none; }
.x-list li, .check-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  color: var(--color-text-soft);
  border-bottom: 1px solid var(--color-border);
}
.x-list li:last-child, .check-list li:last-child { border-bottom: none; }
.x-list li::before {
  content: '✕';
  position: absolute; left: 0; top: 0.6rem;
  color: var(--color-danger); font-weight: 700;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0.6rem;
  color: var(--color-success); font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.stars {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.testimonial p {
  font-style: italic;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.testimonial__name {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   ANGEBOT / PREISBOX
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.eyebrow.centered { display: block; text-align: center; }

.offer {
  background: var(--color-surface);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4),
              0 0 0 1px rgba(216,166,75,0.1) inset;
}
.offer__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.offer__includes {
  list-style: none;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 2rem;
}
.offer__includes li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-soft);
}
.offer__includes li:last-child { border-bottom: none; }

.offer__price {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.offer__price-old {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 1.2rem;
}
.offer__price-new {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.offer__price-tag {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer__small {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Trust-Box (statt Garantie) */
.trust-box {
  margin-top: 2.5rem;
  padding: 2.25rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.trust-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.75rem;
  text-align: center;
  line-height: 1.3;
}
.trust-box__items {
  display: grid;
  gap: 1.5rem;
}
.trust-item-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.trust-item-row__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  line-height: 1.4;
}
.trust-item-row__text strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}
.trust-item-row__text p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.trust-item-row__text em {
  font-style: italic;
  color: var(--color-text-soft);
  font-weight: 500;
}
.trust-box__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-style: italic;
  color: var(--color-text-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* Vorher/Nachher-Bild */
.transformation-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 0 auto 3rem;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}
.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: border-color .2s ease;
}
.faq details[open] {
  border-color: var(--color-accent);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform .2s ease;
  font-weight: 300;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 1rem;
  color: var(--color-text-soft);
  line-height: 1.65;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.final-cta .cta { margin: 1rem 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer__nav a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.footer__nav a:hover { color: var(--color-accent); }

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color .2s ease;
}
.footer__instagram:hover { color: var(--color-accent); }

.footer__small {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   LEGAL SUB-PAGES (Impressum / Datenschutz)
   ========================================================================== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 1rem;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-page h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-page p, .legal-page li {
  color: var(--color-text-soft);
  font-size: 0.97rem;
  line-height: 1.75;
}
.legal-page ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-page a { color: var(--color-accent); }
.legal-page .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.legal-page .back-link:hover { color: var(--color-accent); }
.legal-page .placeholder {
  background: rgba(216,166,75,0.1);
  border-left: 3px solid var(--color-accent);
  padding: 0.2rem 0.5rem;
  font-family: monospace;
  font-size: 0.95em;
  color: var(--color-accent);
  border-radius: 3px;
}

/* ==========================================================================
   RESPONSIVE FEINTUNING
   ========================================================================== */
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .hero { padding: 3rem 0 2rem; }
  .offer { padding: 2rem 1.5rem; }
  .outcome { gap: 1rem; padding: 1.25rem; }
  .outcome__check { width: 30px; height: 30px; font-size: 1rem; }
  .outcome__text { font-size: 0.97rem; }
  .trust-box { padding: 1.75rem 1.25rem; }
  .trust-item-row { gap: 1rem; }
  .trust-item-row__icon { width: 32px; font-size: 1.4rem; }
  .cta--big { padding: 1.1rem 2rem; font-size: 1.05rem; width: 100%; }
  .lead--highlight { font-size: 1.1rem; padding: 1.25rem; }
}
