/* /dialnavcom-live/css/style.css */
:root {
    --primary: #2563eb;
    --primary-text: #f8f2fc;
    --primary-dark: #1d4ed8;
    --secondary: #7c3aed;
    --text: #1f2937;
    --light: #f8fafc;
    --gray: #94a3b8;
}

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

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    z-index: -1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(to bottom, #0a1128 0%, #001f54 100%);
    min-height: 100vh;
}

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

header {
    padding: 2rem 0;
    text-align: left;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.125rem;
    color: var(--primary-text);
    margin-bottom: 3rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 1.5rem;
    margin: 3rem 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #10b981;
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 1rem 0;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--gray);
    border-top: 1px solid #e2e8f0;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}
