/* ==========================================================================
   Revanzator.ro — Componente (nav, hero, secțiuni, dashboard, forms)
   ========================================================================== */

/* ---------- Navbar ---------- */
.rv-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--rv-nav-h);
  display: flex; align-items: center;
  background: rgba(247,248,250,.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--rv-t), background var(--rv-t), box-shadow var(--rv-t);
}
.rv-nav.is-scrolled { border-color: var(--rv-line); box-shadow: var(--rv-shadow-xs); }
.rv-nav__inner { display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%; }

.rv-brand { display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:-.02em; font-size:1.1rem; flex-shrink:0; }
.rv-brand__mark { width:34px; height:34px; border-radius:10px; background:var(--rv-ink); color:#fff; display:grid; place-items:center; box-shadow:var(--rv-shadow); flex-shrink:0; }
.rv-brand__mark svg { width:18px; height:18px; }
.rv-brand small { display:block; font-size:.6rem; font-weight:500; color:var(--rv-muted); letter-spacing:.02em; }

/* Nav center — guest */
.rv-nav__center { flex:1; display:flex; justify-content:center; }
.rv-nav__menu { display:flex; align-items:center; gap:28px; list-style:none; margin:0; padding:0; }
.rv-nav__menu a { font-weight:500; color:var(--rv-ink-2); font-size:.95rem; position:relative; }
.rv-nav__menu a:hover { color:var(--rv-ink); }
.rv-nav__menu a::after { content:""; position:absolute; left:0; right:100%; bottom:-4px; height:2px; background:var(--rv-ink); border-radius:2px; transition:right var(--rv-t-fast); }
.rv-nav__menu a:hover::after { right:0; }

/* Nav center — logged-in app mode */
.rv-nav__center--app { flex:1; display:flex; justify-content:center; gap:4px; }
.rv-nav__app-link {
  font-weight:600; font-size:.9rem; color:var(--rv-muted);
  padding:8px 14px; border-radius:10px;
  transition:background var(--rv-t-fast), color var(--rv-t-fast);
}
.rv-nav__app-link:hover { background:var(--rv-bg); color:var(--rv-ink); }
.rv-nav__app-link.is-active { background:var(--rv-bg); color:var(--rv-ink); }

.rv-nav__cta { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.rv-nav__cta-dash { display:flex; align-items:center; gap:6px; }
.rv-btn--sm { padding:10px 18px; font-size:.9rem; }

.rv-burger { display:none; width:40px; height:40px; border:1px solid var(--rv-line); border-radius:10px; background:var(--rv-bg-soft); align-items:center; justify-content:center; flex-direction:column; gap:4px; }
.rv-burger span { width:16px; height:2px; background:var(--rv-ink); border-radius:2px; transition:transform var(--rv-t), opacity var(--rv-t); }
.rv-burger.is-open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.rv-burger.is-open span:nth-child(2){ opacity:0; }
.rv-burger.is-open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* mobile drawer — slide da dreapta */
.rv-mobile-menu {
  position:fixed; inset:var(--rv-nav-h) 0 0;
  background:var(--rv-bg); z-index:99;
  transform:translateX(100%); transition:transform var(--rv-t);
  padding:var(--rv-s-3); display:flex; flex-direction:column; gap:0; overflow-y:auto;
}
.rv-mobile-menu.is-open { transform:none; }
.rv-mobile-menu li { list-style:none; }
.rv-mobile-menu a { display:block; font-size:1.15rem; font-weight:600; padding:16px 0; border-bottom:1px solid var(--rv-line); color:var(--rv-ink); }
.rv-mobile-menu a:active { background:var(--rv-bg-soft); }

/* FAB */
.rv-fab { position:fixed; right:20px; bottom:20px; z-index:90; }
.rv-fab .rv-btn { box-shadow:var(--rv-shadow-lg); }

/* ---------- Hero ---------- */
.rv-hero { position:relative; padding-block: var(--rv-s-7) var(--rv-s-6); overflow:hidden; text-align:center; }
.rv-hero__glow { position:absolute; inset:0; background: var(--rv-grad-glow); pointer-events:none; }
.rv-hero__orb { position:absolute; left:50%; top:42%; transform: translate(-50%,-50%); width:min(620px,80vw); aspect-ratio:1; border-radius:50%; background: radial-gradient(circle at 38% 32%, #fff 0%, #eef0f3 45%, #e3e6ea 70%, #f3f4f6 100%); filter: blur(2px); opacity:.85; z-index:-1; }
.rv-hero__rings { position:absolute; left:50%; top:42%; transform:translate(-50%,-50%); width:min(1100px,140vw); aspect-ratio:1; z-index:-1; opacity:.5; }
.rv-hero__rings span { position:absolute; inset:0; margin:auto; border-radius:50%; border:1px solid var(--rv-line); }
.rv-hero__rings span:nth-child(1){ width:40%; height:40%; }
.rv-hero__rings span:nth-child(2){ width:62%; height:62%; }
.rv-hero__rings span:nth-child(3){ width:86%; height:86%; }
.rv-hero__rings span:nth-child(4){ width:110%; height:110%; }
.rv-hero__inner { position:relative; z-index:1; max-width:880px; margin-inline:auto; }
.rv-hero__title { display:flex; align-items:center; justify-content:center; gap:18px; flex-wrap:wrap; margin-block: var(--rv-s-3); }
.rv-hero__logo { width:96px; height:96px; border-radius:50%; background:var(--rv-ink); color:#fff; display:grid; place-items:center; box-shadow: var(--rv-shadow-lg); flex:none; }
.rv-hero__logo svg { width:44px; height:44px; }
.rv-hero h1 { font-size: var(--rv-fs-hero); font-weight:800; letter-spacing:-.04em; margin:0; }
.rv-hero__lead { font-size:1.2rem; color:var(--rv-muted); max-width:60ch; margin:var(--rv-s-3) auto var(--rv-s-4); }
.rv-hero__actions { display:flex; gap:var(--rv-s-2); justify-content:center; flex-wrap:wrap; }

/* ---------- Metric strip ---------- */
.rv-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--rv-s-3); margin-top:var(--rv-s-6); }
.rv-metric { text-align:center; padding:var(--rv-s-3); }
.rv-metric strong { display:block; font-size:clamp(2rem,4vw,3rem); font-weight:800; letter-spacing:-.03em; }
.rv-metric span { color:var(--rv-muted); font-size:.95rem; }

/* ---------- Quote band ---------- */
.rv-quote { padding-block: var(--rv-s-8); }
.rv-quote__text { font-size: clamp(1.6rem,4vw,2.8rem); font-weight:600; letter-spacing:-.02em; line-height:1.25; color:var(--rv-muted); text-align:center; max-width:24ch; margin-inline:auto; }
.rv-quote__text b { color:var(--rv-ink); font-weight:700; }
.rv-quote__by { display:flex; align-items:center; justify-content:center; gap:12px; margin-top:var(--rv-s-4); }
.rv-quote__by .rv-avatar { width:42px; height:42px; border-radius:50%; background:var(--rv-bg-soft); border:1px solid var(--rv-line); display:grid; place-items:center; box-shadow:var(--rv-shadow-sm); }

/* ---------- Benefits / feature grid ---------- */
.rv-section__head { text-align:center; max-width:680px; margin:0 auto var(--rv-s-6); }
.rv-section__head .rv-kicker { margin-bottom:var(--rv-s-3); }
.rv-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:var(--rv-s-3); }
.rv-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--rv-s-3); }

