/**
 * Carbeak Decision Page v1 — Stylesheet
 *
 * Layers:
 *   1. Tokens (:root)
 *   2. Base & layout
 *   3. Chrome — header, breadcrumb, buttons
 *   4. Hero & subnav (TR scroll layout)
 *   5. Sections — rt-section, snapshot, goodbad
 *   6. Cards — comfort, risk, plan, cost
 *   7. Content — checklist, details, tables, tags
 *   8. Legacy — EN/DE tab panels (page-hero, pill-nav)
 *   9. Utilities & locale toggles
 */

/* --- 1. Tokens --- */
:root {
      --font-display: 'Instrument Serif', Georgia, serif;
      --font-body: 'Inter', -apple-system, sans-serif;
      --font-mono: 'Geist Mono', 'SF Mono', monospace;
      --bg: #FAFAF7;
      --paper: #FFFFFF;
      --section-alt: #F4F2EC;
      --text: #0A0A09;
      --muted: #6B6B65;
      --line: #ECEAE2;
      --line-soft: #e7eef5;
      --accent: #D23B2D;
      --accent-hover: #B63024;
      --amber: #b97813;
      --ink-deep: #101820;
      /* Metacritic-style signal colors (semantic, not copied scores) */
      --mc-favorable: #356D9F;
      --mc-favorable-bg: #EEF5FB;
      --mc-favorable-text: #234E73;
      --mc-mixed: #f6bd3c;
      --mc-mixed-bg: #fff6dc;
      --mc-mixed-text: #76500a;
      --mc-unfavorable: #f45b6a;
      --mc-unfavorable-bg: #fff0f2;
      --mc-unfavorable-text: #9b2431;
      --mc-neutral: #6b7280;
      --mc-neutral-bg: #f3f4f6;
      --ok: #2d7a1f;
      --warn: #9a6700;
      --bad: #c41e1e;
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 24px;
      --space-6: 32px;
      --space-7: 48px;
      --space-8: 64px;
      --space-9: 96px;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --radius-pill: 999px;
      --shadow-sm: 0 1px 2px rgba(16,24,40,.04);
      --shadow-md: 0 4px 12px rgba(16,24,40,.06);
      --shadow-hover: 0 8px 24px rgba(16,24,40,.08);
      --border-default: 1px solid var(--line);
      --border-hover: 1px solid var(--accent);
}

/* --- 2. Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }


/* --- 3. Chrome --- */
.container { max-width: 1184px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--paper);
      border-bottom: var(--border-default);
      box-shadow: none;
      padding: var(--space-4) 0;
}
.header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
}
.logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
}
.logo img {
      display: block;
      width: 142px;
      height: auto;
}
.lang-nav {
      display: flex;
      gap: 4px;
      background: var(--bg);
      padding: 4px;
      border-radius: var(--radius-pill);
}
.lang-nav button {
      border: none;
      background: transparent;
      padding: 8px 16px;
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      color: var(--muted);
      border-radius: var(--radius-pill);
      font-family: inherit;
}
.lang-nav button.active {
      background: var(--paper);
      color: var(--text);
      box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

/* Breadcrumb */
.breadcrumb {
      font-size: 0.8125rem;
      color: var(--muted);
      padding: 20px 0 0;
}
.breadcrumb a { color: var(--muted); }


/* --- 4. Hero (legacy page-hero + TR rt-hero) --- */
/* Hero — Vodafone page top */
.page-hero {
      background: var(--paper);
      padding: 8px 0 32px;
}
.page-hero h1 {
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0;
      margin-bottom: 8px;
}
.page-hero .variant {
      font-size: 1rem;
      font-weight: 400;
      color: var(--muted);
      display: block;
      margin-bottom: 28px;
}

/* Dual choice cards — Numaranı Taşı / Yeni Hat Al pattern */
.choice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 32px;
}
@media (max-width: 720px) { .choice-grid { grid-template-columns: 1fr; } }
.choice-card {
      background: var(--paper);
      border: var(--border-default);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      box-shadow: none;
      transition: box-shadow .2s, border-color .2s;
}
.choice-card:hover { box-shadow: var(--shadow-hover); }
.choice-card.recommended {
      border: var(--border-default);
      border-left: 3px solid var(--accent);
      background: var(--paper);
}
.choice-card.caution { border-color: rgba(230,0,0,.15); }
.choice-card h2 {
      font-size: 1.375rem;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: 0;
}
.choice-card p {
      font-size: 0.9375rem;
      color: var(--muted);
      margin-bottom: 20px;
      line-height: 1.55;
}
.choice-card .tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .04em;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      margin-bottom: 12px;
}
.choice-card.recommended .tag { background: #e8f4fc; color: var(--accent); }
.choice-card.caution .tag { background: #fde8e8; color: var(--bad); }

/* Stat chips row */
.stat-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 28px;
}
@media (max-width: 720px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-chip {
      background: var(--bg);
      border-radius: var(--radius-sm);
      padding: var(--space-4);
      text-align: center;
}
.stat-chip .val {
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--text);
      display: block;
}
.stat-chip .lbl {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 4px;
      display: block;
}

/* Pill tabs — Vodafone FAQ category style */
.pill-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--line);
}
.pill-nav button {
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 10px 20px;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      border-radius: var(--radius-pill);
      font-family: inherit;
      transition: all .15s;
}
.pill-nav button:hover { border-color: var(--accent); color: var(--accent); }
.pill-nav button.active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
}

