/* ============================================================
   FokusKatze — Stylesheet v2
   Navy + Royal Blue, Lavender + Mint Akzente
   Glassmorphism Cards, Barlow Condensed 800i Headlines
   ============================================================ */

:root {
  --bg: #F4F6FB;
  --bg-lavender: #F0EDFF;
  --bg-alt: #F0F3FA;
  --bg-ice: #EEF1FF;
  --card: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(26, 47, 153, 0.08);

  --royal: #1A2F99;
  --royal-light: #3A52CC;
  --royal-glow: rgba(26, 47, 153, 0.12);
  --royal-soft: rgba(26, 47, 153, 0.06);
  --navy: #080E2E;
  --ice: #EEF1FF;
  --ice-mid: #CDD3F5;
  --white: #FAFBFF;
  --gray: #7A82AA;

  --primary: #1A2F99;
  --primary-light: rgba(26, 47, 153, 0.08);
  --primary-medium: rgba(26, 47, 153, 0.15);

  --orange: #FF7B54;
  --orange-light: rgba(255, 123, 84, 0.1);
  --green: #22C55E;
  --green-light: rgba(34, 197, 94, 0.1);
  --blue: #3A52CC;
  --blue-light: rgba(58, 82, 204, 0.1);
  --gold: #F59E0B;
  --gold-light: rgba(245, 158, 11, 0.1);
  --purple: #8B5CF6;
  --purple-light: rgba(139, 92, 246, 0.1);
  --mint: #10B981;  /* nur für pills, nicht als BG */
  --mint-light: rgba(16, 185, 129, 0.08);
  --pink: #EC4899;
  --pink-light: rgba(236, 72, 153, 0.1);

  --text: #080E2E;
  --text-muted: #6B7280;
  --text-light: rgba(8, 14, 46, 0.4);

  --shadow-sm: 0 2px 8px rgba(8, 14, 46, 0.04);
  --shadow-md: 0 8px 32px rgba(8, 14, 46, 0.06);
  --shadow-lg: 0 16px 48px rgba(8, 14, 46, 0.1);
  --shadow-glow: 0 0 40px rgba(26, 47, 153, 0.08);
  --shadow-primary: 0 4px 20px rgba(26, 47, 153, 0.25);

  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --content-width: 720px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--royal-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--royal-light);
  border-radius: 1px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle { font-size: 17px; color: var(--text-muted); max-width: 540px; line-height: 1.7; }

/* ============================================================
   PILLS
   ============================================================ */
.pill {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.pill--orange { background: var(--orange-light); color: var(--orange); }
.pill--green { background: var(--green-light); color: var(--green); }
.pill--blue { background: var(--blue-light); color: var(--blue); }
.pill--gold { background: var(--gold-light); color: #B87D00; }
.pill--purple { background: var(--purple-light); color: var(--purple); }
.pill--pink { background: var(--pink-light); color: var(--pink); }
.pill--mint { background: var(--mint-light); color: var(--mint); }
.pill--navy { background: rgba(8,14,46,0.06); color: var(--navy); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 4px 24px rgba(8,14,46,0.25); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(8,14,46,0.35); }
.btn--royal { background: var(--royal); color: #fff; box-shadow: var(--shadow-primary); }
.btn--royal:hover { background: #152780; transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--ice-mid); }
.btn--outline:hover { border-color: var(--royal); color: var(--royal); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--royal); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.btn--white:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn--ghost { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.12); }
.btn--ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(244,246,251,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(8,14,46,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 500; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { border-radius: 10px; flex-shrink: 0; }
.nav-logo-text { color: var(--navy); }
.nav-logo-text span { font-weight: 800; font-style: italic; color: var(--royal); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray); transition: color 0.2s; position: relative; }
.nav-links a::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--royal); border-radius: 2px; transition: width 0.3s; }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--royal); }
.nav-links a.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--card); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 8px; min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(8px); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 13px; font-weight: 500; color: var(--navy); border-radius: 10px; transition: background 0.15s; }
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: var(--royal-soft); }
.nav-dropdown-divider { height: 1px; background: var(--glass-border); margin: 6px 8px; }