/* feature large cards (cu imagine) */
.rv-feature { overflow:hidden; padding:0; }
.rv-feature__media { aspect-ratio:16/10; background:linear-gradient(135deg,#1a1a1d,#2c2f36); position:relative; }
.rv-feature__body { padding:var(--rv-s-4); }
.rv-feature__icon { width:48px; height:48px; border-radius:14px; background:var(--rv-ink); color:#fff; display:grid; place-items:center; margin-top:-44px; position:relative; box-shadow:var(--rv-shadow); }

/* tag pills row */
.rv-pills { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:var(--rv-s-4); }

/* infinite marquee de pills */
.rv-marquee { margin-top:var(--rv-s-5); overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.rv-marquee__track { display:flex; gap:12px; width:max-content; animation:rv-marquee 38s linear infinite; }
.rv-marquee:hover .rv-marquee__track { animation-play-state:paused; }
.rv-marquee .rv-chip { white-space:nowrap; flex:none; }
@keyframes rv-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .rv-marquee__track { animation:none; flex-wrap:wrap; justify-content:center; } }

/* ---------- Testimonial ---------- */
.rv-testi { display:grid; grid-template-columns:1fr 1fr; gap:var(--rv-s-3); align-items:stretch; }
.rv-testi__quote { font-size:clamp(1.4rem,2.6vw,2rem); font-weight:600; line-height:1.35; letter-spacing:-.01em; }
.rv-testi__media { border-radius:var(--rv-radius-lg); overflow:hidden; min-height:320px; background:linear-gradient(135deg,#2a3340,#3a4656); }

/* ---------- CTA band ---------- */
.rv-cta-band { background:var(--rv-ink); color:#fff; border-radius:var(--rv-radius-lg); padding:var(--rv-s-7) var(--rv-s-4); text-align:center; }
.rv-cta-band h2 { color:#fff; }
.rv-cta-band p { color:rgba(255,255,255,.7); }
.rv-cta-band .rv-btn--primary { background:#fff; color:var(--rv-ink); }

/* ---------- Member gate ---------- */
.rv-gate { background:var(--rv-bg-soft); border:1px dashed var(--rv-line-strong); border-radius:var(--rv-radius-lg); padding:var(--rv-s-5); text-align:center; }
.rv-gate .rv-card__icon { margin-inline:auto; }

/* ---------- Forms ---------- */
.rv-field { display:block; margin-bottom:var(--rv-s-2); }
.rv-field > span { display:block; font-weight:600; font-size:.9rem; margin-bottom:6px; }
.rv-input, .rv-select, .rv-textarea {
  width:100%; padding:13px 16px; font-size:1rem; font-family:inherit;
  background:var(--rv-bg-soft); border:1px solid var(--rv-line); border-radius:14px; color:var(--rv-ink);
  transition: border-color var(--rv-t-fast), box-shadow var(--rv-t-fast);
}
.rv-input:focus, .rv-select:focus, .rv-textarea:focus { outline:none; border-color:var(--rv-ink); box-shadow:0 0 0 4px rgba(10,10,11,.06); }
.rv-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--rv-s-2); }
.rv-notice { background:var(--rv-growth-soft); color:#047857; padding:14px 18px; border-radius:14px; margin-bottom:var(--rv-s-2); font-weight:500; }

/* ---------- Dashboard ---------- */
.rv-dash { display:grid; grid-template-columns:260px 1fr; gap:var(--rv-s-4); align-items:start; }
.rv-dash__side { position:sticky; top:calc(var(--rv-nav-h) + 16px); background:var(--rv-bg-soft); border:1px solid var(--rv-line); border-radius:var(--rv-radius); padding:var(--rv-s-2); box-shadow:var(--rv-shadow-sm); }
.rv-dash__nav a { display:flex; align-items:center; gap:10px; padding:12px 14px; border-radius:12px; font-weight:500; color:var(--rv-ink-2); }
.rv-dash__nav a:hover, .rv-dash__nav a.is-active { background:var(--rv-bg); color:var(--rv-ink); }
.rv-dash__stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:var(--rv-s-2); margin-bottom:var(--rv-s-3); }
.rv-stat { background:var(--rv-bg-soft); border:1px solid var(--rv-line); border-radius:var(--rv-radius); padding:var(--rv-s-3); }
.rv-stat strong { font-size:1.8rem; font-weight:800; display:block; }
.rv-stat span { color:var(--rv-muted); font-size:.85rem; }
.rv-progress { height:8px; background:var(--rv-bg); border-radius:99px; overflow:hidden; margin-top:8px; }
.rv-progress i { display:block; height:100%; background:var(--rv-ink); border-radius:99px; transition: width var(--rv-t-slow); }

/* ---------- Bottom nav (mobil + tableta, useri logati) ---------- */
.rv-bottomnav { display: none; }
.rv-moresheet { display: none; }

@media (max-width: 980px) {
  /* Ascunde nav-ul de centru desktop pe mobile */
  .rv-nav__center { display: none !important; }
  .rv-nav__center--app { display: none !important; }
  .rv-nav__cta-dash { display: none; }
  .rv-nav__menu { display: none; }
  .rv-burger { display: flex; }

  /* Bottom nav */
  .rv-bottomnav {
    display: flex;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: rgba(247,248,250,.96);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-top: 1px solid var(--rv-line);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    align-items: center;
  }

  .rv-bottomnav__item {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px;
    padding: 6px 2px;
    color: var(--rv-muted);
    font-size: .6rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
    min-height: 54px;
    border-radius: 12px;
    transition: color var(--rv-t-fast), background var(--rv-t-fast);
    -webkit-tap-highlight-color: transparent;
    position: relative;
    /* reset pentru cazul în care e <button> (slotul "Meniu"), nu <a> */
    background: none; border: 0; font-family: inherit; text-decoration: none; cursor: pointer;
  }
  .rv-bottomnav__item:active { background: rgba(10,10,11,.05); }
  .rv-bottomnav__item.is-active { color: var(--rv-ink); }

  /* Punct activ sub icon */
  .rv-bottomnav__item.is-active::after {
    content: "";
    position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--rv-ink);
  }

  .rv-bottomnav__icon { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; }
  .rv-bottomnav__icon svg { width: 22px; height: 22px; transition: transform var(--rv-t-fast); }
  .rv-bottomnav__item.is-active .rv-bottomnav__icon svg { stroke-width: 2.3; }
  .rv-bottomnav__item:active .rv-bottomnav__icon svg { transform: scale(.88); }

  .rv-bottomnav__label { line-height: 1; }

  /* Butonul Generator central — lift + negru */
  .rv-bottomnav__item--add { flex: 0 0 64px; }
  .rv-bottomnav__item--add .rv-bottomnav__icon {
    width: 48px; height: 48px; border-radius: 16px;
    background: var(--rv-ink); color: #fff;
    box-shadow: 0 6px 20px rgba(10,10,11,.28);
    margin-top: -12px; margin-bottom: 2px;
    transition: transform var(--rv-t-fast), box-shadow var(--rv-t-fast);
  }
  .rv-bottomnav__item--add:active .rv-bottomnav__icon {
    transform: scale(.91);
    box-shadow: 0 3px 10px rgba(10,10,11,.2);
  }
  .rv-bottomnav__item--add svg { color: #fff; }
  .rv-bottomnav__item--add .rv-bottomnav__label { color: var(--rv-muted); }
  .rv-bottomnav__item--add::after { display: none; }

  /* Padding corp pentru a nu acoperi continut */
  body.rv-logged { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  body.rv-logged .rv-fab { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }

  /* App mode: ascunde header top pe paginile interne */
  body.rv-app-mode .rv-nav { display: none; }
  body.rv-app-mode main { padding-top: env(safe-area-inset-top, 0px); }
  /* Pe paginile app (fără nav sus) nu mai irosi 64–96px de gol în vârf */
  body.rv-app-mode .rv-section { padding-block: 14px var(--rv-s-3); }
  body.rv-app-mode .rv-container { padding-inline: var(--rv-s-2); }

  /* Panou "Meniu" — sheet care se ridică de jos, restul secțiunilor */
  .rv-moresheet { position: fixed; inset: 0; z-index: 200; display: none; }
  .rv-moresheet.is-open { display: block; }
  .rv-moresheet__backdrop { position: absolute; inset: 0; background: rgba(10,10,11,.45); }
  .rv-moresheet__panel {
    position: absolute; left: 0; right: 0; bottom: 0;
    background: var(--rv-bg-soft, #fff); border-radius: 22px 22px 0 0;
    padding: 10px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -12px 40px rgba(10,10,11,.18);
    max-height: 70vh; overflow-y: auto;
  }
  .rv-moresheet__handle { width: 36px; height: 4px; border-radius: 99px; background: var(--rv-line-strong); margin: 6px auto 14px; }
  .rv-moresheet__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .rv-moresheet__item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 6px; border-radius: 16px; background: var(--rv-bg, #F7F8FA);
    color: var(--rv-ink-2); text-decoration: none; font-size: .76rem; font-weight: 600; text-align: center;
  }
  .rv-moresheet__item.is-active { background: var(--rv-ink); color: #fff; }
  .rv-moresheet__icon { display: flex; position: relative; }

  /* Badge necitite în panoul „Meniu" */
  .rv-moresheet__badge {
    position: absolute; top: -6px; right: -10px;
    background: #ef4444; color: #fff;
    font-size: .62rem; font-weight: 800; line-height: 1;
    min-width: 16px; height: 16px; padding: 0 4px;
    border-radius: 99px; display: flex; align-items: center; justify-content: center;
  }
  /* Punct de atenție pe butonul „Meniu" din bara de jos */
  .rv-bottomnav__dot {
    position: absolute; top: 4px; right: 50%; transform: translateX(14px);
    width: 8px; height: 8px; border-radius: 50%;
    background: #ef4444; border: 1.5px solid var(--rv-bg-soft, #fff);
  }
}

/* ---------- Responsive general ---------- */
@media (max-width: 980px) {
  .rv-grid-3 { grid-template-columns: 1fr; }
  .rv-grid-2 { grid-template-columns: 1fr; }
  .rv-metrics { grid-template-columns: 1fr 1fr; }
  .rv-testi { grid-template-columns: 1fr; }
  .rv-dash { grid-template-columns: 1fr; }
  .rv-dash__side { position: static; }
}

@media (max-width: 640px) {
  .rv-form-grid { grid-template-columns: 1fr; }
  .rv-hero__logo { width: 72px; height: 72px; }
  .rv-hero__title { gap: 12px; }
  .rv-nav__login { display: none; }
  .rv-metrics { grid-template-columns: 1fr; }

  /* Header logat pe mobil (ex: homepage) — brand + credite + buton nu încap
     toate pe un rând; comprimăm zona de CTA ca butonul „Contul meu” să nu
     mai iasă din ecran. */
  .rv-brand small { display: none; }
  .rv-nav__cta { gap: 6px; }
  .rv-nav__credits { padding: 5px 8px; font-size: .72rem; gap: 4px; }
  .rv-nav__cta .rv-btn--sm { padding: 8px 12px; font-size: .8rem; }
}

/* ---------- Member gate ---------- */
.rv-gate, .revc-gate {
  background: var(--rv-bg-soft);
  border: 1px dashed var(--rv-line-strong);
  border-radius: var(--rv-radius-lg);
  padding: var(--rv-s-5) var(--rv-s-4);
  text-align: center;
  max-width: 480px; margin-inline: auto;
}
.rv-gate h2, .rv-gate h3 { margin-bottom: 10px; }
.rv-gate p, .revc-gate p { color: var(--rv-muted); margin-bottom: 20px; }

/* ---------- Progress bar ---------- */
.rv-progress { height: 8px; background: var(--rv-bg); border-radius: 99px; overflow: hidden; }
.rv-progress i { display: block; height: 100%; background: var(--rv-ink); border-radius: 99px; transition: width .8s cubic-bezier(.22,1,.36,1); width: 0; }

/* ---------- Stat cards ---------- */
.rv-stat { background: var(--rv-bg-soft); border: 1px solid var(--rv-line); border-radius: var(--rv-radius); padding: var(--rv-s-3); }
.rv-stat strong { font-size: 1.8rem; font-weight: 800; display: block; letter-spacing: -.02em; }
.rv-stat span { color: var(--rv-muted); font-size: .85rem; }

/* ==========================================================================
   Sidebar — app layout, desktop (>= 1024px), useri logați
   ========================================================================== */
:root { --rv-sidebar-w: 240px; }

.rv-sidebar { display: none; }

@media (min-width: 1024px) {
  body.rv-app-mode .rv-sidebar {
    display: flex; flex-direction: column;
    position: fixed; inset: 0 auto 0 0;
    width: var(--rv-sidebar-w);
    background: var(--rv-bg-soft);
    border-right: 1px solid var(--rv-line);
    z-index: 100; overflow-y: auto;
  }

  body.rv-app-mode .rv-nav          { display: none; }
  body.rv-app-mode #rv-main-content { margin-left: var(--rv-sidebar-w); }
  body.rv-app-mode .rv-footer       { display: none; }
  body.rv-app-mode .rv-fab          { display: none; }
  body.rv-app-mode .rv-bottomnav    { display: none !important; }
  body.rv-app-mode                  { padding-bottom: 0; }
}

/* Sidebar — brand */
.rv-sidebar__brand {
  padding: 18px 16px 14px;
  border-bottom: 1px solid var(--rv-line);
  flex-shrink: 0;
}
.rv-sidebar__brand .rv-brand { font-size: 1rem; }
.rv-sidebar__brand .rv-brand__mark { width: 30px; height: 30px; border-radius: 9px; }
.rv-sidebar__brand .rv-brand small { font-size: .55rem; }

/* Sidebar — nav */
.rv-sidebar__nav {
  flex: 1; padding: 10px 8px;
  display: flex; flex-direction: column; gap: 2px;
}
.rv-sidebar__link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  font-weight: 500; font-size: .9rem; color: var(--rv-ink-2);
  transition: background var(--rv-t-fast), color var(--rv-t-fast);
}
.rv-sidebar__link:hover    { background: var(--rv-bg); color: var(--rv-ink); }
.rv-sidebar__link.is-active { background: var(--rv-ink); color: #fff; }
.rv-sidebar__link svg { flex-shrink: 0; }

/* Sidebar — credite */
.rv-sidebar__credits {
  margin: 8px; padding: 14px 14px 12px;
  background: var(--rv-bg); border-radius: 14px;
  border: 1px solid var(--rv-line); flex-shrink: 0;
}
.rv-sidebar__credits-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--rv-muted); margin-bottom: 4px;
}
.rv-sidebar__credits-val {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; color: var(--rv-ink); margin-bottom: 8px;
}
.rv-sidebar__credits-val small { font-size: .75rem; font-weight: 500; color: var(--rv-muted); }
.rv-sidebar__credits-bar {
  height: 4px; background: var(--rv-line); border-radius: 99px; overflow: hidden;
}
.rv-sidebar__credits-bar span {
  display: block; height: 100%; background: var(--rv-growth); border-radius: 99px;
  transition: width .6s var(--rv-ease);
}
.rv-sidebar__credits-cta {
  display: block; margin-top: 10px; font-size: .78rem; font-weight: 600;
  color: var(--rv-growth); text-decoration: none;
}
.rv-sidebar__credits-cta:hover { text-decoration: underline; }

/* Sidebar — user footer */
.rv-sidebar__footer {
  padding: 8px; border-top: 1px solid var(--rv-line); flex-shrink: 0;
}
.rv-sidebar__user {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 12px;
  transition: background var(--rv-t-fast);
  text-decoration: none;
}
.rv-sidebar__user:hover, .rv-sidebar__user.is-active { background: var(--rv-bg); }
.rv-sidebar__avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--rv-ink); color: #fff;
  display: grid; place-items: center;
  font-size: .75rem; font-weight: 700;
}
.rv-sidebar__user-info { min-width: 0; }
.rv-sidebar__user-info strong {
  display: block; font-size: .875rem; font-weight: 600; color: var(--rv-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rv-sidebar__user-info small {
  display: block; font-size: .72rem; font-weight: 500; color: var(--rv-muted);
}

/* Nav top — credite badge */
.rv-nav__credits {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .8rem; font-weight: 600; color: var(--rv-ink-2);
  background: var(--rv-bg); border: 1px solid var(--rv-line);
  padding: 6px 12px; border-radius: var(--rv-radius-pill);
}
.rv-nav__credits svg { color: var(--rv-growth); }

/* ==========================================================================
   Contul meu — pagină cu tab-uri
   ========================================================================== */
.rv-account-page {
  max-width: 800px; margin: 0 auto;
  padding: var(--rv-s-5) var(--rv-s-3) var(--rv-s-7);
}
.rv-account-hero {
  display: flex; align-items: center; gap: 16px; margin-bottom: var(--rv-s-4);
}
.rv-account-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--rv-ink); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem; font-weight: 700;
}
.rv-account-hero h1 { font-size: 1.5rem; margin-bottom: 2px; }
.rv-account-hero p  { margin: 0; color: var(--rv-muted); font-size: .9rem; }

/* Tab navigation */
.rv-account-tabs {
  display: flex; gap: 4px;
  background: var(--rv-bg); border: 1px solid var(--rv-line);
  border-radius: 14px; padding: 4px; margin-bottom: var(--rv-s-4);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.rv-account-tabs::-webkit-scrollbar { display: none; }
.rv-tab-link {
  flex-shrink: 0; padding: 9px 18px; border-radius: 10px;
  font-size: .875rem; font-weight: 600; color: var(--rv-muted);
  white-space: nowrap;
  transition: background var(--rv-t-fast), color var(--rv-t-fast);
}
.rv-tab-link:hover { color: var(--rv-ink); background: rgba(255,255,255,.6); }
.rv-tab-link.is-active {
  background: var(--rv-bg-soft); color: var(--rv-ink);
  box-shadow: var(--rv-shadow-sm);
}

/* Tab content */
.rv-tab-content { animation: rv-tabfade .18s ease; }
@keyframes rv-tabfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Profile tab */
.rv-profile-card {
  background: var(--rv-bg-soft); border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg); padding: var(--rv-s-4);
  margin-bottom: var(--rv-s-3);
}
.rv-profile-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--rv-line); gap: 16px;
}
.rv-profile-row:last-child { border-bottom: none; padding-bottom: 0; }
.rv-profile-row__label { font-size: .85rem; color: var(--rv-muted); font-weight: 500; }
.rv-profile-row__val { font-weight: 600; font-size: .9375rem; }

/* Credits tab */
.rv-credits-big {
  text-align: center; padding: var(--rv-s-5) var(--rv-s-4);
  background: var(--rv-bg-soft); border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg); margin-bottom: var(--rv-s-3);
}
.rv-credits-big strong {
  display: block; font-size: 4rem; font-weight: 800; letter-spacing: -.04em; color: var(--rv-ink);
}
.rv-credits-big span { color: var(--rv-muted); font-size: 1rem; }
.rv-credits-progress { margin: var(--rv-s-3) auto 0; max-width: 300px; }

/* ==========================================================================
   Pagina de prețuri
   ========================================================================== */
.rv-pricing-page { padding-block: var(--rv-s-7); }

.rv-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--rv-s-3); align-items: start;
  margin-top: var(--rv-s-6);
}