/* Main content — legacy tab panels (overridden by RT layout below) */
.main { padding: 32px 0 64px; }

.vf-section-sub {
      text-align: center;
      color: var(--muted);
      font-size: 0.9375rem;
      max-width: 640px;
      margin: 0 auto 28px;
      line-height: 1.55;
}


/* --- 8. Cards --- */
.risk-card-grid,
.comfort-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
      margin: var(--space-4) 0 var(--space-5);
}
@media (max-width: 900px) {
      .risk-card-grid,
      .comfort-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}
.risk-card,
.comfort-card {
      background: var(--paper);
      border: var(--border-default);
      border-radius: var(--radius-md);
      padding: var(--space-5);
      box-shadow: none;
      transition: border-color .15s ease, box-shadow .18s ease, transform .18s ease;
}
.risk-card strong,
.comfort-card strong {
      display: block;
      margin-bottom: 7px;
      color: var(--text);
      font-size: 0.9375rem;
}
.risk-card span,
.comfort-card span {
      display: block;
      color: var(--muted);
      font-size: 0.875rem;
      line-height: 1.5;
}
.risk-card {
      display: flex;
      flex-direction: column;
      min-height: 190px;
      position: relative;
      padding: var(--space-5);
      padding-left: calc(var(--space-5) + 6px);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.risk-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 16px;
      bottom: 16px;
      width: 3px;
      border-radius: 2px;
      background: var(--line);
}
.risk-card:has(.risk-card__severity.high)::before {
      background: #B91C1C;
      width: 4px;
}
.risk-card:has(.risk-card__severity.medium)::before {
      background: var(--accent);
}
.risk-card:hover,
.plan-card:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow-hover);
      transform: translateY(-1px);
}
.comfort-card:hover {
      border-color: var(--accent);
}
.risk-card__top {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: var(--space-3);
      margin-bottom: 10px;
}
.risk-card__severity {
      flex-shrink: 0;
      background: transparent;
      padding: 0;
      font-size: 0.7rem;
      font-family: var(--font-mono);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--mc-neutral);
}
.risk-card__severity.high { color: #B91C1C; }
.risk-card__severity.medium { color: var(--accent); }
.risk-card strong,
.risk-card__top strong {
      font-size: 1rem;
      letter-spacing: -0.01em;
      line-height: 1.3;
}
.risk-card__meta {
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px solid var(--line-soft);
      color: var(--muted);
      font-size: 0.8125rem;
      line-height: 1.45;
}
.evidence-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 0;
}
.evidence-pill {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius-pill);
      background: #fbfcfb;
      color: var(--muted);
      font-size: 0.8125rem;
      font-weight: 600;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.06em;
}
.decision-snapshot {
      display: grid;
      grid-template-columns: 1.35fr 1fr 1fr;
      gap: var(--space-3);
      margin: 0 0 var(--space-5);
}
.decision-snapshot__item {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      background: var(--paper);
      border: var(--border-default);
      border-radius: var(--radius-md);
      padding: var(--space-5);
      box-shadow: none;
      border-top: 3px solid rgba(102,116,111,.2);
}
.decision-snapshot__item.primary {
      border-top-color: var(--accent);
      background: #FFF7ED;
      box-shadow: var(--shadow-sm);
}
.decision-snapshot__item:nth-child(2) { border-top-color: var(--mc-favorable); }
.decision-snapshot__item:nth-child(3) { border-top-color: var(--mc-unfavorable); }
.decision-snapshot__label {
      display: block;
      margin-bottom: var(--space-2);
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 800;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.06em;
}
.decision-snapshot__value {
      display: block;
      margin-top: 0;
      color: var(--text);
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 400;
      line-height: 1.2;
}
.decision-snapshot__value em {
      font-style: italic;
      font-family: var(--font-display);
}
@media (max-width: 900px) {
      .decision-snapshot { grid-template-columns: 1fr 1fr; }
      .decision-snapshot__item.primary { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
      .decision-snapshot { grid-template-columns: 1fr; gap: var(--space-3); }
      .decision-snapshot__item { padding: var(--space-4); }
}

/* Content card wrapper */
.section {
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 28px;
}
.section-head {
      padding: 0 0 12px;
      font-size: 1.0625rem;
      font-weight: 700;
      border-bottom: 1px solid var(--line);
      background: transparent;
}
.section-body { padding: 20px 0 0; }

/* Verdict — left accent bar, readable on white */
.verdict-line {
      padding: 16px 20px 16px 24px;
      border: 1px solid var(--line);
      border-left: 3px solid #5a9a4a;
      background: #f6faf5;
      margin-bottom: 24px;
      font-size: 0.9375rem;
      line-height: 1.55;
      color: var(--text);
}
.verdict-line strong { color: #2f5c2f; }

/* G2-style pros/cons tag clouds — scannable pills, not bullet walls */
.g2-procon {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin: 8px 0 4px;
}
@media (max-width: 640px) { .g2-procon { grid-template-columns: 1fr; gap: 20px; } }
.g2-procon-col h3,
.g2-procon h3 {
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-bottom: 12px;
}
.g2-procon-col--pro h3 { color: #4a6b4a; }
.g2-procon-col--con h3 { color: #8a4a4a; }
.g2-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
}
.g2-tag {
      display: inline-flex;
      align-items: center;
      padding: 7px 14px;
      border-radius: var(--radius-pill);
      font-size: 0.8125rem;
      font-weight: 500;
      line-height: 1.35;
      border: 1px solid transparent;
}
.g2-tag--pro {
      background: #f3f7f3;
      color: #2f5c2f;
      border-color: #d8e8d8;
}
.g2-tag--con {
      background: #faf5f5;
      color: #7a3333;
      border-color: #ead8d8;
}
.g2-tag--warn {
      background: #faf8f2;
      color: #6b5520;
      border-color: #e8e0cc;
}

.fault-details {
      margin-top: 28px;
      border: var(--border-default);
      border-radius: var(--radius-lg);
      background: var(--paper);
      overflow: hidden;
}
.fault-details summary {
      cursor: pointer;
      padding: 14px 18px;
      font-weight: 600;
      font-size: 0.9375rem;
      color: var(--text);
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
}
.fault-details summary::-webkit-details-marker { display: none; }
.fault-details summary::after {
      content: "+";
      font-size: 1.125rem;
      font-weight: 400;
      color: var(--muted);
      flex-shrink: 0;
}
.fault-details[open] summary::after { content: "−"; }
.fault-details[open] summary { border-bottom: var(--border-default); }
.fault-details .table-scroll { border: 0; border-radius: 0; }

.risk-more-list {
      list-style: none;
      margin: 0;
      padding: 0 18px 8px;
}
.risk-more-list > li {
      padding: var(--space-4) 0;
      border-bottom: 1px solid var(--line-soft);
      font-size: 0.9375rem;
      line-height: 1.55;
}
.risk-more-list > li:last-child { border-bottom: 0; }
.risk-more-list__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
}
.risk-more-list__head strong {
      font-size: 1rem;
      letter-spacing: -0.01em;
}
.risk-more-list .risk-card__meta {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--line-soft);
}

.table-scroll {
      width: 100%;
      overflow-x: auto;
      border: var(--border-default);
      border-radius: var(--radius-lg);
      background: var(--paper);
}
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 680px; }
.data-table th,
.data-table td {
      padding: 14px 16px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
}
.data-table th {
      font-weight: 600;
      color: var(--muted);
      font-size: 0.8125rem;
      background: #fafafa;
      width: 28%;
}
.data-table tr:last-child th,
.data-table tr:last-child td { border-bottom: none; }
.data-table .num { white-space: nowrap; text-align: right; }
.status-ok { color: var(--ok); font-weight: 600; }
.status-warn { color: var(--warn); font-weight: 600; }
.status-bad { color: var(--bad); font-weight: 600; }

