@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;
  --accent:#e11d2e;
  --accent2:#111827;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(225,29,46,.06), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(17,24,39,.06), transparent 55%),
              var(--bg);
}

.container{ width:min(var(--max), calc(100% - 32px)); margin:0 auto; }
.section{ padding: 56px 0; }
.section.tight{ padding: 38px 0; }
h1,h2,h3{ margin:0 0 12px 0; letter-spacing:-.02em; }
h1{ font-size: clamp(28px, 4vw, 46px); line-height:1.05; }
h2{ font-size: clamp(22px, 2.5vw, 32px); }
p{ margin:0 0 12px 0; color:var(--muted); line-height:1.6; }
small{ color:var(--muted); }

/* top bar */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(229,231,235,.8);
}
.topbar .inner{
  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:.02em; }
.brand .logo{
  width:36px; height:36px; border-radius:12px;
  background: conic-gradient(from 210deg, var(--accent), #ff6b6b, var(--accent2));
  box-shadow: 0 10px 25px rgba(225,29,46,.18);
}
.brand span{ color:var(--accent2); }
.brand b{ color:var(--accent); }

nav{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
nav a{
  text-decoration:none;
  color:var(--accent2);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
nav a:hover{ background: rgba(17,24,39,.06); }

.actions{ display:flex; gap:10px; align-items:center; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  text-decoration:none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn.primary{ background: var(--accent); color:#fff; box-shadow: 0 14px 30px rgba(225,29,46,.22); }
.btn.primary:hover{ box-shadow: 0 18px 36px rgba(225,29,46,.28); }
.btn.ghost{ background:#fff; border-color: var(--line); color: var(--accent2); }
.btn.ghost:hover{ background: rgba(255,255,255,.9); }

/* hero */
.hero{ padding: 44px 0 24px; }

.heroCard{
  position:relative;
  overflow:hidden;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  min-height: 520px;

  background-image:
    linear-gradient(0deg, rgba(2,6,23,.58), rgba(2,6,23,.18)),
    url("/img/hero.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0b1220;
}

.heroCard .content{
  padding: 64px 26px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items:center;
}
.heroCard h1, .heroCard p{ color:#fff; }
.heroCard p{ color: rgba(255,255,255,.86); max-width: 55ch; }

.heroBadges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.badge{
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:13px;
}
.heroCtas{ display:flex; gap:10px; margin-top: 18px; flex-wrap:wrap; }

.heroSide{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 18px;
}
.heroSide h3{ color:#fff; margin-bottom:8px; }
.heroSide ul{ margin:0; padding-left:18px; color: rgba(255,255,255,.88); line-height:1.55; }
.heroSide li{ margin:6px 0; }

/* cards */
.grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card{
  background: var(--card);
  border: 1px solid rgba(229,231,235,.8);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(2,6,23,.05);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: 0 16px 34px rgba(2,6,23,.08); }
.card .icon{
  width:46px; height:46px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(225,29,46,.10);
  border:1px solid rgba(225,29,46,.18);
  margin-bottom: 10px;
  font-size: 22px;
}
.card h3{ margin: 2px 0 8px 0; font-size: 18px; }
.card p{ margin:0 0 12px 0; }
.card a.more{
  display:inline-flex; gap:8px; align-items:center;
  text-decoration:none;
  font-weight:700;
  color: var(--accent);
  font-size:14px;
}

/* feature list */
.features{ display:grid; grid-template-columns: 1.2fr .8fr; gap: 16px; align-items:start; }
.panel{
  background: #fff;
  border:1px solid rgba(229,231,235,.8);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(2,6,23,.05);
}
.checklist{ margin:0; padding:0; list-style:none; }
.checklist li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 0;
  border-bottom:1px dashed rgba(229,231,235,.8);
}
.checklist li:last-child{ border-bottom:none; }
.tick{
  width:22px; height:22px; border-radius:8px;
  background: rgba(225,29,46,.12);
  border:1px solid rgba(225,29,46,.22);
  display:grid; place-items:center;
  color: var(--accent);
  font-weight:900;
  flex: 0 0 auto;
}

/* footer */
footer{
  margin-top: 30px;
  padding: 26px 0;
  border-top: 1px solid rgba(229,231,235,.9);
  color: var(--muted);
  font-size: 14px;
}
.footerRow{ display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.footerRow a{ color: var(--accent2); text-decoration:none; font-weight:600; }
.footerRow a:hover{ text-decoration:underline; }

/* page header */
.pageHead{ padding: 28px 0 8px; }
.pageHead h1{ font-size: clamp(26px, 3.6vw, 38px); }
.breadcrumb{ font-size: 13px; color: var(--muted); }

/* content */
.content{
  background: #fff;
  border:1px solid rgba(229,231,235,.8);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(2,6,23,.05);
}
.content ul{ margin: 10px 0 0 0; padding-left: 18px; color: var(--muted); }
.content li{ margin: 8px 0; line-height:1.55; }

/* form */
form{ display:grid; gap: 10px; margin-top: 10px; }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,.9);
  background: #fff;
  font: inherit;
}
input:focus, textarea:focus{
  outline: none;
  border-color: rgba(225,29,46,.45);
  box-shadow: 0 0 0 4px rgba(225,29,46,.10);
}
textarea{ min-height: 130px; resize: vertical; }

/* responsive */
@media (max-width: 900px){
  .heroCard .content{ grid-template-columns: 1fr; padding: 42px 18px; }
  .features{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  nav{ display:none; }
  .actions{ width:100%; justify-content:flex-end; }
}

/* Floating WhatsApp button */
.wa-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.wa-fab:hover{ filter: brightness(.95); }
.wa-fab:active{ transform: translateY(1px); }


/* =========================
   FIX FINAL HERO IMAGE
   ========================= */
.heroCard{
  background: none !important;
  background-image:
    linear-gradient(0deg, rgba(2,6,23,.6), rgba(2,6,23,.2)),
    url("/img/hero.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}


/* =========================
   FIX HERO CONTENT TRANSPARENT
   ========================= */
.heroCard .content{
  background: transparent !important;
}
/* HERO – Lucrări populare: text mai vizibil */
.heroSide{
  background: rgba(0,0,0,.35) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
}

.heroSide h3{
  color: #fff !important;
}

.heroSide ul,
.heroSide li{
  color: rgba(255,255,255,.92) !important;
}

.heroSide li{
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
}

