@charset "utf-8";
/* CSS Document */
:root{
  --bg:#f8fafc;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#dbe4ee;
  --brand:#16a34a;
  --brand-dark:#15803d;
  --brand-soft:#dcfce7;
  --accent:#0ea5e9;
  --navy:#0b1220;
  --shadow:0 18px 40px rgba(15, 23, 42, 0.08);
  --radius:22px;
  --container:min(1120px, calc(100% - 32px));
}

/* RESET */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Open Sans", sans-serif;
  font-size:16px;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

ul{
  margin:0;
  padding:0;
  list-style:none;
}

h1,h2,h3,h4,p{
  margin:0;
}


/* UTILITARE */
.container{
  width:var(--container);
  margin-inline:auto;
}
.section{
  padding:72px 0;
}
.section-alt{
  background:#f1f5f9;
}
.section-subtitle{
  display:inline-block;
  margin-bottom:12px;
  font-size:0.92rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--brand-dark);
}
.section-title{
  font-size:clamp(2rem, 5vw, 2.8rem);
  line-height:1.15;
  margin-bottom:16px;
}
.section-intro{
  max-width:680px;
  color:var(--muted);
}
.section-heading{
  text-align:center;
  margin-bottom:40px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover{
  transform:translateY(-2px);
}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow:0 14px 28px rgba(14, 165, 233, 0.18);
}
.btn-primary:hover{
  box-shadow:0 18px 32px rgba(14, 165, 233, 0.24);
}
.btn-secondary{
  color:var(--text);
  background:#fff;
  border:1px solid var(--line);
}

.btn-secondary:hover{
  background:#f8fafc;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(219, 228, 238, 0.75);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:74px;
  gap:16px;
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:var(--text);
}
.logo-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow:0 10px 24px rgba(22, 163, 74, 0.2);
}
.logo-text{
  font-size:1.1rem;
  letter-spacing:0.01em;
}
.logo-script{
  font-family:"Festive", cursive;
  font-size:1.7rem;
  font-weight:400;
  margin-right:2px;
  color:var(--brand-dark);
}

/* NAV */
.site-nav{
  position:relative;
}
.hamburger{
  width:46px;
  height:46px;
  padding:0;
  border:none;
  border-radius:12px;
  background:#f1f5f9;
  display:inline-flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
}
.hamburger span{
  width:22px;
  height:2.5px;
  border-radius:999px;
  background:var(--text);
  transition:0.3s ease;
}
.nav-menu{
  position:fixed;
  inset:74px 0 auto 0;
  background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  border-bottom:1px solid var(--line);
  padding:20px 16px 24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transform:translateY(-120%);
  opacity:0;
  pointer-events:none;
  transition:transform 0.35s ease, opacity 0.35s ease;
}
.site-nav.is-open .nav-menu{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}
.nav-menu a{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
}
.nav-menu a:hover,
.nav-menu a.active{
  background:var(--brand-soft);
  color:var(--brand-dark);
}
.nav-menu .nav-cta{
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  text-align:center;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:84px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(14,165,233,0.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(22,163,74,0.14), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef6f1 100%);
}
.hero-grid{
  display:grid;
  gap:28px;
}
.hero-content,
.hero-card{
  background:rgba(255,255,255,0.8);
  border:1px solid rgba(219, 228, 238, 0.9);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:28px 22px;
}
.hero h1{
  font-size:clamp(2.2rem, 6vw, 4.2rem);
  line-height:1.08;
  max-width:12ch;
  margin-bottom:18px;
}
.hero-text{
  max-width:60ch;
  color:var(--muted);
  font-size:1.02rem;
}
.hero-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:26px;
}
.hero-benefits{
  margin-top:26px;
  display:grid;
  gap:12px;
}
.hero-benefits li{
  position:relative;
  padding-left:30px;
  color:var(--text);
  font-weight:600;
}
.hero-benefits li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--brand-soft);
  color:var(--brand-dark);
  font-size:0.8rem;
}
.hero-card h2{
  font-size:1.5rem;
  line-height:1.2;
  margin:14px 0 14px;
}
.hero-card p{
  color:var(--muted);
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:#ecfeff;
  color:#0369a1;
  font-size:0.92rem;
  font-weight:700;
}
.hero-stats{
  display:grid;
  gap:14px;
  margin-top:22px;
}
.stat-box{
  padding:18px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid var(--line);
}
.stat-box strong{
  display:block;
  font-size:1.15rem;
  margin-bottom:4px;
}
.stat-box span{
  color:var(--muted);
  font-size:0.95rem;
}


