/* ============================================================
   BAUPLAN-PAGE (Redaktionsplan-App) — Design-Steuerzentrale
   Basis: Marketing/_vorlage-page (Struktur unverändert).
   Farben + Schriften: Brand-Design GS Selent (Petrol/Koralle,
   live von gs-selent.de gemessen, Stand 10.07.2026).
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700&display=swap");

:root {
  /* ---------- 🎨 BRAND-FARBEN (GS Selent, Website-Palette) ---------- */
  --brand-primary:      #4A8B8B;  /* Soft Petrol · Sekundärtext, Rahmen */
  --brand-primary-deep: #2D5A5A;  /* Deep Petrol · dunkle Sektionen, Headlines */
  --brand-accent:       #E07A5F;  /* Warm Coral · CTA-Buttons */
  --brand-accent-hover: #C96A50;  /* Button-Hover (dunklere Coral-Stufe) */
  --brand-light:        #FAF8F5;  /* Warm White · helle Sektionen */
  --brand-sand:         #EFEBE5;  /* Muted · zweite helle Fläche */
  --brand-ink:          #1F2430;  /* Charcoal · Fließtext auf hell */
  --brand-paper:        #FAF8F5;  /* Textfarbe auf dunkel */
  --brand-wood:         #C4A77D;  /* Wood Accent · sparsam */

  /* ---------- ✍️ SCHRIFTEN (Brand: Poppins + Montserrat) ---------- */
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --font-btn:  "Montserrat", "Segoe UI", sans-serif;

  /* ---------- Abgeleitete Werte ---------- */
  --muted-on-light: rgba(31, 36, 48, 0.68);
  --muted-on-dark:  rgba(250, 248, 245, 0.78);
  --hairline:       rgba(31, 36, 48, 0.13);
  --radius: 16px;        /* Karten (live gemessen: 16px) */
  --radius-btn: 6px;     /* Buttons (live gemessen: 6px) */
  --maxw: 1060px;
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--brand-ink);
  background: var(--brand-light);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 5.2vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 0.6em; }
h3 { font-size: 1.12rem; margin-bottom: 0.35em; font-weight: 600; }
.sec-light h2, .sec-sand h2, .sec-light h3, .sec-sand h3 { color: var(--brand-primary-deep); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px; opacity: 0.85;
}
.sec-light .eyebrow, .sec-sand .eyebrow { color: var(--brand-primary); opacity: 1; }

/* ---------- Sektionen ---------- */
section { padding: 72px 0; }
.sec-light { background: var(--brand-light); }
.sec-sand  { background: var(--brand-sand); }
.sec-dark  { background: var(--brand-primary-deep); color: var(--brand-paper); }
.sec-dark .muted { color: var(--muted-on-dark); }
.muted { color: var(--muted-on-light); }
.lead { font-size: 1.15rem; max-width: 640px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #356969 0%, var(--brand-primary-deep) 55%, #224545 100%);
  color: var(--brand-paper);
  padding: 88px 0 76px; text-align: left;
}
.hero .lead { margin: 20px 0 8px; color: var(--muted-on-dark); }
.hero h1 { font-weight: 800; }
.hero .mark { color: var(--brand-accent); }

/* Hero-Raster: Text links, Gina rechts */
.hero-grid {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 48px; align-items: center;
}
.hero-portrait { position: relative; justify-self: end; max-width: 340px; }
.hero-portrait img {
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--brand-accent), 0 24px 60px rgba(0, 0, 0, 0.28);
}
.hero-badge {
  position: absolute; left: -14px; bottom: 22px;
  background: var(--brand-light); color: var(--brand-primary-deep);
  font-size: 0.8rem; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* Leicht-Chips: „das schaffe ich"-Signal auf einen Blick */
.ease-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 6px; }
.ease-chips li {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px; padding: 8px 16px 8px 12px;
  font-size: 0.92rem; font-weight: 500;
}
.ease-chips li::before { content: "✓ "; color: var(--brand-accent); font-weight: 700; }

/* Empowerment-Zeile über dem CTA */
.power-line {
  margin: 20px 0 26px; font-size: 1.12rem; font-weight: 600;
  color: #fff; border-left: 4px solid var(--brand-accent); padding-left: 14px;
}

/* ---------- Buttons (EIN CTA-Stil, überall gleich) ---------- */
.btn {
  display: inline-block;
  background: var(--brand-accent); color: #fff;
  font-family: var(--font-btn);
  font-weight: 600; font-size: 1.05rem;
  padding: 16px 34px; border-radius: var(--radius-btn);
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--brand-accent-hover); transform: translateY(-1px); }
.btn-note { display: block; margin-top: 12px; font-size: 0.85rem; opacity: 0.75; }

