/* ============================================================
   PsychoWende — Shared Stylesheet
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg: #FAFAF8;
  --bg-rose-tint: #FFF0F3;
  --card: #FFFFFF;
  --rose: #FF3356;
  --rose-light: rgba(255, 51, 86, 0.08);
  --rose-medium: rgba(255, 51, 86, 0.15);
  --rose-glow: rgba(255, 51, 86, 0.25);
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: rgba(26, 26, 46, 0.5);
  --dark: #1A1A2E;
  --blue: #508CFF;
  --blue-light: rgba(80, 140, 255, 0.1);
  --yellow: #FFB400;
  --yellow-light: rgba(255, 180, 0, 0.1);
  --green: #22C55E;
  --green-light: rgba(34, 197, 94, 0.1);
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.04);
  --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.12);
  --shadow-rose: 0 4px 20px rgba(255, 51, 86, 0.2);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --content-width: 720px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  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;
}

/* ============================================================
   SECTION LABELS (reusable)
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

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

/* ============================================================
   PILLS (category labels)
   ============================================================ */
.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.pill--rose { background: var(--rose-light); color: var(--rose); }
.pill--blue { background: var(--blue-light); color: var(--blue); }
.pill--yellow { background: var(--yellow-light); color: #B87D00; }
.pill--green { background: var(--green-light); color: var(--green); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn--primary {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-rose);
}

.btn--primary:hover {
  background: #E82D4D;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 51, 86, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(26, 26, 46, 0.15);
}

.btn--outline:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--rose);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img { border-radius: 8px; flex-shrink: 0; }

.nav-logo-text span { color: var(--rose); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--rose); }
.nav-links a.active::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FFFFFF;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 40px rgba(26, 26, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  transform: translateX(-50%) translateY(16px);
  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: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #1A1A2E;
  border-radius: 8px;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(26, 26, 46, 0.04);
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(26, 26, 46, 0.06);
  margin: 6px 8px;
}

.nav-yt-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  background: var(--rose);
  color: #fff !important;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-yt-btn:hover {
  background: #E82D4D;
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
}

/* No underline on YouTube button */
.nav-yt-btn::after { display: none !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-rose-tint) 100%);
  overflow: hidden;
}

/* Decorative floating shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 51, 86, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid rgba(255, 51, 86, 0.12);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--rose);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--rose-medium);
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats ticker below hero */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   THEMEN SECTION
   ============================================================ */
.themen {
  padding: 100px 0;
}

.themen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.thema-card {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.thema-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  transition: height 0.3s ease;
}

.thema-card--rose::before { background: var(--rose); }
.thema-card--blue::before { background: var(--blue); }
.thema-card--yellow::before { background: var(--yellow); }

.thema-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.thema-card:hover::before { height: 4px; }

.thema-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.thema-icon--rose { background: var(--rose-light); }
.thema-icon--blue { background: var(--blue-light); }
.thema-icon--yellow { background: var(--yellow-light); }

.thema-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.thema-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Video count badge */
.thema-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

/* ============================================================
   VIDEOS SECTION
   ============================================================ */
.videos {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 240, 243, 0.3) 50%, var(--bg) 100%);
}

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

.video-card {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.video-card--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb--narzissmus {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B2E 50%, #3A1525 100%);
}

.video-thumb--psychologie {
  background: linear-gradient(135deg, #1A1A2E 0%, #1B2A3A 50%, #1A2540 100%);
}

.video-thumb--coming {
  background: linear-gradient(135deg, #E8E8E6 0%, #D8D8D4 100%);
}

.video-thumb .play-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-card:hover .play-icon {
  background: var(--rose);
  transform: scale(1.1);
}

.play-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.video-thumb .pill {
  position: absolute;
  top: 14px;
  left: 14px;
}

.video-thumb .duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 8px;
  border-radius: 6px;
}

.video-body {
  padding: 20px 24px 24px;
}

.video-body h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text);
  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(--text-muted);
}

.video-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.video-link:hover { gap: 8px; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog {
  padding: 100px 0;
}

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

.blog-card {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card .pill { margin-bottom: 20px; }

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--text);
}

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.blog-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.blog-link:hover { gap: 8px; }

