/* ============================================================
   Contliv — stiluri publice
   Paleta e preluată 1:1 din tema actuală contliv.com:
     verde brand   #52db3a   (butoane, accente; textul pe verde e NEGRU)
     închis        #1b262c   (header, footer, hero)
     fundal secții #f9f9f9 / #ffffff (alternate)
     text          #000000, secundar #444950
     borduri       #e0e0e0 / #ebedf0
   ============================================================ */

:root {
  --green:        #52db3a;
  --green-dark:   #3cc426;
  --green-deep:   #237d18;   /* verde lizibil pe fundal alb (text/linkuri) */
  --green-soft:   #f0fdec;
  --green-glow:   rgba(82, 219, 58, 0.18);

  --ink:          #1b262c;
  --ink-2:        #22303a;
  --ink-3:        #0f171b;

  --bg:           #ffffff;
  --bg-alt:       #f9f9f9;
  --text:         #000000;
  --muted:        #444950;
  --muted-2:      #6b7178;
  --line:         #e0e0e0;
  --line-2:       #ebedf0;

  --radius:       14px;
  --radius-sm:    10px;
  --shadow:       0 1px 2px rgba(27, 38, 44, .04), 0 8px 24px rgba(27, 38, 44, .06);
  --shadow-lg:    0 2px 4px rgba(27, 38, 44, .04), 0 24px 48px rgba(27, 38, 44, .12);

  --font-display: 'PT Sans', 'Segoe UI', Arial, sans-serif;
  --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;

  --wrap:         1180px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* ===== LAYOUT ===== */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 56px 0; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green-deep);
  margin-bottom: .85rem;
}
.kicker::before { content: ''; width: 22px; height: 2px; background: var(--green); border-radius: 2px; }
.section-head.center .kicker::before { display: none; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin: 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ===== BUTOANE ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600; line-height: 1;
  cursor: pointer; transition: background .18s, border-color .18s, color .18s, transform .18s, box-shadow .18s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--green); color: #000; box-shadow: 0 4px 14px var(--green-glow); }
.btn--primary:hover { background: var(--green-dark); box-shadow: 0 6px 20px var(--green-glow); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); background: var(--green-soft); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.25); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.btn--sm { padding: .6rem 1.15rem; font-size: .85rem; }
.btn--block { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink); color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__bar { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand { display: flex; align-items: baseline; gap: 2px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.brand__dot { color: var(--green); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.brand__logo { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  position: relative; padding: .55rem .9rem; border-radius: 8px;
  color: rgba(255,255,255,.82); font-size: .93rem; font-weight: 500; text-decoration: none;
  transition: color .16s, background .16s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); text-decoration: none; }
.nav a.is-active { color: #fff; }
.nav a.is-active::after {
  content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .15rem;
  height: 2px; background: var(--green); border-radius: 2px;
}
.header__cta { margin-left: 12px; }

.nav-toggle {
  display: none; margin-left: auto; width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: 0; border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
}
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

/* bandă subțire cu telefon, deasupra headerului */
.topbar {
  background: var(--ink-3); color: rgba(255,255,255,.7);
  font-size: .8rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner { display: flex; align-items: center; gap: 22px; height: 38px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.8); text-decoration: none; }
.topbar a:hover { color: var(--green); text-decoration: none; }
.topbar__sep { margin-left: auto; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff; padding: 92px 0 100px;
}
.hero::before {
  content: ''; position: absolute; top: -220px; right: -160px; width: 620px; height: 620px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 20%, #000 0%, transparent 70%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .9rem .4rem .55rem; border-radius: 999px;
  background: rgba(82,219,58,.12); border: 1px solid rgba(82,219,58,.3);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--green);
  margin-bottom: 1.3rem;
}
.hero__kicker::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(82,219,58,.2);
}
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.76); max-width: 56ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__cards { display: grid; gap: 12px; }
.hero-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--radius);
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px); transition: border-color .2s, background .2s, transform .2s;
  text-decoration: none;
}
.hero-card:hover { border-color: rgba(82,219,58,.45); background: rgba(255,255,255,.075); transform: translateX(4px); text-decoration: none; }
.hero-card__mark {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; background: var(--green); color: #000;
  font-weight: 700; font-size: 1.05rem; font-family: var(--font-display);
}
.hero-card__label { color: #fff; font-weight: 600; font-size: .97rem; line-height: 1.3; }
.hero-card__note { color: rgba(255,255,255,.6); font-size: .82rem; }

/* ===== CIFRE ===== */
.stats { background: var(--ink-3); color: #fff; border-top: 1px solid rgba(255,255,255,.07); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.stat:last-child { border-right: 0; }
.stat__value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat__label { font-size: .85rem; color: rgba(255,255,255,.62); margin-top: .5rem; }

/* ===== CARDURI ===== */
.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: border-color .2s, box-shadow .2s, transform .2s;
  height: 100%;
}
.card:hover { border-color: rgba(82,219,58,.55); box-shadow: var(--shadow); transform: translateY(-2px); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--green-soft); border: 1px solid rgba(82,219,58,.35);
  font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.card__text { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; flex: 1; }
.card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem; color: var(--green-deep); text-decoration: none;
}
.card__link:hover { gap: .65rem; text-decoration: none; }
.card__link::after { content: '→'; transition: transform .18s; }

