/* ============================================================
   ELALIHOLDING — Unterseiten-Layout (schlank, markenkonform)
   ============================================================ */
:root {
  --primary: #2E5BFF;
  --primary-hover: #1E45D9;
  --primary-soft: #EEF3FF;
  --navy: #0A1428;
  --navy-deep: #050B1A;
  --bg: #F8FAFD;
  --text: #0A1428;
  --text-muted: #5A6A85;
  --text-soft: #8A97B0;
  --border: #E5EAF2;
  --border-soft: #EFF2F8;
  --border-dark: rgba(255, 255, 255, 0.08);
  --accent-green: #16A34A;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--primary); color: #fff; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Nav ---- */
.nav-wrap {
  position: sticky; top: 0; z-index: 40;
  background: rgba(248, 250, 253, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.nav { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--text); }
.logo-mark { width: 28px; height: 28px; background: var(--navy); border-radius: 7px; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 14px; font-size: 14.5px; color: var(--text-muted); border-radius: 8px; transition: all 0.15s; }
.nav-link:hover { color: var(--text); background: rgba(10, 20, 40, 0.05); }
.nav-cta { background: var(--text); color: #fff; padding: 10px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: background 0.2s; }
.nav-cta:hover { background: #1A2540; }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; align-items: center; justify-content: center; color: var(--text); }
.nav-toggle:hover { background: rgba(10, 20, 40, 0.05); }
.nav-toggle .ico-close { display: none; }
.nav-wrap.menu-open .nav-toggle .ico-open { display: none; }
.nav-wrap.menu-open .nav-toggle .ico-close { display: block; }
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; }
  .nav-wrap.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(248, 250, 253, 0.98);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 16px 48px rgba(10, 20, 40, 0.10);
    padding: 12px 16px 18px;
    gap: 4px;
  }
  .nav-wrap.menu-open .nav-links .nav-link { display: block; padding: 13px 14px; font-size: 16px; border-radius: 10px; }
  .nav-wrap.menu-open .nav-links .nav-cta { margin-top: 6px; text-align: center; }
}

/* ---- Placeholder-Hero ---- */
.page-main { flex: 1; display: flex; align-items: center; padding: clamp(64px, 12vw, 150px) 0; }
.page-hero { max-width: 720px; margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.page-hero h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.04; margin-bottom: 18px; }
.page-hero h1 .accent { font-style: italic; font-weight: 400; color: var(--primary); }
.page-hero p { font-size: 17px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; }
.page-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 12px; font-size: 15px; font-weight: 500; transition: all 0.2s; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 24px rgba(46, 91, 255, 0.25); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-light:hover { border-color: var(--text); }
.placeholder-note { margin-top: 28px; font-size: 13px; color: var(--text-soft); }

/* ---- Footer (identisch zur Startseite) ---- */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.6); padding: 80px 0 32px; margin-top: auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 32px;
}
.footer-brand .logo { color: #fff; margin-bottom: 20px; }
.footer-brand .logo-mark { background: #fff; color: var(--navy); }
.footer-brand p { font-size: 14px; line-height: 1.55; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 28px; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.footer-social:hover { background: var(--primary); color: #fff; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.65); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.risk-warning { font-size: 11.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.4); margin-bottom: 24px; }
.risk-warning strong { color: rgba(255, 255, 255, 0.55); font-weight: 500; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255, 255, 255, 0.5); }
.footer-legal-links a:hover { color: #fff; }
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   BLOG — Übersicht
   ============================================================ */
.blog-head { text-align: center; max-width: 740px; margin: 0 auto; padding: clamp(56px, 9vw, 110px) 0 0; }
.blog-head h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin: 0 0 16px; }
.blog-head h1 .accent { font-style: italic; font-weight: 400; color: var(--primary); }
.blog-head p { font-size: 17px; color: var(--text-muted); line-height: 1.6; }
.blog-wrap { padding: 48px 0 clamp(64px, 10vw, 120px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { border-color: var(--primary); box-shadow: 0 16px 48px rgba(10, 20, 40, 0.09); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #f0f4ff, #d8e4ff); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat { font-size: 12px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.blog-card h2 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.blog-card-meta { margin-top: auto; font-size: 12.5px; color: var(--text-soft); display: flex; gap: 8px; align-items: center; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG — Artikel
   ============================================================ */
.article { padding: clamp(40px, 7vw, 90px) 0 clamp(56px, 9vw, 110px); }
.article-back { max-width: 760px; margin: 0 auto 22px; }
.article-back a { font-size: 14px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.article-back a:hover { color: var(--primary); }
.article-head { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.article-cat { display: inline-block; color: var(--primary); font-weight: 600; font-size: 13px; margin-bottom: 14px; }
.article-head h1 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 16px; }
.article-meta { font-size: 13.5px; color: var(--text-soft); display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.article-cover { max-width: 960px; margin: 0 auto 44px; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #f0f4ff, #d8e4ff); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: #2A3346; }
.article-body h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; color: var(--text); margin: 42px 0 14px; }
.article-body h3 { font-size: 20px; font-weight: 600; color: var(--text); margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 9px; }
.article-body strong { font-weight: 600; color: var(--text); }
.article-body a { color: var(--primary); text-decoration: underline; }
.article-body blockquote {
  margin: 26px 0; padding: 18px 24px;
  border-left: 3px solid var(--primary);
  background: var(--primary-soft);
  border-radius: 0 12px 12px 0;
  font-size: 18px; color: var(--text);
}
.article-disclaimer {
  max-width: 720px; margin: 40px auto 0;
  padding: 18px 22px; border: 1px solid var(--border);
  border-radius: 14px; background: #fff;
  font-size: 13px; color: var(--text-soft); line-height: 1.6;
}
.article-cta {
  max-width: 720px; margin: 48px auto 0;
  background: var(--navy); border-radius: 20px;
  padding: clamp(32px, 5vw, 48px); text-align: center; color: #fff;
}
.article-cta h3 { color: #fff; font-size: clamp(24px, 3vw, 30px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.article-cta p { color: rgba(255, 255, 255, 0.7); margin-bottom: 24px; }