/* Reading time */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-read-time {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================================
   CTA SECTION (dark)
   ============================================================ */
.cta {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 51, 86, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.06) 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-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER (index style)
   ============================================================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.footer-logo span > span { color: var(--rose); }

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26, 26, 46, 0.04);
  border: 1px solid rgba(26, 26, 46, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-link:hover {
  background: var(--rose-light);
  border-color: var(--rose-medium);
  color: var(--rose);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 24px;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  max-width: 480px;
  text-align: right;
  line-height: 1.5;
}

/* Footer compact variant (blog pages) */
.footer-compact {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
  background: var(--bg);
}

.footer-compact .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-logo-sm {
  font-size: 16px;
  font-weight: 700;
}

.footer-logo-sm span > span { color: var(--rose); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--rose); }

.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 rgba(26, 26, 46, 0.04);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--rose); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ============================================================
   ARTICLE LAYOUT (blog)
   ============================================================ */
.article-header {
  padding: 20px 0 48px;
  max-width: var(--content-width);
}

.article-header .pill { margin-bottom: 20px; }

.article-header h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Article content (Lora for body) */
.article-content {
  max-width: var(--content-width);
}

.article-content p,
.article-content li {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.article-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--text);
  letter-spacing: -0.3px;
  position: relative;
  padding-left: 20px;
}

.article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--rose);
  border-radius: 2px;
}

.article-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
}

.article-content strong { font-weight: 600; }

.article-content em {
  font-style: italic;
  color: var(--text-muted);
}

.article-content a {
  color: var(--rose);
  text-decoration: underline;
  text-decoration-color: var(--rose-medium);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.article-content a:hover {
  text-decoration-color: var(--rose);
}

.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(--rose);
}

/* Lead paragraph */
.article-lead {
  font-size: 19px !important;
  line-height: 1.75 !important;
  color: var(--text) !important;
  font-weight: 400;
  border-left: 3px solid var(--rose);
  padding-left: 20px;
  margin-bottom: 32px !important;
}

/* Callout / highlight box */
.callout {
  background: var(--bg-rose-tint);
  border: 1px solid var(--rose-medium);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}

.callout-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.callout p {
  font-size: 15px !important;
  margin-bottom: 0 !important;
  color: var(--text) !important;
}

/* Numbered sign items */
.sign-item {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 20px 0;
  transition: var(--transition);
  position: relative;
  padding-left: 80px;
}

.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(--rose-light);
  color: var(--rose);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.sign-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px !important;
  color: var(--text);
}

.sign-item p {
  font-size: 15px !important;
  margin-bottom: 0 !important;
  line-height: 1.7 !important;
}

/* Video embed placeholder */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B2E 50%, #3A1525 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.video-embed:hover { transform: scale(1.005); }

.video-embed .play-btn {
  width: 72px;
  height: 72px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 30px rgba(255, 51, 86, 0.4);
  transition: var(--transition);
}

.video-embed:hover .play-btn { transform: scale(1.1); }

.video-embed .play-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px;
}

.video-embed .video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-embed .video-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 8px;
}

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

/* Table of Contents */
.toc {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.toc-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 0;
}

.toc-list a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 14px;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.toc-list a:hover,
.toc-list a.active {
  color: var(--rose);
  border-left-color: var(--rose);
  background: var(--rose-light);
  border-radius: 0 8px 8px 0;
}

/* Affiliate Product Card (sidebar) */
.product-card {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.product-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 18px 22px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card-label svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
}

.product-cover {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-rose-tint), #F0F0FF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 22px 0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

/* Book placeholder visual */
.book-visual {
  width: 100px;
  height: 140px;
  background: var(--dark);
  border-radius: 4px 10px 10px 4px;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover .book-visual { transform: rotate(-3deg) scale(1.05); }

.book-visual::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--rose);
  border-radius: 4px 0 0 4px;
}

.book-title-mini {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.product-body {
  padding: 18px 22px 22px;
}

.product-body h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}

.product-author {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--rose);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.product-btn:hover {
  background: #E82D4D;
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
}

.product-btn .arrow {
  transition: transform 0.2s;
}

.product-btn:hover .arrow { transform: translateX(2px); }

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.product-price-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Affiliate disclosure micro */
.affiliate-note {
  font-size: 11px;
  color: var(--text-light);
  padding: 12px 22px 16px;
  line-height: 1.5;
  border-top: 1px solid rgba(26, 26, 46, 0.04);
}

