/* ════════════════════════════════════════════════════════════════
   otto-legal.css — sistem de design partajat pentru paginile
   informative/legale OTTO (Confidențialitate, Termeni, Accesibilitate).
   Redesign 2026: hârtie caldă + Space Grotesk / Archivo / Space Mono,
   colțuri ascuțite, accent portocaliu. Un singur fișier pentru toate
   trei paginile → chrome IDENTIC + zero CSS duplicat.
   Depinde de: fonts/fonts.css (Cormorant + DM Sans pentru footer),
   fonts/redesign-2026.css (Archivo, Space Grotesk, Space Mono),
   otto-polish.css (--shadow-*, --radius-*).
   ════════════════════════════════════════════════════════════════ */

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

:root {
  --orange: #FF8800;
  --orange-deep: #E67500;
  --orange-light: #FFA033;
  --orange-pale: #FFF2DD;
  --dark: #1A1A1A;
  --text: #1A1A1A;
  --text-soft: #4A443C;
  --text-mute: #6F675C;
  --cream-2: #FFF8E1;

  /* redesign 2026 */
  --accent: #FF8800;
  --accent-deep: #E67500;
  --ink: #14110F;
  --paper: #F5F2EC;
  --paper-line: rgba(20,17,15,0.1);

  --grotesk: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  --archivo: 'Archivo', 'DM Sans', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, Menlo, Consolas, monospace;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --topbar-h: 38px;
  --maxw: 1180px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--archivo);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-topbar { padding-top: var(--topbar-h); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #efe9df; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── Accesibilitate: focus vizibil ── */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
#main:focus { outline: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Skip link ── */
.skip-link {
  position: absolute; left: 1rem; top: -120%;
  z-index: 10001;
  background: var(--ink); color: #fff;
  padding: 0.8rem 1.3rem; border-radius: 3px;
  font-family: var(--archivo); font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: top 0.25s cubic-bezier(.2,.85,.3,1);
}
.skip-link:focus, .skip-link:focus-visible { top: 1rem; }

/* ── Loader ── */
.loader {
  position: fixed; inset: 0;
  background: var(--cream-2);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.6rem;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader img { width: 110px; height: auto; opacity: 0.9; animation: loaderFade 1.4s ease-in-out infinite; }
.loader-bar { width: 180px; height: 1px; background: rgba(0,0,0,0.1); overflow: hidden; position: relative; }
.loader-bar::after {
  content: ''; position: absolute; inset: 0;
  background: var(--orange);
  transform: translateX(-100%);
  animation: loaderProgress 1.4s ease-in-out infinite;
}
@keyframes loaderFade { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
@keyframes loaderProgress { 0% { transform: translateX(-100%); } 50% { transform: translateX(0%); } 100% { transform: translateX(100%); } }

/* ── Bara de progres a paginii ── */
.rd-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 2000; pointer-events: none; }
.rd-progress > div { height: 100%; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: 0 50%; }

/* ── Topbar ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  height: var(--topbar-h);
  padding: 0 clamp(1rem, 4vw, 4rem);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  font-size: 13px; letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(230,215,184,0.25);
  white-space: nowrap;
}
.topbar-phone {
  color: rgba(255,255,255,0.85); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color 0.25s;
}
.topbar-phone:hover { color: var(--orange-light); }
.topbar-phone-label {
  color: var(--orange); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px;
}
@media (max-width: 760px) {
  .topbar { gap: 0.8rem; font-size: 11px; padding: 0 0.8rem; }
  .topbar-phone-label { font-size: 10px; letter-spacing: 0.08em; }
}

/* ── Nav ── */
nav.site-nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0;
  z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 4rem);
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: padding 0.35s, box-shadow 0.35s, background 0.4s, border-color 0.4s;
}
nav.site-nav.scrolled {
  padding: 0.7rem clamp(1rem, 4vw, 4rem);
  background: #FFFFFF;
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 65px; width: auto; transition: height 0.35s; }
nav.site-nav.scrolled .nav-logo-img { height: 52px; }
.nav-links { display: flex; gap: 1.7rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.4s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-size: 0.86rem; letter-spacing: 0.02em; font-weight: 600;
  color: #fff; background: var(--orange);
  padding: 0.72rem 1.5rem; text-decoration: none;
  border-radius: var(--radius-sm, 6px);
  box-shadow: 0 8px 20px -8px rgba(230,117,0,.7);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(230,117,0,.8); }
.nav-cta:active { transform: translateY(0) scale(0.97); }

