:root {
    --primary: #0062ff;
    --dark: #050a15;
    --slate: #1e293b;
    --light: #f8fafc;
    --accent: #60a5fa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--slate);
    background-color: var(--white);
    line-height: 1.6;
}

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

/* Header & Nav */
.header { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #e2e8f0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 70px; margin: 0 2rem; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--dark); letter-spacing: -1px; }
.logo span { color: var(--primary); }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--slate); font-weight: 500; font-size: 0.95rem; }

/* Buttons & Hero Fixes */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    padding: 1rem 2rem; 
    border-radius: 8px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}
.btn i { width: 20px; height: 20px; }
.btn-primary { background: var(--primary); color: white; border: none; }
.btn-secondary { background: var(--dark); color: white; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.hero { padding: 100px 0; background: radial-gradient(circle at top right, #f0f7ff, #ffffff); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; color: var(--dark); margin: 20px 0; font-weight: 800; }
.hero p { font-size: 1.2rem; max-width: 650px; margin-bottom: 40px; color: #64748b; }
.badge { background: #dbeafe; color: var(--primary); padding: 6px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 700; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 60px; }
.stat-card { background: var(--dark); color: white; padding: 2rem; border-radius: 16px; text-align: center; }
.stat-card i { color: var(--primary); margin-bottom: 15px; }
.stat-card h3 { font-size: 2.5rem; margin-bottom: 5px; }

/* Services Grid */
.services { padding: 100px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 50px; }
.card { background: white; padding: 3rem 2rem; border-radius: 20px; border: 1px solid #e2e8f0; transition: 0.3s; }
.card i { color: var(--primary); margin-bottom: 20px; }
.card h3 { margin-bottom: 15px; font-size: 1.4rem; }

/* Contact Section */
.contact { padding: 100px 0; background: var(--dark); color: white; }
.contact-wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(255,255,255,0.03); 
    padding: 4rem; 
    border-radius: 30px; 
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-links { margin-top: 30px; }
.contact-links a { display: block; color: white; text-decoration: none; font-size: 1.2rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.btn-block { width: 100%; display: flex; }

/* Footer */
.footer{
    display: flex; 
    justify-content:space-between; 
    align-items: center; 
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 60px 0; text-align: center; }
    .hero p { margin: 0 auto 40px; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; }
    .contact-wrapper { flex-direction: column; text-align: center; padding: 2rem; }
    .contact-info { margin-bottom: 40px; }
}