/* FEATURES */
.features-grid,
.services-grid{
  display:grid;
  gap:20px;
}
.feature-card,
.service-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px 22px;
  box-shadow:var(--shadow);
  transition:transform 0.28s ease, box-shadow 0.28s ease;
  overflow:hidden;
}
.feature-card::before,
.service-card::before{
  content:"";
  position:absolute;
  inset:-40% auto auto -120%;
  width:60%;
  height:180%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform:rotate(15deg);
  transition:transform 0.7s ease;
}
.feature-card:hover,
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 42px rgba(15, 23, 42, 0.12);
}
.feature-card:hover::before,
.service-card:hover::before{
  transform:translateX(320%) rotate(15deg);
}

.feature-icon{
  width:62px;
  height:62px;
  margin-bottom:18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:1.6rem;
  background:linear-gradient(135deg, #ecfeff, #dcfce7);
  border:1px solid #d7f0ea;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.7);
}
.feature-card h3,
.service-card h3{
  font-size:1.25rem;
  margin-bottom:10px;
}
.feature-card p,
.service-card p{
  color:var(--muted);
}


/* ABOUT PREVIEW */
.about-grid{
  display:grid;
  gap:24px;
}
.about-content p{
  color:var(--muted);
  margin-bottom:16px;
  max-width:62ch;
}
.about-content .btn{
  margin-top:10px;
}
.about-boxes{
  display:grid;
  gap:16px;
}
.info-box{
  padding:22px 20px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
}
.info-box strong{
  display:block;
  font-size:1.1rem;
  margin-bottom:6px;
}
.info-box span{
  color:var(--muted);
}


/* CTA */
.cta-box{
  text-align:center;
  padding:34px 22px;
  background:linear-gradient(135deg, #0f172a, #0b3b2e);
  color:#fff;
  border-radius:30px;
  box-shadow:0 24px 50px rgba(15, 23, 42, 0.18);
}
.cta-box .section-subtitle{
  color:#86efac;
}
.cta-box h2{
  font-size:clamp(1.9rem, 5vw, 3rem);
  line-height:1.15;
  margin-bottom:14px;
}
.cta-box p{
  max-width:700px;
  margin:0 auto 22px;
  color:rgba(255,255,255,0.86);
}


/* ACTION */
.section-action{
  margin-top:30px;
  text-align:center;
}


/* FOOTER */
.site-footer{
  padding:28px 0;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  gap:12px;
  text-align:center;
}
.footer-inner p{
  color:var(--muted);
}
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.footer-nav a{
  color:var(--muted);
  font-weight:600;
}
.footer-nav a:hover{
  color:var(--brand-dark);
}


/*-servicii.html- PAGE HERO */
.page-hero{
  padding:84px 0 72px;
  background:
    linear-gradient(rgba(11,18,32,0.72), rgba(11,18,32,0.72)),
    linear-gradient(135deg, rgba(22,163,74,0.18), rgba(14,165,233,0.18));
  color:#fff;
  text-align:center;
}
.page-hero h1{
  max-width:900px;
  margin:0 auto 18px;
  font-size:clamp(2.2rem, 6vw, 4rem);
  line-height:1.1;
}
.page-hero .section-subtitle{
  color:#86efac;
}
.page-hero-text{
  max-width:760px;
  margin:0 auto;
  color:rgba(255,255,255,0.86);
  font-size:1.04rem;
}

/* -servicii.html-SERVICES PAGE */
.services-page-grid{
  grid-template-columns:1fr;
}


/* -servicii.html-PROCESS */
.process-grid{
  display:grid;
  gap:20px;
}
.process-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px 22px;
  box-shadow:var(--shadow);
}
.process-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  margin-bottom:16px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  font-weight:800;
  font-size:1rem;
}
.process-card h3{
  margin-bottom:10px;
  font-size:1.2rem;
}
.process-card p{
  color:var(--muted);
}