.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--orange); transition: transform 0.35s, opacity 0.25s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.mobile-menu-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: color 0.25s;
}
.mobile-menu-close:hover { color: var(--orange); }
.mobile-menu-close svg { width: 24px; height: 24px; }
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  padding: 6rem 2rem 2rem;
  display: none; flex-direction: column;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,136,0,0.15);
  font-size: 1.4rem;
  font-family: var(--serif);
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); padding-left: 0.5rem; }
.mobile-menu-cta {
  margin-top: 2rem; text-align: center;
  padding: 1rem 2rem !important;
  background: var(--orange);
  color: #fff !important;
  border-bottom: none !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem !important;
  font-family: var(--sans) !important;
  border-radius: var(--radius-sm, 6px);
}
.mobile-menu-cta:hover { background: var(--orange-deep); color: #fff !important; padding-left: 2rem !important; }
.mobile-menu-contact { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,136,0,0.2); }
.mobile-menu-contact-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0; font-size: 15px;
  color: #444; text-decoration: none;
}
.mobile-menu-contact-item:hover { color: var(--orange); }
.mobile-menu-contact-item svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; flex-shrink: 0; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  nav.site-nav { padding: 0.7rem 1.2rem; }
  .nav-logo-img { height: 48px; }
  nav.site-nav.scrolled .nav-logo-img { height: 40px; }
}

/* ════════════════════════════════════════════════════════════════
   HERO (redesign 2026)
   ════════════════════════════════════════════════════════════════ */
.rd-inner { max-width: var(--maxw); margin: 0 auto; }

.legal-hero {
  padding: clamp(3.5rem, 8vh, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 5vh, 3.5rem);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,136,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,136,0,0.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 90% 80% at 20% 0%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 20% 0%, black 0%, transparent 72%);
  pointer-events: none;
}
.legal-hero .rd-inner { position: relative; z-index: 1; }
.rd-eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.4rem;
}
.rd-eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--accent); flex: none; }
.legal-hero h1 {
  margin: 0;
  font-family: var(--grotesk);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.1rem, 5.4vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.025em;
  max-width: 15ch;
}
.legal-hero h1 .acc { color: var(--accent-deep); }
.legal-hero p.lead {
  margin: 1.6rem 0 0;
  max-width: 62ch;
  font-size: 1.08rem; line-height: 1.75;
  color: var(--text-soft);
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 2rem;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-soft);
}
.hero-chip::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.hero-chip.solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.hero-chip.solid::before { background: var(--accent); }

/* ════════════════════════════════════════════════════════════════
   LAYOUT LEGAL — TOC sticky + conținut
   ════════════════════════════════════════════════════════════════ */
.legal-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* TOC */
.legal-toc { position: sticky; top: calc(var(--topbar-h) + 74px); align-self: start; }
.legal-toc-label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1rem; padding-left: 1rem;
}
.legal-toc ol { list-style: none; counter-reset: toc; border-left: 1px solid var(--paper-line); }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: block;
  padding: 0.5rem 0.9rem;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 0.9rem; line-height: 1.4;
  color: var(--text-soft); text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero) "  ";
  font-family: var(--mono);
  font-size: 0.78em; color: var(--text-mute);
}
.legal-toc a:hover, .legal-toc a.active {
  color: var(--accent-deep);
  border-left-color: var(--accent);
  background: rgba(255,136,0,0.06);
}
.legal-toc a:hover::before, .legal-toc a.active::before { color: var(--accent-deep); }

/* Conținut */
.legal-body { min-width: 0; }

.legal-note {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1rem;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-left: 3px solid var(--accent);
  border-radius: 0 3px 3px 0;
  padding: 1rem 1.3rem;
  margin-bottom: 2.6rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.legal-note .np {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--accent); color: var(--ink);
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px;
}
.legal-note strong { color: var(--ink); }

.legal-section { scroll-margin-top: calc(var(--topbar-h) + 90px); }
.legal-section + .legal-section { margin-top: 2.4rem; padding-top: 2.4rem; border-top: 1px solid var(--paper-line); }
.legal-section h2 {
  display: flex; align-items: baseline; gap: 0.7rem;
  font-family: var(--grotesk);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.legal-section h2 .sec-num {
  font-family: var(--mono);
  font-size: 0.72em; font-weight: 700;
  color: var(--accent-deep);
  flex: none;
}
.legal-section h3 {
  font-family: var(--archivo);
  font-size: 1.02rem; font-weight: 600;
  color: var(--accent-deep);
  margin-top: 1.7rem; margin-bottom: 0.5rem;
}
.legal-body p, .legal-body li {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}
.legal-body ul { padding-left: 1.4rem; margin-bottom: 0.9rem; }
.legal-body li { margin-bottom: 0.45rem; }
.legal-body li::marker { color: var(--accent); }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--accent); }
.legal-body code {
  font-family: var(--mono);
  font-size: 0.86em;
  background: var(--orange-pale);
  color: var(--orange-deep);
  padding: 0.12rem 0.42rem;
  border-radius: 3px;
}

