:root{
  --bg: #0b1426;
  --bg2:#0a1223;
  --panel: rgba(255,255,255,.04);
  --panel2: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.08);
  --text: rgba(235,244,255,.92);
  --muted: rgba(235,244,255,.65);
  --accent: #f5a623;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1000px 600px at 20% -10%, rgba(245,166,35,.18), transparent 55%),
              radial-gradient(900px 500px at 90% 10%, rgba(90,170,255,.14), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* TOPBAR */
.topbar{
  position: sticky;
  top:0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(11,20,38,.78), rgba(11,20,38,.58));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap:14px;
}

.brand{ line-height:1.05; }
.brand__title{
  font-weight:900;
  letter-spacing:.06em;
  color: var(--accent);
  font-size: 20px;
}
.brand__sub{
  font-size: 13px;
  color: rgba(235,244,255,.65);
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav__links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__links a{
  font-size: 13px;
  color: rgba(235,244,255,.78);
  transition: .2s ease;
}
.nav__links a:hover{ color: rgba(255,255,255,.95); }

.nav__burger{
  width:46px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:none;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
}
.nav__burger span{
  display:block;
  width:18px; height:2px;
  background: rgba(235,244,255,.85);
  border-radius:99px;
}

.topbar__cta{
  display:flex;
  align-items:center;
  gap:12px;
}
.topbar__phone{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(235,244,255,.9);
  font-size: 13px;
}
.topbar__phone .num{ opacity:.9; }

/* Mobile menu */
.mobileMenu{
  display:none;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 12px 0 18px;
}
.mobileMenu.open{ display:block; }
.mobileMenu .mmLink{
  display:block;
  padding: 12px 20px;
  color: rgba(235,244,255,.86);
}
.mobileMenu .mmActions{
  display:flex;
  gap:10px;
  padding: 10px 20px 0;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(235,244,255,.92);
  font-weight: 700;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
}
.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(245,166,35,.22);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.btn--primary{
  background: linear-gradient(180deg, rgba(245,166,35,1), rgba(234,146,18,1));
  border-color: rgba(255,255,255,.10);
  color: #161616;
}
.btn--ghost{
  background: rgba(12,20,40,.55);
  border-color: rgba(245,166,35,.22);
}
.btn--small{ padding: 10px 12px; font-size: 13px; border-radius: 14px; }
.btn--wide{ width: min(520px, 100%); }
.icon{ font-weight:900; }

/* HERO */
.hero{
  position: relative;
  min-height: 84vh; /* IMPORTANT: mai mare pe telefon, nu mic */
  display:flex;
  align-items:center;
  padding: 28px 0 48px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    url("assets/hero.jpg") center/cover no-repeat;
  transform: scale(1.03);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 30% 20%, rgba(0,0,0,.18), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(0,0,0,.25), transparent 60%),
    linear-gradient(180deg, rgba(8,14,28,.45), rgba(8,14,28,.70));
}
.hero__content{
  position:relative;
  text-align:center;
  padding-top: 18px;
  padding-bottom: 10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,166,35,.35);
  background: rgba(12,20,40,.50);
  color: rgba(245,166,35,.95);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}
.badge .dot{
  width:8px; height:8px;
  border-radius:50%;
  background: rgba(245,166,35,1);
  box-shadow: 0 0 0 6px rgba(245,166,35,.16);
}

.hero__title{
  margin: 10px auto 10px;
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 950;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.hero__title span{ color: rgba(235,244,255,.95); }
.hero__title .accent{ color: var(--accent); }

.hero__sub{
  margin: 0 auto 18px;
  max-width: 760px;
  color: rgba(235,244,255,.70);
  line-height: 1.6;
  font-size: 15.5px;
}

.hero__actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 16px;
}

/* ticks (exact vibe) */
.heroTicks{
  margin: 18px auto 0;
  max-width: 760px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  justify-items:center;
}
.tick{
  color: rgba(235,244,255,.72);
  font-weight: 800;
  font-size: 13px;
  display:flex;
  gap:8px;
  align-items:center;
}
.tick--center{
  grid-column: 1 / -1;
  justify-self:center;
}

/* scroll hint */
.scrollHint{
  display:inline-flex;
  justify-content:center;
  margin-top: 18px;
}
.scrollHint__circle{
  width: 44px; height: 44px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid rgba(245,166,35,.35);
  background: rgba(12,20,40,.35);
  color: rgba(245,166,35,.95);
  box-shadow: 0 14px 45px rgba(0,0,0,.35);
}

/* SECTION BASE */
.section{ padding: 70px 0; }
.section--tight{ padding: 58px 0; }

.sectionHead{
  text-align:center;
  margin-bottom: 26px;
}
.sectionHead h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 950;
  letter-spacing:-0.02em;
}
.sectionHead p{
  margin:0 auto;
  max-width: 780px;
  color: rgba(235,244,255,.70);
  line-height: 1.6;
}

.accent{ color: var(--accent); }

.center{ text-align:center; }

/* Cards */
.cardsGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.30);
}
.card__icon{
  width:46px; height:46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(245,166,35,.10);
  border:1px solid rgba(245,166,35,.22);
  margin-bottom: 12px;
}
.card h3{ margin:0 0 8px; font-weight: 900; }
.card p{ margin:0; color: rgba(235,244,255,.68); line-height:1.6; }

