:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --accent: #ff4500;
    --accent-glow: rgba(255, 69, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

.bg-mesh {
    position: fixed;
    top: -20%; left: -10%;
    width: 120vw; height: 120vh;
    background: 
        radial-gradient(circle at 15% 50%, rgba(255, 69, 0, 0.15), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(67, 24, 255, 0.1), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    background: rgba(5,5,5,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.logo-img {
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--accent-glow);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.btn-contact {
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.btn-contact:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 0;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(90deg, var(--accent), #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #a0a0a0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: var(--accent);
}

/* Hero Visual (Glassmorphism Cards) */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: absolute;
}

.main-card {
    width: 450px;
    height: 350px;
    top: 50px;
    right: 50px;
    transform: rotateY(-15deg) rotateX(10deg);
    animation: float 6s ease-in-out infinite;
}

.card-header {
    padding: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
}

.dots { display: flex; gap: 8px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #333; }

.card-body { padding: 2rem; }
.line { height: 12px; background: rgba(255,255,255,0.05); border-radius: 6px; margin-bottom: 1rem; }
.w-100 { width: 100%; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }
.chart { height: 120px; background: linear-gradient(180deg, var(--accent-glow) 0%, transparent 100%); margin-top: 2rem; border-radius: 10px; border-top: 2px solid var(--accent); }

.floating-card-1 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    bottom: 50px;
    right: 350px;
    transform: translateZ(50px);
    animation: float-alt 8s ease-in-out infinite;
}

.floating-card-1 i { font-size: 2rem; color: var(--accent); }
.floating-card-1 h4 { font-size: 0.9rem; color: #a0a0a0; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.floating-card-1 p { font-size: 1.5rem; font-weight: 800; }

@keyframes float {
    0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(10deg) translateY(-20px); }
}

@keyframes float-alt {
    0%, 100% { transform: translateZ(50px) translateY(0); }
    50% { transform: translateZ(50px) translateY(-15px); }
}

/* Services */
.services {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-align: center;
}

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

.service-card {
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.service-card:hover::before { opacity: 1; }

.icon-wrap {
    width: 60px; height: 60px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px var(--accent-glow);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.service-card p {
    color: #a0a0a0;
    position: relative;
}

@media (max-width: 992px) {
    .hero { flex-direction: column; padding-top: 10rem; text-align: center; }
    .hero-content { margin-bottom: 4rem; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
    .nav-links { display: none; }
}
