:root {
    --bg-dark: #0f111a;
    --acc-blue: #00e5ff;
    --acc-yellow: #ffeb3b;
    --text-lit: #e0e6ed;
    --head: 'Jura', sans-serif;
    --body: 'Exo 2', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg-dark); color: var(--text-lit); font-family: var(--body); }

.text-center { text-align: center; }

.nav-tech { padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(15,17,26,0.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(0,229,255,0.2); }
.logo { font-family: var(--head); font-size: 2.2rem; font-weight: 700; color: var(--acc-blue); text-shadow: 0 0 10px rgba(0,229,255,0.5); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-lit); text-decoration: none; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--acc-yellow); }

.btn { display: inline-block; padding: 0.8rem 2rem; background: var(--acc-blue); color: var(--bg-dark) !important; font-family: var(--head); font-weight: 700; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: 0.3s; box-shadow: 0 0 15px rgba(0,229,255,0.4); border: none; cursor: pointer; }
.btn:hover { background: var(--acc-yellow); box-shadow: 0 0 15px rgba(255,235,59,0.4); }

.hero-tech { height: 85vh; background: linear-gradient(rgba(15,17,26,0.7), rgba(0,229,255,0.1)), url('assets/images/hero.jpg') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 5%; }
.hero-content h1 { font-family: var(--head); font-size: 5rem; color: #fff; text-shadow: 0 0 20px rgba(0,229,255,0.8); margin-bottom: 1rem; }
.hero-content p { font-size: 1.4rem; max-width: 700px; margin: 0 auto; color: #ccc; }

.banner-stat { display: flex; justify-content: space-around; flex-wrap: wrap; padding: 3rem 5%; background: linear-gradient(90deg, #161a29, #0f111a); border-bottom: 1px solid rgba(255,235,59,0.2); }
.stat h3 { font-family: var(--head); color: #888; font-size: 1.2rem; }
.stat h2 { font-family: var(--head); font-size: 3.5rem; color: var(--acc-yellow); margin: 0.5rem 0; text-shadow: 0 0 10px rgba(255,235,59,0.3); }

.solutions { padding: 8rem 5%; }
.title { font-family: var(--head); font-size: 3rem; margin-bottom: 4rem; color: var(--acc-blue); letter-spacing: 2px; }
.s-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.s-card { background: #161a29; border: 1px solid rgba(0,229,255,0.1); border-radius: 10px; overflow: hidden; transition: 0.4s; }
.s-card:hover { transform: translateY(-10px); border-color: var(--acc-blue); box-shadow: 0 10px 30px rgba(0,229,255,0.2); }
.s-card img { width: 100%; height: 250px; object-fit: cover; filter: brightness(0.8) sepia(1) hue-rotate(180deg) saturate(3); }
.s-card:hover img { filter: none; }
.s-pad { padding: 2rem; }
.s-pad h3 { font-family: var(--head); font-size: 1.8rem; margin-bottom: 1rem; color: var(--acc-yellow); }

.tech-panel { padding: 8rem 5%; display: flex; align-items: center; gap: 4rem; background: #080a10; }
.t-text { flex: 1; }
.t-text h2 { font-family: var(--head); font-size: 3rem; color: var(--acc-blue); margin-bottom: 2rem; }
.t-img { flex: 1; position: relative; border-radius: 10px; overflow: hidden; }
.t-img img { width: 100%; height: 500px; object-fit: cover; display: block; filter: contrast(1.2); }
.t-scan { position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--acc-blue); box-shadow: 0 0 20px var(--acc-blue); animation: scan 3s infinite linear; }
@keyframes scan { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

.contact { padding: 8rem 5%; max-width: 600px; margin: 0 auto; }
form { display: flex; flex-direction: column; gap: 1.5rem; }
input { padding: 1.5rem; background: #161a29; border: 1px solid rgba(0,229,255,0.3); color: white; font-family: var(--body); font-size: 1.1rem; outline: none; transition: 0.3s; border-radius: 5px; }
input:focus { border-color: var(--acc-yellow); box-shadow: 0 0 15px rgba(255,235,59,0.2); }

.footer { padding: 6rem 5%; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,229,255,0.2); background: #0a0b12; }
.footer h2 { font-family: var(--head); font-size: 2rem; color: var(--acc-blue); margin-bottom: 0.5rem; }
.f-links a { display: block; color: var(--text-lit); text-decoration: none; text-align: right; margin-bottom: 0.5rem; }
.f-links a:hover { color: var(--acc-yellow); }

.cookie-banner { position: fixed; bottom: 0; width: 100%; padding: 15px 5%; background: var(--acc-blue); color: #000; display: flex; justify-content: space-between; align-items: center; z-index: 1000; font-weight: bold; }
.cookie-banner a { color: #000; text-decoration: underline; }
.cookie-banner button { background: #000; color: var(--acc-blue); border: none; padding: 10px 20px; font-family: var(--head); font-weight: 700; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) { .tech-panel { flex-direction: column; } .nav-links { display: none; } }
