  :root {
    --ink: #1a1a1a;
    --paper: #faf8f5;
    --cream: #f0ece4;
    --accent: #c45a3c;
    --accent-dark: #a8442a;
    --muted: #6b6560;
    --border: #d9d4cc;
    --highlight: #fff8e7;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --max-w: 1120px;
    --gutter: 24px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
  }

  /* ── UTILITY ── */
  .container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

  /* ── HEADER ── */
  header {
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    background: var(--paper);
    z-index: 100;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  }

  .logo {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
  }

  .logo span { color: var(--accent); }

  nav { display: flex; gap: 28px; align-items: center; }

  nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  nav a:hover { color: var(--ink); }

  .nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px !important;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--accent-dark); }

  /* ── MOBILE NAV ── */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: 0.3s;
  }

  /* ── HERO ── */
  .hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: var(--ink);
  }

  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 20px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 480px;
  }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
  }

  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
  }

  .btn-secondary:hover { border-color: var(--ink); }

  .hero-visual {
    background: var(--cream);
    border-radius: 8px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, transparent 40%, rgba(196,90,60,0.08) 100%);
  }

  .hero-visual-content {
    text-align: center;
    z-index: 1;
  }

  .hero-visual-icon {
    font-size: 64px;
    margin-bottom: 12px;
    opacity: 0.7;
  }

  .hero-visual-label {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ── TICKER / TRUST ── */
  .trust-bar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .trust-inner {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .trust-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .trust-items {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .trust-item {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
  }

  /* ── SECTION TITLES ── */
  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ink);
  }

  .section-title {
    font-family: var(--serif);
    font-size: 32px;
    letter-spacing: -0.02em;
  }

  .section-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .section-more:hover { text-decoration: underline; }

  /* ── FEATURED ARTICLES ── */
  .featured {
    padding: 60px 0;
  }

  .article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .article-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
  }

  .article-card:hover { transform: translateY(-3px); }

  .article-thumb {
    background: var(--cream);
    border-radius: 6px;
    aspect-ratio: 16/10;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .article-thumb-icon {
    font-size: 40px;
    opacity: 0.4;
  }

  .article-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 8px;
  }

  .article-title {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .article-excerpt {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .article-meta {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--mono);
  }

  /* ── CATEGORIES ── */
  .categories {
    padding: 60px 0;
    background: var(--cream);
  }

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

  .cat-card {
    background: var(--paper);
    border-radius: 6px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    border: 1px solid transparent;
  }

  .cat-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
  }

  .cat-icon {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .cat-name {
    font-family: var(--serif);
    font-size: 20px;
    margin-bottom: 8px;
  }

  .cat-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }

  .cat-count {
    margin-top: 12px;
    font-size: 12px;
    font-family: var(--mono);
    color: var(--accent);
  }

  /* ── NEWSLETTER ── */
  .newsletter {
    padding: 80px 0;
    border-top: 1px solid var(--border);
  }

  .newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter h2 {
    font-family: var(--serif);
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .newsletter p {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 18px;
  }

  .newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
  }

  .newsletter-input {
    flex: 1;
    padding: 14px 18px;
    font-family: var(--sans);
    font-size: 16px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
  }

  .newsletter-input:focus { border-color: var(--accent); }

  .newsletter-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
  }

  /* ── ABOUT TEASER ── */
  .about-teaser {
    padding: 60px 0;
    background: var(--ink);
    color: var(--paper);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-teaser h2 {
    font-family: var(--serif);
    font-size: 36px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }

  .about-teaser p {
    color: rgba(250,248,245,0.7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-box {
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
  }

  .stat-number {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 14px;
    color: rgba(250,248,245,0.5);
  }

  /* ── FOOTER ── */
  footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-brand {
    max-width: 280px;
  }

  .footer-brand .logo {
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
  }

  .footer-links {
    display: flex;
    gap: 48px;
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--ink); }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero h1, .hero-sub, .hero-ctas, .hero-visual {
    animation: fadeUp 0.6s ease-out both;
  }
  .hero-sub { animation-delay: 0.1s; }
  .hero-ctas { animation-delay: 0.2s; }
  .hero-visual { animation-delay: 0.3s; }

  /* ── PROVIDERS ── */
  .providers {
    padding: 60px 0;
    background: var(--cream);
  }

  .provider-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .provider-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .provider-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
  }

  .provider-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .provider-card-icon {
    font-size: 36px;
    line-height: 1;
  }

  .provider-card-title {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
  }

  .provider-card-tagline {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
  }

  .provider-card-meta {
    font-size: 13px;
    font-family: var(--mono);
    color: var(--muted);
    margin-top: 4px;
  }

  .provider-card-cta {
    margin-top: 12px;
    font-size: 13px;
    font-family: var(--mono);
    color: var(--accent);
  }

  /* ── PROVIDER DETAIL ── */
  .page-header {
    padding: 60px 0 24px;
    border-bottom: 1px solid var(--border);
  }

  .page-title {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1.1;
    margin: 8px 0 12px;
    letter-spacing: -0.02em;
  }

  .page-lead {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 720px;
  }

  .provider-list-section {
    padding: 48px 0 80px;
  }

  .provider-hero {
    padding: 56px 0 32px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
  }

  .provider-hero-grid {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 32px;
    align-items: start;
  }

  .provider-hero-icon {
    font-size: 80px;
    line-height: 1;
  }

  .provider-hero-title {
    font-family: var(--serif);
    font-size: 44px;
    line-height: 1.05;
    margin: 8px 0 12px;
    letter-spacing: -0.02em;
  }

  .provider-hero-tagline {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .provider-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .affiliate-hint {
    margin-top: 18px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.04);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  .affiliate-hint a { color: var(--accent); }

  .affiliate-hint-small {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
  }

  .provider-facts {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
  }

  .facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 0;
  }

  .facts-grid dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 4px;
    font-family: var(--mono);
  }

  .facts-grid dd {
    margin: 0;
    font-size: 16px;
    color: var(--ink);
  }

  .provider-proscons {
    padding: 48px 0;
  }

  .pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pros-box, .cons-box {
    background: var(--cream);
    border-radius: 6px;
    padding: 24px 28px;
  }

  .pros-box h2, .cons-box h2 {
    font-family: var(--serif);
    font-size: 22px;
    margin: 0 0 14px;
  }

  .pros-box ul, .cons-box ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.7;
  }

  .pros-box li::marker { color: #2d7a3d; }
  .cons-box li::marker { color: #b04646; }

  .provider-body {
    padding: 24px 0 56px;
  }

  .post-body {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.7;
  }

  .post-body p { margin-bottom: 16px; }
  .post-body blockquote {
    border-left: 3px solid var(--accent);
    margin: 20px 0;
    padding: 4px 16px;
    color: var(--muted);
    font-style: italic;
  }

  .provider-cta-block {
    padding: 56px 0;
    background: var(--ink);
    color: var(--paper);
  }

  .provider-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .provider-cta-inner h2 {
    font-family: var(--serif);
    font-size: 32px;
    margin: 0 0 12px;
  }

  .provider-cta-inner p {
    color: rgba(250,248,245,0.85);
    margin-bottom: 24px;
  }

  .provider-cta-inner .affiliate-hint-small a {
    color: rgba(250,248,245,0.7);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 36px; }
    .article-grid { grid-template-columns: 1fr; gap: 32px; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .provider-grid { grid-template-columns: 1fr; }
    .pros-cons-grid { grid-template-columns: 1fr; }
    .provider-hero-grid { grid-template-columns: 1fr; gap: 16px; }
    .provider-hero-icon { font-size: 64px; }
    .provider-hero-title { font-size: 34px; }
    .page-title { font-size: 34px; }
  }

  @media (max-width: 640px) {
    :root { --gutter: 16px; }
    .hero { padding: 48px 0 40px; }
    .hero h1 { font-size: 30px; }
    .hero-sub { font-size: 17px; }
    nav { display: none; }
    nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--border); padding: 20px var(--gutter); gap: 16px; }
    .menu-toggle { display: block; }
    .cat-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 24px; }
    .about-stats { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; gap: 8px; }
  }

  /* ═══ POST/SINGLE LAYOUT ═══ */
  .post-head {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 56px 0 48px;
  }
  .post-back {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
  }
  .post-back:hover { color: var(--accent-dark); }
  .post-head .article-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--paper);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }
  .post-title {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--ink);
  }
  .post-icon { display: inline-block; margin-right: 12px; }
  .post-excerpt {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    max-width: 720px;
    margin: 0 0 16px;
  }
  .post-meta {
    font-size: 14px;
    color: #888;
    font-family: 'JetBrains Mono', monospace;
    margin: 0;
  }
  .post-body {
    max-width: 720px;
    padding-top: 48px;
    padding-bottom: 80px;
    font-size: 18px;
    line-height: 1.7;
  }
  .post-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    margin: 48px 0 16px;
    color: var(--ink);
  }
  .post-body h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--ink);
  }
  .post-body p { margin: 0 0 20px; color: #2a2a2a; }
  .post-body ul, .post-body ol { margin: 0 0 20px; padding-left: 24px; }
  .post-body li { margin-bottom: 8px; }
  .post-body a { color: var(--accent); text-decoration: underline; }
  .post-body a:hover { color: var(--accent-dark); }
  .post-body blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid var(--accent);
    background: rgba(196, 90, 60, 0.05);
    font-style: italic;
  }
  .post-body code {
    background: rgba(0,0,0,0.05);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
  }
  @media (max-width: 640px) {
    .post-title { font-size: 32px; }
    .post-excerpt { font-size: 17px; }
    .post-body { font-size: 17px; }
    .post-body h2 { font-size: 26px; }
  }

  /* ═══ COOKIE BANNER ═══ */
  .cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: var(--ink);
    color: var(--paper);
    padding: 16px 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    border-top: 3px solid var(--accent);
  }
  .cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cookie-text {
    flex: 1 1 480px;
    font-size: 14px;
    line-height: 1.55;
  }
  .cookie-text strong { color: var(--paper); display: block; margin-bottom: 4px; font-size: 15px; }
  .cookie-text a { color: var(--accent); text-decoration: underline; }
  .cookie-text a:hover { color: var(--paper); }
  .cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .cookie-actions .btn {
    padding: 8px 18px;
    font-size: 14px;
  }
  .cookie-actions .btn-secondary {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(250,248,245,0.3);
  }
  .cookie-actions .btn-secondary:hover {
    border-color: var(--paper);
  }
  @media (max-width: 640px) {
    .cookie-inner { flex-direction: column; align-items: stretch; }
    .cookie-actions { justify-content: flex-end; }
  }

  /* ═══ BILDER (additiv zu Emoji-Fallbacks) ═══ */

  .hero-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
  }

  .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .provider-card-thumb {
    margin: -28px -28px 16px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: var(--cream);
  }
  .provider-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .provider-hero-grid--img { grid-template-columns: 320px 1fr; }
  .provider-hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
  }
  .provider-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .post-cover {
    margin: 32px auto 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 21/9;
    max-height: 420px;
  }
  .post-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 900px) {
    .provider-hero-grid--img { grid-template-columns: 1fr; }
    .provider-hero-img { max-width: 360px; }
    .post-cover { aspect-ratio: 16/9; }
  }
