@charset "utf-8";
/* CSS Document */
/* RESET */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family: Arial, sans-serif; color:#111; background:#fff; }
a{ color:inherit; text-decoration:none; }


.container{
  width:min(1200px,100%);
  margin:0 auto;
  padding:0 16px;
}
/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
}
.logo{ font-weight:900; letter-spacing:.2px; }
.logo span{ color:#0ea5e9; }
.nav-btn{
  background:#fff;
  border:1px solid rgba(0,0,0,.2);
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
}
.menu{
  list-style:none;
  margin:10px 0 0;
  padding:0;
  display:none;
  gap:10px;
}
.menu a{
  display:inline-block;
  padding:10px 12px;
  border-radius:10px;
}
.menu a.active{ font-weight:900; }
.menu-cta{ background: rgba(14,165,233,.12); }
/* HERO */
.hero{
  background: linear-gradient(135deg,#002266,#ffff00);
  color:#fff;
  padding:56px 0 46px;
}
.hero-inner{ display:grid; gap:16px; }
.pill{
  display:inline-block;
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  padding:6px 10px;
  border-radius:999px;
  margin:0 0 12px;
}
.hero h1{ margin:0 0 10px; font-size:34px; line-height:1.12; }
.lead{ margin:0 0 16px; opacity:.95; }
.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; }
.bullets{ padding-left:18px; margin:16px 0 0;list-style-type: none; }

/* HERO CARD */
.hero-card{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  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;
}
.mini{ margin:0; font-size:13px; opacity:.95; }

/* SECTIUNI */
.section{ padding:46px 0; }
.section.alt{ background:#f7f8fb; }
.section.cta{ background:#111; color:#fff; text-align:center; }
h2{ margin:0 0 16px; font-size:26px; }
.grid-3{ display:grid; gap:14px; }
.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}
.card p{ margin:0; color:#333; line-height:1.55; }

/* BUTOANE */
.btn{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
}
.btn-ghost{
  background:transparent;
  border:2px solid #fff;
}
.btn-small{ padding:10px 14px; font-size:14px; }


/* FOOTER */
.site-footer{
  border-top:1px solid rgba(0,0,0,.08);
  padding:18px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
}







/* CONTACT */
.contact-wrap{
  display: grid;
  gap: 14px;
}

.contact-form{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.form-row{
  display:grid;
  gap:8px;
  margin-bottom:12px;
}

.form-row label{
  font-weight:800;
  font-size:14px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:12px;
  font-size:15px;
  outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#0ea5e9;
  box-shadow: 0 0 0 4px rgba(14,165,233,.18);
}

.form-msg{
  display:none;
  margin:12px 0 0;
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
}

.form-msg.ok{
  display:block;
  background: rgba(46, 204, 113, .14);
  border: 1px solid rgba(46, 204, 113, .35);
  color: #1f7a3d;
}

.form-msg.err{
  display:block;
  background: rgba(231, 76, 60, .14);
  border: 1px solid rgba(231, 76, 60, .35);
  color: #a1261b;
}

/* honeypot */
.hp{ display:none !important; }

/* contact info card */
.contact-info h3{ margin-top:0; }































/* DESKTOP */
@media (min-width:768px){
	.menu{ display:flex; margin:0; }
	.nav-btn{ display:none; }
	.hero-inner{ grid-template-columns:1.2fr .8fr; gap:22px; }
	.hero h1{ font-size:46px; }
	.grid-3{ grid-template-columns:repeat(3,1fr); }
	
	
	
	
	.contact-wrap{
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
    gap: 18px;
  }
	
	
}


















