.rv-plan {
  background: var(--rv-bg-soft); border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg); padding: var(--rv-s-4);
  display: flex; flex-direction: column;
  transition: transform var(--rv-t), box-shadow var(--rv-t), border-color var(--rv-t);
}
.rv-plan:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); border-color: var(--rv-line-strong); }

.rv-plan--featured {
  background: var(--rv-ink); border-color: var(--rv-ink);
  transform: translateY(-8px); box-shadow: var(--rv-shadow-lg);
}
.rv-plan--featured:hover { transform: translateY(-12px); }
.rv-plan--featured h3, .rv-plan--featured strong { color: #fff; }
.rv-plan--featured p  { color: rgba(255,255,255,.65); }

.rv-plan__badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 99px;
  background: var(--rv-ink, #0a0a0b); color: #fff;
  margin-bottom: var(--rv-s-2); align-self: flex-start;
}
.rv-plan--featured .rv-plan__badge { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.28); }

.rv-plan h3 { font-size: 1.1rem; margin-bottom: var(--rv-s-1); }

.rv-plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 2px; }
.rv-plan__price strong { font-size: 2.6rem; font-weight: 800; letter-spacing: -.04em; }
.rv-plan__price span   { font-size: .9rem; color: var(--rv-muted); font-weight: 500; }
.rv-plan--featured .rv-plan__price span { color: rgba(255,255,255,.5); }