/* ---------- Karten-Raster ---------- */
.grid { display: grid; gap: 20px; margin-top: 34px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border-radius: var(--radius);
  padding: 26px 24px; border: 1px solid #E6E8EA;
}
.sec-dark .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.card .num {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  color: var(--brand-accent); margin-bottom: 8px;
}

/* ---------- Problem-Liste ---------- */
.pain-list { list-style: none; margin-top: 26px; max-width: 640px; }
.pain-list li {
  padding: 14px 0 14px 34px; position: relative;
  border-bottom: 1px solid var(--hairline);
}
.pain-list li::before { content: "✗"; position: absolute; left: 4px; color: var(--brand-accent); font-weight: 700; }

/* ---------- Beweis-Block (Screenshot direkt unter dem Hero) ---------- */
.proof-frame {
  margin-top: 30px;
  background: #fff; border: 1px solid #E6E8EA; border-radius: var(--radius);
  padding: 14px; box-shadow: 0 24px 60px rgba(45, 90, 90, 0.14);
}
.proof-frame img { border-radius: 8px; }
.proof-caption { margin-top: 16px; font-size: 0.95rem; color: var(--muted-on-light); max-width: 640px; }
.screens { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.screens .proof-frame { margin-top: 0; }

/* ---------- Happen-Liste (7 Schritte) ---------- */
.happen-list { list-style: none; margin-top: 30px; max-width: 720px; counter-reset: happen; }
.happen-list li {
  counter-increment: happen;
  position: relative;
  background: #fff; border: 1px solid #E6E8EA; border-radius: var(--radius);
  padding: 20px 24px 20px 76px; margin-bottom: 14px;
}
.happen-list li::before {
  content: counter(happen);
  position: absolute; left: 22px; top: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand-primary-deep); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.happen-list h3 { margin-bottom: 4px; }
.happen-list p { font-size: 0.97rem; color: var(--muted-on-light); }

/* ---------- Klartext-Sektion (brauchst du / ist es nicht) ---------- */
.honest { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.honest-col { background: #fff; border: 1px solid #E6E8EA; border-radius: var(--radius); padding: 26px 24px; }
.honest-col ul { list-style: none; margin-top: 14px; }
.honest-col li { padding: 10px 0 10px 32px; position: relative; border-bottom: 1px solid var(--hairline); font-size: 0.97rem; }
.honest-col li:last-child { border-bottom: none; }
.honest-col.ja li::before { content: "✓"; position: absolute; left: 2px; color: var(--brand-primary); font-weight: 700; }
.honest-col.nein li::before { content: "✗"; position: absolute; left: 2px; color: var(--brand-accent); font-weight: 700; }

/* ---------- Über-mich ---------- */
.about { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start; margin-top: 30px; }
.about .portrait {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: var(--brand-sand); border: 1px solid var(--hairline);
}
.about .portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Social Proof ---------- */
.quote blockquote { font-size: 0.98rem; font-style: italic; }
.quote figcaption { margin-top: 12px; font-size: 0.82rem; font-weight: 600; color: var(--muted-on-light); }
.cta-mid { text-align: center; margin-top: 38px; }

/* ---------- FAQ ---------- */
details {
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0;
}
summary { font-weight: 600; cursor: pointer; font-size: 1.05rem; list-style: none; position: relative; padding-right: 30px; color: var(--brand-primary-deep); }
summary::after { content: "+"; position: absolute; right: 4px; font-size: 1.3rem; color: var(--brand-accent); }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; max-width: 620px; }

/* ---------- Formular / Zoho-Embed ---------- */
.form-box { max-width: 560px; margin-top: 28px; }
.form-box iframe { background: #fff; border-radius: var(--radius); }
.form-legal { font-size: 0.78rem; margin-top: 12px; opacity: 0.7; }
.form-legal a { color: inherit; }

/* ---------- Footer ---------- */
footer {
  background: var(--brand-primary-deep); color: var(--muted-on-dark);
  padding: 34px 0; font-size: 0.85rem;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
footer a { color: inherit; }

/* ---------- Scroll-Reveal (fail-safe, siehe Script in index.html) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}

/* ---------- Mobil ---------- */
@media (max-width: 800px) {
  section { padding: 52px 0; }
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-portrait { justify-self: start; max-width: 260px; }
  .hero-portrait img { box-shadow: 7px 7px 0 var(--brand-accent), 0 18px 44px rgba(0, 0, 0, 0.28); }
  .grid-3 { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about .portrait { max-width: 240px; }
  .honest { grid-template-columns: 1fr; }
  .screens { grid-template-columns: 1fr; }
  .happen-list li { padding-left: 66px; }
  .happen-list li::before { left: 16px; width: 34px; height: 34px; }
}