/* Plan cards — Popüler Tarifeler pattern */
.plan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
}
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } }
.plan-card {
      background: var(--paper);
      border: var(--border-default);
      border-radius: var(--radius-md);
      padding: var(--space-5);
      box-shadow: none;
      display: flex;
      flex-direction: column;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.plan-card.featured {
      border: var(--border-default);
      border-top: 3px solid var(--accent);
      background: var(--paper);
      box-shadow: var(--shadow-sm);
}
.plan-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 16px; }
.plan-card .price {
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 4px;
}
.plan-card .price-sub { font-size: 0.8125rem; color: var(--muted); margin-bottom: 16px; }
.plan-card ul { list-style: none; flex: 1; margin-bottom: 20px; }
.plan-card li {
      padding: 8px 0;
      border-bottom: 1px solid var(--line);
      font-size: 0.875rem;
}
.plan-card li:last-child { border-bottom: none; }

.cost-highlight {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
      margin-bottom: var(--space-5);
}
@media (max-width: 720px) { .cost-highlight { grid-template-columns: 1fr; } }
.cost-cell {
      background: var(--paper);
      border: var(--border-default);
      border-radius: var(--radius-md);
      padding: var(--space-5);
      text-align: left;
      box-shadow: none;
}
.cost-cell .big {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 400;
      color: var(--accent);
      letter-spacing: 0;
}
.cost-cell .lbl { font-size: 0.8125rem; color: var(--muted); margin-top: 8px; line-height: 1.4; }