.rv-plan__tva { font-size: .78rem; color: var(--rv-muted); margin-bottom: var(--rv-s-3); }
.rv-plan--featured .rv-plan__tva { color: rgba(255,255,255,.45); }

.rv-plan__credits {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--rv-bg); border: 1px solid var(--rv-line);
  border-radius: 99px; padding: 6px 14px; margin-bottom: var(--rv-s-3);
  font-size: .82rem; font-weight: 700; color: var(--rv-ink);
}
.rv-plan--featured .rv-plan__credits { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: #fff; }

.rv-plan__desc { font-size: .9rem; color: var(--rv-muted); margin-bottom: var(--rv-s-3); line-height: 1.6; }
.rv-plan--featured .rv-plan__desc { color: rgba(255,255,255,.65); }

.rv-plan__features { list-style: none; padding: 0; margin: 0 0 var(--rv-s-4); display: flex; flex-direction: column; gap: 9px; flex: 1; }
.rv-plan__features li { display: flex; align-items: flex-start; gap: 9px; font-size: .875rem; color: var(--rv-ink-2); line-height: 1.45; }
.rv-plan--featured .rv-plan__features li { color: rgba(255,255,255,.8); }

.rv-plan__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--rv-growth);
}
.rv-plan__check svg { width: 11px; height: 11px; }
.rv-plan__cross {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--rv-line);
}
.rv-plan__cross svg { width: 11px; height: 11px; color: var(--rv-muted); }

