:root {
    --primary: #00d2ff;
    --secondary: #3a7bd5;
    --bg: #020617;
    --card-bg: #0f172a;
    --text: #f8fafc;
    --text-dim: #94a3b8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.logo {
    width: 380px;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.accent { color: var(--primary); }

.tagline {
    font-size: 1.2rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.status-badge {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 60px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    transition: transform 0.3s, border-color 0.3s;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-card.highlight { border-top: 4px solid var(--primary); }

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card.secondary {
    background: transparent;
    border-style: dashed;
}

.service-card.secondary h3 { color: var(--text-dim); }

.contact-box {
    background: linear-gradient(145deg, #0f172a, #020617);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #1e293b;
}

.contact-box h2 { margin-bottom: 10px; font-size: 2rem; }
.contact-box p { color: var(--text-dim); margin-bottom: 30px; }

.lead-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

input, select, button {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #334155;
    background: #1e293b;
    color: white;
    font-size: 1rem;
}

button {
    background: var(--primary);
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover { background: white; }

footer {
    margin-top: 100px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
}