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

body {
    background: #ffffff;
    color: #111;
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn.primary {
    background: #ee2424;
    color: #fff;
}

.btn.primary:hover {
    background: #c91e1e;
}

.btn.secondary {
    border: 2px solid #ee2424;
    color: #ee2424;
}

.btn.secondary:hover {
    background: #ee2424;
    color: #fff;
}

/* Hero */
.hero {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.logo {
    font-size: 48px;
    color: #ee2424;
    letter-spacing: 2px;
}

.tagline {
    font-size: 24px;
    margin-top: 10px;
}

.subtitle {
    max-width: 600px;
    margin: 20px auto 40px;
    color: #ccc;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Features */
.features {
    background: #f8f8f8;
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.card h3 {
    color: #ee2424;
    margin-bottom: 15px;
}

/* Final CTA */
.final-cta {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.final-cta p {
    margin-bottom: 30px;
    color: #ccc;
}

/* Footer */
.footer {
    background: #000;
    color: #777;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 600px) {
    .logo {
        font-size: 36px;
    }

    .tagline {
        font-size: 20px;
    }
}