/* -servicii.html-BENEFITS */
.benefits-grid{
  display:grid;
  gap:24px;
}
.benefits-content p{
  color:var(--muted);
  margin-bottom:18px;
  max-width:62ch;
}
.check-list{
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:30px;
  font-weight:600;
  color:var(--text);
}
.check-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--brand-soft);
  color:var(--brand-dark);
  font-size:0.8rem;
}
.benefits-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px 22px;
  box-shadow:var(--shadow);
}
.benefits-box h3{
  margin-bottom:18px;
  font-size:1.3rem;
}
.mini-info-list{
  display:grid;
  gap:14px;
}
.mini-info{
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.mini-info:last-child{
  border-bottom:none;
  padding-bottom:0;
}
.mini-info strong{
  display:block;
  margin-bottom:4px;
  font-size:1rem;
}
.mini-info span{
  color:var(--muted);
}



/* -despre.html-ABOUT PAGE */
.about-page-grid{
  display:grid;
  gap:24px;
}
.about-page-content p{
  color:var(--muted);
  margin-bottom:16px;
  max-width:64ch;
}
.about-page-box{
  display:grid;
  gap:16px;
}
.about-highlight{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px 22px;
  box-shadow:var(--shadow);
}
.about-highlight strong{
  display:block;
  margin-bottom:10px;
  font-size:1.1rem;
}
.about-highlight p{
  color:var(--muted);
}


/* VALUES */
.values-grid{
  display:grid;
  gap:20px;
}
.value-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px 22px;
  box-shadow:var(--shadow);
  transition:transform 0.28s ease, box-shadow 0.28s ease;
  overflow:hidden;
}
.value-card::before{
  content:"";
  position:absolute;
  inset:-40% auto auto -120%;
  width:60%;
  height:180%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform:rotate(15deg);
  transition:transform 0.7s ease;
}
.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 42px rgba(15, 23, 42, 0.12);
}
.value-card:hover::before{
  transform:translateX(320%) rotate(15deg);
}
.value-card h3{
  margin-bottom:10px;
  font-size:1.22rem;
}
.value-card p{
  color:var(--muted);
}


/* WHY */
.why-grid{
  display:grid;
  gap:24px;
}
.why-content p{
  color:var(--muted);
  margin-bottom:18px;
  max-width:62ch;
}
.why-boxes{
  display:grid;
  gap:16px;
}
.why-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px 20px;
  box-shadow:var(--shadow);
}
.why-box strong{
  display:block;
  margin-bottom:6px;
  font-size:1.05rem;
}
.why-box span{
  color:var(--muted);
}


/* -contact.php-CONTACT */
.contact-success-wrap{
  padding:24px 0 0;
}
.form-success{
  padding:16px 18px;
  border:1px solid #bbf7d0;
  border-radius:18px;
  background:#dcfce7;
  color:#166534;
  font-weight:700;
  box-shadow:var(--shadow);
}
.contact-grid{
  display:grid;
  gap:24px;
}
.contact-info p{
  color:var(--muted);
  margin-bottom:20px;
  max-width:60ch;
}
.contact-cards{
  display:grid;
  gap:16px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:var(--shadow);
}
.contact-card strong{
  display:block;
  margin-bottom:6px;
  font-size:1.02rem;
}
.contact-card span{
  color:var(--muted);
}
.contact-form-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px 20px;
  box-shadow:var(--shadow);
}
.contact-form{
  display:grid;
  gap:16px;
}
.form-row{
  display:grid;
  gap:8px;
}
.form-row label{
  font-weight:700;
  font-size:0.96rem;
}
.form-row input,
.form-row textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  font:inherit;
  color:var(--text);
  transition:border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:rgba(14,165,233,0.65);
  box-shadow:0 0 0 4px rgba(14,165,233,0.12);
}
.form-row textarea{
  min-height:140px;
  resize:vertical;
}
.hp-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}

















