/* ============================================================
   SIMVO.DE - THEME: MONO TERMINAL (v6)
   Brutalist monospace: hard borders, terminal green, path nav
   ============================================================ */
:root {
  --ink: #111;
  --ink-soft: #444;
  --ink-mute: #777;
  --paper: #f4f4f0;
  --panel: #ffffff;
  --green: #0a7a3d;
  --green-bright: #4ade80;
  --ticker: #fffbe6;
  --line: 2px solid #111;
  --hair: 1px dashed #bbb;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", "Courier New", monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--mono); color: var(--ink); background: var(--paper); line-height: 1.65; font-size: 15px; }
img { max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(10,122,61,.4); }
a:hover { background: var(--green-bright); color: var(--ink); border-bottom-color: var(--ink); }
::selection { background: var(--green-bright); color: var(--ink); }

/* ---------- Topbar ticker above navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 100; max-width: 1080px; margin: 20px auto 0; padding: 0 16px; }
.navbar::before { content: "simvo.de // ratgeber \00a0\00a0[ online ]"; display: block; background: var(--ink); color: var(--green-bright); font-size: 11px; padding: 6px 16px; border: var(--line); border-bottom: none; letter-spacing: .5px; }
.nav-pill { background: var(--panel); border: var(--line); border-radius: 0; display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -1px; border-bottom: none; }
.logo svg { background: var(--green-bright); border: 1.5px solid var(--ink); }
.logo:hover { background: transparent; }
.logo-tld { font-weight: 400; color: var(--green); }
.nav-links { list-style: none; display: flex; flex-wrap: wrap; }
.nav-links a { display: block; color: var(--ink); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 7px 12px; border: 1.5px solid transparent; border-bottom: none; }
.nav-links a:hover { background: var(--ink); color: var(--green-bright); border-color: var(--ink); }

/* ---------- Hero carousel ---------- */
.hero-wrap { max-width: 1080px; margin: 26px auto 0; padding: 0 16px; }
.hero-carousel-wrap { position: relative; border: var(--line); overflow: hidden; background: var(--panel); }
.hero-carousel { position: relative; height: 400px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; display: block; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(.9); }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(17,17,17,.88) 0%, rgba(17,17,17,.55) 50%, rgba(10,122,61,.12) 100%); }
.hero-slide-text { position: absolute; left: 0; top: 50%; transform: translateY(-50%); max-width: 620px; padding: 0 44px; color: #fff; z-index: 3; }
.hero-slide-text h2 { font-size: 28px; line-height: 1.25; margin: 14px 0 10px; letter-spacing: -.5px; }
.hero-slide-text p { font-size: 14.5px; opacity: .92; margin-bottom: 20px; }
.read-more { display: inline-block; background: var(--green-bright); color: var(--ink); padding: 11px 24px; border-radius: 0; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; border: 1.5px solid var(--green-bright); }
.hero-slide:hover .read-more { background: transparent; color: var(--green-bright); border-color: var(--green-bright); }
.hero-cat-tag { display: inline-block; background: transparent; color: var(--green-bright); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 0; border: none; }
.hero-cat-tag::before { content: "> "; }
.hero-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: var(--panel); border: 1.5px solid var(--ink); width: 42px; height: 42px; border-radius: 0; font-size: 16px; cursor: pointer; color: var(--ink); }
.hero-carousel-btn:hover { background: var(--ink); color: var(--green-bright); }
.hero-carousel-prev { left: 14px; }
.hero-carousel-next { right: 14px; }
.hero-carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hero-carousel-dot { width: 14px; height: 14px; border-radius: 0; border: 1.5px solid #fff; background: transparent; cursor: pointer; }
.hero-carousel-dot.active { background: var(--green-bright); border-color: var(--green-bright); }

/* ---------- Latest strip ---------- */
.hero-latest { max-width: 1080px; margin: 0 auto; padding: 26px 16px 0; }
.hero-latest-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.hero-latest-head h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 1.5px; }
.hero-latest-head h3::before { content: "// "; color: var(--green); }
.hero-latest-head::after { content: ""; flex: 1; height: 2px; background: var(--ink); }
.hero-latest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: var(--line); background: var(--ink); border-collapse: collapse; }
.hero-latest-card { background: var(--panel); border-right: var(--line); overflow: hidden; }
.hero-latest-card:last-child { border-right: none; }
.hero-latest-card img { width: 100%; height: 140px; object-fit: cover; border-bottom: var(--line); display: block; filter: saturate(.85); }
.hero-latest-card-body { padding: 12px 14px; }
.hero-latest-card-cat { font-size: 10px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.hero-latest-card-cat::before { content: "/"; }
.hero-latest-card-title { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--ink); }