.checklist { list-style: none; }
.checklist li {
      padding: var(--space-4) 0;
      border-bottom: var(--border-default);
      font-size: 0.9375rem;
      padding-left: 32px;
      position: relative;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
      content: "○";
      position: absolute;
      left: 0;
      color: var(--muted);
      font-size: 1.125rem;
}
.checklist li.critical::before { content: "!"; color: var(--bad); font-weight: 700; }

.checklist-flow { display: grid; gap: var(--space-5); }
.checklist-phase h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text);
}
.checklist-phase .checklist li {
      padding: 12px 0 12px 32px;
      font-size: 0.9375rem;
}
.checklist-phase .checklist-sub {
      margin: 6px 0 0 0;
      padding-left: 18px;
      list-style: disc;
      color: var(--muted);
      font-size: 0.875rem;
      line-height: 1.55;
}
.checklist-phase .checklist-sub li {
      padding: 3px 0;
      border: 0;
}
.checklist-phase .checklist-sub li::before { content: none; }

.btn {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      padding: 14px 28px;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.9375rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: background .15s;
}
.btn:hover { background: var(--accent-hover); text-decoration: none; }
.btn-outline {
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--mc-favorable-bg); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

.cta-box {
      background: var(--paper);
      border: var(--border-default);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      text-align: center;
      margin-top: 0;
}
.cta-box p {
      margin: 12px 0 24px;
      color: var(--muted);
      font-size: 0.9375rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
}

.sources {
      font-size: 0.8125rem;
      color: var(--muted);
      padding: var(--space-6) 0 0;
      margin-top: var(--space-6);
      border-top: 1px solid var(--line-soft);
}
.sources p { margin-bottom: 8px; }