.feature-list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .55rem; }
.feature-list li {
  position: relative; padding-left: 1.7rem; font-size: .93rem; color: var(--muted); line-height: 1.55;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: .48em;
  width: 8px; height: 8px; border-radius: 2px; background: var(--green);
}

/* ===== DESPRE (split) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(140deg, var(--ink) 0%, var(--ink-3) 100%);
  min-height: 340px; display: grid; place-items: center; position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__placeholder { text-align: center; padding: 40px; }
.split__placeholder .mark {
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: #fff; line-height: 1;
}
.split__placeholder .mark span { color: var(--green); }
.split__placeholder p { color: rgba(255,255,255,.55); font-size: .9rem; margin: .8rem 0 0; }
.split__body p { color: var(--muted); }

/* ===== DESCĂRCĂRI ===== */
.notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--radius-sm);
  background: var(--green-soft); border: 1px solid rgba(82,219,58,.4);
  font-size: .93rem; color: var(--muted); margin-bottom: 36px;
}
.notice__icon { flex: 0 0 auto; font-size: 1.1rem; line-height: 1.4; }
.notice strong { color: var(--text); }

.dl-group { margin-bottom: 48px; }
.dl-group__head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.dl-group__icon { font-size: 1.35rem; }
.dl-group h3 { margin: 0; font-size: 1.3rem; }
.dl-group__desc { color: var(--muted); font-size: .93rem; margin: 0 0 20px; max-width: 70ch; }

.dl-list { display: grid; gap: 14px; }
.dl-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  padding: 22px 24px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); transition: border-color .2s, box-shadow .2s;
}
.dl-item:hover { border-color: rgba(82,219,58,.55); box-shadow: var(--shadow); }
.dl-item__mark {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ink); color: var(--green); font-size: 1.35rem;
}
.dl-item__title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: .3rem; }
.dl-item__title h4 { margin: 0; font-family: var(--font-display); font-size: 1.1rem; }
.dl-item__desc { color: var(--muted); font-size: .92rem; margin: 0 0 .55rem; }
.dl-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: .8rem; color: var(--muted-2); }
.dl-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.dl-item__action { display: grid; gap: 8px; justify-items: stretch; min-width: 150px; }
.dl-changelog { margin-top: 14px; }
.dl-changelog summary {
  cursor: pointer; font-size: .85rem; font-weight: 600; color: var(--green-deep);
  list-style: none; display: inline-flex; align-items: center; gap: .35rem;
}
.dl-changelog summary::-webkit-details-marker { display: none; }
.dl-changelog summary::before { content: '▸'; transition: transform .15s; }
.dl-changelog[open] summary::before { transform: rotate(90deg); }
.dl-changelog pre {
  margin: 10px 0 0; padding: 14px 16px; background: var(--bg-alt);
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .87rem; color: var(--muted);
  white-space: pre-wrap; line-height: 1.6;
}

