/* PlanLicenta - Site de prezentare (mobile-first)
   Autor: ChatGPT (template)
   Licență: folosește și modifică liber
*/

:root{
  --bg: #0b1220;
  --bg2:#0f1b33;
  --card:#121f3d;
  --text:#e8eefc;
  --muted:#b8c7f2;
  --brand:#7cc4ff;
  --brand2:#a78bfa;
  --ok:#34d399;
  --warn:#fbbf24;
  --danger:#fb7185;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --maxw: 1120px;
  --ring: 0 0 0 4px rgba(124, 196, 255, .25);
  --border: 1px solid rgba(255,255,255,.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(124,196,255,.18), transparent 60%),
              radial-gradient(1000px 700px at 80% 15%, rgba(167,139,250,.18), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; height:auto; }
.container{
  width:min(100% - 2rem, var(--maxw));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  top:-48px;
  left:16px;
  background:var(--text);
  color:#111;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ top:12px; }

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(11, 18, 32, .65);
  border-bottom:var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand .logo{
  width:34px;height:34px;
  border-radius:12px;
  background: radial-gradient(circle at 30% 30%, var(--brand), var(--brand2));
  box-shadow: 0 10px 24px rgba(124,196,255,.18);
}
.brand small{ display:block; font-weight:600; color:var(--muted); letter-spacing:0; margin-top:-2px; }

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  color:var(--muted);
  font-weight:600;
  padding:10px 10px;
  border-radius:12px;
}
.nav-links a[aria-current="page"]{
  color:var(--text);
  background:rgba(255,255,255,.07);
}
.nav-links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
  text-decoration:none;
}

.nav-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:var(--border);
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  letter-spacing:.2px;
  background:rgba(255,255,255,.06);
  color:var(--text);
  box-shadow: none;
}
.btn:hover{
  text-decoration:none;
  background:rgba(255,255,255,.09);
}
.btn:focus{ outline:none; box-shadow: var(--ring); }
.btn.primary{
  border:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#081024;
}
.btn.primary:hover{
  filter:saturate(115%) contrast(105%);
}

.icon-btn{
  display:none;
  border:var(--border);
  background:rgba(255,255,255,.06);
  border-radius:14px;
  padding:10px 12px;
  color:var(--text);
}
.icon-btn:focus{ outline:none; box-shadow: var(--ring); }

.hero{
  padding:56px 0 22px;
}
.hero-grid{
  display:grid;
  gap:22px;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:var(--border);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  width:fit-content;
  font-weight:700;
}
.kicker .dot{
  width:10px;height:10px;border-radius:999px;background:var(--ok);
  box-shadow: 0 0 0 5px rgba(52,211,153,.18);
}

h1{
  margin:12px 0 10px;
  font-size:clamp(1.8rem, 3vw + 1rem, 3.2rem);
  line-height:1.15;
  letter-spacing:-.02em;
}
.lead{
  color:var(--muted);
  margin:0 0 18px;
  font-size:1.05rem;
  max-width:64ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 10px;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:12px;
  color:var(--muted);
  font-weight:650;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:var(--border);
  border-radius:999px;
  padding:8px 10px;
  background:rgba(255,255,255,.04);
}

.section{
  padding:34px 0;
}
.section h2{
  margin:0 0 10px;
  font-size:clamp(1.35rem, 1.2vw + 1rem, 2rem);
}
.section p{ color:var(--muted); margin:0 0 10px; }
.grid{
  display:grid;
  gap:14px;
}
.cards{
  margin-top:14px;
  display:grid;
  gap:14px;
}
.card{
  background:rgba(255,255,255,.04);
  border:var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: none;
}
.card strong{ display:block; margin-bottom:6px; }
.card ul{ margin:8px 0 0 18px; color:var(--muted); }
.card li{ margin:6px 0; }

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:var(--border);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:750;
}
.badge.ok{ border-color:rgba(52,211,153,.35); }
.badge.warn{ border-color:rgba(251,191,36,.35); }
.badge.info{ border-color:rgba(124,196,255,.35); }

.two-col{
  display:grid;
  gap:14px;
}
blockquote{
  margin:0;
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
  border:var(--border);
  color:var(--muted);
}
blockquote strong{ color:var(--text); }

.faq details{
  border:var(--border);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px 14px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:var(--text);
}
.faq summary:focus{ outline:none; box-shadow: var(--ring); border-radius:12px; }
.faq p{ margin:10px 0 0; }

.callout{
  margin-top:16px;
  border-radius:var(--radius);
  border:1px solid rgba(124,196,255,.28);
  background: linear-gradient(135deg, rgba(124,196,255,.12), rgba(167,139,250,.10));
  padding:16px;
}
.callout p{ margin:0; color:var(--muted); }

footer{
  margin-top:30px;
  border-top:var(--border);
  padding:26px 0 34px;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  gap:16px;
}
.footer-grid a{ color:var(--muted); }
.footer-grid a:hover{ color:var(--text); text-decoration:none; }
.fineprint{ font-size:.92rem; }

/* Form */
form{
  display:grid;
  gap:12px;
  margin-top:10px;
}
label{ font-weight:750; color:var(--text); }
input, textarea, select{
  width:100%;
  border-radius:14px;
  border:var(--border);
  padding:12px 12px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  font:inherit;
}
textarea{ min-height:130px; resize:vertical; }
input:focus, textarea:focus, select:focus{
  outline:none;
  box-shadow: var(--ring);
  border-color: rgba(124,196,255,.35);
}
.helper{
  color:var(--muted);
  font-size:.95rem;
  margin-top:-8px;
}

/* Responsive */
@media (min-width: 820px){
  .hero-grid{ grid-template-columns: 1.25fr .85fr; align-items:start; }
  .cards{ grid-template-columns: repeat(3, 1fr); }
  .two-col{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1.5fr 1fr 1fr; align-items:start; }
}

/* Mobile nav */
@media (max-width: 860px){
  .icon-btn{ display:inline-flex; }
  .nav-links{
    position:absolute;
    top:64px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    background:rgba(11, 18, 32, .92);
    border-bottom:var(--border);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px 12px; }
  .nav-cta{ display:none; }
}
