/* ============================================================
   QR Coin — site de prezentare
   Sistem de design comun (vezi docs/superpowers/specs/2026-09-02-frontend-design-system.md)
   ============================================================ */

:root {
  --ink-900: #0b1f3a;
  --ink-800: #14304f;
  --text: #1b2b3e;
  --muted: #5b6b80;
  --subtle: #8a98ab;
  --line: #dce2ea;
  --line-strong: #c3ccd8;
  --bg: #f6f8fa;
  --surface: #ffffff;
  --surface-2: #f0f3f7;
  --brand: #0e8f6e;
  --brand-700: #0b7359;
  --brand-100: #e4f3ed;
  --warn: #b7791f;
  --warn-100: #fbf3e4;
  --danger: #b42318;
  --danger-100: #fcebea;
  --info: #1d5bd8;
  --info-100: #e7eefb;
  --radius: 6px;
  --radius-lg: 8px;
  --shadow-float: 0 12px 32px rgba(11, 31, 58, .14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

h1, h2, h3, h4 { color: var(--ink-900); letter-spacing: -.02em; line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -.025em; }
h2 { font-size: clamp(26px, 3.2vw, 36px); }
h3 { font-size: 17px; }
h4 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); font-weight: 600; }
p { color: var(--muted); }
a { color: var(--ink-900); text-decoration: none; }
strong, b { color: var(--text); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--subtle); margin-bottom: 14px;
}
.eyebrow .num { font-family: var(--mono); color: var(--brand); font-weight: 600; letter-spacing: 0; }
.eyebrow.light { color: rgba(255,255,255,.62); }
.eyebrow.light .num { color: #4fd1a5; }

.lead { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 56ch; }
.section-sub { font-size: 17px; max-width: 62ch; margin-top: 12px; }
.footnote { font-size: 13px; color: var(--subtle); margin-top: 18px; max-width: 78ch; }
.muted-label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); }

