:root {
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --text-main: #334155;
    --white: #FFFFFF;
}

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

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

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

/* Header */
header {
    width: 100%;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--slate-900);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    border-radius: 10px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem 0;
    text-align: center;
    background: radial-gradient(circle at top right, #EEF2FF, transparent);
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* FIXED: Download Buttons centered globally */
.download-buttons {
    display: flex;
    gap: 15px;
    margin: 0 auto 2.5rem;
    justify-content: center; /* Centers the buttons horizontally */
    align-items: center;
    width: 100%;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    margin-top: 4rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Features */
.features {
    padding: 6rem 0;
    width: 100%;
}

.feature-card {
    padding: 3rem;
    background: var(--slate-50);
    border-radius: 32px;
    border: 1px solid var(--slate-100);
}

.feature-card h3 {
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

/* Footer */
footer {
    padding: 6rem 0 3rem;
    background-color: var(--slate-50);
    border-top: 1px solid var(--slate-100);
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.8rem;
    margin-left: 1.5rem;
}

.copyright {
    font-size: 0.8rem;
    color: #94A3B8;
}

/* Legal Pages */
.legal-content {
    padding: 6rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.legal-content p, .legal-content ul {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    .download-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