/* === Landingpages === */
.landing-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.landing-hero {
  background: linear-gradient(135deg, #f8f9fb 0%, #eef2f8 100%);
  padding: 4rem 0;
}
.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.landing-hero-grid--img {
  grid-template-columns: 320px 1fr;
}
.landing-hero-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.landing-hero-icon {
  font-size: 5rem;
  text-align: center;
}
.landing-hero-title {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0.5rem 0 1rem 0;
  color: #1a1a2e;
}
.landing-hero-problem {
  font-size: 1.2rem;
  color: #4a5060;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}
.landing-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.landing-pain {
  padding: 3rem 0 1rem 0;
}
.landing-pain h2 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.pain-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.8rem;
}
.pain-list li {
  background: #fff5f5;
  border-left: 4px solid #c44;
  padding: 0.9rem 1rem;
  border-radius: 4px;
  color: #444;
}

.landing-body {
  padding: 2rem 0 3rem 0;
}
.landing-body h2 {
  font-size: 1.7rem;
  color: #1a1a2e;
  margin: 1.5rem 0 1rem 0;
}

.landing-provider {
  background: #f8f9fb;
  padding: 3rem 0;
}
.landing-provider h2 {
  margin-bottom: 1.5rem;
}
.provider-card-feature {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid #e1e5ed;
  border-radius: 12px;
  padding: 1.8rem;
  align-items: start;
}
.provider-card-feature .provider-card-icon {
  font-size: 3rem;
  text-align: center;
}
.provider-card-feature h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.4rem;
}
.provider-card-tagline {
  color: #4a5060;
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
}
.provider-card-pros {
  margin: 0 0 1rem 0;
  padding-left: 1.2rem;
  color: #444;
}
.provider-card-pros li {
  margin: 0.3rem 0;
}
.provider-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-top: 1px solid #eee;
  padding-top: 0.8rem;
  font-size: 0.95rem;
  color: #666;
}
.provider-card-link {
  font-weight: 600;
  text-decoration: none;
}

.landing-alternatives {
  padding: 3rem 0;
}
.landing-alternatives h2 {
  margin-bottom: 1.5rem;
}

.landing-cta-final {
  background: #1a1a2e;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.landing-cta-final h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.btn-large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.landing-related {
  padding: 3rem 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.related-card {
  background: #fff;
  border: 1px solid #e1e5ed;
  border-radius: 8px;
  padding: 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease;
}
.related-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.related-card h3 {
  margin: 0.6rem 0 0.4rem 0;
  font-size: 1.1rem;
}
.related-card p {
  color: #4a5060;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .landing-hero-grid--img {
    grid-template-columns: 1fr;
  }
  .landing-hero-title {
    font-size: 1.8rem;
  }
  .provider-card-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Live-Besucher-Counter (Header-Pille) */
.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: auto;
  margin-right: 18px;
  white-space: nowrap;
}
.vc-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a8a3a;
  box-shadow: 0 0 0 0 rgba(58,138,58,0.55);
  animation: vc-pulse 2s infinite;
}
@keyframes vc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(58,138,58,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(58,138,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(58,138,58,0); }
}
@media (max-width: 720px) { .visitor-counter { display: none; } }
