:root{
  --bg:#7dd3fc;
  --card:#bae6fd;
  --alt:#e0f2fe;
  --text:#0f172a;
  --muted:#1e3a8a;
  --line:#93c5fd;
  --accent:#38bdf8;
  --accent2:#0ea5e9;
  --shadow:0 10px 25px rgba(0,0,0,.15);
  --radius:18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(124,77,255,.25), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(77,208,225,.18), transparent 55%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
 .container{
  width: min(1120px, 92%);
  margin: 0 auto;
  }
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:25px 0;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
width:auto; height:100%; border-radius:14px;
  display:grid; place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: var(--shadow);
}
.brand__text small{ display:block; color:var(--muted); font-size:12px; margin-top:2px; }

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ color:var(--muted); font-weight:600; font-size:14px; }
.nav a:hover{ color:var(--text); }

.topbar__cta{ display:flex; gap:10px; align-items:center; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition: transform .08s ease, opacity .2s ease, border-color .2s ease;
}
.btn:hover{ opacity:.95; border-color: rgba(255,255,255,.2); }
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color:#06101a;
}
.btn--ghost{
  background: rgba(255,255,255,.03);
}

.burger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin:4px auto;
  border-radius:2px;
}
.mobile{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobile a{
  display:block;
  padding:10px 4%;
  color: var(--muted);
  font-weight:700;
}
.mobile .btn{ margin:10px 4% 0; width:92%; }

.hero{ padding:56px 0 30px; }
.hero__inner{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:24px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  font-weight:700;
  font-size:13px;
}
.hero h1{
  display:flex;
  align-items:flex-start;
  width:100%;
  flex-wrap:wrap;
  font-size: 28px;
}

.heroLogo{
    width:400px;
    height:300px;
    object-fit:contain;
}
.accent{ background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p{ color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px; }
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }
.hero__badges{ display:flex; flex-wrap:wrap; gap:10px; }
.badge{
  display:flex; gap:10px; align-items:center;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.badge strong{ color:var(--text); }

.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.section{ padding:56px 0; }
.section--alt{ background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section__head{ margin-bottom:18px; }
.section__head h2{ margin:0 0 8px; font-size:28px; }
.section__head p{ margin:0; color:var(--muted); line-height:1.6; }

.grid{ display:grid; gap:14px; }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.tile{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.tile h3{ margin:0 0 6px; }
.tile p{ margin:0; color:var(--muted); line-height:1.6; }

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.pricecard{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.pricecard--featured{
  border-color: rgba(77,208,225,.35);
  box-shadow: 0 12px 40px rgba(77,208,225,.10);
}
.tag{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(77,208,225,.14);
  border:1px solid rgba(77,208,225,.25);
  margin-bottom:10px;
}
.price{ margin:10px 0; color:var(--muted); }
.price strong{ color:var(--text); font-size:22px; }
.pricecard ul{ margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.8; }
.note{ margin-top:14px; color:var(--muted); }

.steps{ display:grid; gap:12px; margin-top:10px; }
.step{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.step__nr{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-weight:900;
  color:#06101a;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color:var(--muted); line-height:1.6; }

.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.contact__cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.infocard{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.infocard h3{ margin:0 0 6px; }
.infocard p{ margin:0 0 6px; color:var(--text); font-weight:800; }
.infocard small{ color:var(--muted); }

.form{ display:grid; gap:10px; }
label{ display:grid; gap:6px; color:var(--muted); font-weight:700; font-size:13px; }
input, textarea{
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.15);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{ border-color: rgba(255,255,255,.25); }
.form__hint{ color:var(--muted); line-height:1.5; }

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  color:var(--muted);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap;
}
.muted{ opacity:.9; }

.floating{
  position:fixed;
  right:16px;
  bottom:16px;
  width:54px; height:54px;
  border-radius: 18px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#06101a;
  box-shadow: var(--shadow);
}

/* Telefoane */
.hero__phones{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.phone{
  display:inline-flex;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:900;
}
.phone:hover{ border-color: rgba(255,255,255,.2); }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .contact__cards{ grid-template-columns: 1fr; }
  .nav, .topbar__cta{ display:none; }
  .burger{ display:block; }
  .mobile.show{ display:block; }
}.galerie {
  padding: 40px 0;
}

/* ===== GALERIE ===== */

.galerie {
  padding: 40px 0;
}

.galerie h2 {
  margin-bottom: 15px;
}

.galerie-poze{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.galerie-poze img{
  
}

.galerie-poze img:hover{
  transform:scale(1.03);
  box-shadow:0 8px 20px rgba(0,0,0,.4);
}.galerie { padding: 40px 0; }
.galerie h2 { margin-bottom: 15px; }

.galerie-poze{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.galerie-poze img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  cursor:pointer;
}

#lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

#lightbox.active{ display:flex; }

#lightbox img{
  max-width:90vw;
  max-height:90vh;
  border-radius:12px;
}.brand_logo{
  width:100px;
  height:auto;
  border-radius:12px;
  object-fit:contain;
  backround:#dff3ff;
  padding:6px;
}.mobile { display: none; }
.mobile.show { display: block; }
.hero-logo{
  margin-top:20px;
}

.hero-logo img{
  width:160px;
  height:auto;
}

/* ELIMINARE DEFINITIVA BURGER SI AFISARE MENIU PE MOBIL */
@media (max-width: 991px) {
    /* Forteaza afisarea meniului cu link-uri */
    nav.nav { 
        display: flex !important; 
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }

    /* Ascunde complet butonul de burger */
    button.burger { 
        display: none !important; 
    }

    /* Stil pentru link-uri sa arate bine pe mobil */
    nav.nav a {
        padding: 5px 10px !important;
        font-size: 14px !important;
        text-decoration: none !important;
    }
    }
 
