:root{
  --primary:#0B1220;
  --secondary:#2563EB;
  --accent:#22C55E;
  --bg:#F8FAFC;
  --text:#111827;
  --neutral:#94A3B8;
  --white:#ffffff;
}

*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family: "Inter", Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:var(--secondary);text-decoration:none;}
.container{width:90%;max-width:1200px;margin:0 auto;}
header{
  background:var(--white);
  border-bottom:1px solid #e5e7eb;
  position:sticky;top:0;z-index:50;
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 0;
}
.logo img{height:50px;width:auto;}
nav ul{display:flex;gap:24px;list-style:none;}
nav a{color:var(--text);font-weight:600;}
nav a:hover{color:var(--secondary);}
.cta-button{
  background:var(--secondary);
  color:var(--white);
  padding:12px 20px;border-radius:6px;font-weight:700;
  display:inline-block;
}
.cta-button.secondary{
  background:var(--accent);
  color:var(--primary);
}
.hero{
  padding:70px 0 50px 0;
  background:linear-gradient(120deg,#ffffff 0%,#eef2ff 100%);
}
.hero-grid{
  display:grid;gap:40px;grid-template-columns:1.2fr 0.8fr;align-items:center;
}
.hero h1{font-size:40px;line-height:1.2;color:var(--primary);margin-bottom:16px;}
.hero p{font-size:18px;margin-bottom:24px;color:var(--text);}
.kpi-bar{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:25px;
}
.kpi{
  background:var(--white);border:1px solid #e5e7eb;border-radius:8px;
  padding:18px;text-align:center;
}
.kpi span{display:block;font-size:28px;font-weight:800;color:var(--primary);}
.section{padding:60px 0;}
.section-title{font-size:30px;margin-bottom:16px;color:var(--primary);}
.section-sub{color:var(--neutral);margin-bottom:24px;max-width:800px;}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:center;}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.card{
  background:var(--white);border:1px solid #e5e7eb;border-radius:10px;
  padding:22px;
}
.card h3{margin-bottom:10px;color:var(--primary);}
.list{list-style:disc;margin-left:20px;color:var(--text);}
.badge{display:inline-block;background:var(--accent);color:var(--primary);padding:6px 10px;border-radius:50px;font-weight:700;font-size:12px;}
.faq-item{margin-bottom:16px;padding:16px;background:var(--white);border:1px solid #e5e7eb;border-radius:8px;}
.faq-item h4{margin-bottom:8px;color:var(--primary);}
form{
  background:var(--white);padding:24px;border-radius:10px;border:1px solid #e5e7eb;
}
input, textarea, select{
  width:100%;padding:12px;margin-bottom:12px;border:1px solid #cbd5e1;border-radius:6px;
  font-size:16px;
}
button{
  border:none;cursor:pointer;
}
footer{
  background:var(--primary);color:#e2e8f0;padding:40px 0;
}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:24px;
}
footer a{color:#e2e8f0;}
.footer-logo img{height:100px;}
.footer-bottom{
  border-top:1px solid #1f2937;margin-top:24px;padding-top:16px;font-size:14px;color:#cbd5e1;
}
.cookie-banner{
  position:fixed;bottom:20px;left:20px;right:20px;
  background:var(--white);border:1px solid #e5e7eb;border-radius:10px;
  padding:16px;display:none;z-index:100;
}
.cookie-banner p{font-size:14px;margin-bottom:10px;color:var(--text);}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap;}
.cookie-actions button{padding:10px 16px;border-radius:6px;font-weight:600;}
.btn-accept{background:var(--secondary);color:var(--white);}
.btn-decline{background:var(--neutral);color:var(--white);}
.contact-info{
  background:var(--white);padding:20px;border-radius:10px;border:1px solid #e5e7eb;
}
.image-card{
  border-radius:12px;overflow:hidden;border:1px solid #e5e7eb;background:var(--white);
}
.image-card img{width:100%;height:auto;}
/* Mobile Menu */
.menu-toggle{display:none;}
.burger{
  display:none;width:32px;height:32px;border:1px solid #e5e7eb;border-radius:6px;
  align-items:center;justify-content:center;cursor:pointer;
}
.burger span{width:18px;height:2px;background:var(--text);display:block;position:relative;}
.burger span:before,.burger span:after{
  content:"";width:18px;height:2px;background:var(--text);position:absolute;left:0;
}
.burger span:before{top:-6px;}
.burger span:after{top:6px;}
.mobile-menu{
  position:fixed;top:0;left:0;width:100%;height:100%;background:var(--primary);
  color:var(--white);display:none;flex-direction:column;align-items:center;justify-content:center;
  z-index:90;
}
.mobile-menu a{color:var(--white);font-size:22px;margin:10px 0;}
.close-menu{
  position:absolute;top:20px;right:20px;border:2px solid var(--white);width:36px;height:36px;
  border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:20px;
  color:var(--white);
}

.menu-toggle:checked ~ .mobile-menu{display:flex;}

@media(max-width:900px){
  nav ul{display:none;}
  .burger{display:flex;}
  .hero-grid, .grid-2{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr;}
  .kpi-bar{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
}

@media(max-width:600px){
  .hero h1{font-size:30px;}
  .section-title{font-size:24px;}
}