.rv-plan__cta { margin-top: auto; }
.rv-plan--featured .rv-btn--primary { background: #fff; color: var(--rv-ink); }

.rv-pricing-note {
  text-align: center; margin-top: var(--rv-s-5);
  font-size: .875rem; color: var(--rv-muted); line-height: 1.6;
}

@media (max-width: 900px) {
  .rv-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .rv-plan--featured { transform: none; }
  .rv-plan--featured:hover { transform: translateY(-4px); }
}

/* ==========================================================================
   Footer minimalist app (tablet, cand nu e sidebar)
   ========================================================================== */
@media (max-width: 1023px) {
  body.rv-app-mode .rv-footer { display: none; }
  body.rv-app-mode .rv-fab { display: none; }
}

/* Sidebar extras */
.rv-sidebar__divider {
  height: 1px; background: var(--rv-line); margin: 8px 12px;
}
.rv-sidebar__group-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--rv-muted); padding: 14px 16px 4px;
  pointer-events: none; user-select: none;
}
.rv-sidebar__logout {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 10px; margin-top: 2px;
  font-size: .82rem; color: var(--rv-muted); text-decoration: none;
  transition: background var(--rv-t-fast), color var(--rv-t-fast);
}
.rv-sidebar__logout:hover { background: var(--rv-bg); color: #ef4444; }
.rv-sidebar__logout svg { flex-shrink: 0; }
.rv-sidebar__dot {
  width: 7px; height: 7px; border-radius: 50%; margin-left: auto; flex-shrink: 0;
}
.rv-sidebar__dot--green  { background: #22c55e; }
.rv-sidebar__dot--orange { background: #f59e0b; }
.rv-sidebar__dot--grey   { background: var(--rv-line-strong); }

/* Dashboard: ascunde header redundant când sidebar e vizibil */
@media (min-width: 1024px) {
  body.rv-app-mode .revc-dash__header { display: none; }
}

/* ==========================================================================
   Plan pricing — elemente suplimentare
   ========================================================================== */
.rv-plan__name {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 4px; color: var(--rv-ink);
}
.rv-plan--featured .rv-plan__name { color: #fff; }
.rv-plan__tagline {
  font-size: .875rem; color: var(--rv-muted); margin: 8px 0 var(--rv-s-3); line-height: 1.55;
}
.rv-plan--featured .rv-plan__tagline { color: rgba(255,255,255,.6); }
.rv-plan__header { margin-bottom: var(--rv-s-2); }
.rv-plan__footer { margin-top: auto; padding-top: var(--rv-s-3); }

/* Textul ✓ și ✗ în cercuri */
.rv-plan__check { color: #fff; font-size: .7rem; font-weight: 800; }
.rv-plan__cross { color: var(--rv-muted); font-size: .75rem; font-weight: 700; background: var(--rv-bg); }

/* ==========================================================================
   Gate — conținut blocat (upgrade CTA)
   ========================================================================== */
.rv-gate {
  text-align: center;
  padding: var(--rv-s-6) var(--rv-s-4);
  background: var(--rv-bg-soft); border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg); max-width: 480px; margin: 0 auto;
}
.rv-gate h3 { font-size: 1.2rem; margin-bottom: var(--rv-s-2); }
.rv-gate p  { color: var(--rv-muted); font-size: .9rem; line-height: 1.6; margin-bottom: var(--rv-s-2); }

/* ==========================================================================
   Progress bar generic
   ========================================================================== */
.rv-progress {
  height: 6px; border-radius: 99px;
  background: var(--rv-line); overflow: hidden;
}
.rv-progress i {
  display: block; height: 100%; border-radius: 99px;
  background: var(--rv-growth); transition: width .4s ease;
}

/* ==========================================================================
   FAQ secțiune
   ========================================================================== */
.rv-faq { display: flex; flex-direction: column; gap: 2px; }
.rv-faq__item {
  border: 1px solid var(--rv-line); border-radius: 12px;
  background: var(--rv-bg-soft); overflow: hidden;
}
.rv-faq__item summary {
  padding: 16px 20px; font-weight: 600; font-size: .9375rem;
  cursor: pointer; list-style: none; user-select: none;
  display: flex; align-items: center; justify-content: space-between;
}
.rv-faq__item summary::-webkit-details-marker { display: none; }
.rv-faq__item summary::after {
  content: "+"; font-size: 1.2rem; font-weight: 400; color: var(--rv-muted);
  transition: transform .2s ease;
}
.rv-faq__item[open] summary::after { transform: rotate(45deg); }
.rv-faq__item p {
  padding: 0 20px 16px; font-size: .9rem; color: var(--rv-muted);
  line-height: 1.65; margin: 0;
}

/* ==========================================================================
   Chip — badge plan activ
   ========================================================================== */
.rv-chip {
  display: inline-block; padding: 3px 10px; border-radius: 99px;
  font-size: .78rem; font-weight: 700;
}
.rv-chip--growth {
  background: var(--rv-growth-soft); color: #047857;
}

/* ==========================================================================
   Button — full width
   ========================================================================== */
.rv-btn--block { width: 100%; justify-content: center; text-align: center; }

/* ==========================================================================
   Pricing — check gold variant (Profesionist)
   ========================================================================== */
.rv-plan__check--gold {
  background: #fffbeb; color: #b45309;
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  font-size: .7rem; font-weight: 800;
}
.rv-plan--featured .rv-plan__check--gold {
  background: rgba(251,191,36,.25); color: #fcd34d;
}

/* ==========================================================================
   Pricing — tabel comparație
   ========================================================================== */
.rv-pricing-compare { background: var(--rv-bg-soft); }
.rv-compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rv-compare-table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
  min-width: 540px;
}
.rv-compare-table thead tr {
  border-bottom: 2px solid var(--rv-line);
}
.rv-compare-table th {
  padding: 14px 16px; text-align: center; font-weight: 700;
  color: var(--rv-ink-2); font-size: .82rem; text-transform: uppercase;
  letter-spacing: .04em;
}
.rv-compare-table th:first-child { text-align: left; }
.rv-compare-table th span {
  display: block; font-size: .75rem; font-weight: 500;
  color: var(--rv-muted); text-transform: none; letter-spacing: 0;
  margin-top: 2px;
}
.rv-compare-table__featured {
  background: var(--rv-ink); color: #fff !important;
}
.rv-compare-table__featured span { color: rgba(255,255,255,.5) !important; }
.rv-compare-table tbody tr {
  border-bottom: 1px solid var(--rv-line);
  transition: background var(--rv-t-fast);
}
.rv-compare-table tbody tr:hover { background: rgba(10,10,11,.02); }
.rv-compare-table td {
  padding: 14px 16px; text-align: center; color: var(--rv-ink-2);
}
.rv-compare-table td:first-child {
  text-align: left; font-weight: 600; color: var(--rv-ink);
}
.rv-compare-yes { color: #047857; font-weight: 700; }

@media (max-width: 640px) {
  .rv-compare-table-wrap { margin-inline: calc(var(--rv-s-3) * -1); padding-inline: var(--rv-s-3); }
}

/* ==========================================================================
   Homepage — mobile overflow fix
   ========================================================================== */
html { overflow-x: hidden; }
.rv-hero { overflow: hidden; }

/* ==========================================================================
   Homepage — hero trust strip
   ========================================================================== */
.rv-hero__trust {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: var(--rv-s-3);
}

/* ==========================================================================
   Homepage — metrics strip
   ========================================================================== */
.rv-metrics-strip { border-bottom: 1px solid var(--rv-line); }
.rv-metrics-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.rv-metric-item {
  flex: 1; min-width: 160px; text-align: center; padding: var(--rv-s-3) var(--rv-s-2);
}
.rv-metric-item strong {
  display: block; font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 800; letter-spacing: -.03em; color: var(--rv-ink);
}
.rv-metric-item span { font-size: .85rem; color: var(--rv-muted); }
.rv-metric-sep {
  width: 1px; height: 48px; background: var(--rv-line); flex-shrink: 0;
  align-self: center;
}

/* ==========================================================================
   Homepage — bento grid
   ========================================================================== */
.rv-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--rv-s-3);
}
.rv-bento__card {
  background: var(--rv-bg-soft);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg);
  padding: var(--rv-s-4);
  box-shadow: var(--rv-shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--rv-t), box-shadow var(--rv-t), border-color var(--rv-t);
}
.rv-bento__card:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); border-color: var(--rv-line-strong); }
.rv-bento__card--lg {
  grid-column: span 2;
}
.rv-bento__card--accent {
  background: var(--rv-info-soft);
  border-color: #c7d2fe;
}
.rv-bento__card--dark {
  background: var(--rv-ink); color: #fff;
  border-color: var(--rv-ink);
}
.rv-bento__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--rv-ink); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--rv-shadow); flex-shrink: 0;
}
.rv-bento__icon svg { width: 22px; height: 22px; }
.rv-bento__icon--light { background: rgba(255,255,255,.15); }
.rv-bento__tag {
  display: inline-flex; padding: 4px 12px; border-radius: 99px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--rv-bg); border: 1px solid var(--rv-line); color: var(--rv-muted);
  align-self: flex-start;
}
.rv-bento__tag--light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }
.rv-bento__card h3 { font-size: 1.15rem; margin: 0; }
.rv-bento__card--dark h3 { color: #fff; }
.rv-bento__card--dark p { color: rgba(255,255,255,.7); }
.rv-feat-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px; margin-top: 6px;
}
.rv-feat-list li {
  font-size: .85rem; color: var(--rv-muted);
  padding-left: 18px; position: relative;
}
.rv-feat-list li::before { content: "→"; position: absolute; left: 0; color: var(--rv-info); }
.rv-feat-list--light li { color: rgba(255,255,255,.65); }
.rv-feat-list--light li::before { color: rgba(255,255,255,.4); }

/* ==========================================================================
   Homepage — how it works / steps
   ========================================================================== */
.rv-steps {
  display: flex; align-items: flex-start; gap: var(--rv-s-2); flex-wrap: wrap;
}
.rv-step {
  flex: 1; min-width: 200px;
  background: var(--rv-bg-soft); border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg); padding: var(--rv-s-4);
  box-shadow: var(--rv-shadow-sm);
}
.rv-step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--rv-ink); color: #fff;
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 800; margin-bottom: var(--rv-s-2);
}
.rv-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.rv-step p { color: var(--rv-muted); font-size: .95rem; margin: 0; }
.rv-step__arrow {
  font-size: 1.5rem; color: var(--rv-muted); align-self: center;
  padding-top: 20px; flex-shrink: 0;
}

/* ==========================================================================
   Homepage — pricing plans
   ========================================================================== */