.nav-yt-btn {
  font-size: 13px; font-weight: 600; padding: 10px 22px;
  background: var(--navy); color: #fff !important;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.nav-yt-btn:hover { background: var(--royal); transform: translateY(-1px); box-shadow: var(--shadow-primary); }
.nav-yt-btn::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-ice) 50%, var(--bg-lavender) 100%);
  overflow: hidden;
}

/* Full-width Hero — image behind, soft gradient from left */
.hero-split {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero-split-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-split-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
/* Wide soft gradient — no hard edge */
.hero-split-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--bg) 0%,
    rgba(244,246,251,0.97) 20%,
    rgba(244,246,251,0.85) 35%,
    rgba(244,246,251,0.55) 50%,
    rgba(244,246,251,0.2) 65%,
    transparent 80%
  );
  z-index: 1;
}
.hero-split-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.hero-split-content-inner {
  max-width: 480px;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-split-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,47,153,0.12);
  width: 100%;
}
.hero::before {
  content:''; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--royal-glow) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content:''; position: absolute; bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.05) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px 22px; font-size: 13px; font-weight: 500;
  color: var(--gray); margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(1.4); } }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95; letter-spacing: -1px;
  margin-bottom: 28px; color: var(--navy);
}
.hero h1 em { font-style: italic; color: var(--royal); position: relative; }
.hero h1 em::after {
  content:''; position: absolute; bottom: 4px; left: -2px;
  width: calc(100% + 4px); height: 8px;
  background: rgba(26,47,153,0.12); border-radius: 4px; z-index: -1;
}
.hero-sub { font-size: clamp(16px,2vw,19px); color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 64px; padding-top: 36px; border-top: 1px solid var(--ice-mid); }
.hero-stat { text-align: center; }
.hero-stat-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic; font-size: 32px; color: var(--navy); }
.hero-stat-label { font-size: 13px; color: var(--gray); margin-top: 2px; }

/* ============================================================
   VIDEOS
   ============================================================ */
.videos { padding: 80px 0; }
.videos-slider {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 20px; margin-top: 40px;
}
.videos-slider::-webkit-scrollbar { display: none; }
.videos-slider .video-card { min-width: 340px; max-width: 340px; scroll-snap-align: start; flex-shrink: 0; }

/* Slider arrows */
.slider-wrap { position: relative; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
  color: var(--navy);
}
.slider-arrow:hover {
  box-shadow: var(--shadow-lg);
  background: var(--navy);
  color: #fff;
}
.slider-arrow--left { left: -22px; }
.slider-arrow--right { right: -22px; }

.videos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }

.video-card {
  background: var(--card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.video-thumb {
  position: relative; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, #131845 50%, #1a2560 100%);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.video-thumb img { position: absolute; top:0;left:0; width:100%;height:100%; object-fit: cover; }
.video-thumb .play-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); position: relative; z-index: 2;
}
.video-card:hover .play-icon { background: var(--royal); transform: scale(1.1); }
.play-icon svg { width: 20px; height: 20px; fill: #fff; margin-left: 2px; }
.video-thumb .pill { position: absolute; top: 14px; right: 14px; z-index: 2; }
.video-thumb .duration {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  font-size: 12px; font-weight: 600; color: #fff;
  background: rgba(0,0,0,0.55); padding: 4px 10px; border-radius: 8px;
}


.video-body { padding: 20px 24px 24px; }
.video-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px; line-height: 1.3;
  margin-bottom: 12px; color: var(--navy);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.video-meta { display: flex; align-items: center; justify-content: space-between; }
.video-date { font-size: 13px; color: var(--gray); }
.video-link { font-size: 14px; font-weight: 600; color: var(--royal); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.video-link:hover { gap: 8px; }

/* ============================================================
   THEMEN
   ============================================================ */
.themen { padding: 60px 0 100px; }
.themen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.thema-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl); padding: 36px 28px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.thema-card::before { content:''; position: absolute; top:0;left:0;right:0; height: 6px; }
.thema-card--orange { background: linear-gradient(180deg, rgba(255,123,84,0.08) 0%, var(--card) 50%); }
.thema-card--orange::before { background: var(--orange); }
.thema-card--green { background: linear-gradient(180deg, rgba(34,197,94,0.08) 0%, var(--card) 50%); }
.thema-card--green::before { background: var(--green); }
.thema-card--blue { background: linear-gradient(180deg, rgba(58,82,204,0.08) 0%, var(--card) 50%); }
.thema-card--blue::before { background: var(--blue); }
.thema-card--gold { background: linear-gradient(180deg, rgba(245,158,11,0.08) 0%, var(--card) 50%); }
.thema-card--gold::before { background: var(--gold); }
.thema-card--purple { background: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, var(--card) 50%); }
.thema-card--purple::before { background: var(--purple); }
.thema-card--pink { background: linear-gradient(180deg, rgba(236,72,153,0.08) 0%, var(--card) 50%); }
.thema-card--pink::before { background: var(--pink); }
.thema-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--shadow-glow); border-color: transparent; }

