/* --- OBSIDIAN DESIGN SYSTEM --- */
:root {
    --bg: #050505;
    --surface: #0f0f0f;
    --surface-glass: rgba(20, 20, 20, 0.7);
    --text: #ffffff;
    --text-muted: #888888;
    --cyan: #00F0FF; /* Cyberpunk Blue */
    --cyan-glow: rgba(0, 240, 255, 0.4);
    --font-head: 'Syncopate', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, .logo { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 2px; }
.text-cyan { color: var(--cyan); text-shadow: 0 0 10px var(--cyan-glow); }
.neon-text { color: #fff; text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--cyan), 0 0 40px var(--cyan); }

/* --- HERO --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4) contrast(1.2);
    animation: zoomIn 20s infinite alternate;
}
@keyframes zoomIn { from { transform: scale(1); } to { transform: scale(1.1); } }

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.3), var(--bg));
    z-index: -1;
}

.hero-content { text-align: center; z-index: 1; padding: 0 20px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.hero p { color: #ccc; max-width: 600px; margin: 0 auto 40px; font-size: 1.1rem; }

.badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

/* --- NAV --- */
.glass-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}
.logo { font-weight: 700; font-size: 1.2rem; }
.dot { color: var(--cyan); }

/* --- BUTTONS --- */
.btn {
    padding: 18px 36px;
    background: var(--text);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid #fff;
}
.btn.outline { background: transparent; color: #fff; }
.btn-small { padding: 10px 20px; border: 1px solid rgba(255,255,255,0.2); color: #fff; text-decoration: none; font-size: 0.7rem; text-transform: uppercase; }
.btn-group { display: flex; gap: 20px; justify-content: center; }

/* --- STATS BAR --- */
.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: #0a0a0a;
}
.stat-item { text-align: center; }
.number { font-family: var(--font-head); font-size: 2rem; color: var(--text); }
.label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- SERVICES (Cards) --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.service-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px;
    position: relative;
    transition: transform 0.1s; /* For JS Tilt */
    transform-style: preserve-3d;
}
.featured { border: 1px solid var(--cyan); box-shadow: 0 0 30px rgba(0, 240, 255, 0.1); }

.icon-box { font-size: 2rem; color: var(--cyan); margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; }
.price { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.desc { color: #888; font-size: 0.9rem; margin-bottom: 30px; line-height: 1.6; }
.features { list-style: none; border-top: 1px solid #333; padding-top: 20px; }
.features li { color: #ccc; font-size: 0.9rem; margin-bottom: 10px; }
.features li::before { content: "►"; color: var(--cyan); margin-right: 10px; font-size: 0.7rem; }

/* --- GLASS PANEL --- */
.glass-panel {
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 40px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}
.panel-content {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-block;
    max-width: 600px;
}
.glass-panel h2 { margin-bottom: 20px; font-size: 2rem; }
.glass-panel p { color: #ccc; line-height: 1.8; }

/* --- FOOTER --- */
footer { padding: 60px 0; border-top: 1px solid #222; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; }
.credits { text-align: right; font-size: 0.9rem; color: #666; }

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .footer-flex { flex-direction: column; gap: 20px; text-align: center; }
    .credits { text-align: center; }
    .btn-group { flex-direction: column; }
}