/* ---------- Section titles / grids ---------- */
.section-title { max-width: 1080px; margin: 44px auto 14px; padding: 0 16px; display: flex; align-items: center; gap: 14px; }
.section-title h2 { font-size: 17px; text-transform: uppercase; letter-spacing: 1.5px; }
.section-title h2::before { content: "// "; color: var(--green); }
.section-title::after { content: ""; flex: 1; height: 2px; background: var(--ink); }
.article-grid { max-width: 1080px; margin: 0 auto; padding: 0 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.art-card { background: var(--panel); border: var(--line); overflow: hidden; display: flex; flex-direction: column; transition: transform .15s; }
.art-card:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.art-card-img img { width: 100%; height: 170px; object-fit: cover; border-bottom: var(--line); display: block; filter: saturate(.85); }
.art-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; }
.art-card-cat { align-self: flex-start; font-size: 10px; font-weight: 700; color: var(--ink); background: var(--green-bright); border: 1.5px solid var(--ink); padding: 3px 9px; border-radius: 0; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.art-card-title { font-size: 15.5px; font-weight: 700; line-height: 1.35; color: var(--ink); margin-bottom: 8px; letter-spacing: -.3px; }
.art-card-desc { font-size: 13px; color: var(--ink-soft); flex: 1; line-height: 1.6; }
.art-card-meta { font-size: 11.5px; color: var(--ink-mute); margin-top: 12px; padding-top: 10px; border-top: var(--hair); text-transform: uppercase; letter-spacing: .5px; }

/* ---------- Section horizontal carousel ---------- */
.section-carousel-wrap { max-width: 1080px; margin: 0 auto; padding: 16px 16px 0; position: relative; }
.section-carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 12px; }
.section-carousel::-webkit-scrollbar { height: 8px; }
.section-carousel::-webkit-scrollbar-track { background: #e6e6e2; border: var(--line); }
.section-carousel::-webkit-scrollbar-thumb { background: var(--ink); }
.section-carousel .art-card { flex: 0 0 calc((100% - 60px) / 4); min-width: 240px; scroll-snap-align: start; }
.section-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: var(--panel); border: var(--line); width: 38px; height: 38px; font-size: 15px; cursor: pointer; color: var(--ink); }
.section-carousel-btn:hover { background: var(--ink); color: var(--green-bright); }
.section-carousel-prev { left: 4px; }
.section-carousel-next { right: 4px; }