/* Icons direkt ohne Kreis, größer */
.thema-icon { font-size: 40px; margin-bottom: 18px; line-height: 1; }

.thema-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 10px; color: var(--navy); }
.thema-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.thema-card .card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--royal-soft);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-4px); transition: var(--transition);
}
.thema-card:hover .card-arrow { opacity: 1; transform: translateX(0); }
.thema-count { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--glass-border); }

/* ============================================================
   FEATURE CARD — big hero-style card
   ============================================================ */
.feature-card {
  background: var(--navy); border-radius: var(--radius-xl);
  overflow: hidden; display: grid;
  grid-template-columns: 1fr 1fr; min-height: 400px;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(8,14,46,0.2); }
.feature-card-img {
  background: linear-gradient(135deg, #131845 0%, #1a2560 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card-body {
  padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.feature-card-body .pill { margin-bottom: 16px; }
.feature-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 32px; color: #fff; line-height: 1.1;
  margin-bottom: 16px;
}
.feature-card-body p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; }

/* ============================================================
   BLOG / RATGEBER
   ============================================================ */
.blog { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-ice), var(--bg-lavender));
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body .pill { margin-bottom: 14px; }
.blog-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px; line-height: 1.25;
  margin-bottom: 10px; color: var(--navy);
}
.blog-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-link {
  font-size: 14px; font-weight: 600; color: var(--royal);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s; margin-top: auto;
}
.blog-link:hover { gap: 8px; }

/* ============================================================
   PRODUCT / AFFILIATE CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.product-card {
  background: var(--card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card-img {
  aspect-ratio: 1/1; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-ice), var(--bg-lavender));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.product-card-body { padding: 16px; }
.product-card-body h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.product-card-body .product-price { font-size: 13px; font-weight: 700; color: var(--royal); }
.product-card-body .product-tag { font-size: 11px; color: var(--gray); }

/* ============================================================
   PROMO BANNER — gradient strip
   ============================================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--royal) 0%, #2940B8 50%, var(--purple) 100%);
  border-radius: var(--radius-xl); padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.promo-banner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 28px; color: #fff; line-height: 1.1;
}
.promo-banner p { font-size: 15px; color: rgba(255,255,255,0.6); margin-top: 8px; line-height: 1.6; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 120px 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.cta::before {
  content:''; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,47,153,0.2) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 560px; margin: 0 auto; }
.cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: clamp(36px,5vw,56px);
  color: #fff; line-height: 1.05; margin-bottom: 20px;
}
.cta p { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 40px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-compact { padding: 48px 0 32px; border-top: 1px solid var(--glass-border); background: var(--bg); }
.footer-compact .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo-sm { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 500; }
.footer-logo-sm span > span { font-weight: 800; font-style: italic; color: var(--royal); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--royal); }
.footer-copy-sm { font-size: 12px; color: var(--text-light); width: 100%; text-align: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--glass-border); }

/* ============================================================
   BREADCRUMB / ARTICLE
   ============================================================ */
.breadcrumb { padding: 20px 0; font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--gray); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--royal); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

