:root{
  --bg:#ffffff;
  --panel:#ffffff;
  --panel2:#f6f8fb;
  --text:#111827;
  --muted:#4b5563;
  --muted2:#6b7280;
  --border:#e5e7eb;
  --shadow: 0 8px 24px rgba(17,24,39,.08);

  --brand:#005eb8;   /* albastru “retail” */
  --brand2:#0077e6;
  --accent:#ff6a00;  /* accent tip eCommerce */
  --ok:#16a34a;

  --radius:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto}
a{color:inherit}

.container{max-width:1120px;margin:0 auto;padding:0 18px}

.skip-link{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{
  left:18px;top:18px;width:auto;height:auto;
  background:#fff;border:1px solid var(--border);
  padding:.6rem .8rem;border-radius:10px;
  box-shadow:var(--shadow);
}

/* Header */
.top-header{border-bottom:1px solid var(--border); background:#fff}
.topbar{
  display:flex;justify-content:space-between;align-items:center;
  padding:.6rem 0;
}
.pill{
  display:inline-flex;align-items:center;
  padding:.25rem .55rem;border-radius:999px;
  background:rgba(0,94,184,.08);
  border:1px solid rgba(0,94,184,.18);
  color:var(--brand);
  font-weight:800;
  font-size:.82rem;
}
.smallmuted{color:var(--muted2);font-size:.9rem}
.topbar-left{display:flex;gap:10px;align-items:center}
.topbar-right{display:flex;gap:10px;align-items:center}

.navbar{
  display:flex;align-items:center;gap:16px;
  padding:.9rem 0;
}
.brand{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;
}
.brand-mark{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;font-weight:900;
  letter-spacing:.5px;
}
.brand-title{font-weight:950}
.brand-sub{display:block;color:var(--muted2);font-size:.86rem;margin-top:-2px}

.navlinks{
  margin-left:auto;
  display:flex;gap:8px;align-items:center;flex-wrap:wrap;
}
.navlinks a{
  text-decoration:none;
  color:var(--text);
  padding:.5rem .65rem;
  border-radius:12px;
}
.navlinks a:hover{background:var(--panel2)}
.navlinks a:focus-visible{outline:2px solid rgba(0,94,184,.35);outline-offset:3px}

.navcta{display:flex;align-items:center}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;text-decoration:none;
  border-radius:12px;padding:.78rem 1rem;
  font-weight:900;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 10px 22px rgba(0,94,184,.18);
}
.btn-primary:hover{filter:brightness(1.03)}
.btn-ghost{
  background:#fff;border:1px solid var(--border);
  color:var(--text);
}
.btn-ghost:hover{background:var(--panel2)}

/* Sections / layout */
.section{padding:42px 0}
.section.alt{background:var(--panel2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.kicker{
  color:var(--brand);
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.35px;
  font-size:.78rem;
}
.h1{margin:10px 0 10px;font-size:2.35rem;line-height:1.08}
.h2{margin:10px 0 8px;font-size:1.85rem;line-height:1.15}
.lead{color:var(--muted);margin:0 0 14px;max-width:78ch}
.sub{color:var(--muted);margin:0;max-width:85ch}
.note{color:var(--muted2);font-size:.95rem}

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
.hero-img{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-img img{width:100%;height:100%;object-fit:cover;display:block}

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

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}
.card-title{font-weight:950}
.card-desc{color:var(--muted);margin:.25rem 0 0;font-size:.95rem}

.badge{
  font-size:.78rem;font-weight:950;
  padding:.35rem .55rem;border-radius:999px;
  background:rgba(22,163,74,.10);
  border:1px solid rgba(22,163,74,.20);
  color:var(--ok);
}
.badge-alt{
  background:rgba(255,106,0,.10);
  border:1px solid rgba(255,106,0,.20);
  color:var(--accent);
}

.price{font-size:1.9rem;font-weight:950;margin:14px 0 8px}
.price span{font-size:.9rem;font-weight:800;color:var(--muted2)}

.list{margin:0;padding-left:1.05rem;color:var(--muted)}
.list li{margin:.25rem 0}

.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}

/* Footer */
.footer{margin-top:18px;border-top:1px solid var(--border);background:#fff}
.footergrid{display:grid;grid-template-columns:1.2fr .8fr;gap:18px;padding:26px 18px}
.ftitle{font-weight:950;margin-bottom:8px}
.fmuted{color:var(--muted);margin:.5rem 0}
.flegal{padding:0 18px 18px;color:var(--muted2);font-size:.9rem}
.footer a{color:var(--brand)}

/* Responsive */
@media (max-width: 980px){
  .hero{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .navbar{flex-wrap:wrap}
  .navcta{width:100%}
  .navcta .btn{width:100%}
  .h1{font-size:2.05rem}
}
