:root {
    --primary-blue: #3b82f6;
    --primary-orange: #f97316;
    --bg-dark: #020617;
    --glass: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --accent-glow: rgba(59, 130, 246, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.mono {
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Background Elements */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(100px);
    top: -200px;
    right: -100px;
    z-index: -2;
    animation: float 25s infinite alternate;
}

.blob-2 {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    top: auto;
    right: auto;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 100px) scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.text-orange { color: var(--primary-orange); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-main); }

.btn-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    padding: 14rem 0 10rem;
    text-align: center;
}

.badge-container { margin-bottom: 2rem; }
.badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--primary-blue);
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.gradient-text {
    background: linear-gradient(to right, #60a5fa, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.btn-main {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.1); }
.btn-outline:hover { background: var(--glass-border); }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-val { font-size: 2rem; font-weight: 800; color: var(--primary-blue); }
.stat-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--text-dim); }

/* Services */
.services { padding: 10rem 0; background: rgba(0,0,0,0.2); }
.section-header { margin-bottom: 5rem; text-align: center; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    background: rgba(15, 23, 42, 0.8);
}

.card i {
    color: var(--primary-orange);
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
}

.card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.card p { color: var(--text-dim); font-size: 1rem; }

/* Contact Section */
.contact { padding: 10rem 0; }
.glass-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.form-info { padding: 4rem; background: rgba(59, 130, 246, 0.03); }
.form-info h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.form-info p { color: var(--text-dim); margin-bottom: 3rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.detail { display: flex; align-items: center; gap: 1rem; color: var(--text-main); }
.detail i { color: var(--primary-blue); width: 20px; }

.glass-form { padding: 4rem; display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--primary-blue); }

input, textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: all 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.05);
}

.btn-submit {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s;
}

.btn-submit:hover { background: #2563eb; transform: scale(1.02); }

.success-msg {
    text-align: center;
    padding: 2rem;
    color: #4ade80;
}

.success-msg i { width: 48px; height: 48px; margin-bottom: 1rem; }

footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

@media (max-width: 968px) {
    .glass-form-wrapper { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    h1 { font-size: 3.5rem; }
    .hero-stats { flex-direction: column; gap: 2rem; }
}