.article-header { padding: 20px 0 48px; max-width: var(--content-width); }
.article-header .pill { margin-bottom: 20px; }
.article-header h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic; font-size: clamp(28px,4.5vw,48px); line-height: 1.05; color: var(--navy); margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 20px; font-size: 14px; color: var(--gray); flex-wrap: wrap; }
.article-meta-item { display: flex; align-items: center; gap: 6px; }
.article-meta-item svg { width: 16px; height: 16px; stroke: var(--gray); fill: none; stroke-width: 2; }

.article-content { max-width: var(--content-width); }
.article-content p, .article-content li { font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.article-content h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic; font-size: 28px; margin: 48px 0 16px; color: var(--navy); position: relative; padding-left: 20px; }
.article-content h2::before { content:''; position: absolute; left:0; top:4px; bottom:4px; width:4px; background: var(--royal); border-radius: 2px; }
.article-content h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; margin: 32px 0 12px; }
.article-content a { color: var(--royal); text-decoration: underline; text-underline-offset: 3px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 24px; }
.article-content li { margin-bottom: 8px; padding-left: 8px; }
.article-content li::marker { color: var(--royal); }

.callout { background: var(--bg-ice); border: 1px solid var(--ice-mid); border-radius: var(--radius); padding: 24px 28px; margin: 32px 0; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.article-card { background: var(--card); border: 1px solid var(--glass-border); border-radius: var(--radius-xl); padding: 28px; transition: var(--transition); display: flex; flex-direction: column; }
.article-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-3px); }
.article-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.25; color: var(--navy); margin-bottom: 12px; }
.article-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.article-card-link { font-size: 13px; font-weight: 600; color: var(--royal); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.article-card:hover .article-card-link { gap: 8px; }

.related { padding: 80px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.related-card { background: var(--card); border: 1px solid var(--glass-border); border-radius: var(--radius-xl); padding: 28px 24px; transition: var(--transition); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.related-card .pill { margin-bottom: 16px; }
.related-card h3 { font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.related-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.related-link { font-size: 14px; font-weight: 600; color: var(--royal); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.related-link:hover { gap: 8px; }

.progress-bar { position: fixed; top: 72px; left: 0; width: 0%; height: 3px; background: var(--royal); z-index: 999; }

/* ============================================================
   ARTICLE LAYOUT — Sidebar + TOC
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Table of Contents */
.toc {
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.toc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 16px;
}
.toc-list { list-style: none; }
.toc-list a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0 8px 14px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1.4;
}
.toc-list a:hover, .toc-list a.active {
  color: var(--royal);
  border-left-color: var(--royal);
  background: var(--primary-light);
  border-radius: 0 8px 8px 0;
}

/* Sign Items (nummerierte Merkmale) */
.sign-item {
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px 24px 80px;
  margin: 20px 0;
  transition: var(--transition);
  position: relative;
}
.sign-item:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.sign-number {
  position: absolute;
  left: 24px; top: 22px;
  width: 40px; height: 40px;
  background: var(--primary-light);
  color: var(--royal);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800;
}
.sign-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  margin: 0 0 8px; color: var(--navy);
}
.sign-item p { font-size: 15px; margin-bottom: 0; line-height: 1.7; color: var(--text-muted); }

/* Inline Recommendation */
.inline-recommendation {
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
  display: flex;
  gap: 24px;
  align-items: center;
  transition: var(--transition);
}
.inline-recommendation:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.inline-rec-img {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: var(--bg-lavender);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; flex-shrink: 0;
}
.inline-rec-body { flex: 1; }
.inline-rec-badge {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--royal);
  background: var(--primary-light);
  padding: 4px 10px; border-radius: var(--radius-pill);
  display: inline-block; margin-bottom: 8px;
}
.inline-rec-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.inline-rec-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px; }
.inline-rec-link { font-size: 13px; font-weight: 600; color: var(--royal); }

/* Article Disclaimer */
.article-disclaimer {
  background: rgba(8,14,46,0.03);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 40px;
}
.article-disclaimer strong { color: var(--navy); }

/* Sidebar CTA */
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; margin-bottom: 20px; }
.sidebar-cta .btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center;
  font-size: 14px; font-weight: 600;
  padding: 12px 24px;
  background: var(--royal); color: #fff;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.sidebar-cta .btn-cta:hover { background: #152780; }

