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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0d0c;
    color: #e8e8e8;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 10, 9, 0.95);
    border-bottom: 1px solid #292d2b;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 18px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    display: block;
    color: #d62f2f;
    font-size: 12px;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e33a3a;
}


/* ================= HERO ================= */

.hero {
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;

    background:
        linear-gradient(
            rgba(5, 7, 6, 0.82),
            rgba(5, 7, 6, 0.96)
        ),
        radial-gradient(
            circle at center,
            #3a1515 0%,
            #0b0d0c 60%
        );
}

.hero-content {
    max-width: 850px;
}

.small-title {
    color: #d83232;
    font-weight: bold;
    letter-spacing: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero h1 span {
    display: block;
    color: #d83232;
}

.hero p {
    max-width: 650px;
    margin: 25px auto;
    color: #aaa;
    font-size: 17px;
}


/* ================= BUTTONS ================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;

    background: #d83232;
    color: white;

    border: none;
    padding: 13px 25px;

    text-decoration: none;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.btn:hover {
    background: #f04444;
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    border: 1px solid #555;
}

.btn.secondary:hover {
    border-color: #d83232;
}


/* ================= SECTIONS ================= */

.section {
    max-width: 1100px;
    margin: auto;
    padding: 90px 25px;
    text-align: center;
}

.dark-section {
    max-width: none;
    background: #101312;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section > p {
    color: #999;
}


/* ================= CARDS ================= */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-top: 45px;
}

.card {
    background: #151817;
    border: 1px solid #292d2b;

    padding: 35px 25px;

    text-align: left;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #d83232;
}

.card h3 {
    margin-bottom: 12px;
    color: #fff;
}

.card p {
    color: #999;
}


/* ================= FAQ ================= */

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    padding: 25px;

    margin-bottom: 15px;

    background: #171a19;
    border-left: 3px solid #d83232;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.faq-item p {
    color: #999;
}


/* ================= FORM ================= */

form {
    max-width: 650px;
    margin: 40px auto 0;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    width: 100%;

    padding: 15px;

    background: #151817;
    color: white;

    border: 1px solid #303432;

    outline: none;

    font-family: inherit;
}

input:focus,
textarea:focus {
    border-color: #d83232;
}

textarea {
    resize: vertical;
}


/* ================= CONTACT ================= */

.email {
    color: #e33a3a !important;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}


/* ================= FOOTER ================= */

footer {
    padding: 30px 20px;

    text-align: center;

    background: #070908;

    border-top: 1px solid #252826;

    color: #777;

    font-size: 14px;
}

footer p + p {
    margin-top: 5px;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 15px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 20px;
    }

    .section h2 {
        font-size: 28px;
    }
}
/* ================= FAQ INTERACTION ================= */

.faq-item h3 {
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

.faq-item h3:hover {
    color: #e33a3a;
}

.faq-item p {
    margin-top: 12px;
}
select {
    width: 100%;
    padding: 15px;

    background: #151817;
    color: #aaa;

    border: 1px solid #303432;

    outline: none;

    font-family: inherit;

    cursor: pointer;
}

select:focus {
    border-color: #d83232;
}

select option {
    background: #151817;
    color: white;
}
/* ================= LEGAL ================= */

.legal-content {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 8px;
}

.legal-content p {
    color: #999;
}

.footer-links {
    margin-top: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d83232;
}
/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;

    background: transparent;
    color: white;

    border: 1px solid #444;

    padding: 8px 12px;

    font-size: 22px;

    cursor: pointer;
}

@media (max-width: 768px) {

    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;

        width: 100%;

        flex-direction: column;

        text-align: center;

        gap: 0;

        padding-top: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px;
        width: 100%;
    }
}