.rv-plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--rv-s-3);
  align-items: stretch; margin-bottom: var(--rv-s-3);
}
.rv-plan {
  background: var(--rv-bg-soft); border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg); padding: var(--rv-s-4);
  display: flex; flex-direction: column; gap: var(--rv-s-2);
  box-shadow: var(--rv-shadow-sm); position: relative;
  transition: transform var(--rv-t), box-shadow var(--rv-t);
}
.rv-plan:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); }
.rv-plan--featured {
  border-color: var(--rv-ink); background: var(--rv-ink); color: #fff;
  box-shadow: var(--rv-shadow-lg);
}
.rv-plan--featured h3 { color: #fff; }
.rv-plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rv-ink, #0a0a0b); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 99px; white-space: nowrap;
}
.rv-plan__head { text-align: center; padding-bottom: var(--rv-s-2); border-bottom: 1px solid rgba(10,10,11,.08); }
.rv-plan--featured .rv-plan__head { border-bottom-color: rgba(255,255,255,.15); }
.rv-plan__name { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--rv-muted); margin-bottom: 8px; }
.rv-plan--featured .rv-plan__name { color: rgba(255,255,255,.6); }
.rv-plan__price { display: flex; align-items: baseline; gap: 4px; justify-content: center; }
.rv-plan__price strong { font-size: 2.8rem; font-weight: 800; letter-spacing: -.04em; color: var(--rv-ink); }
.rv-plan--featured .rv-plan__price strong { color: #fff; }
.rv-plan__price span { font-size: .9rem; color: var(--rv-muted); }
.rv-plan--featured .rv-plan__price span { color: rgba(255,255,255,.55); }
.rv-plan__vat { font-size: .75rem; color: var(--rv-muted); margin-top: 2px; }
.rv-plan--featured .rv-plan__vat { color: rgba(255,255,255,.4); }
.rv-plan__list {
  list-style: none; margin: 0; padding: 0; flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.rv-plan__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--rv-ink-2);
}
.rv-plan--featured .rv-plan__list li { color: rgba(255,255,255,.8); }
.rv-plan__check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--rv-growth-soft); color: #047857;
  display: grid; place-items: center; font-size: .7rem; font-weight: 800;
}
.rv-plan--featured .rv-plan__check {
  background: rgba(16,185,129,.2); color: #6ee7b7;
}
.rv-plan__check--gold {
  background: #fffbeb; color: #b45309;
}
.rv-plan--featured .rv-btn--primary { background: #fff; color: var(--rv-ink); }
.rv-pricing-note { text-align: center; color: var(--rv-muted); font-size: .85rem; }

/* ==========================================================================
   Homepage — ROI section
   ========================================================================== */
.rv-roi { background: var(--rv-bg-soft); }
.rv-roi__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--rv-s-6);
  align-items: center;
}
.rv-roi__list {
  list-style: none; margin: var(--rv-s-3) 0 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--rv-s-2);
}
.rv-roi__list li strong { display: block; font-weight: 700; margin-bottom: 3px; }
.rv-roi__list li span { color: var(--rv-muted); font-size: .95rem; }
.rv-roi__visual { display: flex; justify-content: center; }
.rv-roi__card {
  background: var(--rv-ink); color: #fff;
  border-radius: var(--rv-radius-lg); padding: var(--rv-s-4);
  width: 100%; max-width: 360px;
}
.rv-roi__card-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.5); }
.rv-roi__card-value { font-size: 2.8rem; font-weight: 800; letter-spacing: -.04em; margin: 4px 0 2px; }
.rv-roi__card-sub { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: var(--rv-s-3); }
.rv-roi__bars {
  display: flex; align-items: flex-end; gap: 10px; height: 100px;
}
.rv-roi__bar {
  flex: 1; height: var(--h); border-radius: 8px 8px 0 0;
  background: rgba(255,255,255,.15); display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 4px;
}
.rv-roi__bar--accent { background: var(--rv-growth); }
.rv-roi__bar span { font-size: .65rem; color: rgba(255,255,255,.45); }
.rv-roi__bar--accent span { color: rgba(255,255,255,.7); }

/* ==========================================================================
   Homepage responsive
   ========================================================================== */
@media (max-width: 980px) {
  .rv-bento { grid-template-columns: 1fr 1fr; }
  .rv-bento__card--lg { grid-column: span 2; }
  .rv-plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .rv-roi__inner { grid-template-columns: 1fr; }
  .rv-roi__visual { margin-top: var(--rv-s-4); }
  .rv-metric-sep { display: none; }
  .rv-metrics-row { gap: 0; justify-content: flex-start; }
  .rv-metric-item { min-width: 50%; }
  .rv-step__arrow { display: none; }
  .rv-steps { flex-direction: column; }
  .rv-step { min-width: 100%; }
}
@media (max-width: 640px) {
  .rv-bento { grid-template-columns: 1fr; }
  .rv-bento__card--lg { grid-column: span 1; }
  .rv-metric-item { min-width: 100%; }
  .rv-hero__trust .rv-chip { flex: 1; justify-content: center; }
}

/* ==========================================================================
   Magazin — Goodie Pack
   ========================================================================== */
