:root {
    --primary: #2e8fce;
    --primary-dark: #194e70;
    --gray-light: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.hero {
    background: var(--gray-light);
    padding: 3rem 1rem;
    text-align: center;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    width: 80%;
    max-width: 320px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
}

.features {
    padding: 4rem 1rem;
}

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

.feature-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.social-proof {
    background: var(--gray-light);
    padding: 4rem 1rem;
    text-align: center;
}

footer {
    background: #333;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    h1 {
font-size: 1.75rem;
    }
    .subtitle {
font-size: 1.1rem;
    }
}
