:root {
  --bg: #0b1220;
  --bg-2: #0f1a2e;
  --card: #ffffff;
  --ink: #0b1220;
  --muted: #5b6675;
  --line: #e6e9ef;
  --brand: #16a34a;
  --brand-dark: #15803d;
  --gold: #f5b301;
  --accent: #2563eb;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(8, 15, 30, 0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #f6f8fb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 20px; }
.section { padding: 44px 0; }
h1, h2, h3 { line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.85rem, 6vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800; margin-bottom: 14px; }
h3 { font-size: 1.08rem; font-weight: 700; }
p { color: #2b3545; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt { margin-top: 18px; }

/* HERO */
.hero {
  background: radial-gradient(1200px 500px at 50% -10%, #16345f 0%, var(--bg-2) 45%, var(--bg) 100%);
  color: #fff;
  padding: 40px 0 56px;
  text-align: center;
}
.hero h1 { color: #fff; }
.hero p.lead { color: #c8d3e6; font-size: clamp(1rem, 2.6vw, 1.2rem); max-width: 620px; margin: 16px auto 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245, 179, 1, 0.15); color: #ffd866;
  border: 1px solid rgba(245, 179, 1, 0.35);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.euro { color: var(--gold); white-space: nowrap; }

/* CODE BOX */
.codebox {
  background: var(--card); color: var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow);
  max-width: 460px; margin: 30px auto 0; padding: 22px;
  text-align: center;
}
.codebox .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; }
.code {
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: clamp(1.5rem, 5.5vw, 2.1rem); font-weight: 800; letter-spacing: 0.06em;
  color: var(--ink); margin: 8px 0 16px; word-break: break-all;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 1.02rem; font-weight: 700; text-decoration: none; cursor: pointer;
  border-radius: 12px; padding: 15px 24px; width: 100%; border: 0;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 22px rgba(22, 163, 74, 0.35); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-copy { background: #eef2f7; color: var(--ink); margin-bottom: 12px; }
.btn-copy:hover { background: #e4e9f0; }
.hero .btn-primary { max-width: 460px; margin: 20px auto 0; }

/* TRUST STRIP */
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 26px; }
.trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; color: #c8d3e6; font-weight: 600; }
.trust span::before { content: "✓"; color: var(--gold); font-weight: 800; }

/* TOC */
.toc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin-top: -28px; position: relative; box-shadow: var(--shadow); }
.toc strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 10px; }
.toc ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.toc a { text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--accent); background: #eef4ff; border: 1px solid #dbe6ff; padding: 7px 13px; border-radius: 999px; }
.toc a:hover { background: #e2ecff; }

/* BREADCRUMB */
.breadcrumb { font-size: 0.86rem; color: var(--muted); padding: 18px 0 0; }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--muted); }

/* CARDS / STEPS */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 4px 18px rgba(8,15,30,0.05); }
.grid { display: grid; gap: 14px; }
.steps { counter-reset: step; display: grid; gap: 14px; margin-top: 8px; }
.step { display: flex; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.step::before {
  counter-increment: step; content: counter(step);
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center;
}
.step h3 { margin-bottom: 2px; }
.highlight { background: linear-gradient(180deg, transparent 60%, rgba(245,179,1,0.4) 60%); font-weight: 700; }

.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.benefit { display: flex; gap: 12px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.benefit .ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; background: rgba(22,163,74,0.12); color: var(--brand); display: grid; place-items: center; font-weight: 800; }
.benefit b { display: block; font-size: 0.98rem; }
.benefit span { color: var(--muted); font-size: 0.9rem; }

.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.bonus-grid .card { text-align: center; }
.bonus-grid .big { font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 800; color: var(--brand); }

ul.checks { list-style: none; display: grid; gap: 10px; margin-top: 6px; }
ul.checks li { position: relative; padding-left: 30px; color: #2b3545; }
ul.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 800; }

.cons { list-style: none; display: grid; gap: 10px; margin-top: 6px; }
.cons li { position: relative; padding-left: 30px; color: #2b3545; }
.cons li::before { content: "–"; position: absolute; left: 4px; top: -1px; color: #d4760a; font-weight: 800; font-size: 1.2rem; }

.note { background: #fffaf0; border: 1px solid #f3e3bd; border-radius: 14px; padding: 16px 18px; font-size: 0.92rem; color: #5b4a1f; }

/* PROSE (article pages) */
.prose p { margin-top: 14px; }
.prose h2 { margin-top: 34px; }
.prose h3 { margin-top: 22px; margin-bottom: 4px; }
.prose ul { margin: 12px 0 0 22px; }
.prose ul li { margin-bottom: 7px; }
.prose .lead { font-size: 1.1rem; color: #41506a; }

/* RELATED LINKS */
.related { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 10px; }
.related a { display: block; text-decoration: none; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; transition: border-color 0.12s ease, transform 0.12s ease; }
.related a:hover { border-color: var(--brand); transform: translateY(-2px); }
.related b { display: block; color: var(--ink); font-size: 1.02rem; }
.related span { color: var(--muted); font-size: 0.9rem; }
.related .arrow { color: var(--brand); font-weight: 800; }

/* FAQ */
details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 4px 18px; margin-bottom: 10px; }
details summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--brand); font-weight: 800; font-size: 1.3rem; }
details[open] summary::after { content: "−"; }
details p { padding: 0 0 16px; color: #41506a; }

/* FOOTER */
footer { background: var(--bg); color: #8aa0bf; padding: 34px 0 44px; margin-top: 30px; }
footer p { color: #8aa0bf; font-size: 0.82rem; }
footer a { color: #b9c8de; }
.disclaimer { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 18px; padding-top: 18px; }

/* COMPARISON TABLE */
.cmp-wrap { overflow-x: auto; margin-top: 10px; -webkit-overflow-scrolling: touch; }
.cmp { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; min-width: 460px; }
.cmp th, .cmp td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; vertical-align: top; }
.cmp thead th { background: #0f1a2e; color: #fff; font-weight: 700; }
.cmp thead th:first-child { background: #f1f5f9; color: var(--ink); }
.cmp tbody td:first-child { font-weight: 700; background: #f8fafc; }
.cmp tr:last-child td { border-bottom: 0; }
.cmp .yes { color: var(--brand); font-weight: 700; }

@media (max-width: 560px) {
  .bonus-grid, .benefits, .related { grid-template-columns: 1fr; }
}