.note-box {
      background: #fff8e6;
      border-radius: var(--radius-sm);
      padding: var(--space-4) var(--space-5);
      font-size: 0.875rem;
      margin-bottom: 20px;
      border: 1px solid #f0e0b0;
}

/* --- 11. Legacy article (EN/DE) --- */
.article-section { margin-bottom: 32px; }
.article-section:last-child { margin-bottom: 0; }
.article-section h2 {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--line);
}
.article-section h3 { font-size: 1rem; font-weight: 600; margin: 16px 0 8px; }
.article-section p,
.article-section li { font-size: 0.9375rem; margin-bottom: 10px; line-height: 1.55; }
.article-section ul { padding-left: 1.25rem; margin-bottom: 12px; }
.lead { font-size: 1.0625rem; line-height: 1.6; margin-bottom: 16px; color: var(--text); }
.source-tag { font-size: 0.75rem; color: var(--muted); }

/* --- 4b. Hero RT masthead --- */
/* Metacritic-inspired masthead: image + scoreless signal panel */

.rt-hero {
      background: linear-gradient(180deg, #101820 0 72px, var(--bg) 72px 100%);
      color: var(--text);
      padding: var(--space-3) 0 var(--space-7);
      overflow: hidden;
      position: relative;
}
.rt-hero-grid {
      display: block;
      padding-top: 0;
      padding-bottom: 0;
}
.rt-hero-topbar {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: rgba(255,255,255,.74);
}
.rt-hero .breadcrumb {
      color: rgba(255,255,255,.68);
      padding: 0;
      margin: 0;
}
.rt-hero .breadcrumb a { color: rgba(255,255,255,.72); }
.rt-hero-kicker {
      flex-shrink: 0;
      color: rgba(255,255,255,.82);
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
}
.rt-hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(400px, .75fr);
      align-items: stretch;
      gap: 0;
      border: var(--border-default);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--paper);
}
.rt-visual {
      display: flex;
      flex-direction: column;
      min-width: 0;
      margin: 0;
}
.rt-visual-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #050706;
      overflow: hidden;
      border-radius: var(--radius-lg) 0 0 0;
      border: 1px solid rgba(16,24,32,.18);
      border-bottom: 0;
}
.rt-visual-frame img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.04) contrast(1.03);
}
.rt-visual-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 44%, rgba(0,0,0,.18) 100%);
      pointer-events: none;
}
.rt-visual-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 1;
      background: rgba(9,16,14,.78);
      color: #fff;
      backdrop-filter: blur(8px);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 750;
      letter-spacing: .04em;
      text-transform: uppercase;
}
.rt-visual-caption {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      background: #f8fafc;
      border-top: 1px solid var(--line);
      padding: 14px 16px;
      min-height: auto;
}
.rt-visual-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 0;
}
.rt-visual-meta span {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      border-radius: var(--radius-pill);
      font-size: 0.75rem;
      font-weight: 750;
      white-space: nowrap;
}
.rt-visual-meta span {
      background: #eef4f9;
      color: #334a5f;
      padding: 0 10px;
}
.rt-hero-body {
      background: var(--paper);
      border-left: var(--border-default);
      padding: var(--space-6);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: var(--space-4);
      box-shadow: none;
}
.rt-hero-body > .rt-hero-status {
      margin-bottom: var(--space-2);
}
.rt-hero-body > .rt-hero-quick {
      margin-top: var(--space-2);
}
.rt-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(1.625rem, 2.8vw, 2.125rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 0;
      max-width: none;
      color: var(--text);
}
.rt-hero h1 em {
      font-style: italic;
      color: var(--accent);
      font-family: var(--font-display);
}
.rt-hero-status {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      background: transparent;
      padding: 0;
      margin-bottom: 0;
}
.rt-synopsis {
      font-size: 0.9375rem;
      line-height: 1.55;
      color: var(--muted);
      margin-bottom: 0;
      max-width: 520px;
}
.rt-hero-quick {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
}
.rt-hero-quick__item {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: var(--space-3) var(--space-4);
      border: var(--border-default);
      border-radius: var(--radius-md);
      background: transparent;
      text-decoration: none;
      color: inherit;
      transition: border-color .15s, background .15s;
}
.rt-hero-quick__item:hover {
      border-color: var(--accent);
      background: var(--mc-favorable-bg);
      text-decoration: none;
}
.rt-hero-quick__label {
      font-family: var(--font-mono);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--muted);
}
.rt-hero-quick__value {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.35;
}
.rt-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.rt-hero .btn {
      background: var(--accent);
      color: #fff;
      box-shadow: none;
      padding: 11px 18px;
      font-size: 0.875rem;
}
.rt-hero .btn:hover { background: var(--accent-hover); }
.rt-hero .btn-outline {
      background: transparent;
      color: var(--accent);
      border: 1px solid var(--line);
}
.rt-hero .btn-outline:hover {
      border-color: var(--accent);
      background: var(--mc-favorable-bg);
}
@media (max-width: 900px) {
      .rt-hero {
        background: linear-gradient(180deg, #101820 0 66px, var(--bg) 66px 100%);
        padding: 12px 0 24px;
      }
      .rt-hero-topbar { min-height: 46px; }
      .rt-hero-kicker { display: none; }
      .rt-hero-shell { grid-template-columns: 1fr; }
      .rt-visual-frame {
        border-radius: 0;
        aspect-ratio: 16 / 10;
      }
      .rt-visual-caption {
        padding: 12px 16px;
      }
      .rt-hero-body {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 20px 18px;
      }
      .rt-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
}
@media (max-width: 520px) {
      .rt-hero {
        background: linear-gradient(180deg, #101820 0 58px, var(--bg) 58px 100%);
      }
      .rt-hero .container { padding: 0 16px; }
      .rt-hero-topbar { min-height: 36px; }
      .rt-hero .breadcrumb { font-size: 0.72rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
      .rt-visual-frame { aspect-ratio: 16 / 9; }
      .rt-visual-badge { top: 10px; left: 10px; font-size: 0.68rem; }
      .rt-hero-body { padding: 16px; }
      .rt-hero h1 { font-size: 1.5rem; }
      .rt-hero-quick { grid-template-columns: 1fr; }
      .rt-hero-actions { gap: 8px; }
      .rt-hero-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 11px 10px;
        text-align: center;
      }
}


/* --- 5. Subnav --- */
/* Sticky subnav */
.rt-subnav-wrap {
      position: sticky;
      top: 57px;
      z-index: 150;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      transition: box-shadow .25s ease;
}
#loc-tr .rt-section:first-of-type {
      border-top: none;
}
#loc-tr .rt-subnav-wrap {
      box-shadow: none;
}
#loc-tr .rt-subnav-wrap.is-stuck {
      box-shadow: none;
}
.rt-subnav-inner {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 52px;
}
.rt-subnav-title {
      font-weight: 700;
      font-size: 0.9375rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 200px;
      opacity: 0;
      width: 0;
      transition: opacity .3s, width .3s;
}
.rt-subnav-wrap.is-stuck .rt-subnav-title {
      opacity: 1;
      width: auto;
      max-width: 220px;
}
.rt-subnav {
      display: flex;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
      flex: 1;
      -webkit-overflow-scrolling: touch;
}
.rt-subnav::-webkit-scrollbar { display: none; }
.rt-subnav a {
      flex-shrink: 0;
      padding: 14px 11px;
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color .15s, border-color .15s;
}
.rt-subnav a:hover { color: var(--text); }
.rt-subnav a.active {
      color: var(--text);
      border-bottom-color: var(--mc-favorable);
}