/* ===== BADGE-URI ===== */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .22rem .6rem; border-radius: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  background: var(--line-2); color: var(--muted);
}
.badge--green { background: var(--green); color: #000; }
.badge--soft { background: var(--green-soft); color: var(--green-deep); border: 1px solid rgba(82,219,58,.4); }
.badge--ink { background: var(--ink); color: #fff; }
.badge--warn { background: #fff4e0; color: #92600a; border: 1px solid #f5d9a6; }
.badge--muted { background: var(--line-2); color: var(--muted-2); }

/* ===== MAGAZIN ===== */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filters a {
  padding: .5rem 1.05rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .88rem; font-weight: 500; color: var(--muted); background: #fff; text-decoration: none;
  transition: all .16s;
}
.filters a:hover { border-color: var(--green); color: var(--text); text-decoration: none; }
.filters a.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.product { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s, transform .2s; }
.product:hover { border-color: rgba(82,219,58,.55); box-shadow: var(--shadow); transform: translateY(-2px); }
.product__media { aspect-ratio: 4 / 3; background: var(--bg-alt); display: grid; place-items: center; border-bottom: 1px solid var(--line-2); position: relative; }
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__media .ph { font-size: 2.6rem; opacity: .3; }
.product__badge { position: absolute; top: 12px; left: 12px; }
.product__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: .35rem; }
.product h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.product__desc { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product__price { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.product__price small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .76rem; color: var(--muted-2); }

.spec-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.spec-table td { padding: .7rem 0; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.spec-table td:first-child { color: var(--muted-2); width: 42%; }
.spec-table tr:last-child td { border-bottom: 0; }

/* ===== NOUTĂȚI ===== */
.post { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s, transform .2s; }
.post:hover { border-color: rgba(82,219,58,.55); box-shadow: var(--shadow); transform: translateY(-2px); }
.post__media { aspect-ratio: 16 / 9; background: linear-gradient(140deg, var(--ink) 0%, var(--ink-3) 100%); display: grid; place-items: center; }
.post__media img { width: 100%; height: 100%; object-fit: cover; }
.post__media .ph { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: rgba(255,255,255,.25); }
.post__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; align-items: center; gap: 10px; margin-bottom: .7rem; font-size: .78rem; color: var(--muted-2); }
.post h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.post h3 a { color: var(--text); text-decoration: none; }
.post h3 a:hover { color: var(--green-deep); text-decoration: none; }
.post__excerpt { font-size: .92rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 44px; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 .7rem;
  border: 1px solid var(--line); border-radius: 10px; font-size: .9rem; text-decoration: none; color: var(--muted);
}
.pagination a:hover { border-color: var(--green); color: var(--text); text-decoration: none; }
.pagination .is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ===== PAGINĂ INTERIOARĂ (page header) ===== */
.page-head {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-3) 100%);
  color: #fff; padding: 60px 0 66px; position: relative; overflow: hidden;
}
.page-head::before {
  content: ''; position: absolute; top: -180px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
}
.page-head__inner { position: relative; z-index: 2; max-width: 780px; }
.page-head h1 { color: #fff; margin-bottom: .6rem; font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.page-head p { color: rgba(255,255,255,.72); font-size: 1.05rem; margin: 0; }
.breadcrumb { display: flex; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.72); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); text-decoration: none; }

/* ===== ARTICOL / CONȚINUT LUNG ===== */
.prose { max-width: 74ch; font-size: 1.03rem; }
.prose p { color: var(--muted); margin-bottom: 1.15rem; }
.prose h2, .prose h3 { color: var(--text); margin-top: 2rem; }
.prose ul { padding-left: 1.3rem; margin-bottom: 1.15rem; color: var(--muted); }
.prose li { margin-bottom: .4rem; }
.prose strong { color: var(--text); }

/* ===== CTA ===== */
.cta {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 46px 48px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -140px; right: -80px; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
}
.cta__body { position: relative; z-index: 2; flex: 1; min-width: 280px; }
.cta h2 { color: #fff; margin-bottom: .4rem; font-size: 1.65rem; }
.cta p { color: rgba(255,255,255,.7); margin: 0; }
.cta__actions { position: relative; z-index: 2; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cta__phone { font-size: .82rem; color: rgba(255,255,255,.6); }
.cta__phone strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: #fff; }
.cta__phone a { color: #fff; text-decoration: none; }

/* ===== FORMULAR ===== */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text); }
.field label .req { color: #c0392b; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; font-family: var(--font-body); font-size: .95rem; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .16s, box-shadow .16s;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow);
}
.field__help { font-size: .78rem; color: var(--muted-2); }
.checkline { display: flex; align-items: flex-start; gap: .7rem; font-size: .87rem; color: var(--muted); }
.checkline input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--green); flex: 0 0 auto; }
.hp { position: absolute; left: -9999px; opacity: 0; }

