@charset "utf-8";
/* CSS Document */
/* ================= RESET / BAZA ================= */
*,
*::before,
*::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}
/* blochează scroll când meniul e deschis */
body.no-scroll{
  overflow: hidden;
}
html, body{ overflow-x: hidden; }



/* util */
img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; }
li{ list-style: none; }





/* ================= VARIABILE ================= */
:root{
  --navy: #0f172a;      /* fundal închis */
  --navy2:#0b1220;

  --mint: #f97316;      /* portocaliu energic */
  --mint2:#ea580c;

  --bg: #ffffff;
  --alt: #f8fafc;
  --line: rgba(0,0,0,.08);
  --text: #0f172a;
  --muted:#64748b;
}





/* ================= CONTAINER ================= */
.container{
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= HEADER ================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  height: 66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.logo{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 20px;
  color: var(--navy2);
}
.logo span{ color: var(--mint2); }




/* ================= NAV (mobile) ================= */
.nav{ position: relative; }

/* butoane */
.hamburger,
.close-btn{
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.hamburger{
  color: var(--navy2);
  display: block;
}

/* close ascuns implicit */
.close-btn{
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  color: #fff;
  z-index: 2100;
}

/* meniu overlay */
.nav-menu{
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--navy2), #071527);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;

  transform: translateY(-100%);
  transition: transform .35s ease;

  z-index: 2000;
  padding: 90px 18px 40px;
  min-height: 100vh;
}

.nav-menu a{
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .2px;
  padding: 10px 14px;
  border-radius: 12px;
}

.nav-menu a.active{
  color: #0b1f3a;
  background: rgba(45, 212, 191, .95);
}

.nav-cta{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}

/* stare deschis */
.nav.is-open .nav-menu{ transform: translateY(0); }
.nav.is-open .hamburger{ display: none; }
.nav.is-open .close-btn{ display: block; }




/* ================= MAIN OFFSET (header fix) ================= */
main{
  padding-top: 66px;
}




/* ================= HERO ================= */
.hero{
  background: linear-gradient(135deg, var(--navy2), #0a1a30);
  color: #fff;
  padding: 56px 0 46px;
}

.hero-inner{
  display: grid;
  gap: 16px;
}

.badge{
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 10px;
  border-radius: 999px;
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 13px;
}

.hero h1{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: .2px;
}

.lead{
  margin: 0 0 16px;
  opacity: .95;
  color: rgba(255,255,255,.92);
  max-width: 70ch;
}

.hero-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* lista */
.hero-list{
  margin-top: 10px;
  display: grid;
  gap: 8px;
}
.hero-list li{ color: rgba(255,255,255,.92); }

/* card dreapta */
.hero-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 16px;
}

.hero-card h2{
  margin: 0 0 8px;
  font-size: 18px;
}

.hero-card p{
  margin: 0 0 12px;
  opacity: .95;
}

.callout{
  background: rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 12px;
}
.callout p{ margin: 0; }

.hero-inner .hero-list li{
	color: #fff;
}
.hero-list li{
	color: #111;
}

.hero-strip{
  text-align:center;
  background: var(--alt);
  padding: 12px;
  font-weight: 800;
  color: var(--navy2);
}





/* ================= SECTIUNI ================= */
.section{
  padding: 46px 0;
}

/* ca să nu fie ascuns titlul sub header când sari la ancoră */
.section[id] { scroll-margin-top: 86px; }


.section.alt{ background: var(--alt); }

.section h2{
  margin: 0 0 16px;
  font-size: 26px;
  color: var(--navy2);
}
.center{ text-align: center; margin-top: 16px; }




/* ================= CARDS ================= */
.cards{
  display: grid;
  gap: 14px;
}

.card{
	 display: flex;
  flex-direction: column;
	 height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card .center{ margin-top: auto; }

.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
}

.card h3{
  margin: 0 0 8px;
  color: var(--navy2);
  font-size: 18px;
}

.card p{
  margin: 0;
  color: #334155;
  line-height: 1.55;
}





/* ================= BUTOANE ================= */
.btn{
  display: inline-block;
  background: rgba(45, 212, 191, .96);
  color: #05221f;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, filter .2s ease;
}

.btn:hover{
  transform: translateY(-2px);
  filter: brightness(.98);
}

.btn-ghost{
  background: transparent;
  border: 2px solid rgba(255,255,255,.75);
  color: #fff;
}

.btn-small{
  padding: 10px 14px;
  font-size: 14px;
}




/* ================= CTA ================= */
.section.cta{
  background: #0a1628;
  color: #fff;
  text-align: center;
}

.section.cta h2{ color: #fff; }
.section.cta p{ margin: 0 0 14px; opacity: .92; }




/* ================= FOOTER ================= */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: #fff;
}

.footer-inner{
  display: flex;
  flex-direction: column;   /* pe mobil: unul sub altul */
  gap: 10px;
  align-items: center;
  text-align: center;
}

.footer-inner p{
  margin: 0;
  color: #334155;
}

.footer-inner a{
  font-weight: 800;
  color: var(--navy2);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
}





.steps{
  display:grid;
  gap:18px;
  margin-top: 18px;
}

.step{
  display:flex;
  
  gap:14px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
	 
}

.step-num{
   width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
	 margin-bottom: 10px;
}

.step h3{
  margin:0 0 6px;
  color:var(--navy2);
}
.step p{
  margin:0;
  color:#334155;
}





.price{
  font-size: 22px;
  font-weight: 900;
  margin: 10px 0;
  color: var(--mint2);
}

.pricing .card{
  text-align: center;
}





.label{ display:block; font-weight:800; margin: 12px 0 6px; }
.field{
  width:100%;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px;
  outline:none;
  font:inherit;
}
.field:focus{
  border-color: rgba(249,115,22,.95);
  box-shadow: 0 0 0 3px rgba(249,115,22,.18);
}
.form-msg{ margin: 10px 0 14px; font-weight:800; }
.form-msg.ok{ color:#166534; }
.form-msg.warn{ color:#92400e; }
.form-msg.err{ color:#b91c1c; }
.honeypot{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-note{ margin:12px 0 0; color:var(--muted); font-size:14px; }




























/* ================= DESKTOP ================= */
@media (min-width: 768px){

  /* meniu desktop */
  .hamburger,
  .close-btn{ display: none !important; }

  .nav-menu{
    position: static;
    inset: auto;
    background: transparent;
    transform: none;
    transition: none;

    min-height: auto;
    padding: 0;

    flex-direction: row;
    gap: 18px;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-menu a{
    color: var(--navy2);
    font-size: 16px;
    font-weight: 800;
    padding: 8px 10px;
    border-radius: 10px;
    position: relative;
  }

  .nav-menu a.active{
    background: transparent;
    color: var(--mint2);
  }

  /* underline */
  .nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background: var(--mint2);
    transition: width .25s ease;
    opacity: .9;
  }
  .nav-menu a:hover::after,
  .nav-menu a.active::after{
    width: 100%;
  }
	
	
	
	
	
	/* hero layout */
  .hero{
    padding: 72px 0 60px;
  }
  .hero-inner{
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
    gap: 22px;
  }
  .hero h1{ font-size: 46px; }
	
	
	
	
	/* cards 2 coloane */
	.cards,
	.steps{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
	
	
	
	
	
	
	
	
	
	
}
















@media (min-width: 1024px){
  /* cards 3 coloane */
 .cards{
    grid-template-columns: repeat(3, 1fr);
			 align-items: stretch;
  }
	.steps{
    grid-template-columns: repeat(4,1fr);
		  align-items: stretch;
  }
	.step{
    height: 100%;
		  align-self: stretch;
  }
	
	
	
	
	
}





/* ===== CONTACT – layout formular (ca la service-auto) ===== */
@media (min-width: 768px){
  #formular .cards{
    grid-template-columns: 2fr 1fr;  /* formular lat + date ingust */
    align-items: start;
  }
}

/* la 1024px suprascriem regula globala cu 3 coloane */
@media (min-width: 1024px){
  #formular .cards{
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}




































































































