/* --- 6. Sections --- */
/* Single-page sections — Arc-style full-width bands */
#loc-tr > .main {
      padding: 0 0 48px;
}
#loc-tr > .main > .container {
      max-width: none;
      padding: 0;
      width: 100%;
}
.main { padding: 24px 0 48px; }
.rt-section {
      scroll-margin-top: 120px;
      margin-bottom: 0;
      padding: var(--space-7) 0;
      border-top: var(--border-default);
      position: relative;
}
#loc-tr .rt-section:nth-of-type(odd) {
      background: var(--paper);
}
#loc-tr .rt-section:nth-of-type(even) {
      background: var(--section-alt);
}
#loc-tr .rt-section .panel {
      max-width: 1184px;
      margin: 0 auto;
      padding: 0 var(--space-6);
}
@media (max-width: 720px) {
      .rt-section {
        padding: var(--space-7) 0;
        scroll-margin-top: 104px;
      }
      #loc-tr .rt-section .panel { padding: 0 20px; }
}
#loc-tr .main-footer {
      background: var(--paper);
      border-top: 1px solid var(--line);
      padding: 36px 0 44px;
}
#loc-tr .main-footer .container {
      max-width: 1184px;
      margin: 0 auto;
      padding: 0 24px;
}
.rt-section.is-visible {
      opacity: 1;
      transform: none;
}
@media (prefers-reduced-motion: reduce) {
      .rt-section {
        opacity: 1;
        transform: none;
        transition: none;
      }
}
.rt-section-head {
      font-family: var(--font-display);
      font-size: clamp(1.375rem, 2.4vw, 1.625rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      margin-bottom: var(--space-3);
      padding-bottom: 0;
      border-bottom: 0;
      display: block;
      color: var(--text);
      line-height: 1.25;
}
.rt-section-kicker {
      font-size: 1rem;
      font-weight: 400;
      font-style: italic;
      color: var(--muted);
      margin: 0;
      max-width: 680px;
      line-height: 1.55;
}
.rt-section .panel > .rt-section-kicker + * {
      margin-top: var(--space-6);
}

/* --- 7. Verdict blocks --- */
/* Carwow-style good / not so good */
.cw-goodbad {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-4);
      margin: 0 0 var(--space-5);
}
@media (max-width: 640px) { .cw-goodbad { grid-template-columns: 1fr; } }
.cw-goodbad__col {
      border: var(--border-default);
      border-radius: var(--radius-md);
      padding: var(--space-5);
      background: var(--paper);
      box-shadow: none;
}
.cw-goodbad__col h3 {
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 10px;
}
.cw-goodbad__col--good h3 { color: #2f5c2f; }
.cw-goodbad__col--bad h3 { color: #8a4a4a; }
.cw-goodbad__col ul {
      list-style: none;
      font-size: 0.875rem;
      line-height: 1.55;
      color: var(--text);
}
.cw-goodbad__col li {
      padding: 4px 0 4px 18px;
      position: relative;
}
.cw-goodbad__col--good li::before {
      content: "+";
      position: absolute;
      left: 0;
      font-weight: 700;
      color: #2f5c2f;
}
.cw-goodbad__col--bad li::before {
      content: "−";
      position: absolute;
      left: 0;
      font-weight: 700;
      color: #8a4a4a;
}

/* --- 12. Locale & panel toggles --- */
/* Hide old tab panels pattern — TR = single scroll page */
.panel { display: block; }
.pill-nav { display: none; }
.page-hero .choice-grid,
.page-hero .stat-row { display: none; }
#loc-en .panel,
#loc-de .panel { display: none; }
#loc-en .panel.active,
#loc-de .panel.active { display: block; }

/* --- 13. Utilities --- */
.text-footnote { font-size: 0.8125rem; color: var(--muted); margin-top: var(--space-3); }
.text-prose-muted { font-size: 0.9375rem; line-height: 1.55; color: var(--muted); margin-top: 18px; }
.text-caption-muted { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.text-foot-muted { font-size: 0.875rem; color: var(--muted); margin-top: var(--space-4); }
.vf-section-sub--left { text-align: left; margin: 0 0 20px; max-width: none; }
.plan-grid--spaced { margin-bottom: 28px; }
.plan-card .price-sub--tight { margin-bottom: 12px; }
.plan-card__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.plan-card .g2-tags { margin-top: 14px; }
.cta-box__title { font-size: 1.25rem; font-weight: 700; }
.section-body--flush { padding: 0; }
.g2-procon--spaced { margin-bottom: 20px; }

.locale { display: none; }
.locale.active { display: block; }