.affiliate-note a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* Newsletter / CTA sidebar widget */
.sidebar-cta {
  background: var(--dark);
  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(--rose);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.sidebar-cta .btn-cta:hover {
  background: #E82D4D;
  transform: translateY(-1px);
}

/* ============================================================
   INLINE AFFILIATE (within article)
   ============================================================ */
.inline-recommendation {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px 0;
  display: flex;
  gap: 24px;
  align-items: center;
  transition: var(--transition);
}

.inline-recommendation:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.inline-rec-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rose);
  background: var(--rose-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  display: inline-block;
}

.inline-rec-book {
  width: 80px;
  height: 110px;
  background: var(--dark);
  border-radius: 3px 8px 8px 3px;
  box-shadow: 3px 3px 12px rgba(0,0,0,0.12);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inline-rec-book::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--rose);
  border-radius: 3px 0 0 3px;
}

.inline-rec-body { flex: 1; }

.inline-rec-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.inline-rec-body .author {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.inline-rec-body p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  color: var(--text-muted) !important;
  line-height: 1.5 !important;
  margin-bottom: 12px !important;
}

.inline-rec-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.inline-rec-link:hover { gap: 8px; }

/* ============================================================
   RELATED ARTICLES
   ============================================================ */
.related {
  padding: 80px 0;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

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

.related-card {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  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(--rose);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.related-link:hover { gap: 8px; }

/* Article Footer / Disclaimer */
.article-footer {
  max-width: var(--content-width);
  padding: 40px 0 60px;
  margin-top: 20px;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.article-disclaimer {
  background: rgba(26, 26, 46, 0.03);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-disclaimer strong { color: var(--text); }

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26, 26, 46, 0.04);
  border: 1px solid rgba(26, 26, 46, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}

.share-btn:hover {
  background: var(--rose-light);
  border-color: var(--rose-medium);
  color: var(--rose);
}

.share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Progress Bar (blog) */
.progress-bar {
  position: fixed;
  top: 72px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--rose);
  z-index: 999;
  transition: width 0.1s linear;
}

/* ============================================================
   BUCHEMPFEHLUNGEN PAGE — Stats Bar
   ============================================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  margin-bottom: 64px;
}

.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.stats-bar-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.stats-bar-icon--rose { background: var(--rose-light); }
.stats-bar-icon--blue { background: var(--blue-light); }
.stats-bar-icon--green { background: var(--green-light); }

.stats-bar-value {
  font-weight: 700;
  color: var(--text);
}

/* ============================================================
   BUCHEMPFEHLUNGEN PAGE — Filter Pills
   ============================================================ */
.filter-section {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--card);
  border: 2px solid rgba(26, 26, 46, 0.08);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.filter-pill:hover {
  border-color: var(--rose-medium);
  color: var(--rose);
  transform: translateY(-1px);
}

.filter-pill.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-rose);
}

/* ============================================================
   BUCHEMPFEHLUNGEN PAGE — Book Grid
   ============================================================ */
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.book-card {
  background: var(--card);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Top Pick card styling */
.book-card.top-pick {
  border-color: var(--rose-medium);
  box-shadow: 0 0 0 1px var(--rose-medium), var(--shadow-md);
}

.book-card.top-pick:hover {
  box-shadow: 0 0 20px var(--rose-glow), var(--shadow-lg);
}

/* Top Pick badge */
.book-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--rose);
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-rose);
}

/* Book cover area */
.book-card-cover {
  height: 220px;
  background: linear-gradient(135deg, var(--bg-rose-tint), #F0F0FF);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.book-card-cover .book-visual-lg {
  width: 120px;
  height: 170px;
  background: var(--dark);
  border-radius: 4px 12px 12px 4px;
  box-shadow: 6px 6px 24px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s ease;
}

.book-card:hover .book-visual-lg {
  transform: rotate(-3deg) scale(1.06);
}

.book-visual-lg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  border-radius: 4px 0 0 4px;
}

.book-visual-lg .book-title-display {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  line-height: 1.35;
  letter-spacing: 0.3px;
}