/* Sidebar Product Card */
.sidebar-product {
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sidebar-product-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray); padding: 18px 22px 0;
}
.sidebar-product-body { padding: 16px 22px 22px; }
.sidebar-product-body h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

/* Article Lead */
.article-lead {
  font-size: 18px !important;
  line-height: 1.75 !important;
  border-left: 3px solid var(--royal);
  padding-left: 20px;
  margin-bottom: 32px !important;
}

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .toc { display: none; }
}

@media (max-width: 768px) {
  .inline-recommendation { flex-direction: column; text-align: center; }
  .sign-item { padding-left: 28px; padding-top: 72px; }
  .sign-number { top: 20px; left: 20px; }
}

/* ============================================================
   FULL-WIDTH IMAGE STRIP
   ============================================================ */
.img-strip {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.img-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 15%, transparent 60%, rgba(8,14,46,0.5) 100%);
  pointer-events: none;
}
.img-strip-text {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
}
.img-strip-text .section-label {
  color: #fff;
  background: rgba(26,47,153,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.img-strip-text .section-label::before { display: none; }
.img-strip-text .section-title {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ============================================================
   MAGAZINE GRID — 1 big + 2 small
   ============================================================ */
.mag-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.mag-grid .blog-card:first-child {
  grid-row: 1 / 3;
}
.mag-grid .blog-card:first-child .blog-card-img {
  aspect-ratio: auto;
  flex: 1;
  min-height: 240px;
}
.mag-grid .blog-card {
  display: flex;
  flex-direction: column;
}
.mag-grid .blog-card .blog-card-img {
  aspect-ratio: 2/1;
}

/* ============================================================
   TWO-COL SECTION — text + image
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.two-col-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   KEY VISUAL HERO — faded background image
   ============================================================ */
.kv-hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.kv-hero-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 600px;
  opacity: 0.08;
  filter: brightness(1.2);
  pointer-events: none;
  z-index: 0;
}
.kv-hero .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .themen-grid { grid-template-columns: repeat(2,1fr); }
  .videos-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .article-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card-img { min-height: 240px; }
  .hero-split { min-height: 420px; }
  .hero-split-bg::after {
    background: linear-gradient(180deg, rgba(244,246,251,0.95) 0%, rgba(244,246,251,0.7) 50%, rgba(244,246,251,0.3) 100%) !important;
  }
  .hero-split-content-inner { max-width: 100%; }
  .slider-arrow--left { left: 4px; }
  .slider-arrow--right { right: 4px; }
  .img-strip { height: 280px; }
  .two-col-img { min-height: 300px; }
  .mag-grid { grid-template-columns: 1fr; }
  .mag-grid .blog-card:first-child { grid-row: auto; }
  .two-col { grid-template-columns: 1fr; }
  .img-strip { height: 200px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: center;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--card); padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md); animation: slideDown 0.3s ease;
  }
  @keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
  .hero { padding: 60px 0 80px; }
  .hero-stats { gap: 24px; }
  .themen-grid, .videos-grid, .blog-grid, .article-grid, .related-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .themen, .videos, .blog, .cta { padding: 70px 0; }
  .videos-slider .video-card { min-width: 280px; max-width: 280px; }
  .footer-compact .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { gap: 10px !important; justify-content: center; flex-wrap: wrap; }
  .nav-dropdown-menu { display: none !important; }
  .nav-dropdown > a svg { display: none; }
  .promo-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .article-content p, .article-content li { font-size: 15px; line-height: 1.7; }
  .article-content h2 { font-size: 22px; margin: 32px 0 12px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .section-title { font-size: 28px !important; }
  .btn { font-size: 13px; padding: 14px 28px; }
  .nav-inner { height: 60px; }
  .footer-links { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .videos-slider .video-card { min-width: 260px; max-width: 260px; }
  .product-grid { grid-template-columns: 1fr; }
}