.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: .93rem; }
.alert--error { background: #fdf2f2; border: 1px solid #f5c6c6; color: #8a2020; }
.alert--success { background: var(--green-soft); border: 1px solid rgba(82,219,58,.45); color: #17600e; }
.alert ul { margin: .4rem 0 0; padding-left: 1.2rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.info-card + .info-card { margin-top: 20px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.info-row { display: flex; gap: 12px; padding: .7rem 0; border-bottom: 1px solid var(--line-2); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row__icon { flex: 0 0 auto; width: 22px; text-align: center; opacity: .7; }
.info-row__label { font-size: .76rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; }
.info-row__value { font-size: .95rem; color: var(--text); }
.info-row__value a { color: var(--text); text-decoration: none; }
.info-row__value a:hover { color: var(--green-deep); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 20px; }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 60px 0 0; font-size: .9rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem;
}
.footer ul { list-style: none; display: grid; gap: .6rem; }
.footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer a:hover { color: var(--green); text-decoration: none; }
.footer__about { color: rgba(255,255,255,.6); max-width: 40ch; margin-top: 1rem; }
.footer__brand { display: flex; align-items: baseline; gap: 2px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer__bottom a { color: rgba(255,255,255,.6); }

/* ===== UTILITARE ===== */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.stack { display: grid; gap: 12px; }
.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.empty {
  padding: 60px 24px; text-align: center; color: var(--muted-2);
  border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bg-alt);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 14px 24px 20px; background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,.1); display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .75rem .6rem; }
  .nav a.is-active::after { display: none; }
  .nav a.is-active { background: rgba(82,219,58,.14); color: var(--green); }
  .header__cta { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .section { padding: 60px 0; }
  .dl-item { grid-template-columns: auto 1fr; }
  .dl-item__action { grid-column: 1 / -1; min-width: 0; }
  .cta { padding: 34px 26px; }
  .topbar__inner { height: auto; padding: 8px 0; gap: 12px; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .wrap { padding: 0 18px; }
}

@media print {
  .header, .topbar, .footer, .cta, .nav-toggle { display: none !important; }
  body { color: #000; }
}

/* ===== SIGLĂ + link „Salarii" în meniu (sept. 2026) ===== */
.brand { align-items: center; gap: 12px; }
.brand__text { display: inline-flex; align-items: baseline; gap: 2px; }
.brand__logo {
  width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.footer__brand { align-items: center; gap: 10px; }
.footer__logo { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.split__logo { width: 150px; height: 150px; border-radius: 28px; object-fit: cover; box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.nav a.nav--hl { color: var(--green); font-weight: 600; }
.nav a.nav--hl:hover { color: var(--green); background: rgba(82,219,58,.12); }

/* ===== SECȚIUNEA PROMOVATĂ — Contliv Salarii ===== */
.spot {
  background: linear-gradient(180deg, var(--green-soft) 0%, #fff 100%);
  border-top: 1px solid rgba(82,219,58,.25); border-bottom: 1px solid var(--line-2);
}
.spot h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.spot__url { font-size: .85rem; color: var(--muted-2); margin: 1.2rem 0 0; }
.spot__url a { font-weight: 600; }
.feature-list--2col { grid-template-columns: 1fr 1fr; gap: .55rem 1.4rem; }
.split__media--plain { background: none; border: 0; overflow: visible; min-height: 0; }

/* fereastră de browser desenată din CSS — folosită când nu e încărcată o imagine */
.mock {
  width: 100%; max-width: 480px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.mock__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--ink); }
.mock__bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.22); }
.mock__bar em {
  flex: 1; margin-left: 10px; font-style: normal; font-size: .78rem; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08); padding: 5px 12px; border-radius: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock__body { padding: 22px; }
.mock__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: var(--font-display); font-size: 1.15rem; }
.mock__head img { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; }
.mock__row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 11px 14px; border: 1px solid var(--line-2); border-radius: 10px; margin-bottom: 8px; font-size: .9rem;
}
.mock__row small { color: var(--muted-2); font-size: .78rem; text-align: right; }
.mock__row--hl { background: var(--green-soft); border-color: rgba(82,219,58,.4); }

@media (max-width: 860px) {
  .feature-list--2col { grid-template-columns: 1fr; }
  .nav a.nav--hl { background: rgba(82,219,58,.1); }
}

/* ===== PAGINA PRODUS (Contliv REGES Web) ===== */
.page-head--product .page-head__inner { max-width: 860px; }
.page-head__url { margin-top: 1rem !important; font-size: .88rem !important; }
.page-head__url a { color: var(--green); font-weight: 600; }

.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 22px; }
.faq__item[open] { border-color: rgba(82,219,58,.55); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 18px 28px 18px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--green-deep);
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p { color: var(--muted); margin: 0 0 18px; }

.promo-banner {
  display: inline-block; margin-top: 1.2rem; padding: .7rem 1.1rem; border-radius: var(--radius-sm);
  background: var(--green); color: #000; font-weight: 700; font-size: 1rem;
}
.promo-banner--light { margin: 0 0 1.1rem; }
.price-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; }
.price-row + .price-row { border-top: 1px solid var(--line-2); }
.price-row__plan { font-weight: 600; }
.price-row__plan small { display: block; font-weight: 400; color: var(--muted); font-size: .86rem; margin-top: .2rem; }
.price-row__price { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; white-space: nowrap; }