/* Theme-colored spine */
.book-card[data-theme="narzissmus"] .book-visual-lg::before { background: var(--rose); }
.book-card[data-theme="bindung"] .book-visual-lg::before { background: var(--blue); }
.book-card[data-theme="adhs"] .book-visual-lg::before { background: var(--yellow); }
.book-card[data-theme="trauma"] .book-visual-lg::before { background: var(--rose); }

/* Theme-colored cover backgrounds */
.book-card[data-theme="narzissmus"] .book-card-cover { background: linear-gradient(135deg, #FFF0F3, #FFE0E6); }
.book-card[data-theme="bindung"] .book-card-cover { background: linear-gradient(135deg, #EEF4FF, #E0ECFF); }
.book-card[data-theme="adhs"] .book-card-cover { background: linear-gradient(135deg, #FFF8E6, #FFEFCC); }
.book-card[data-theme="trauma"] .book-card-cover { background: linear-gradient(135deg, #FFF0F3, #F5E0FF); }

/* Book visual colors per theme */
.book-card[data-theme="narzissmus"] .book-visual-lg { background: #2D1B2E; }
.book-card[data-theme="bindung"] .book-visual-lg { background: #1B2A3A; }
.book-card[data-theme="adhs"] .book-visual-lg { background: #3A3520; }
.book-card[data-theme="trauma"] .book-visual-lg { background: #2A1A2E; }

/* Category pill on card */
.book-card-theme {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

/* Book card body */
.book-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  color: var(--text);
}

.book-card-author {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.book-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* "Fuer wen?" line */
.book-card-fuer-wen {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  background: rgba(26, 26, 46, 0.03);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  line-height: 1.45;
}

.book-card-fuer-wen .fuer-wen-icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}

.book-card-fuer-wen strong {
  color: var(--rose);
  font-weight: 600;
}

/* Star rating (decorative) */
.book-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.book-card-stars .star {
  color: var(--yellow);
  font-size: 14px;
}

.book-card-stars .star.empty {
  color: rgba(26, 26, 46, 0.12);
}

/* Book card footer (price + CTA) */
.book-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.book-card-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.book-card-format {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

.book-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  background: var(--rose);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.book-card-btn:hover {
  background: #E82D4D;
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
}

.book-card-btn .arrow {
  transition: transform 0.2s;
}

.book-card-btn:hover .arrow { transform: translateX(3px); }

/* Affiliate micro note on card */
.book-card-affiliate {
  font-size: 11px;
  color: var(--text-light);
  padding: 10px 24px 16px;
  line-height: 1.4;
}

/* Filter animation */
.book-card.hiding {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.book-card.showing {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ============================================================
   BUCHEMPFEHLUNGEN — Affiliate Disclosure Box
   ============================================================ */
.affiliate-disclosure {
  background: rgba(26, 26, 46, 0.03);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 80px 0 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.affiliate-disclosure h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.affiliate-disclosure p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.affiliate-disclosure p + p {
  margin-top: 10px;
}

/* ============================================================
   RESPONSIVE — GLOBAL
   ============================================================ */
@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); }
  .book-grid { grid-template-columns: repeat(2, 1fr); }

  .videos-grid .video-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .toc { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    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 h1 { letter-spacing: -0.5px; }
  .hero-stats { gap: 24px; }
  .hero-stat-value { font-size: 22px; }

  .themen-grid,
  .videos-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid .video-card:nth-child(3) {
    max-width: none;
  }

  .themen, .videos, .blog, .cta { padding: 70px 0; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials { justify-content: center; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-disclaimer { text-align: center; }

  /* Blog responsive */
  .sidebar {
    grid-template-columns: 1fr;
  }

  .inline-recommendation {
    flex-direction: column;
    text-align: center;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .share-bar { flex-wrap: wrap; }
  .article-header h1 { letter-spacing: -0.5px; }

  /* Buchempfehlungen responsive */
  .stats-bar {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .filter-section {
    gap: 8px;
  }

  .filter-pill {
    font-size: 12px;
    padding: 8px 18px;
  }

  .affiliate-disclosure {
    padding: 24px;
  }
}

@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: 24px !important; }
  .section-subtitle { font-size: 14px; }
  .btn { font-size: 13px; padding: 12px 24px; }
  .hero { padding: 60px 0 80px; }
  .nav-inner { height: 60px; }
  .footer-links { gap: 12px; flex-wrap: wrap; justify-content: center; }
}