/* ---------- butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius); padding: 11px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent; transition: background .15s, border-color .15s, color .15s;
  font-family: inherit; line-height: 1.2; white-space: nowrap;
}
.btn-primary { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.btn-primary:hover { background: var(--ink-800); border-color: var(--ink-800); }
.btn-outline { background: var(--surface); color: var(--ink-900); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink-900); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.full { width: 100%; }

/* ---------- bara de utilitate ---------- */
.topline { background: var(--ink-900); color: rgba(255,255,255,.78); font-size: 12.5px; }
.topline-inner { display: flex; justify-content: space-between; align-items: center; height: 36px; gap: 16px; }
.topline a { color: #fff; font-weight: 500; }
.topline .sep { opacity: .35; margin: 0 10px; }
.topline-right { display: flex; align-items: center; gap: 0; white-space: nowrap; }

/* ---------- antet ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-900); }
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.brand-text { font-weight: 700; font-size: 18px; letter-spacing: -.02em; line-height: 1; white-space: nowrap; }
.brand-text small { display: block; font-weight: 500; font-size: 11px; letter-spacing: .02em; color: var(--subtle); margin-top: 4px; }
.brand-light { color: #fff; }
.brand-light .brand-text small { color: rgba(255,255,255,.55); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--text); }
.main-nav a:hover { color: var(--ink-900); }
.main-nav .btn { margin-left: 8px; }
.main-nav a.btn-primary { color: #fff; }
@media (max-width: 1200px) { .main-nav { gap: 16px; } .main-nav a { font-size: 13.5px; white-space: nowrap; } }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius); width: 40px; height: 40px; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink-900); margin: 3px auto; border-radius: 1px; }

/* ---------- erou ---------- */
.hero { padding: 84px 0 64px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 28px; }
.hero-points { list-style: none; display: grid; grid-template-columns: repeat(3, auto); gap: 10px 28px; }
.hero-points li { font-size: 14px; color: var(--text); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.hero-points li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

/* cadru de produs: telefon + boxa, ilustrare plata, fara decor */
.product-frame {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch;
  position: relative;
}
.pf-label { position: absolute; top: -11px; left: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--subtle); }
.phone { background: var(--surface); border: 1px solid var(--line-strong); border-radius: 22px; padding: 14px 12px; box-shadow: 0 1px 2px rgba(11,31,58,.06); }
.phone-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.phone-head .brand svg { width: 20px; height: 20px; }
.phone-head .brand-text { font-size: 13px; }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: var(--brand-100); color: var(--brand-700); }
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.phone-sub { font-size: 11px; color: var(--subtle); margin-bottom: 2px; }
.phone-title { font-size: 15px; font-weight: 700; color: var(--ink-900); margin-bottom: 12px; }
.phone-q { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); margin-bottom: 8px; }
.phone-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
.phone-amounts span { border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 4px; text-align: center; font-weight: 700; font-size: 15px; color: var(--ink-900); font-variant-numeric: tabular-nums; }
.phone-amounts span i { display: block; font-style: normal; font-size: 9.5px; font-weight: 500; color: var(--subtle); }
.phone-amounts .sel { border-color: var(--brand); background: var(--brand-100); }
.phone-cta { background: var(--ink-900); color: #fff; border-radius: var(--radius); text-align: center; font-size: 12.5px; font-weight: 600; padding: 11px; }
.phone-trust { font-size: 9.5px; color: var(--subtle); text-align: center; margin-top: 8px; }

.box-panel { display: flex; flex-direction: column; gap: 10px; }
.bp-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 14px 16px; }
.bp-card .k { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); }
.bp-card .v { font-size: 22px; font-weight: 700; color: var(--ink-900); font-variant-numeric: tabular-nums; letter-spacing: -.02em; margin-top: 2px; }
.bp-card .v small { font-size: 12px; font-weight: 500; color: var(--muted); margin-left: 4px; letter-spacing: 0; }
.bp-title { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); }
.bp-log { font-size: 12px; color: var(--muted); line-height: 1.75; }
.bp-log b { color: var(--brand-700); font-weight: 600; }
.bp-log .t { color: var(--subtle); font-variant-numeric: tabular-nums; margin-right: 4px; }

/* ---------- banda de incredere ---------- */
.trustband { border-bottom: 1px solid var(--line); background: var(--surface); }
.trustband-inner { display: flex; align-items: center; gap: 28px; height: 64px; flex-wrap: wrap; }
.trustlist { display: flex; gap: 8px; flex-wrap: wrap; }
.trustlist span { border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--text); background: var(--surface); }
.trustlogos { align-items: center; }
.trustlogos img { height: 34px; width: auto; display: block; }

/* ---------- sectiuni ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 4px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.card .ic { width: 24px; height: 24px; color: var(--ink-900); margin-bottom: 18px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14.5px; line-height: 1.6; }

/* cifre */
.stats-band { padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin: 56px auto 0; }
.stat { padding: 24px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-size: 30px; font-weight: 700; color: var(--ink-900); letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1.1; }
.stat span { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.45; }

/* pasi */
.steps-flow { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.step-num { display: inline-block; font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--brand-700); background: var(--brand-100); border-radius: var(--radius); padding: 4px 8px; margin-bottom: 16px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 14.5px; }

/* tabel comparativ */
.table-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: auto; background: var(--surface); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 820px; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.compare-table th { background: var(--surface-2); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--subtle); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table .hl-col { background: var(--brand-100); color: var(--brand-700); font-weight: 600; }
.compare-table th.hl-col { color: var(--brand-700); }
.compare-table .yes { color: var(--brand-700); font-weight: 600; }
.compare-table .no { color: var(--danger); }
.compare-table .mid { color: var(--warn); }
.compare-table .neutral { color: var(--subtle); }

