@charset "utf-8";
/* CSS Document */
/* 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;
}


/* 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: #0f2a4a;
  --navy2:#0b1f3a;

  /* verde natural (nutriție) */
  --mint: #22c55e;
  --mint2:#16a34a;

  --bg: #ffffff;
  --alt: #f6f8fb;
  --line: rgba(0,0,0,.08);
  --text: #0f172a;
  --muted:#475569;
}


/* ================= 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: 18px;

  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; }





/* ================= 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{
  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: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);
}



.hero-inner .hero-list li{
	color: #fff;
}
.hero-list li{
	color: #111;
}





/* ===== Form UI (reutilizabil) ===== */
.label{ display:block; font-weight:800; margin: 12px 0 6px; }
.field{
  width:100%; padding:12px; border-radius:12px; border:1px solid var(--line);
  background:#fff; color: var(--text); outline:none;
}
.field:focus{
  border-color: rgba(22,163,74,.55);
  box-shadow: 0 0 0 4px rgba(22,163,74,.18);
}
textarea.field{ resize: vertical; min-height: 140px; }

.form-note{ margin: 12px 0 0; color: var(--muted); font-size: 14px; }

.honeypot{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.privacy-link{ color: var(--navy2); font-weight:800; text-decoration: underline; }
.privacy-link:hover{ color: var(--mint2); }

.form-msg{ margin: 0 0 14px; font-weight: 900; }
.form-msg.ok{ color: #065f46; }
.form-msg.warn{ color: #7c2d12; }
.form-msg.err{ color: #7f1d1d; }



























/* ================= 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{
    grid-template-columns: repeat(2, 1fr);
  }

  /* footer desktop */
  .footer-inner{
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
	
	
	
	
	
	
}




















@media (min-width: 1024px){
  /* cards 3 coloane */
  .cards{
    grid-template-columns: repeat(3, 1fr);
  }
}
























































