.rv-magazin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rv-s-4);
  max-width: 920px;
  margin-inline: auto;
}
.rv-pack {
  background: var(--rv-bg);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--rv-t-fast), box-shadow var(--rv-t-fast);
}
.rv-pack:hover { transform: translateY(-3px); box-shadow: var(--rv-shadow-lg); }
.rv-pack__photos {
  aspect-ratio: 16/9;
  background: var(--rv-bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.rv-pack__photos img { width: 100%; height: 100%; object-fit: cover; }
.rv-pack__placeholder { font-size: 2.6rem; opacity: .5; }
.rv-pack__body { padding: var(--rv-s-4); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.rv-pack__title { font-weight: 700; font-size: 1.05rem; }
.rv-pack__pieces { font-size: .8rem; color: var(--rv-growth); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.rv-pack__desc { font-size: .875rem; color: var(--rv-muted); line-height: 1.5; margin: 4px 0 0; }
.rv-pack__highlights { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.rv-pack__highlights li { font-size: .82rem; color: var(--rv-ink-2); display: flex; align-items: flex-start; gap: 6px; }
.rv-pack__highlights li::before { content: "✓"; color: var(--rv-growth); font-weight: 700; flex-shrink: 0; }
.rv-pack__thumbs { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.rv-pack__thumbs img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; border: 1px solid var(--rv-line); cursor: pointer; transition: opacity .15s; }
.rv-pack__thumbs img:hover { opacity: .8; }
.rv-pack__footer { display: flex; align-items: center; justify-content: space-between; margin-top: var(--rv-s-3); padding-top: var(--rv-s-3); border-top: 1px solid var(--rv-line); }
.rv-pack__price { font-size: 1.4rem; font-weight: 800; }
.rv-pack__price span { font-size: .8rem; font-weight: 500; color: var(--rv-muted); }
.rv-pack__available-note {
  margin-top: var(--rv-s-2); padding: 6px 12px; border-radius: 99px; display: inline-block;
  background: var(--rv-growth-soft, #d1fae5); color: #065f46; font-size: .8rem; font-weight: 700;
}

.rv-pack-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: var(--rv-s-3); }
.rv-pack-modal__backdrop { position: absolute; inset: 0; background: rgba(10,10,11,.78); backdrop-filter: blur(3px); }
.rv-pack-modal__box {
  position: relative; background: #fff; border-radius: var(--rv-radius-lg); padding: var(--rv-s-5);
  max-width: 440px; width: 100%; max-height: 88vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  border: 1px solid var(--rv-line);
}
.rv-pack-modal__close { position: absolute; top: 14px; right: 14px; background: var(--rv-bg-soft); border: 1px solid var(--rv-line); border-radius: 50%; width: 30px; height: 30px; font-size: .9rem; cursor: pointer; color: var(--rv-ink-2); }
.rv-pack-modal__price-line { color: var(--rv-muted); font-size: .875rem; margin: 4px 0 var(--rv-s-3); }
.rv-pack-modal__field { margin-bottom: 12px; }
.rv-pack-modal__field label { display: block; font-size: .8rem; font-weight: 600; color: var(--rv-ink-2); margin-bottom: 4px; }
.rv-pack-modal__field input { width: 100%; padding: 9px 12px; border: 1.5px solid var(--rv-line); border-radius: 8px; font-size: .875rem; box-sizing: border-box; font-family: inherit; background: #fff; color: var(--rv-ink); }
.rv-pack-modal__row { display: flex; gap: 10px; }
.rv-pack-modal__error { background: #FEF2F2; color: #b91c1c; border: 1px solid #FECACA; border-radius: 8px; padding: 8px 12px; font-size: .82rem; margin-top: 8px; }
.rv-pack-modal__turnstile { margin-top: var(--rv-s-3); display: flex; justify-content: center; }
body.rv-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .rv-magazin-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Homepage — carduri Goodie Pack (diamant fațetat, fundal întunecat dramatic)
   ========================================================================== */
.rv-giftgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--rv-s-4);
  max-width: 920px;
  margin-inline: auto;
}
.rv-gift {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(150deg, #0F1115 0%, #1A1D24 100%);
  box-shadow: 0 10px 28px rgba(10,10,11,.3);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.rv-gift:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 44px rgba(10,10,11,.45); }
.rv-gift:active { transform: scale(.97); }

.rv-gift--tier-250::before  { background: radial-gradient(circle at 50% 38%, #34D399 0%, transparent 70%); opacity: .45; }
.rv-gift--tier-500::before  { background: radial-gradient(circle at 50% 38%, #818CF8 0%, transparent 70%); opacity: .5; }
.rv-gift--tier-750::before  { background: radial-gradient(circle at 50% 38%, #F472B6 0%, transparent 70%); opacity: .55; }
.rv-gift--tier-1000::before { background: radial-gradient(circle at 50% 36%, #FBBF24 0%, transparent 75%); opacity: .65; }
.rv-gift::before { content: ""; position: absolute; inset: 0; }

.rv-gift__art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 22%;
  z-index: 1;
}
.rv-gift__gem-svg { width: 78%; height: 78%; overflow: visible; }

/* Halou — animă continuu (pulsare), doar la pachetele superioare */
.rv-gift__halo {
  fill: none; stroke: rgba(255,255,255,.32); stroke-width: 1.4;
  transform-origin: 85px 86px;
  animation: rv-halo-pulse 2.6s ease-in-out infinite;
}

/* Diamantul — flotează continuu */
.rv-gift__gem { animation: rv-gem-float 3.6s ease-in-out infinite; }

/* Fațete — explodează la hover, se reasamblează la ieșire */
.rv-gift__facet {
  transform-box: fill-box; transform-origin: center;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s;
}
.rv-gift:hover .rv-gift__facet--tl { transform: translate(-16px,-14px) rotate(-22deg); opacity: 0; }
.rv-gift:hover .rv-gift__facet--tr { transform: translate(16px,-14px) rotate(22deg); opacity: 0; }
.rv-gift:hover .rv-gift__facet--bl { transform: translate(-15px,16px) rotate(16deg); opacity: 0; }
.rv-gift:hover .rv-gift__facet--br { transform: translate(15px,16px) rotate(-16deg); opacity: 0; }

.rv-gift__table-line { stroke: rgba(0,0,0,.4); stroke-width: 1; transition: opacity .25s; }
.rv-gift:hover .rv-gift__table-line { opacity: 0; }

/* Sclipiri — twinkle continuu, dispar (cu spike) la explozie */
.rv-gift__glint {
  stroke: #fff; stroke-width: 2.4; stroke-linecap: round; opacity: .8;
  transform-box: fill-box; transform-origin: center;
  animation: rv-glint-twinkle 2.4s ease-in-out infinite;
  transition: transform .4s, opacity .4s;
}
.rv-gift:hover .rv-gift__glint { transform: scale(1.8); opacity: 0; }

/* Sclipiri stelare exterioare — doar pachetul premium */
.rv-gift__sparkle {
  stroke: #FDE68A; stroke-width: 2; stroke-linecap: round; opacity: 0;
  animation: rv-sparkle-twinkle 1.8s ease-in-out infinite;
}

/* Flash de explozie — invizibil normal, apare scurt la hover */
.rv-gift__flash { fill: rgba(255,255,255,.9); transform: scale(0); opacity: 0; transform-origin: center; transform-box: fill-box; }
.rv-gift:hover .rv-gift__flash { animation: rv-flash-burst .55s ease-out; }

.rv-gift__seal {
  position: absolute; top: 8%; right: 8%; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(10,10,11,.55); border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
}
.rv-gift__seal span { color: #fff; font-size: .56rem; font-weight: 800; }

.rv-gift__info {
  position: absolute; left: 7%; right: 7%; bottom: 7%; z-index: 2;
  background: rgba(10,10,11,.5);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
}
.rv-gift__name { color: rgba(255,255,255,.8); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-gift__price { color: #fff; font-size: 1.2rem; font-weight: 800; margin-top: 1px; }

@keyframes rv-gem-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes rv-halo-pulse { 0%, 100% { opacity: .25; transform: scale(1); } 50% { opacity: .5; transform: scale(1.07); } }
@keyframes rv-glint-twinkle { 0%, 40%, 100% { opacity: .22; } 50% { opacity: 1; } }
@keyframes rv-sparkle-twinkle { 0%, 100% { opacity: 0; transform: scale(.6) rotate(0deg); } 50% { opacity: 1; transform: scale(1) rotate(15deg); } }
@keyframes rv-flash-burst { 0% { transform: scale(0); opacity: .9; } 60% { transform: scale(2.2); opacity: .4; } 100% { transform: scale(2.8); opacity: 0; } }

@media (max-width: 640px) {
  .rv-giftgrid { grid-template-columns: 1fr; max-width: 280px; }
}

/* ==========================================================================
   Magazin — pagină dedicată unui singur pachet (?pack=)
   ========================================================================== */
.rv-pack-back { display: inline-block; color: var(--rv-muted); font-size: .875rem; text-decoration: none; margin-bottom: var(--rv-s-4); }
.rv-pack-back:hover { color: var(--rv-ink); }

.rv-pack-detail { display: grid; grid-template-columns: 1fr 1fr; gap: var(--rv-s-5); align-items: start; }
.rv-pack-detail__price { font-size: 2rem; font-weight: 800; margin-top: var(--rv-s-2); }
.rv-pack-detail__price span { font-size: 1rem; font-weight: 500; color: var(--rv-muted); }

.rv-pack-others { margin-top: var(--rv-s-6); padding-top: var(--rv-s-4); border-top: 1px solid var(--rv-line); }
.rv-pack-others__head { font-size: .8rem; font-weight: 700; color: var(--rv-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.rv-pack-others__list { display: flex; flex-wrap: wrap; gap: 8px; }
.rv-pack-others__item { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1.5px solid var(--rv-line); border-radius: 99px; font-size: .82rem; font-weight: 600; color: var(--rv-ink-2); text-decoration: none; }
.rv-pack-others__item:hover { border-color: var(--rv-ink); }
.rv-pack-others__item span { color: var(--rv-growth); font-weight: 700; }

@media (max-width: 760px) {
  .rv-pack-detail { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Hero editorial minimalist (homepage)
   ========================================================================== */
.rv-hero--editorial { text-align: center; padding: var(--rv-s-6, 64px) 0 var(--rv-s-5, 48px); overflow: hidden; }
.rv-hero--editorial .rv-hero__inner { display: block; max-width: 820px; }

.rv-hero__eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--rv-muted, #9097A0);
}
.rv-hero__headline {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.04; letter-spacing: -.03em;
  font-weight: 800; color: var(--rv-ink, #0A0A0B); margin: var(--rv-s-3, 22px) 0 0;
}
.rv-hero__accent { position: relative; white-space: nowrap; }
.rv-hero__ul {
  position: absolute; left: 0; right: 0; bottom: .06em; height: 6px; border-radius: 3px;
  background: var(--rv-growth, #10B981); transform: scaleX(0); transform-origin: left;
  animation: rv-ul-draw 1.1s var(--rv-ease, cubic-bezier(.22,1,.36,1)) .5s both;
}
@keyframes rv-ul-draw { to { transform: scaleX(1); } }

.rv-hero--editorial .rv-hero__lead {
  font-size: 1.15rem; line-height: 1.6; color: var(--rv-muted, #5B616B);
  max-width: 500px; margin: var(--rv-s-3, 24px) auto 0;
}
.rv-hero--editorial .rv-hero__actions {
  display: flex; gap: 14px; justify-content: center; align-items: center;
  margin-top: var(--rv-s-4, 32px); flex-wrap: wrap;
}
.rv-hero__textlink {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  color: var(--rv-ink, #0A0A0B); font-weight: 500; font-size: .97rem;
}
.rv-hero__textlink svg { width: 18px; height: 18px; transition: transform var(--rv-t-fast, .18s ease); }
.rv-hero__textlink:hover svg { transform: translateX(4px); }

.rv-hero--editorial .rv-hero__trust {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: var(--rv-s-3, 20px); font-size: .82rem; color: var(--rv-muted, #5B616B);
}
.rv-hero--editorial .rv-hero__trust .rv-chip { all: unset; }

/* Preview produs (cadru browser cu KPI + chart) */
.rv-hero__preview { max-width: 760px; margin: var(--rv-s-5, 54px) auto 0; padding: 0 var(--rv-s-2, 16px); }
.rv-pv {
  background: var(--rv-bg-soft, #fff); border: 1px solid var(--rv-line, #E3E5E9);
  border-radius: 16px 16px 0 0; overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10,10,11,.18);
}
.rv-pv__bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--rv-line, #F0F0EC); }
.rv-pv__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--rv-line, #E3E5E9); }
.rv-pv__bar em { margin-left: 10px; font-size: 11px; color: var(--rv-muted, #9097A0); font-style: normal; }
.rv-pv__body { padding: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rv-pv__tile { background: var(--rv-bg, #F7F6F3); border-radius: 10px; padding: 14px; text-align: left; }
.rv-pv__tile span { font-size: 10px; color: var(--rv-muted, #9097A0); text-transform: uppercase; letter-spacing: .04em; }
.rv-pv__tile strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--rv-ink, #0A0A0B); margin-top: 3px; }
.rv-pv__tile strong.is-pos { color: var(--rv-growth, #10B981); }
.rv-pv__tile--dark { background: var(--rv-ink, #0A0A0B); }
.rv-pv__tile--dark span { color: rgba(255,255,255,.55); }
.rv-pv__tile--dark strong { color: #fff; }
.rv-pv__chart { grid-column: 1 / -1; background: var(--rv-bg, #F7F6F3); border-radius: 10px; padding: 14px; height: 80px; display: flex; align-items: flex-end; gap: 6px; }
.rv-pv__chart i { flex: 1; background: #D7E9DF; border-radius: 3px; }
.rv-pv__chart i.is-hi { background: var(--rv-growth, #10B981); }

@media (max-width: 560px) {
  .rv-pv__body { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   PREMIUM UPLIFT (Val 3) — profunzime + accent de brand + micro-interacțiuni.
   Adăugat la final ca să câștige la specificitate; tot pe tokeni, reversibil.
   ========================================================================== */

/* Hero homepage — halou ambiental de brand + cuvântul-accent în gradient */
.rv-hero--editorial { position: relative; }
.rv-hero--editorial::before {
  content: ""; position: absolute; inset: -10% 0 auto 0; height: 460px;
  background: var(--rv-glow-soft); pointer-events: none; z-index: 0;
}
.rv-hero--editorial .rv-hero__inner { position: relative; z-index: 1; }
.rv-hero__accent {
  background: var(--rv-brand-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rv-hero__ul { background: var(--rv-brand-grad); height: 8px; opacity: .95; }

/* CTA principal din hero — viu, cu glow de brand (restul butoanelor rămân negre/premium) */
.rv-hero__actions .rv-btn--primary {
  background: var(--rv-brand-grad); color: #fff; border: none;
  box-shadow: var(--rv-glow-brand);
}
.rv-hero__actions .rv-btn--primary:hover {
  transform: translateY(-2px); box-shadow: 0 22px 52px rgba(16,185,129,.36);
}

/* Carduri bento — linie-accent în gradient la hover + lift mai prezent */
.rv-bento__card { position: relative; isolation: isolate; }
.rv-bento__card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--rv-brand-grad); opacity: 0; transition: opacity var(--rv-t);
  border-radius: var(--rv-radius-lg) var(--rv-radius-lg) 0 0;
}
.rv-bento__card:hover { box-shadow: var(--rv-shadow-lg); }
.rv-bento__card:hover::before { opacity: 1; }
.rv-bento__tag {
  background: var(--rv-growth-soft); color: #047857; border-color: transparent;
}

/* Cardurile întunecate (bento + ROI + CTA band) — gradient cu nuanță teal, nu negru plat */
.rv-bento__card--dark { background: var(--rv-brand-grad-ink); }
.rv-cta-band { background: var(--rv-brand-grad-ink); position: relative; overflow: hidden; }
.rv-cta-band::after {
  content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(16,185,129,.22) 0%, rgba(16,185,129,0) 70%);
  pointer-events: none;
}
.rv-cta-band > * { position: relative; z-index: 1; }

/* Planul „featured" — umbră adâncă, fără glow verde */
.rv-plan--featured { box-shadow: var(--rv-shadow-lg); }
.rv-plan--featured:hover { box-shadow: 0 20px 60px rgba(0,0,0,.22); }

/* Grid 3 coloane pentru pagina de prețuri */
.rv-pricing-grid--3 { grid-template-columns: repeat(3,1fr) !important; max-width: none !important; }
@media (max-width: 900px) { .rv-pricing-grid--3 { grid-template-columns: 1fr !important; } }

/* rv-plan__credits — linie de credite per plan */
.rv-plan__credits {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--rv-bg, #f7f8fa); border: 1px solid var(--rv-line, #e5e7eb);
  border-radius: 99px; padding: 5px 12px; margin-bottom: var(--rv-s-2);
  font-size: .82rem; font-weight: 700; color: var(--rv-ink);
}
.rv-plan--featured .rv-plan__credits { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: #fff; }

/* rv-compare-no — celulă goală în tabelul de comparație */
.rv-compare-no { color: var(--rv-muted, #9ca3af); font-size: .9rem; }

/* ── Secțiunea Furnizor — strip vizual distinct ──────────────────── */
.rv-supplier-strip {
  border: 1.5px solid var(--rv-line, #e5e7eb);
  border-radius: 20px; overflow: hidden;
  background: var(--rv-bg-soft, #f8f9fb);
}
.rv-supplier-strip__eyebrow {
  display: flex; align-items: center; gap: 8px;
  background: var(--rv-ink, #0a0a0b); color: rgba(255,255,255,.7);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  padding: 10px 24px;
}
.rv-supplier-strip__inner {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; padding: 24px;
}
.rv-supplier-strip__name { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.rv-supplier-strip__price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 10px; }
.rv-supplier-strip__price strong { font-size: 2rem; font-weight: 800; }
.rv-supplier-strip__price span { font-size: .9rem; color: var(--rv-muted, #6b7280); }
.rv-supplier-strip__desc { font-size: .9rem; color: var(--rv-muted, #6b7280); line-height: 1.6; margin: 0; max-width: 380px; }
.rv-supplier-strip__feats {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.rv-supplier-strip__feats li { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--rv-ink-2, #374151); }
.rv-supplier-strip__cta { display: flex; flex-direction: column; gap: 8px; }
.rv-supplier-strip__note { font-size: .78rem; color: var(--rv-muted, #9ca3af); text-align: center; margin: 0; }
@media (min-width: 860px) {
  .rv-supplier-strip__inner { grid-template-columns: minmax(200px,1fr) 1fr 200px; align-items: start; }
}

/* Numerele mari din strip-ul de metrici — adâncime cu gradient argintiu */
.rv-metric-item strong {
  background: var(--rv-grad-silver);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Kicker — un strop de brand pe iconiță */
.rv-kicker svg { color: var(--rv-brand); }

/* Chips marquee — hover viu */
.rv-marquee .rv-chip { transition: border-color var(--rv-t-fast), color var(--rv-t-fast), transform var(--rv-t-fast); }
.rv-marquee .rv-chip:hover { border-color: var(--rv-brand); color: var(--rv-ink); transform: translateY(-2px); }

/* Linkuri în conținut — subliniere de brand la hover */
.rv-hero__textlink:hover { color: var(--rv-brand-2); }

/* Dark mode: accentul rămâne verde (deja în tokeni), dar oprim gradient-ink prea închis pe carduri */
body.rv-theme-dark .rv-bento__card--dark { background: var(--rv-bg-elevated); }