/* Tabel cookie-uri */
.table-wrap {
  overflow-x: auto;
  margin: 1.2rem 0;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  background: #fff;
}
table.legal-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 540px; }
table.legal-table thead th {
  text-align: left;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.9rem 1rem;
  border-bottom: 2px solid var(--accent);
}
table.legal-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--paper-line);
  color: var(--text-soft);
  vertical-align: top;
  line-height: 1.6;
}
table.legal-table tbody tr:last-child td { border-bottom: none; }
table.legal-table tbody tr:hover { background: rgba(255,136,0,0.04); }

/* Card de contact (ink) */
.contact-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 3px;
  padding: 1.8rem 2rem;
  margin-top: 1.3rem;
}
.contact-card .cc-title {
  font-family: var(--grotesk);
  font-weight: 700; text-transform: uppercase;
  font-size: 1.1rem; letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.contact-card p { color: rgba(245,242,236,0.75); font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.6; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card .cc-label {
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,242,236,0.5);
  margin-right: 0.5rem;
}
.contact-card a { color: var(--accent); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   SECȚIUNI PENTRU PAGINA DE ACCESIBILITATE
   ════════════════════════════════════════════════════════════════ */
.rd-sec { padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem); }
.rd-sec.alb { background: #FFFFFF; }
.rd-sec.ink { background: var(--ink); color: var(--paper); }
.rd-sec-label {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.9rem;
}
.rd-sec.ink .rd-sec-label { color: rgba(245,242,236,0.55); }
.rd-sec h2 {
  font-family: var(--grotesk);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}
.rd-sec h2 .acc { color: var(--accent-deep); }
.rd-sec.ink h2 .acc { color: var(--accent); }
.rd-sec .sec-sub {
  max-width: 62ch;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 2.4rem;
}
.rd-sec.ink .sec-sub { color: rgba(245,242,236,0.7); }

/* Standarde (badge-uri mono) */
.standards-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.standard-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-soft);
}
.standard-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

/* Grid caracteristici (carduri cu bifă) */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature-card {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  padding: 1.5rem 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20,17,15,0.1); border-color: rgba(255,136,0,0.5); }
.feature-tick {
  width: 42px; height: 42px; flex: none;
  border-radius: 3px;
  background: var(--orange-pale);
  color: var(--orange-deep);
  display: flex; align-items: center; justify-content: center;
}
.feature-tick svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.4; }
.feature-card h3 {
  font-family: var(--grotesk);
  font-weight: 600; font-size: 1.05rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.feature-card p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* Scurtături de tastatură */
.kbd-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem 1.4rem; }
.kbd-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--paper);
  border: 1px solid rgba(245,242,236,0.14);
  border-radius: 3px;
  padding: 0.9rem 1.1rem;
}
.rd-sec.ink .kbd-row { background: rgba(245,242,236,0.04); border-color: rgba(245,242,236,0.12); }
.kbd-row span { font-size: 0.95rem; color: var(--text-soft); line-height: 1.4; }
.rd-sec.ink .kbd-row span { color: rgba(245,242,236,0.82); }
.kbd-keys { display: inline-flex; gap: 0.3rem; flex: none; }
kbd {
  font-family: var(--mono);
  font-size: 12px; font-weight: 700;
  color: var(--ink);
  background: var(--accent);
  border-radius: 4px;
  padding: 0.28rem 0.55rem;
  min-width: 26px; min-height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
}