/* WHY grid */
.whyGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.whyCard{
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
  padding: 16px;
}
.whyCard__icon{
  width:40px;height:40px;border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
}
.whyCard h3{ margin:0 0 8px; font-weight: 900; font-size: 16px; }
.whyCard p{ margin:0; color: rgba(235,244,255,.68); line-height:1.6; }

.quoteBox{
  margin: 18px auto 0;
  max-width: 900px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 18px 18px;
}
.quoteBox p{ margin:0; color: rgba(235,244,255,.76); line-height:1.7; }
.quoteBox b{ color: rgba(255,255,255,.95); }

/* Feature section */
.feature{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245,166,35,.24);
  background: rgba(12,20,40,.45);
  color: rgba(245,166,35,.95);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 12px;
}
.feature__left h2{
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 950;
}
.feature__left p{
  margin: 0 0 12px;
  color: rgba(235,244,255,.70);
  line-height: 1.7;
}
.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(235,244,255,.78);
  line-height: 1.9;
}
.bullets li::marker{ color: var(--accent); }

.photoPair{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.photoPair img{
  height: 270px;
  width:100%;
  object-fit:cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

/* Gallery */
.section--gallery{ padding: 62px 0; }
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px;
}
.gItem{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gItem:hover{
  transform: translateY(-3px);
  border-color: rgba(245,166,35,.22);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.gItem img{
  width:100%;
  height: 190px;
  object-fit:cover;
}
.gTag{
  position:absolute;
  left: 12px;
  bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(235,244,255,.92);
  background: rgba(10,18,35,.62);
  border:1px solid rgba(255,255,255,.08);
  padding: 7px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* Area */
.area{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 12px 0 10px;
}
.chip{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(235,244,255,.78);
  font-weight: 800;
  font-size: 12px;
}
.muted{ color: rgba(235,244,255,.62); }
.mapWrap{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}
.mapWrap iframe{
  width:100%;
  height: 320px;
  border:0;
  display:block;
}

/* CTA */
.section--cta{
  padding: 70px 0 80px;
  background: radial-gradient(800px 400px at 50% -10%, rgba(245,166,35,.18), transparent 55%);
}
.cta{
  text-align:center;
  border-radius: 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  padding: 26px 18px 18px;
  box-shadow: var(--shadow);
}
.cta h2{
  margin: 6px 0 10px;
  font-weight: 950;
  font-size: clamp(28px, 4vw, 48px);
}
.cta p{ margin: 0 auto 14px; max-width: 720px; color: rgba(235,244,255,.70); line-height:1.7; }
.cta__actions{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.ctaStats{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.stat{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 14px 10px;
}
.stat__big{ font-weight: 950; font-size: 18px; color: rgba(235,244,255,.94); }
.stat__small{ color: rgba(235,244,255,.62); font-weight: 800; font-size: 12px; }

/* Footer */
.footer{
  padding: 44px 0 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(6,10,20,.55);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
  align-items:start;
}
.footer h4{
  margin: 0 0 10px;
  font-weight: 950;
}
.footer a{
  display:block;
  padding: 6px 0;
  color: rgba(235,244,255,.74);
}
.footer a:hover{ color: rgba(255,255,255,.95); }
.footer__text{ color: rgba(235,244,255,.66); line-height:1.7; margin: 10px 0 0; }
.footer__muted{ display:block; padding-top: 8px; color: rgba(235,244,255,.62); }
.footer__bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(235,244,255,.58);
  font-weight: 800;
  font-size: 12px;
}

/* Floating buttons */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
  z-index: 80;
}
.fab__btn{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-size: 22px; /* icon only */
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  transition: transform .18s ease;
}
.fab__btn:hover{ transform: translateY(-2px); }
.fab__btn--wa{
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.20), transparent 45%),
              #22c55e;
  color: #0b1b10;
}
.fab__btn--call{
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.20), transparent 45%),
              var(--accent);
  color: #1a1206;
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .nav__links{ display:none; }
  .nav__burger{ display:inline-flex; }
  .topbar__cta{ display:none; }

  .cardsGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .whyGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature{ grid-template-columns: 1fr; }
  .photoPair img{ height: 240px; }
  .galleryGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .area{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
  .hero{
    min-height: 92vh; /* pe telefon HERO mai mare (cum ai cerut) */
    padding: 18px 0 42px;
  }
  .hero__sub{ font-size: 14.5px; }
  .btn--wide{ width: 100%; }
  .hero__actions{ gap: 12px; }

  .cardsGrid{ grid-template-columns: 1fr; }
  .whyGrid{ grid-template-columns: 1fr; }

  .photoPair{ grid-template-columns: 1fr 1fr; }
  .photoPair img{ height: 190px; }

  .gItem img{ height: 170px; }
  .ctaStats{ grid-template-columns: 1fr; }

  /* tick spacing like lovable */
  .heroTicks{
    margin-top: 16px;
    gap: 10px 14px;
  }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .reveal{ transition:none; }
  .btn{ transition:none; }
  .gItem{ transition:none; }
}
