@charset "utf-8";
/* CSS Document */
/* ================= RESET / BAZĂ ================= */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #0f172a;
}

img{
  max-width: 100%;
  display: block;
}

a{
  text-decoration: none;
  color: inherit;
}

ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,h2,h3,p{
  margin: 0;
}

html, body{
  overflow-x: hidden;
}

/* ================= VARIABILE ================= */
:root{
  --primary: #0f172a;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
}


/* ================= UTILITARE ================= */
.container{
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}
.section{
  padding: 56px 0;
}
.section-heading{
  text-align: center;
  margin-bottom: 32px;
}
.section-subtitle{
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-heading h2{
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-heading p{
  color: var(--muted);
}


/* ================= BUTOANE ================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: 0.3s ease;
  cursor: pointer;
	 transition:transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover{
  transform:translateY(-2px);
}
.btn-primary{
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.btn-primary:hover{
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-secondary{
  background: var(--white);
  color: var(--primary);
}
.btn-secondary:hover{
  border-color: var(--accent);
  color: var(--accent);
}


/* ================= 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 var(--line);
}
.header-wrap{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}
.logo{
  font-size:1.2rem;
  font-weight:800;
  color:var(--accent);
}
.nav-toggle{
  border:1px solid var(--line);
	 top: 16px;
	 right: 16px;
  background:#fff;
  color:var(--text);
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  font-size:1.2rem;
  transition:background .25s ease, border-color .25s ease;
}
.nav-toggle:hover{
  background:#fff;
  border-color:var(--primary);
}
.site-nav{
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%) translateY(-10px);
  width:min(260px, 92vw);
  background:rgba(255,255,255, .9);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.site-nav.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);

}
.site-nav ul{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.site-nav a{
  font-weight:600;
  display:inline-block;
  padding:6px 2px;
  position:relative;
  transition:color .25s ease;
}
.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:width .25s ease;
}
.site-nav a:hover,
.site-nav a.active{
  color:var(--primary);
}
.site-nav a:hover::after,
.site-nav a.active::after{
  width:100%;
}



/* ================= HERO ================= */
.hero{
  padding:72px 0 64px;
  background:
    linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)),
    url("../images/hero-security.jpg") center/cover no-repeat;
  color:#fff;
}
.page-hero{
  padding:100px 0 80px;
  min-height: 60vh;

  background:
    linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)),
    url("../images/page-hero.jpg") center/cover no-repeat;

  color:#fff;
  display:flex;
  align-items:center;
}
.hero-content{
  max-width: 720px;
}
.hero-subtitle,
.eyebrow{
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfdbfe;
}
.hero h1,
.page-hero h1{
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-text{
  max-width: 620px;
  color: #e2e8f0;
  margin-bottom: 24px;
}
.hero-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bullets{
  margin-top:16px;
}
.bullets li{
  margin-bottom:8px;
	 display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}
.bullets li::before{
  content:"✔";
  color:#22c55e;
  font-weight:bold;
  margin-right:8px;
	 width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:12px;
}




/* ================= SECȚIUNI GENERALE ================= */
.services-preview{
  background: var(--bg);
}
.about-preview{
  background: var(--white);
}



/* ================= CARDURI SERVICII ================= */
.cards,
.services-grid,
.features-grid{
  display: grid;
  gap: 20px;
	 text-align: center;
}
.card,
.service-card,
.feature-card{
	 text-align:center;
  position:relative;
  overflow:hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover,
.service-card:hover,
.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
	 border-color:var(--accent);
}
.card:hover .card-icon,
.service-card:hover .service-icon{
  transform: scale(1.15);
	 background: var(--accent-dark); /* puțin mai intens */
	 transition:transform .6s ease;
}
.card-icon,
.service-icon{
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 16px;
  background: #dbeafe;
	 align-items: center;
}
.card h3,
.service-card h3,
.feature-card h3{
  font-size: 22px;
  margin-bottom: 10px;
}
.card p,
.service-card p,
.feature-card p{
 color: var(--muted);
	font-size: 16px;
}

/* ================= FEATURES / AVANTAJE ================= */
.features{
  display: grid;
  gap: 20px;
	 text-align: center;
}
.feature{
	 text-align:center;
  position:relative;
  overflow:hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 20px;
	 transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
	 border-color:var(--accent);
}
.feature-card:hover .feature-icon{
  transform: scale(1.15);
	 background: #dbeafe; /* puțin mai intens */
	 transition:transform .6s ease;
}
.card::before,
.feature::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 35%,
    transparent 70%
  );
  transform:translateX(-120%);
  transition:transform .6s ease;
}
.card:hover::before,
.feature:hover::before{
  transform:translateX(120%);
}
.feature-icon{
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  background: var(--accent);
  color: var(--dark);
}
.feature h3{
  font-size: 21px;
  margin-bottom: 10px;
}
.feature p{
  color: var(--muted);
}



/* ================= CTA ================= */
.cta{
  background: var(--bg);
}
.cta-box{
  background: var(--primary);
  color: var(--white);
  border-radius: 24px;
  padding: 32px 22px;
  text-align: center;
}

