/* ============================= */
/* RESET */
/* ============================= */

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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #0c1117;
    color: #e6e6e6;
    line-height: 1.6;
}

/* ============================= */
/* CONTAINER */
/* ============================= */

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================= */
/* HEADER */
/* ============================= */

header {
    background: #0f1620;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #f5c25c;
}

nav {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex: 1;
}

nav a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: 0.2s;
}

nav a:hover {
    color: #f5c25c;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn-login {
    background: #2d6cdf;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-register {
    background: #2dbd6e;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

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

.hero {
    padding: 80px 0;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-cta {
    display: inline-block;
    background: #2dbd6e;
    padding: 14px 28px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* ============================= */
/* CONTENT BLOCKS */
/* ============================= */

.section {
    margin: 60px 0;
}

.card {
    background: #2f3b37;
    border-radius: 18px;
    padding: 40px;
    margin-bottom: 30px;
}

.card h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.card p {
    margin-bottom: 16px;
    font-size: 17px;
}

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

.faq-item {
    background: #2f3b37;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    position: relative;
}

.faq-question::after {
    content: "▼";
    position: absolute;
    right: 24px;
    transition: 0.2s;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 22px 28px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

footer {
    background: #0f1620;
    margin-top: 80px;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #f5c25c;
    margin-bottom: 15px;
}

.footer-menu a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #c9c9c9;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #f5c25c;
}

.payment-logos {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 28px;
    opacity: 0.8;
}

.copyright {
    margin-top: 40px;
    font-size: 14px;
    color: #9aa0a6;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    nav {
        display: none;
    }

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

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