/* plati & conformitate */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.check-list { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text); }
.check-list li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--brand-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b7359' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/11px no-repeat; }
.check-list.light li { color: rgba(255,255,255,.9); }
.check-list.light li::before { background-color: rgba(255,255,255,.14); }
.compliance { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.compliance > div { background: var(--surface); padding: 20px; }
.compliance b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); font-weight: 600; margin-bottom: 8px; }
.compliance span { font-size: 14px; color: var(--text); line-height: 1.55; }

/* tarife */
.pricing { align-items: stretch; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--ink-900); box-shadow: inset 0 0 0 1px var(--ink-900); }
.price-card .flag { position: absolute; top: -11px; left: 24px; background: var(--ink-900); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius); }
.price-card h3 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); font-weight: 600; margin-bottom: 14px; }
.price { font-size: 36px; font-weight: 700; color: var(--ink-900); letter-spacing: -.025em; line-height: 1; margin-bottom: 20px; font-variant-numeric: tabular-nums; }
.price .from { font-size: 13px; font-weight: 500; color: var(--subtle); letter-spacing: 0; margin-right: 6px; }
.price .unit { font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 6px; }
.price-card ul { list-style: none; display: grid; gap: 10px; flex: 1; }
.price-card li { font-size: 14.5px; color: var(--text); display: block; position: relative; padding-left: 15px; line-height: 1.5; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }
.price-card li b { color: var(--ink-900); }
.price-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; }

/* exemplu de cost + liste „ce nu plătești / ce mai poate apărea” */
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; align-items: start; }
.cost-example, .cost-lists > div, .need-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.cost-lists { display: grid; gap: 20px; }
.cost-title { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); margin-bottom: 14px; }
.cost-table { width: 100%; border-collapse: collapse; }
.cost-table td, .cost-table th { padding: 11px 0 11px 12px; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--text); text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.cost-table td:first-child, .cost-table th:first-child { text-align: left; padding-left: 0; white-space: normal; }
.cost-table th { font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--subtle); padding-top: 0; }
.cost-table tr.total td { border-bottom: none; font-weight: 700; color: var(--ink-900); font-size: 16px; padding-top: 14px; }
.cost-table tr.total td + td { color: var(--brand-700); }
.cost-small { font-size: 13.5px; margin-top: 14px; line-height: 1.6; }
.cost-lists .check-list { margin-top: 0; }
.cost-lists .check-list li { font-size: 14.5px; }
.dash-list { list-style: none; display: grid; gap: 10px; }
.dash-list li { font-size: 14.5px; color: var(--muted); line-height: 1.6; padding-left: 16px; position: relative; }
.dash-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 2px; background: var(--warn); }
.pilot-note { display: flex; gap: 16px; align-items: flex-start; margin-top: 20px; padding: 18px 22px; background: var(--brand-100); border: 1px solid #cfe8dc; border-radius: var(--radius-lg); }
.pilot-note b { flex-shrink: 0; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-700); margin-top: 3px; }
.pilot-note span { font-size: 14.5px; color: var(--text); line-height: 1.6; }

