/* ExtensiiMentor — design system
   Mult aer, tipografie mare, un cuvânt colorat pe titlu, produsul ca obiect central. */

:root {
  --bg: #FFFFFF;
  --bg-2: #F4F5F8;
  --surface: #FFFFFF;
  --ink: #0B0D12;
  --ink-2: #2A2F3A;
  --muted: #6B7280;
  --line: #E6E8EE;
  --accent: #F26B1D;
  --accent-ink: #C24F0C;
  --accent-soft: #FFF1E8;
  --dark: #0B0D12;
  --dark-2: #151821;
  --dark-line: #262A35;
  --ok: #16A34A;
  --err: #DC2626;
  --r-xl: 36px;
  --r-lg: 24px;
  --r: 16px;
  --r-sm: 12px;
  --shadow: 0 1px 2px rgba(11,13,18,.04), 0 12px 32px -16px rgba(11,13,18,.14);
  --shadow-lg: 0 2px 6px rgba(11,13,18,.06), 0 40px 80px -30px rgba(11,13,18,.35);
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
/* Safari pe iOS colorează bara de sus după fundalul paginii: pe paginile cu hero
   întunecat facem fundalul body închis, iar conținutul stă pe fundalul lui alb. */
main { background: var(--bg); }
body.dark-top { background: var(--dark); }
img, svg { display: block; max-width: 100%; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.025em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
strong { font-weight: 600; }
ul, ol { padding-left: 1.25em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.hl { color: var(--accent); }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.narrow { max-width: 780px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 100; }
.skip-link:focus { left: .5rem; top: .5rem; }
.muted { color: var(--muted); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.55; }
.eyebrow { display: inline-block; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; color: var(--accent-ink); margin-bottom: 1rem; }
.center { text-align: center; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- Butoane ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: 1rem; border: 1.5px solid transparent; cursor: pointer; text-decoration: none !important; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s; font-family: inherit; line-height: 1.2; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(242,107,29,.8); }
.btn-primary:hover { background: #E45F12; }
.btn-secondary { background: var(--ink); color: #fff; }
.btn-secondary:hover { background: #1c202a; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-outline-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.14); }
.btn-sm { padding: .6rem 1.15rem; font-size: .92rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }

/* ---------- Header plutitor (pastilă) ---------- */
.site-header { position: sticky; top: 14px; z-index: 50; padding: 0 1rem; margin-top: 14px; pointer-events: none; }
.header-pill { pointer-events: auto; max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 60px; padding: .4rem .5rem .4rem 1.1rem; background: rgba(255,255,255,.88); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-radius: 999px; box-shadow: 0 1px 2px rgba(11,13,18,.06), 0 12px 32px -12px rgba(11,13,18,.25); border: 1px solid rgba(11,13,18,.06); }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); text-decoration: none !important; }
.brand-text { font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; }
.brand-text span { color: var(--accent); }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 1.6rem; }
.site-nav a:not(.btn) { color: var(--ink-2); font-weight: 500; font-size: .95rem; }
.site-nav a:not(.btn):hover, .site-nav a[aria-current="page"] { color: var(--ink); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--accent-ink); }
.nav-cta { margin-left: .4rem; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; margin-right: .25rem; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + 8px); background: #fff; border-radius: var(--r-lg); display: none; box-shadow: var(--shadow-lg); padding: .75rem 1.25rem 1.25rem; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li a:not(.btn) { display: block; padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { padding-top: .9rem; margin: 0; }
  .nav-cta .btn { width: 100%; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero (prima pagină) ---------- */
.hero { margin-top: -74px; padding: clamp(8rem, 16vw, 12rem) 0 0; color: #fff; text-align: center; position: relative; background: var(--dark); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 55% at 50% 0%, rgba(242,107,29,.55), transparent 70%), radial-gradient(45% 45% at 15% 75%, rgba(120,60,255,.28), transparent 70%), radial-gradient(45% 45% at 85% 70%, rgba(242,107,29,.22), transparent 70%); pointer-events: none; }
.hero .container { position: relative; }
.hero h1 { color: #fff; max-width: 900px; margin: 0 auto .9rem; }
.hero .lead { color: rgba(255,255,255,.72); max-width: 640px; margin: 0 auto; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin: 2.25rem 0 0; }
.hero-note { color: rgba(255,255,255,.55); font-size: .92rem; margin: 1.25rem 0 0; }
.hero-screen { position: relative; z-index: 2; width: min(100%, 1080px); margin: clamp(3rem, 6vw, 5rem) auto -1px; border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden; background: var(--dark-2); box-shadow: 0 -30px 80px -30px rgba(242,107,29,.35), 0 0 0 1px rgba(255,255,255,.08); }
.hero-screen img { width: 100%; height: auto; display: block; }
.screen-bar { display: flex; gap: 7px; padding: 14px 18px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.08); }
.screen-bar span { width: 11px; height: 11px; border-radius: 50%; background: #3A3F4B; }
.screen-bar span:first-child { background: var(--accent); }

/* ---------- Statistici mari ---------- */
.stats { padding: clamp(3rem, 6vw, 5rem) 0 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .stats-grid { grid-template-columns: 1fr; } }
.stat { background: var(--bg-2); border-radius: var(--r-lg); padding: 2.5rem 2.25rem; display: flex; flex-direction: column; justify-content: flex-end; gap: .5rem; min-height: 210px; }
.stat strong { font-size: clamp(2.8rem, 4.5vw, 3.6rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.stat span { color: var(--ink-2); font-size: 1rem; max-width: 26ch; }
.stat small { display: block; color: var(--muted); font-size: .82rem; line-height: 1.5; margin-top: .5rem; }

/* ---------- Secțiuni de produs (alternante) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; padding: clamp(3rem, 7vw, 6rem) 0; }
.feature-row:nth-child(even) .feature-text { order: 2; }
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; gap: 2rem; } .feature-row:nth-child(even) .feature-text { order: 0; } }
.feature-text h2 { margin-bottom: 1rem; }
.feature-text .hl { color: var(--accent); }
.feature-text p { color: var(--muted); font-size: 1.1rem; max-width: 520px; }
.feature-points { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: .6rem; color: var(--ink-2); font-size: 1rem; }
.feature-points li { position: relative; padding-left: 1.6rem; }
.feature-points li::before { content: ""; position: absolute; left: 0; top: .5em; width: .7rem; height: .7rem; border-radius: 50%; background: var(--accent); }
.feature-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.price-pill { display: inline-flex; align-items: baseline; gap: .35rem; padding: .55rem 1rem; border-radius: 999px; background: var(--bg-2); font-weight: 600; }
.price-pill small { color: var(--muted); font-weight: 500; font-size: .85rem; }
.feature-visual { display: block; border-radius: var(--r-lg); overflow: hidden; background: var(--dark-2); box-shadow: var(--shadow-lg); transition: transform .3s ease; }
.feature-visual:hover { transform: translateY(-4px); }
.feature-visual img { width: 100%; height: auto; display: block; }

/* ---------- Grilă produse (footer-ul primei pagini / „alte extensii”) ---------- */
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 1000px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .products-grid, .related .products-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 1000px) { .related .products-grid { grid-template-columns: repeat(2, 1fr) !important; } }
.product-card { position: relative; display: flex; flex-direction: column; gap: .4rem; background: var(--bg-2); border-radius: var(--r-lg); padding: 1.75rem 1.5rem 1.5rem; transition: transform .2s ease, background .2s ease; }
.product-card:hover { transform: translateY(-4px); background: #ECEEF3; }
.product-card .card-cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.product-card .card-link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.product-card h3 { font-size: 1.3rem; margin: .2rem 0 0; }
.product-card .card-title { color: var(--muted); font-size: .88rem; margin: 0 0 .6rem; line-height: 1.45; flex: 1; }
.product-card .price { font-weight: 600; font-size: .95rem; color: var(--accent-ink); }
.product-card .price small { color: var(--muted); font-weight: 500; }

/* ---------- Pași ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: step; max-width: 1040px; margin-inline: auto; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--bg-2); border-radius: var(--r-lg); padding: 2rem; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); display: block; font-size: .85rem; font-weight: 700; color: var(--accent); letter-spacing: .12em; margin-bottom: 1rem; }
.step h3 { font-size: 1.2rem; }
.step p { margin: 0; color: var(--muted); }

/* ---------- Secțiune dark / rezultat ---------- */
.dark { background: var(--dark); color: #C9CDD6; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark .muted, .dark p { color: #9AA1AE; }
.dark a:not(.btn) { color: #FFB27A; }
.result-band { background: var(--dark); color: #fff; border-radius: var(--r-xl); padding: clamp(2.5rem, 6vw, 5rem); text-align: center; position: relative; overflow: hidden; }
.result-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 100%, rgba(242,107,29,.4), transparent 70%); pointer-events: none; }
.result-band > * { position: relative; }
.result-band .eyebrow { color: var(--accent); }
.result-band p { font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.4; color: #E6E8EE; max-width: 860px; margin: 0 auto; font-weight: 500; letter-spacing: -.01em; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; padding: clamp(4rem, 9vw, 8rem) 0; }
.cta-final h2 { margin-bottom: .75rem; }
.cta-final p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ---------- Pagina de produs ---------- */
.product-hero { margin-top: -74px; padding: clamp(8rem, 15vw, 11rem) 0 clamp(2rem, 4vw, 3rem); text-align: center; background: linear-gradient(180deg, var(--bg-2) 0%, #fff 100%); }
.product-hero .chip { margin-bottom: 1rem; }
.product-hero h1 { max-width: 900px; margin-inline: auto; font-size: clamp(2rem, 4.4vw, 3.4rem); }
.product-hero h1 .name { display: block; font-size: .5em; letter-spacing: -.01em; color: var(--muted); font-weight: 600; margin-bottom: .3em; }
.product-hero .lead { max-width: 680px; margin: 0 auto; }
.product-hero .hero-actions { margin-top: 2rem; }
.chip { display: inline-block; font-size: .78rem; font-weight: 600; padding: .3rem .8rem; border-radius: 999px; background: var(--accent-soft); color: var(--accent-ink); letter-spacing: .03em; }
.notice-inline { display: block; max-width: 640px; margin: 1.5rem auto 0; font-size: .92rem; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.notice-inline a { font-weight: 600; }
.product-screen { width: min(100%, 1080px); margin: clamp(2.5rem, 5vw, 4rem) auto 0; border-radius: var(--r-xl); overflow: hidden; background: var(--dark-2); box-shadow: var(--shadow-lg); }
.product-screen img { width: 100%; height: auto; display: block; }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 960px) { .feature-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-cards { grid-template-columns: 1fr; } }
.fcard { background: var(--bg-2); border-radius: var(--r-lg); padding: 1.75rem; display: flex; flex-direction: column; gap: .5rem; }
.fcard .dot { width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; margin-bottom: .5rem; }
.fcard h3 { font-size: 1.08rem; margin: 0; }
.fcard p { margin: 0; color: var(--muted); font-size: .95rem; }
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 4rem; align-items: start; }
@media (max-width: 860px) { .req-grid { grid-template-columns: 1fr; } }
.req-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; color: var(--ink-2); font-size: .98rem; }
.req-list li { position: relative; padding-left: 1.5rem; }
.req-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent); }
.aside-buy { background: var(--bg-2); border-radius: var(--r-lg); padding: 2rem; position: sticky; top: 100px; }
.aside-buy .big { font-size: 2.4rem; font-weight: 700; letter-spacing: -.03em; }
.aside-buy .big small { font-size: 1rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.aside-buy ul { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; display: grid; gap: .5rem; color: var(--ink-2); font-size: .95rem; }
.aside-buy ul li::before { content: "✓"; color: var(--ok); font-weight: 700; margin-right: .5rem; }
.aside-buy .btn { width: 100%; }
.aside-buy .btn + .btn { margin-top: .6rem; }
.related { padding-bottom: clamp(4rem, 8vw, 7rem); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .75rem; max-width: 860px; margin-inline: auto; }
.faq-item { background: var(--bg-2); border-radius: var(--r); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.2rem 3.2rem 1.2rem 1.5rem; font-weight: 600; position: relative; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 1.4rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent-ink); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.3rem; color: var(--ink-2); }
.faq-body p:last-child { margin-bottom: 0; }
.faq-group { margin-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.faq-group-title { font-size: 1.5rem; text-align: center; margin-bottom: 1.5rem; }
.faq-group-title .muted { font-weight: 400; }
.faq-more { text-align: center; margin: 1.25rem 0 0; }

/* ---------- Antet pagini interioare ---------- */
.page-head { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.page-head h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
.h1-sub { display: block; font-size: .48em; font-weight: 600; color: var(--muted); letter-spacing: -.01em; margin-top: .35em; }
.page-head p { color: var(--muted); font-size: 1.1rem; max-width: 720px; margin-inline: auto; }
.page-head .meta { font-size: .9rem; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; font-size: .85rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: .5rem; color: var(--line); }

/* ---------- Formulare ---------- */
.form-card { background: var(--bg-2); border-radius: var(--r-xl); padding: clamp(1.5rem, 4vw, 3rem); }
fieldset { border: 0; padding: 0; margin: 0 0 2.5rem; min-width: 0; }
legend { font-weight: 700; font-size: 1.25rem; margin-bottom: 1.25rem; padding: 0; display: flex; align-items: center; gap: .7rem; letter-spacing: -.015em; }
legend .num { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .85rem; display: inline-grid; place-items: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: .4rem; }
.field label .req { color: var(--accent-ink); }
.field input[type=text], .field input[type=email], .field input[type=tel], .field textarea, .field select { width: 100%; font: inherit; font-size: 1rem; padding: .9rem 1.05rem; border: 1.5px solid transparent; border-radius: var(--r); background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(242,107,29,.15); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--err); }
.field .hint { font-size: .85rem; color: var(--muted); margin-top: .35rem; }
.field .error { font-size: .85rem; color: var(--err); margin-top: .35rem; display: none; }
.field.has-error .error { display: block; }
.cui-row { display: flex; gap: .6rem; }
.cui-row input { flex: 1; }
.cui-row .btn { flex-shrink: 0; }
@media (max-width: 520px) { .cui-row { flex-direction: column; } }
.anaf-status { font-size: .88rem; margin-top: .45rem; min-height: 1.2em; }
.anaf-status.ok { color: var(--ok); }
.anaf-status.err { color: var(--err); }
.product-select { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (max-width: 720px) { .product-select { grid-template-columns: 1fr; } }
.product-option { position: relative; display: flex; gap: 1rem; align-items: flex-start; border: 1.5px solid transparent; border-radius: var(--r); padding: 1.1rem; cursor: pointer; background: #fff; transition: border-color .15s, background .15s; }
.product-option:hover { border-color: #D9DCE3; }
.product-option input { margin-top: .3rem; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.product-option:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.product-option .po-name { font-weight: 700; display: flex; justify-content: space-between; gap: .5rem; }
.product-option .po-name small { font-weight: 600; color: var(--accent-ink); white-space: nowrap; }
.product-option .po-desc { color: var(--muted); font-size: .9rem; display: block; margin-top: .2rem; }
.product-option .po-tag { display: inline-block; font-size: .74rem; color: var(--muted); margin-top: .45rem; }
.check { display: flex; gap: .8rem; align-items: flex-start; padding: 1.1rem; border: 1.5px solid transparent; border-radius: var(--r); background: #fff; }
.check input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--accent); flex-shrink: 0; }
.check label { font-size: .95rem; cursor: pointer; }
.check.required-docimp { background: var(--accent-soft); }
.check.has-error { border-color: var(--err); }
.checks { display: grid; gap: .75rem; }
.order-summary { background: #fff; border-radius: var(--r); padding: 1.4rem 1.6rem; margin-bottom: 1.5rem; }
.order-summary table { width: 100%; border-collapse: collapse; }
.order-summary td { padding: .4rem 0; }
.order-summary td:last-child { text-align: right; white-space: nowrap; font-weight: 600; }
.order-summary tr.total td { border-top: 1px solid var(--line); padding-top: .8rem; font-size: 1.15rem; font-weight: 700; }
.order-summary .small { color: var(--muted); font-size: .88rem; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-msg { display: none; padding: 1rem 1.25rem; border-radius: var(--r); margin-bottom: 1.25rem; }
.form-msg.show { display: block; }
.form-msg.ok { background: #ECFDF3; color: #14532D; }
.form-msg.err { background: #FEF2F2; color: #7F1D1D; }
.success-panel { text-align: center; padding: clamp(2rem, 4vw, 3rem) 0; }
.success-panel .order-no { display: inline-block; font-size: 1.8rem; font-weight: 700; letter-spacing: .06em; background: var(--ink); color: #fff; padding: .6rem 1.4rem; border-radius: var(--r); margin: 1rem 0; font-variant-numeric: tabular-nums; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--bg-2); border-radius: var(--r-lg); padding: 1.6rem; margin-bottom: 1rem; }
.contact-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.contact-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.contact-card a { font-weight: 600; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.prose h3 { font-size: 1.1rem; margin-top: 1.5rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose ol > li, .prose ul > li { margin-bottom: .45rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .65rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--bg-2); font-weight: 600; }
.prose .meta { color: var(--muted); font-size: .9rem; }
.notice { background: var(--accent-soft); border-radius: var(--r); padding: 1rem 1.25rem; color: #6B3A17; font-size: .95rem; }
.notice a { color: var(--accent-ink); font-weight: 600; }
.legal-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2.5rem; }
.legal-nav a { font-size: .88rem; padding: .45rem .95rem; border-radius: 999px; background: var(--bg-2); color: var(--ink-2); }
.legal-nav a[aria-current="page"] { background: var(--ink); color: #fff; }
.legal-nav a:hover { text-decoration: none; background: #E9EBF0; }
.legal-nav a[aria-current="page"]:hover { background: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); color: var(--muted); padding: clamp(4rem, 8vw, 6rem) 0 2.5rem; margin-top: auto; }
.site-footer a { color: var(--ink-2); }
.site-footer a:hover { color: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1.4fr; gap: 3rem; align-items: start; }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } .footer-top .wmia { grid-column: 1 / -1; align-self: start; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; margin: 0; }
.footer-col h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1rem; color: var(--ink); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; font-size: .95rem; }
.wmia { display: flex; gap: .9rem; align-items: center; background: var(--dark); color: #C9CDD6 !important; border-radius: var(--r-lg); padding: 1.2rem 1.35rem; font-size: .92rem; line-height: 1.45; text-decoration: none !important; transition: transform .2s; }
.wmia:hover { transform: translateY(-2px); }
.wmia strong { color: #fff; font-size: 1rem; }
.wmia-badge { flex-shrink: 0; width: 42px; height: 42px; display: block; }
.footer-anpc { display: inline-block; margin-top: 1.5rem; }
.footer-anpc img { height: 44px; width: auto; border-radius: 10px; border: 1px solid var(--line); background: #fff; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 3.5rem; padding-top: 1.75rem; display: grid; gap: 1rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; font-size: .88rem; }
.copyright { font-size: .8rem; margin: 0; line-height: 1.7; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .25rem 2rem; color: #8A909C; }
.copyright a { color: var(--ink-2); }

/* ---------- Misc ---------- */
/* ---------- Listă de formate (pagina de produs) ---------- */
.shot-caption { text-align: center; color: var(--muted); font-size: .95rem; margin: 1rem auto 0; max-width: 680px; }
.fmt-grid { max-width: 820px; margin-inline: auto; }
.fmt-group { margin-bottom: 2.25rem; }
.fmt-group h3 { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem; font-size: 1.1rem; margin-bottom: .75rem; }
.fmt-group h3 span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.fmt-wrap { overflow-x: auto; border-radius: var(--r); background: var(--bg-2); }
.fmt-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.fmt-table th { text-align: left; padding: .7rem 1rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.fmt-table td { padding: .7rem 1rem; border-top: 1px solid #E1E4EA; color: var(--ink-2); vertical-align: top; }
.fmt-table td:last-child { white-space: nowrap; width: 1%; }
.fmt-table code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .85rem; color: var(--muted); }
.fmt-note { margin-top: 0; }

/* ---------- Ghiduri ---------- */
.guide-hero { padding: clamp(3.5rem, 7vw, 5.5rem) 0 0; }
.guide-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1.5rem; }
.guide-hero .breadcrumb { justify-content: flex-start; }
.guide-answer { background: var(--bg-2); border-radius: var(--r-lg); padding: 1.75rem; border-left: 4px solid var(--accent); }
.guide-answer .eyebrow { margin-bottom: .5rem; }
.guide-answer p { margin: 0; font-size: 1.1rem; line-height: 1.6; color: var(--ink); }
.guide-body h2 { font-size: 1.4rem; margin-top: 2.75rem; }
.guide-body > h2:first-child { margin-top: 0; }
.guide-steps { list-style: none; padding: 0; margin: 0 0 2.5rem; counter-reset: gs; display: grid; gap: .85rem; }
.guide-steps li { position: relative; padding-left: 3rem; counter-increment: gs; }
.guide-steps li::before { content: counter(gs); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .85rem; font-weight: 700; display: grid; place-items: center; }
.guide-steps strong { display: block; color: var(--ink); }
.guide-steps span { color: var(--muted); font-size: .95rem; }
.guide-cta { background: var(--bg-2); border-radius: var(--r-lg); padding: 1.75rem; margin: 2.5rem 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; }
.guide-cta .eyebrow { margin-bottom: .35rem; }
.guide-cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.guide-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.guide-list a { display: block; background: var(--bg-2); border-radius: var(--r); padding: 1rem 1.25rem; color: var(--ink); font-weight: 500; }
.guide-list a:hover { background: #E9EBF0; text-decoration: none; }
.guide-cards { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.guide-card a { display: block; background: var(--bg-2); border-radius: var(--r-lg); padding: 1.75rem; color: var(--ink); transition: background .2s, transform .2s; }
.guide-card a:hover { background: #ECEEF3; transform: translateY(-3px); text-decoration: none; }
.guide-card h2 { font-size: 1.25rem; margin: 0 0 .6rem; }
.guide-card p { margin: 0 0 .9rem; color: var(--muted); font-size: .97rem; }
.guide-card-more { color: var(--accent-ink); font-weight: 600; font-size: .92rem; }

/* ---------- Sugestii și cereri de funcții ---------- */
.idea-form-wrap { background: var(--bg-2); border-radius: var(--r-lg); margin-bottom: 2.5rem; overflow: hidden; }
.idea-form-wrap summary { cursor: pointer; list-style: none; padding: 1.35rem 3.2rem 1.35rem 1.75rem; position: relative; display: flex; flex-wrap: wrap; align-items: baseline; gap: .25rem 1rem; }
.idea-form-wrap summary::-webkit-details-marker { display: none; }
.idea-form-wrap summary::after { content: "+"; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.7rem; color: var(--accent); font-weight: 400; transition: transform .2s; }
.idea-form-wrap[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.idea-form-title { font-weight: 700; font-size: 1.2rem; letter-spacing: -.015em; }
.idea-form-body { padding: 0 1.75rem 1.75rem; }
.idea-form-body .field input, .idea-form-body .field textarea, .idea-form-body .field select, .idea-form-body .check { background: #fff; }

.idea-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.idea-filters, .idea-sort { display: flex; flex-wrap: wrap; gap: .5rem; }
.idea-filters a, .idea-sort a { font-size: .88rem; font-weight: 500; padding: .45rem .9rem; border-radius: 999px; background: var(--bg-2); color: var(--ink-2); }
.idea-filters a:hover, .idea-sort a:hover { background: #E9EBF0; text-decoration: none; }
.idea-filters a[aria-current], .idea-sort a[aria-current] { background: var(--ink); color: #fff; }
.idea-filters a[aria-current]:hover, .idea-sort a[aria-current]:hover { background: var(--ink); }
.idea-filters span { opacity: .55; font-variant-numeric: tabular-nums; margin-left: .15rem; }
.idea-active-filter { font-size: .92rem; color: var(--muted); margin: -.5rem 0 1.5rem; }

.idea-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.idea { display: grid; grid-template-columns: 84px 1fr; gap: 1.25rem; background: var(--bg-2); border-radius: var(--r-lg); padding: 1.5rem; scroll-margin-top: 100px; }
.idea-vote { margin: 0; }
.vote-btn { width: 84px; display: flex; flex-direction: column; align-items: center; gap: .1rem; padding: .85rem .5rem; border: 1.5px solid var(--line); border-radius: var(--r); background: #fff; cursor: pointer; font-family: inherit; color: var(--ink); transition: border-color .15s, background .15s, transform .15s; }
.vote-btn:hover:not(:disabled) { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }
.vote-btn .vote-arrow { font-size: .8rem; color: var(--muted); line-height: 1; }
.vote-btn .vote-count { font-size: 1.5rem; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.vote-btn .vote-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.vote-btn.voted { border-color: var(--accent); background: var(--accent-soft); cursor: default; }
.vote-btn.voted .vote-arrow { color: var(--accent); }
.vote-btn:disabled { opacity: 1; }
.vote-btn.just-voted { animation: emVote .4s ease-out; }
@keyframes emVote { 0% { transform: scale(1); } 45% { transform: scale(1.09); } 100% { transform: scale(1); } }

.idea-title { font-size: 1.2rem; margin: 0 0 .5rem; letter-spacing: -.015em; }
.idea-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .6rem; margin: 0 0 .75rem; font-size: .84rem; color: var(--muted); }
.idea-chip { display: inline-block; padding: .2rem .6rem; border-radius: 999px; background: #E4E7ED; color: var(--ink-2); font-size: .78rem; font-weight: 600; }
a.idea-chip:hover { background: #D8DCE4; text-decoration: none; }
.idea-chip.st-planned { background: var(--ink); color: #fff; }
.idea-chip.st-progress { background: var(--accent); color: #fff; }
.idea-chip.st-done { background: #DCFCE7; color: #14532D; }
.idea-chip.st-declined { background: #E4E7ED; color: #6B7280; }
.idea-body { margin: 0; color: var(--ink-2); }
.idea-note { background: #fff; border-radius: var(--r); padding: 1rem 1.25rem; margin: 1rem 0 0; font-size: .95rem; color: var(--ink-2); }
.idea-empty { text-align: center; background: var(--bg-2); border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 4rem); }
.idea-empty h2 { font-size: 1.4rem; margin-bottom: 1.25rem; }
/* câmpuri completate automat de la ANAF */
@keyframes emFill { from { background: #FFF1E8; box-shadow: 0 0 0 4px rgba(242,107,29,.18); } to { background: #fff; box-shadow: 0 0 0 4px rgba(242,107,29,0); } }
.field input.em-filled { animation: emFill 1.4s ease-out; }

/* ---------- Mobil ---------- */
@media (max-width: 700px) {
  .btn { white-space: normal; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .feature-cta { flex-direction: column; align-items: stretch; gap: .75rem; }
  .feature-cta .btn { width: 100%; }
  .feature-cta .price-pill { justify-content: center; }
  .aside-buy { position: static; }
  .cta-final .btn, .form-actions .btn { width: 100%; }
  .form-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .idea { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; }
  .idea-vote { order: 2; }
  .vote-btn { width: 100%; flex-direction: row; justify-content: center; gap: .5rem; padding: .7rem 1rem; }
  .vote-btn .vote-count { font-size: 1.15rem; }
  .vote-btn .vote-label { text-transform: none; letter-spacing: 0; font-size: .85rem; }
  .idea-form-wrap summary { padding: 1.15rem 3rem 1.15rem 1.25rem; }
  .idea-form-body { padding: 0 1.25rem 1.25rem; }
  .idea-toolbar { gap: .75rem; }
  .guide-cta { flex-direction: column; align-items: stretch; }
  .guide-cta-actions { flex-direction: column; align-items: stretch; }
  .guide-cta-actions .price-pill { justify-content: center; }
}

.err-page { text-align: center; padding: clamp(5rem, 12vw, 9rem) 0; }
.err-page .code { font-size: 6rem; font-weight: 700; color: var(--accent); line-height: 1; letter-spacing: -.04em; }
