/* ================================================================
   BLOG ARTICLE — DARK PREMIUM REDESIGN
   UserFlow SaaS · 2026
   ================================================================ */

/* ----------------------------------------------------------------
   BASE & SCROLLBAR
   ---------------------------------------------------------------- */
html {
  /* match the body so the strip above the content (margin-collapse area under the
     fixed navbar) doesn't show the darker root background */
  background-color: #0a0a0a;
}
body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0; /* top offset for the announcement bar is set in style.css (!important) */
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(230, 42, 16, 0.3);
}

/* ----------------------------------------------------------------
   ARTICLE GRID — TWO-COLUMN LAYOUT
   ---------------------------------------------------------------- */
.blog-article-grid {
  max-width: 1200px;
  margin: 120px auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.blog-hero {
  grid-column: 1 / -1;
  background: #111;
  border-radius: 40px 40px 40px 0;
  padding: 80px 80px 100px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: none;
  z-index: 2;
  overflow: visible;
}

.blog-hero::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 42, 16, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  filter: blur(50px);
}

/* Breadcrumb */
.blog-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
}
.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-breadcrumb a:hover {
  color: #fff;
}
.blog-breadcrumb .separator {
  margin: 0 6px;
}

/* Tags Row */
.blog-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Tag Pill */
.blog-tag {
  background: rgba(230, 42, 16, 0.15);
  color: #F94D35;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(230, 42, 16, 0.3);
}

/* Reading Time */
.blog-reading-time {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Title */
.blog-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
.blog-title em {
  font-style: italic;
  color: var(--primary);
}

/* Intro */
.blog-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  max-width: 620px;
  font-weight: 400;
}

/* Stats Row */
.blog-stats-row {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px 30px;
  margin-bottom: 32px;
}

/* Stat Item */
.blog-stat {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 24px;
  margin-right: 24px;
}
.blog-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

/* Stat Value */
.blog-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

/* Stat Label */
.blog-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Actions */
.blog-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}



/* Hero Trail */
.blog-hero-trail {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.blog-hero-trail a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-hero-trail a:hover {
  color: #fff;
}

/* Scroll Link */
.blog-hero-scroll-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 100px;
}
.blog-hero-scroll-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.blog-hero-scroll-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.blog-hero-scroll-link:hover span {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(2px);
}

/* ----------------------------------------------------------------
   SIDEBAR
   ---------------------------------------------------------------- */
.blog-sidebar {
  padding-top: 0;
  padding-bottom: 0px;
}

.blog-sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sidebar CTA Widget */
.sidebar-cta {
  background: linear-gradient(160deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
  position: relative;
}

/* Sidebar ist schmal: kleinerer Innenabstand, damit lange CTA-Labels in eine Zeile passen */
.sidebar-cta .btn {
  padding: 0 18px;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(249, 77, 53, 0.08), transparent 50%);
  pointer-events: none;
}

/* CTA Label */
.cta-label {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA Headline */
.cta-headline {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* CTA Description */
.cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Progress Section */
.progress-section {
  margin-bottom: 24px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.progress-percent {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 100px;
  width: 0%;
  transition: width 0.3s ease;
}

/* Sidebar Stats Grid */
.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-stat {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar-stat:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar-stat:nth-child(n+3) {
  border-bottom: none;
}

.sidebar-stat-value {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.sidebar-stat-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Sidebar Checklist */
.sidebar-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.checklist-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
}

/* Sidebar Footer Text */
.sidebar-footer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 12px;
}

/* ----------------------------------------------------------------
   CONTENT AREA
   ---------------------------------------------------------------- */
.blog-content {
  background: #111;
  border-radius: 0;
  margin-top: -40px;
  padding: 80px 60px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-right: none;
  border-top: none;
  border-bottom: none;
  z-index: 3;
}

.blog-content::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  right: -40px; 
  width: 40px; 
  height: 40px;
  background-color: transparent;
  background-image: radial-gradient(circle at bottom right, transparent 40px, #111 40.5px);
  pointer-events: none;
  z-index: 3;
}

.blog-content::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  right: -40px; 
  width: 40px; 
  height: 40px;
  background-color: transparent;
  background-image: radial-gradient(circle at top right, transparent 40px, #111 40.5px);
  pointer-events: none;
  z-index: 5;
}

/* Table of Contents */
.blog-toc {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 60px;
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
  padding-bottom: 16px;
  position: relative;
}
.toc-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: all 0.3s ease;
}
.toc-item:last-child {
  border-bottom: none;
}

.toc-item-num {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  font-family: monospace;
  min-width: 24px;
  transition: color 0.3s ease;
}

.toc-item-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.toc-item:hover .toc-item-num,
.toc-item.toc-active .toc-item-num {
  color: var(--primary);
}
.toc-item:hover .toc-item-text,
.toc-item.toc-active .toc-item-text {
  color: #fff;
}

/* ----------------------------------------------------------------
   CONTENT TYPOGRAPHY
   ---------------------------------------------------------------- */
.blog-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 70px 0 24px;
  line-height: 1.2;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.lead-p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  line-height: 1.7;
}

.blog-content strong {
  color: #fff;
  font-weight: 700;
}

.blog-content em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

/* Inline-Links im Fließtext (nicht die CTA-Buttons) — wie auf den Legal-Seiten */
.blog-content p a:not(.btn),
.blog-content li a:not(.btn) {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 42, 16, .35);
  transition: border-color .2s ease;
}