/* TABLET */
@media (min-width:768px){
  .section{
    padding:88px 0;
  }
 .hero{
    padding:100px 0 88px;
  }
 .hero-content,
  .hero-card{
    padding:34px 30px;
  }
 .hero-actions{
    flex-direction:row;
    flex-wrap:wrap;
  }
.features-grid,
  .services-grid,
  .about-boxes{
    grid-template-columns:repeat(2, 1fr);
  }
	
.footer-inner{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    text-align:left;
  }
	
	/*---servicii.html---*/
.process-grid{
    grid-template-columns:repeat(2, 1fr);
  }
	
	
/*---despre.html---*/
.values-grid{
    grid-template-columns:repeat(2, 1fr);
  }

	
.contact-form-box{
    padding:28px 24px;
  }
	
	
	
}














/* DESKTOP */
@media (min-width:1024px){
  .hamburger{
    display:none;
  }
 .nav-menu{
    position:static;
    inset:auto;
    transform:none;
    opacity:1;
    pointer-events:auto;
    background:transparent;
    border:none;
    padding:0;
    flex-direction:row;
    align-items:center;
    gap:8px;
  }
.nav-menu a{
    position:relative;
    padding:10px 12px;
    background:transparent !important;
    color:var(--text);
  }
 .nav-menu a::after{
    content:"";
    position:absolute;
    left:12px;
    bottom:4px;
    width:0;
    height:2px;
    border-radius:999px;
    background:linear-gradient(135deg, var(--brand), var(--accent));
    transition:width 0.28s ease;
  }
	.nav-menu a:hover::after,
  .nav-menu a.active::after{
    width:calc(100% - 24px);
  }
.nav-menu a.active{
    color:var(--brand-dark);
  }
 .nav-menu .nav-cta{
    margin-left:6px;
    padding:11px 18px;
    color:#fff;
    border-radius:999px;
    background:linear-gradient(135deg, var(--brand), var(--accent)) !important;
  }
.nav-menu .nav-cta::after{
    display:none;
  }

 .hero-grid{
    grid-template-columns:1.15fr 0.85fr;
    align-items:center;
  }
	
.features-grid{
    grid-template-columns:repeat(3, 1fr);
  }
 .services-grid{
    grid-template-columns:repeat(3, 1fr);
  }
	
.about-grid{
    grid-template-columns:1.05fr 0.95fr;
    align-items:center;
  }
.about-boxes{
    grid-template-columns:1fr;
  }
	
/*---servicii.html---*/	
 .page-hero{
    padding:110px 0 96px;
  }
.services-page-grid,
.process-grid{
    grid-template-columns:repeat(3, 1fr);
  }
	.benefits-grid{
    grid-template-columns:1.08fr 0.92fr;
    align-items:start;
  }
	
	
	
/*---despre.html---*/
.values-grid{
    grid-template-columns:repeat(3, 1fr);
  }
.about-page-grid{
    grid-template-columns:1.08fr 0.92fr;
    align-items:center;
  }
 .why-grid{
    grid-template-columns:1.05fr 0.95fr;
    align-items:start;
  }
	
/*---contact.php---*/	
.contact-grid{
    grid-template-columns:0.95fr 1.05fr;
    align-items:start;
  }
	
	
}














/* LARGE DESKTOP */
@media (min-width:1280px){
  .hero-content,
  .hero-card{
    padding:40px 36px;
  }
.hero h1{
    max-width:10ch;
  }
	
	
	
	
}








































































































































































