/* pentru ce aparate merge */
.equip-grid { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.equip-grid li { background: var(--surface); padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.equip-grid li b { font-size: 14.5px; color: var(--ink-900); line-height: 1.35; }
.equip-grid li span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.equip-grid li:last-child { background: var(--brand-100); }
.equip-grid li:last-child b { color: var(--brand-700); }

/* cum ajung banii: 2×2; contractul: 3 coloane */
.compliance.three { grid-template-columns: repeat(3, 1fr); }

/* instalare: cronologie + „ce trebuie să ai tu” */
.install-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; }
.timeline { list-style: none; display: grid; gap: 0; position: relative; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line-strong); }
.timeline li { position: relative; padding: 0 0 26px 8px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -26px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--surface); border: 3px solid var(--brand); box-sizing: border-box; }
.tl-when { display: inline-block; font-size: 12px; font-weight: 600; color: var(--brand-700); background: var(--brand-100); border-radius: var(--radius); padding: 3px 8px; margin-bottom: 8px; }
.timeline h3 { margin-bottom: 6px; }
.timeline p { font-size: 14.5px; max-width: 58ch; }
.need-box .check-list { margin-top: 0; }
.need-box .check-list li { display: block; font-size: 14px; line-height: 1.55; padding-left: 30px; position: relative; }
.need-box .check-list li::before { position: absolute; left: 0; top: 1px; margin-top: 0; }
.need-box .check-list li b { color: var(--ink-900); }
.need-note { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13.5px; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 16px; color: var(--ink-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; font-weight: 400; color: var(--subtle); flex-shrink: 0; }
.faq[open] summary::after { content: "−"; }
.faq p { padding: 0 0 20px; font-size: 15px; max-width: 70ch; }

/* contact */
.cta-section { background: var(--ink-900); color: #fff; padding: 88px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.cta-copy h2, .cta-copy h1 { color: #fff; margin-bottom: 14px; }
.cta-copy h1 { font-size: clamp(28px, 3.4vw, 40px); }
.cta-copy p { color: rgba(255,255,255,.72); font-size: 16px; }
.cta-alt { margin-top: 26px; font-size: 14px; }
.cta-alt a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.4); }
.cta-form { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; color: var(--text); }
.cf-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.cf-head h3 { font-size: 18px; margin-bottom: 4px; }
.cf-head p { font-size: 13.5px; }
.cf-badge { font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-700); background: var(--brand-100); padding: 5px 10px; border-radius: var(--radius); white-space: nowrap; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.field span { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.field input, .field select { width: 100%; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 11px 12px; font-size: 14px; font-family: inherit; color: var(--text); background: var(--surface); outline: none; }
.field input:focus, .field select:focus { border-color: var(--ink-900); box-shadow: 0 0 0 3px rgba(11,31,58,.08); }
.cf-privacy { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; color: var(--subtle); }
.cf-privacy svg { width: 12px; height: 12px; }
.form-note { margin-top: 10px; font-size: 13px; color: var(--brand-700); min-height: 18px; }

/* footer */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 14px; font-size: 13.5px; line-height: 1.6; }
.footer-grid h4 { margin-bottom: 14px; }
.footer-grid a { display: block; font-size: 14px; color: var(--text); margin-bottom: 8px; }
.footer-grid a:hover { color: var(--brand-700); }
.footer-note { font-size: 13px; margin-top: 8px; }
.footer-legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--subtle); line-height: 1.7; }
.footer-bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-top: 12px; font-size: 12.5px; color: var(--subtle); }
.footer-bar a { color: var(--subtle); }

/* ---------- site multi-pagina: meniu activ, antet de pagina, ilustratii, grila de aparate ---------- */
.main-nav a.active { color: var(--brand-700); font-weight: 600; }
.page-hero { padding: 64px 0 44px; border-bottom: 1px solid var(--line); background: var(--surface); }
.page-hero h1 { margin: 14px 0 18px; max-width: 24ch; font-size: clamp(30px, 4vw, 44px); }
.page-hero .lead { max-width: 66ch; }
.page-hero .eyebrow a { color: var(--subtle); }
.page-hero .eyebrow a:hover { color: var(--brand-700); }
.page-hero .hero-actions { margin: 26px 0 0; }
.illu { width: 100%; height: auto; display: block; }
.hero-visual .illu { max-width: 600px; margin: 0 auto; }

.machine-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.machine-card { background: var(--surface); padding: 22px 18px 20px; display: flex; flex-direction: column; gap: 8px; color: var(--text); transition: background .15s; }
.machine-card:hover { background: var(--bg); }
.machine-card b { font-size: 14.5px; color: var(--ink-900); line-height: 1.35; }
.machine-card > span:last-child { font-size: 13px; color: var(--muted); line-height: 1.5; }
.machine-ic { width: 44px; height: 44px; color: var(--ink-900); margin-bottom: 4px; }
.machine-ic svg { width: 44px; height: 44px; }
.machine-card.other { background: var(--brand-100); }
.machine-card.other b, .machine-card.other .machine-ic { color: var(--brand-700); }