.blog-content p a:not(.btn):hover,
.blog-content li a:not(.btn):hover {
  border-bottom-color: var(--primary);
}

/* ----------------------------------------------------------------
   CONTENT CARDS
   ---------------------------------------------------------------- */
.content-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 30px 0 50px;
}

.content-card {
  background: linear-gradient(160deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, -100px) var(--mouse-y, -100px), var(--glow-color, rgba(249, 77, 53, 0.15)), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.content-card:hover::before {
  opacity: 1;
}
.content-card > * {
  position: relative;
  z-index: 1;
}
.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.02);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.card-icon.orange { color: #F94D35; background: rgba(249, 77, 53, 0.05); border-color: rgba(249, 77, 53, 0.15); }
.card-icon.yellow { color: #EAB308; background: rgba(234, 179, 8, 0.05); border-color: rgba(234, 179, 8, 0.15); }
.card-icon.red { color: #DC2626; background: rgba(220, 38, 38, 0.05); border-color: rgba(220, 38, 38, 0.15); }
.card-icon.purple { color: #9333EA; background: rgba(147, 51, 234, 0.05); border-color: rgba(147, 51, 234, 0.15); }
.card-icon.blue { color: #3B82F6; background: rgba(59, 130, 246, 0.05); border-color: rgba(59, 130, 246, 0.15); }
.card-icon.green { color: #10b981; background: rgba(16, 185, 129, 0.05); border-color: rgba(16, 185, 129, 0.15); }

.card-icon svg {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.content-card:hover .card-icon svg {
  transform: rotate(360deg);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
}

.card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* Content Stats Row (reusable inside content) */
.content-stats-row {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px 30px;
  margin: 40px 0;
}

/* ----------------------------------------------------------------
   BLOCKQUOTE
   ---------------------------------------------------------------- */
.blog-blockquote {
  background: rgba(230, 42, 16, 0.03);
  border-left: 3px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 28px 30px;
  margin: 40px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
  position: relative;
}
.blog-blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8) !important;
  font-style: italic;
}

/* ----------------------------------------------------------------
   CALLOUT BOX
   ---------------------------------------------------------------- */
.blog-callout {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 30px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.blog-callout.warning {
  border-left: 3px solid #EAB308;
  background: rgba(234, 179, 8, 0.03);
}

.blog-callout.important {
  border-left: 3px solid var(--primary);
  background: rgba(230, 42, 16, 0.03);
}

.callout-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-content {
  flex: 1;
}

.callout-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.blog-callout.warning .callout-label {
  color: #EAB308;
}
.blog-callout.important .callout-label {
  color: var(--primary);
}

.callout-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------------------------------
   INLINE CTA SECTION
   ---------------------------------------------------------------- */
.content-cta {
  background: linear-gradient(160deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 46px 40px;
  margin: 60px 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.content-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(249, 77, 53, 0.1), transparent 60%);
  pointer-events: none;
}

.content-cta-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.content-cta-heading {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.content-cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.content-cta .blog-hero-actions {
  margin-bottom: 0;
}

.content-cta-bullets {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.content-cta-bullets span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.content-cta-bullets .check {
  color: #10b981;
}

/* ----------------------------------------------------------------
   FEATURE GRID
   ---------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(230, 42, 16, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.feature-card-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.feature-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(230, 42, 16, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.4;
}

.feature-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------------------
   FAQ IN CONTENT
   ---------------------------------------------------------------- */
.blog-faq {
  margin: 30px 0;
}

.blog-faq-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 24px 30px;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-faq-item:hover {
  background: linear-gradient(160deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.95) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.blog-faq-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.blog-faq-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------------------------------
   BOTTOM CTA
   ---------------------------------------------------------------- */
.blog-bottom-cta {
  grid-column: 1 / -1;
  background: #111;
  border-radius: 0 40px 40px 40px;
  padding: 80px 60px;
  text-align: center;
  margin-top: -40px;
  position: relative;
  border: none;
  z-index: 1;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.blog-bottom-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.blog-bottom-cta h2 {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.blog-bottom-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}


/* ----------------------------------------------------------------
   RESPONSIVE — TABLET
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .blog-article-grid {
    grid-template-columns: minmax(0, 1fr); /* minmax(0,..) so wide content can't blow the column out */
  }
  .blog-hero,
  .blog-content,
  .blog-bottom-cta {
    min-width: 0;
  }
  .blog-sidebar {
    display: none;
  }
  .blog-hero {
    padding-bottom: 40px;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Tighten the oversized desktop padding so articles breathe on phones */
  .blog-article-grid {
    margin: 90px auto 70px;
    padding: 0 16px;
  }
  .blog-hero {
    padding: 40px 24px 36px;
    border-radius: 24px 24px 24px 0;
  }
  .blog-content {
    padding: 40px 24px;
  }
  .content-cta {
    padding: 30px 22px;
    margin: 40px 0;
  }
  /* Horizontal in-content cards (pricing/plan rows) → stack so they fit phones */
  .pricing-blog-card {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
    padding: 24px !important;
  }
  .pricing-blog-card .pricing-btn,
  .pricing-blog-card .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .blog-title {
    font-size: 32px;
  }
  .blog-stats-row {
    flex-direction: column;
    gap: 16px;
  }
  .blog-stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 16px;
    margin-bottom: 0;
  }
  .blog-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-bottom-cta {
    padding: 48px 24px;
    border-radius: 0 24px 24px 24px;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — PHONES
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .blog-article-grid {
    margin: 80px auto 60px;
    padding: 0 12px;
  }
  .blog-hero {
    padding: 32px 18px 30px;
  }
  .blog-content {
    padding: 32px 18px;
  }
  .blog-bottom-cta {
    padding: 40px 18px;
  }
  .content-cta {
    padding: 26px 18px;
  }
  .blog-title {
    font-size: 27px;
  }
  .blog-intro {
    font-size: 16px;
  }
}
/* Pricing Blog Cards Hover */
.pricing-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.pricing-blog-card:hover .btn {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 5px 15px rgba(249, 77, 53, 0.3);
}

/* Premium Content Styling */
.blog-content ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 40px !important;
}
.blog-content ul li {
  position: relative !important;
  padding-left: 32px !important;
  margin-bottom: 16px !important;
  line-height: 1.7 !important;
  font-size: 17px !important;
}
.blog-content ul li::before {
  content: "—" !important;
  font-size: 20px !important;
  line-height: 28px !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: var(--primary) !important;
  font-weight: 800 !important;
}
.blog-callout {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}


.blog-content li, 
.blog-content .blog-callout,
.blog-content .blog-callout div {
  color: rgba(255, 255, 255, 0.6);
}
.blog-content strong,
.blog-content b {
  color: rgba(255, 255, 255, 0.9);
}


/* Comparison Table */
.vgl-wrap {
  width: 100%;
  margin: 40px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.vgl-head {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vgl-row {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.vgl-row:last-child {
  border-bottom: none;
}
.vgl-head-cell, .vgl-cell {
  flex: 1;
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
.vgl-head-cell {
  color: #fff;
}
.vgl-head-cell:first-child, .vgl-cell:first-child {
  flex: 0 0 30%;
  font-weight: 700;
  color: #fff;
  border-right: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.vgl-cell.vgl-win {
  color: #4ade80;
}
.vgl-cell.vgl-lose {
  color: #f87171;
}
.vgl-cell.vgl-tie {
  color: #94a3b8;
}

/* Pull Quote */
.pq {
  border-left: 4px solid var(--primary);
  padding: 10px 0 10px 24px;
  margin: 40px 0;
}
.pq p {
  font-size: 20px !important;
  color: rgba(255,255,255,0.9) !important;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5 !important;
  margin: 0 !important;
}


/* ── "Ähnliche Artikel" (related posts) ──────────────────────────────
   Self-contained + scoped to .blog-section so the card .blog-title/.blog-tag
   never collide with the article hero's .blog-title/.blog-tag. */
.blog-section {
  background: #111;
  border-radius: 40px;
  padding: 64px 40px;
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
}
.blog-section .tagline {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--primary); text-transform: uppercase; margin-bottom: 16px;
}
.blog-section .tagline-line { width: 28px; height: 2px; background: var(--primary); display: inline-block; }
.blog-section .blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.blog-section .blog-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px; padding: 20px; display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s ease, border-color .3s ease; cursor: pointer;
  overflow: hidden; text-decoration: none; color: inherit;
}
.blog-section .blog-card:hover { transform: translateY(-5px); border-color: rgba(249,77,53,0.3); }
.blog-section .blog-card:hover .blog-link { gap: 12px; }
.blog-section .blog-img-ph {
  height: 200px; margin: -20px -20px 0; background: #1a1a1a;
  border-radius: 24px 24px 0 0; position: relative; overflow: hidden;
}
.blog-section .blog-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-section .blog-tag {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%); z-index: 3;
  padding: 5px 14px; background: rgba(10,10,10,0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--primary); font-size: 12px; font-weight: 700; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.blog-section .blog-title {
  font-size: 20px; font-weight: 700; color: #fff; line-height: 1.4;
  margin: 0; letter-spacing: normal;
}
.blog-section .blog-desc {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; flex: 1;
}
.blog-section .blog-link {
  color: var(--primary); font-size: 14px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
@media (max-width: 1024px) {
  .blog-section { padding: 48px 20px; }
  .blog-section .blog-grid { grid-template-columns: 1fr; gap: 20px; }
}
