/* ==========================================================
   💎 Tippilot Global Theme Styles – FINAL STABLE
   - NO PURPLE
   - KEIN FLEX-BODY
   - FOOTER BLEIBT UNTEN, NICHT UNTER HEADER
   ========================================================== */

/* ----------------------------------------------------------
   🔹 Farben & Variablen (HELL)
---------------------------------------------------------- */
:root {
  --bg: #eef0f3;
  --panel: #f8fafc;
  --panel2: #f1f3f6;

  --text: #1f2937;
  --text-muted: #6b7280;

  --accent: #2563eb;
  --accent2: #1d4ed8;

  --border: #d1d5db;
  --shadow: rgba(0,0,0,0.06);
}

/* ----------------------------------------------------------
   🌙 Dark Mode
---------------------------------------------------------- */
body.dark-mode {
  --bg: #1c2433;
  --panel: #242e42;
  --panel2: #2d374f;

  --text: #e5e7eb;
  --text-muted: #b6c0cf;

  --accent: #38bdf8;
  --accent2: #0ea5e9;

  --border: #3b465f;
  --shadow: rgba(0,0,0,0.35);
}

/* ----------------------------------------------------------
   🧱 GLOBAL BASIS (KEIN FLEX!)
---------------------------------------------------------- */
html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
}

/* ----------------------------------------------------------
   🔒 FOOTER-FIX (STABIL, OHNE FLEX)
---------------------------------------------------------- */
.site-footer {
  position: relative;
  margin-top: 80px;
}

/* ----------------------------------------------------------
   ✨ Seiten-Fade
---------------------------------------------------------- */
body {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

body.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   🧾 Inputs & Links
---------------------------------------------------------- */
input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.25);
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: var(--accent2);
}

/* ----------------------------------------------------------
   📄 CMS Content
---------------------------------------------------------- */
.cms-content {
  max-width: 950px;
  margin: 80px auto;
  padding: 60px 45px;
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: center;
}
.home {
    background: var(--bg);
    color: var(--text);
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    padding: 4.5rem clamp(1.5rem, 5vw, 4rem);
    align-items: start;
}

.hero-left {
    max-width: 620px;
}

/* TYPO */
.hero h1 {
    font-size: clamp(2.8rem, 4.8vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* ACTIONS */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}

.btn-primary {
    padding: .8rem 1.6rem;
    background: var(--accent);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
}

.hero-note {
    font-size: .85rem;
    color: var(--muted);
}

/* POINTS */
.hero-points {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    padding: 0;
    font-size: .9rem;
    color: var(--muted);
}

/* RIGHT SIDE */
.hero-right {
    display: grid;
    gap: 1.4rem;
}

.hero-box {
    padding: 1.4rem 1.6rem;
    border-radius: 10px;
    background: rgba(0,0,0,.05);
}

.hero-box strong {
    display: block;
    margin-bottom: .4rem;
    font-size: .95rem;
}

.hero-box p {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
}

.hero-box.highlight {
    background: var(--accent);
    color: #000;
}

.hero-box.highlight p {
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