/* ---------- Category banners ---------- */
.cat-section { max-width: 1080px; margin: 48px auto 0; padding: 0 16px; }
.cat-banner { background: var(--ink); border: var(--line); border-radius: 0; padding: 24px 30px; color: #fff; display: flex; justify-content: space-between; align-items: center; }
.cat-banner h2 { font-size: 19px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; color: var(--green-bright); }
.cat-banner p { opacity: .85; font-size: 13.5px; color: #ddd; }
.cat-icon { font-size: 36px; filter: grayscale(.2); }

/* ---------- Tips panel ---------- */
.tips-panel { background: var(--panel); border: var(--line); border-radius: 0; padding: 26px 30px; }
.tips-panel h3 { font-size: 16px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.tips-panel ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px; }
.tips-panel li { padding: 11px 15px; background: var(--ticker); border: 1.5px solid var(--ink); border-radius: 0; font-size: 13.5px; }
.tips-panel li::before { content: "> "; color: var(--green); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-panel { max-width: 1080px; margin: 10px auto 0; padding: 0 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item { background: var(--panel); border: 1.5px solid var(--ink); border-radius: 0; padding: 18px 20px; }
.faq-item h3 { font-size: 14.5px; margin-bottom: 8px; }
.faq-item h3::before { content: "Q: "; color: var(--green); }
.faq-item p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- CTA ---------- */
.compare-banner { max-width: 1080px; margin: 44px auto; padding: 0 16px; }
.compare-box { background: var(--ink); border: var(--line); border-radius: 0; padding: 28px 34px; display: flex; justify-content: space-between; align-items: center; gap: 22px; color: #fff; }
.compare-box h3 { font-size: 19px; margin-bottom: 6px; color: var(--green-bright); }
.compare-box h3::before { content: "> "; }
.compare-box p { opacity: .85; font-size: 14px; color: #ccc; }
.compare-btn { background: var(--green-bright); color: var(--ink); padding: 12px 26px; border-radius: 0; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; border: 1.5px solid var(--green-bright); }
.compare-btn:hover { background: transparent; color: var(--green-bright); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #999; margin-top: 70px; border-radius: 0; }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 44px 24px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h4 { color: var(--green-bright); font-size: 12px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-col h4::before { content: "// "; }
.footer-col a, .footer-col span { display: block; color: #aaa; font-size: 13px; margin-bottom: 9px; border-bottom: none; }
.footer-col a:hover { color: var(--green-bright); background: transparent; }
.footer-bottom { border-top: 1px solid #333; text-align: center; padding: 16px; font-size: 12px; color: #777; }

/* ---------- Article page ---------- */
.article-wrap { max-width: 860px; margin: 30px auto; padding: 0 16px; }
.article-breadcrumb { font-size: 12.5px; color: var(--green); margin-bottom: 14px; text-transform: lowercase; }
.article-breadcrumb::before { content: "> "; }
.article-breadcrumb a { color: var(--green); border-bottom: none; }
.article-breadcrumb a:hover { background: var(--green-bright); color: var(--ink); }
.article-title { font-size: 30px; line-height: 1.25; margin-bottom: 10px; color: var(--ink); letter-spacing: -1px; }
.article-meta { font-size: 12.5px; color: var(--ink-mute); margin-bottom: 24px; padding: 10px 14px; background: var(--ticker); border: 1.5px solid var(--ink); text-transform: uppercase; letter-spacing: .5px; display: inline-block; }
.article-hero-img { border: var(--line); border-radius: 0; overflow: hidden; margin-bottom: 28px; }
.article-hero-img img { display: block; filter: contrast(1.05) saturate(.85); }
.article-content { background: var(--panel); border: var(--line); border-radius: 0; padding: 32px 36px; }
.article-content h2 { font-size: 19px; margin: 32px 0 12px; color: var(--ink); text-transform: uppercase; letter-spacing: .8px; border-bottom: var(--line); padding-bottom: 8px; }
.article-content h2::before { content: "## "; color: var(--green); }
.article-content h3 { font-size: 16px; margin: 24px 0 10px; }
.article-content h3::before { content: "### "; color: var(--ink-mute); }
.article-content p { margin-bottom: 14px; font-size: 14.5px; color: #333; }
.article-content ul, .article-content ol { margin: 0 0 16px 4px; list-style: none; }
.article-content li { margin-bottom: 8px; font-size: 14px; color: #333; padding-left: 20px; position: relative; }
.article-content li::before { content: ">"; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.article-content ol { counter-reset: oli; }
.article-content ol li::before { counter-increment: oli; content: counter(oli) "."; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.article-content strong { background: var(--ticker); padding: 0 2px; }
.data-table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 13px; border: var(--line); }
.data-table th { background: var(--ink); color: var(--green-bright); text-align: left; padding: 10px 12px; text-transform: uppercase; letter-spacing: .5px; font-size: 11.5px; }
.data-table td { padding: 9px 12px; border-bottom: 1px solid #ddd; background: #fff; vertical-align: top; }
.data-table tr:nth-child(even) td { background: var(--paper); }
.data-table tr:last-child td { border-bottom: none; }
.article-note { background: var(--ticker); border: 1.5px solid var(--ink); border-left: 6px solid var(--green); padding: 14px 18px; border-radius: 0; margin: 18px 0; font-size: 13.5px; }
.article-note::before { content: "HINWEIS // "; font-weight: 700; color: var(--green); }
.article-faq { background: var(--paper); border: 1.5px solid var(--ink); border-radius: 0; padding: 16px 20px; margin-bottom: 12px; }
.article-faq h3 { margin: 0 0 8px; font-size: 14.5px; }
.article-faq h3::before { content: "Q: "; color: var(--green); }
.article-faq p { margin: 0; }
.article-backlink { display: inline-block; margin-bottom: 16px; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; }
.article-backlink::before { content: "< "; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 840px; margin: 40px auto; padding: 0 16px 44px; }
.legal-wrap h1 { font-size: 26px; margin-bottom: 22px; letter-spacing: -1px; border-bottom: var(--line); padding-bottom: 12px; }
.legal-wrap h2 { font-size: 17px; margin: 26px 0 10px; text-transform: uppercase; letter-spacing: .8px; }
.legal-wrap h2::before { content: "## "; color: var(--green); }
.legal-wrap p { margin-bottom: 12px; color: #333; font-size: 14.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-carousel { height: 340px; }
  .hero-slide-text { padding: 0 24px; }
  .hero-slide-text h2 { font-size: 22px; }
  .hero-latest-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-latest-card:nth-child(2) { border-right: none; border-bottom: var(--line); }
  .hero-latest-card:nth-child(1), .hero-latest-card:nth-child(2) { border-bottom: var(--line); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .section-carousel .art-card { flex: 0 0 calc((100% - 40px) / 3); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .compare-box { flex-direction: column; text-align: center; }
  .article-content { padding: 22px 20px; }
  .tips-panel ul, .faq-panel { grid-template-columns: 1fr; }
  .cat-banner { flex-direction: column; text-align: center; gap: 10px; }
}
@media (max-width: 560px) {
  .hero-latest-grid { grid-template-columns: 1fr; }
  .hero-latest-card { border-right: none; border-bottom: var(--line); }
  .hero-latest-card:last-child { border-bottom: none; }
  .article-grid { grid-template-columns: 1fr; }
  .section-carousel .art-card { flex: 0 0 82vw; }
  .footer-inner { grid-template-columns: 1fr; }
  .article-title { font-size: 24px; }
}