.cta-box h2{
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-box p{
  max-width: 700px;
  margin: 0 auto 22px;
  color: #cbd5e1;
}

/* ================= FOOTER ================= */
.site-footer{
  padding: 22px 0;
  background: #020617;
  color: #cbd5e1;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}


/* =================-despre.html-================= */
.about-text{
  max-width: 620px;
  color: #111;
  margin-bottom: 24px;
}
.about-grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.about-text h2{
  margin-bottom:16px;
}
.about-text p{
  margin-bottom:14px;
}
.about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 16px 40px rgba(15,23,42,0.10);
  object-fit:cover;
}


.values-grid{
  display:grid;
  gap:20px;
}
.value-card{
  text-align:center;
  position:relative;
  overflow:hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
	 border-color:var(--accent);
}
.value-icon{
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 16px;
  background: #dbeafe;
	 align-items: center;
}
.value-card:hover .value-icon{
  transform: scale(1.15);
	 background: var(--accent-dark); /* puțin mai intens */
	 transition:transform .6s ease;
}
.value-card h3{
  font-size: 21px;
  margin-bottom: 10px;
}
.value-card p{
  color: var(--muted);
}



.contact-grid{
  display:grid;
  gap:28px;
}
.contact-info h2{
  margin-bottom:14px;
}
.contact-info > p{
  margin-bottom:18px;
}
.contact-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:18px 16px;
  margin-bottom:16px;
  box-shadow:0 10px 24px rgba(15,23,42,0.05);
}
.contact-card h3{
  margin-bottom:8px;
}
.contact-form-wrap{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:24px 20px;
  box-shadow:0 10px 30px rgba(15,23,42,0.06);
}
.contact-form{
  display:grid;
  gap:16px;
}
.form-row{
  display:grid;
  gap:8px;
}
.form-row label{
  font-weight:700;
  color:#0f172a;
}
.form-row input,
.form-row textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #cbd5e1;
  border-radius:12px;
  font:inherit;
  background:#fff;
}
.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:#38bdf8;
  box-shadow:0 0 0 3px rgba(56,189,248,0.15);
}

















/* ================= MEDIA QUERY 768px ================= */
@media (min-width: 768px){
.nav-toggle{
    display:none;
  }
.site-nav{
    position:static;
    transform:none;
    width:auto;
    background:transparent;
    border:0;
    box-shadow:none;
    padding:0;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
.site-nav ul{
    flex-direction:row;
    gap:24px;
  }
  .section{
    padding: 72px 0;
  }
.hero{
    padding: 96px 0 84px;
   display: flex;
    align-items: center;
  }
.hero h1{
    font-size: 48px;
  }

  .hero-actions{
    flex-direction: row;
    flex-wrap: wrap;
  }
.cards,
  .features{
    grid-template-columns: repeat(2, 1fr);
  }
 .cta-box{
    padding: 48px 32px;
  }

	
	.services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
.features-grid{
    grid-template-columns: repeat(2, 1fr);
  }
	
.values-grid{
    grid-template-columns:repeat(2, 1fr);
  }
	

.about-grid{
    grid-template-columns:1.2fr 0.8fr;
    align-items:center;
  }
	
	
.contact-grid{
    grid-template-columns: 0.95fr 1.05fr;
    align-items:start;
  }
	
	
	
}





/* ================= MEDIA QUERY 1024px ================= */
@media (min-width: 1024px){
 .hero{
    min-height: 65vh;
    display: flex;
    align-items: center;
  }
.hero h1{
    font-size: 58px;
    max-width: 760px;
  }
.hero-text{
    font-size: 18px;
  }
  .cards{
    grid-template-columns: repeat(3, 1fr);
  }
  .features{
    grid-template-columns: repeat(3, 1fr);
  }
  .section-heading h2{
    font-size: 38px;
  }
  .cta-box h2{
    font-size: 38px;
  }
	
.services-grid{
    grid-template-columns: repeat(3, 1fr);
  }
.features-grid{
    grid-template-columns: repeat(3, 1fr);
  }
.service-card,
.feature-card{
  padding: 28px 24px;
}
	
	
.about-grid{
    grid-template-columns:1.05fr 0.95fr;
    gap:40px;
  }
	
.values-grid{
    grid-template-columns:repeat(3, 1fr);
  }
.value-card{
    padding:28px 24px;
  }	
	
	
 .contact-form-wrap{
    padding:28px 24px;
  }

  .contact-card{
    padding:20px 18px;
  }
	
	
}








.form-message{
  margin-bottom:16px;
  padding:14px 16px;
  border-radius:12px;
  font-weight:600;
}

.form-message.success{
  background:#dcfce7;
  color:#166534;
  border:1px solid #86efac;
}

.form-message.error{
  background:#fee2e2;
  color:#991b1b;
  border:1px solid #fca5a5;
}

.hp-field{
  position:absolute;
  left:-9999px;
}