/* Card de raportare */
.report-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 3px;
  padding: 2.2rem 2.2rem;
}
.report-card p { font-size: 1.02rem; color: var(--text-soft); line-height: 1.7; max-width: 60ch; margin-bottom: 1.6rem; }
.report-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.report-btn, .report-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  font-family: var(--archivo);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.25s;
}
.report-btn { color: #fff; background: var(--accent); box-shadow: 0 8px 20px -8px rgba(230,117,0,.7); }
.report-btn:hover { background: var(--accent-deep); transform: translateY(-2px); }
.report-btn-ghost { color: var(--ink); background: transparent; border: 1.5px solid var(--paper-line); }
.report-btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.report-btn svg, .report-btn-ghost svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.prose-narrow { max-width: 68ch; }
.prose-narrow p { font-size: 1.05rem; line-height: 1.8; color: var(--text-soft); margin-bottom: 1rem; }

/* ════════════════════════════════════════════════════════════════
   CTA STRIP (gradient portocaliu)
   ════════════════════════════════════════════════════════════════ */
.rd-cta {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  color: var(--ink);
}
.rd-cta .rd-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem 2rem; flex-wrap: wrap; }
.rd-cta-text { max-width: 40ch; }
.rd-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--grotesk);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.06; letter-spacing: -0.02em;
}
.rd-cta h2 em { font-style: normal; color: #fff; }
.rd-cta p { margin: 0; font-size: 1rem; line-height: 1.6; color: rgba(20,17,15,0.72); }
.rd-cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.rd-cta-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--ink); color: var(--paper);
  font-family: var(--archivo);
  font-weight: 600; font-size: 0.98rem;
  padding: 1.05rem 1.9rem; border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s;
}
.rd-cta-btn:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.rd-cta-btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(20,17,15,0.5); }
.rd-cta-btn.ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.rd-cta-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.2; flex: none; }

/* ════════════════════════════════════════════════════════════════
   FOOTER (canonical, sync cu restul site-ului)
   ════════════════════════════════════════════════════════════════ */
footer.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem clamp(1.5rem, 6vw, 6rem) 0;
  font-family: var(--sans);
}
footer.site-footer .footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer.site-footer .footer-brand img { height: 60px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: 0.95; }
footer.site-footer .footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
footer.site-footer .footer-col h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: #fff; margin-bottom: 1.2rem; }
footer.site-footer .footer-col a {
  display: block; padding: 0.4rem 0;
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}
footer.site-footer .footer-col a:hover { color: var(--orange); padding-left: 6px; }
footer.site-footer .footer-bottom {
  max-width: 1400px; margin: 2rem auto 0;
  padding-top: 4rem; padding-bottom: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
footer.site-footer .footer-socials { display: flex; gap: 0.8rem; }
footer.site-footer .footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
footer.site-footer .footer-socials a:hover { background: var(--orange); border-color: var(--orange); }
footer.site-footer .footer-socials svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; color: #fff; }
footer.site-footer .footer-legal { display: flex; gap: 1.2rem; }
footer.site-footer .footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
footer.site-footer .footer-legal a:hover { color: var(--orange); }

/* ── Cookie consent ── */
#otto-consent {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: var(--ink); color: #fff;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  font-family: var(--archivo); font-size: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
#otto-consent.vis { transform: translateY(0); }
#otto-consent p { margin: 0; color: #bbb; line-height: 1.5; flex: 1; }
#otto-consent a { color: var(--orange); text-decoration: underline; }
#otto-cb { display: flex; gap: .75rem; flex-shrink: 0; }
#otto-ca { background: var(--orange); color: #fff; border: none; padding: .6rem 1.5rem; border-radius: 2px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s; }
#otto-cr { background: transparent; color: #bbb; border: 1px solid #444; padding: .6rem 1.5rem; border-radius: 2px; font-size: 13px; cursor: pointer; font-family: inherit; transition: border-color .2s, color .2s; }
#otto-ca:hover { background: var(--orange-deep); }
#otto-cr:hover { border-color: #999; color: #fff; }

/* ════════════════════════════════════════════════════════════════
   REVEAL + RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; } .rv-d2 { transition-delay: 0.16s; } .rv-d3 { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .legal-shell { grid-template-columns: 1fr; gap: 1.6rem; }
  .legal-toc {
    position: static;
    background: #fff;
    border: 1px solid var(--paper-line);
    border-radius: 3px;
    padding: 1.2rem 1.2rem;
  }
  .legal-toc-label { padding-left: 0.2rem; }
  .legal-toc ol { border-left: none; columns: 2; column-gap: 1.4rem; }
  .legal-toc a { padding: 0.4rem 0.4rem; border-left: none; border-radius: 3px; break-inside: avoid; }
  .legal-toc a:hover, .legal-toc a.active { border-left: none; }
}
@media (max-width: 760px) {
  .feature-grid, .kbd-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .legal-toc ol { columns: 1; }
  footer.site-footer .footer-grid { grid-template-columns: 1fr; }
  footer.site-footer .footer-bottom { flex-direction: column; text-align: center; }
  #otto-consent { flex-direction: column; align-items: flex-start; padding: 1rem 1.2rem; gap: 1rem; }
  #otto-cb { width: 100%; }
  #otto-ca, #otto-cr { flex: 1; text-align: center; }
}
@media (max-width: 900px) {
  footer.site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rv { opacity: 1 !important; transform: none !important; }
  .loader { display: none !important; }
}