.card-ic { display: block; width: 32px; height: 32px; color: var(--ink-900); margin-bottom: 16px; }
.card-ic svg { width: 32px; height: 32px; }
.more-link { margin-top: 24px; font-size: 15px; }
.more-link a { color: var(--brand-700); font-weight: 600; }
.more-link a:hover { text-decoration: underline; }
.law-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.law-card b { display: block; font-size: 16px; color: var(--ink-900); margin-bottom: 8px; line-height: 1.4; }
.law-card > span:last-child { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col h2 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 8px; }
.two-col .check-list { margin-top: 16px; }
.machine-hero-grid { display: grid; grid-template-columns: 1fr 200px; gap: 40px; align-items: center; }
.machine-hero-ic { width: 180px; height: 180px; color: var(--ink-900); background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; justify-self: end; }
.machine-hero-ic svg { width: 120px; height: 120px; }

/* blocul de final „Cere o oferta” + pagina de contact */
.cta-short { padding: 64px 0; }
.cta-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; }
.cta-inner h2 { color: #fff; margin: 6px 0 10px; }
.cta-inner p { color: rgba(255,255,255,.72); font-size: 16px; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.btn-light { background: #fff; color: var(--ink-900); border-color: #fff; }
.btn-light:hover { background: #eef2f6; border-color: #eef2f6; }
.cta-mail { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.4); }
.cta-page { padding: 72px 0 88px; }
.footer-grid-5 { grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1fr; }

/* ---------- animatie discreta la derulare ---------- */
/* animatia de aparitie ruleaza doar cu JS activ (html.js); fara JS continutul e vizibil */
html.js .reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; } .delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .steps-flow { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-points { grid-template-columns: 1fr; }
  .cost-grid, .install-grid { grid-template-columns: 1fr; }
  .compliance.three { grid-template-columns: 1fr 1fr; }
  .equip-grid { grid-template-columns: 1fr 1fr; }
  .machine-grid { grid-template-columns: 1fr 1fr 1fr; }
  .cta-inner, .two-col, .machine-hero-grid { grid-template-columns: 1fr; }
  .machine-hero-ic { justify-self: start; width: 140px; height: 140px; }
  .machine-hero-ic svg { width: 92px; height: 92px; }
  .footer-grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topline .hide-m, .topline-left { display: none; }
  .topline-inner { justify-content: flex-end; }
  .cf-head { flex-direction: column; gap: 10px; }
  .cf-badge { white-space: normal; align-self: flex-start; }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 16px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav .btn { margin: 12px 0 0; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 40px; }
  .grid-3, .steps-flow, .compliance, .compliance.three, .f-grid, .stats-grid, .equip-grid { grid-template-columns: 1fr; }
  .machine-grid { grid-template-columns: 1fr 1fr; }
  .machine-card { padding: 16px 12px 14px; }
  .footer-grid-5 { grid-template-columns: 1fr; }
  .page-hero { padding: 44px 0 32px; }
  .pilot-note { flex-direction: column; gap: 8px; }
  .cost-table td, .cost-table th { white-space: normal; font-size: 13.5px; padding-left: 8px; }
  .cost-table td:first-child, .cost-table th:first-child { padding-left: 0; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .product-frame { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- „Pe scurt”: raspunsul direct, in capul paginii ---------- */
.tldr { border-left: 3px solid var(--brand); background: var(--brand-100); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 18px 22px; max-width: 900px; }
.tldr b { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-700); margin-bottom: 8px; }
.tldr p { font-size: 15.5px; line-height: 1.65; color: var(--text); }
