/* =====================
   RESET + BASE
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    background: #0e0e0e;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =====================
   HEADER
===================== */
.header {
    background: #111;
    border-bottom: 1px solid #222;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.logo {
    height: 48px;
}

.slogan {
    font-size: 14px;
    color: #f0c674;
    font-weight: 600;
}

/* =====================
   HERO
===================== */
.hero {
    background: radial-gradient(circle at top, #1e1e1e, #000);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 24px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #f5c16c, #ff9f1c);
    color: #000;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 18px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,159,28,.4);
}

/* =====================
   REGISTER FORM
===================== */
.register {
    background: #111;
    padding: 50px 0;
}

.register h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
}

.register form {
    max-width: 420px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 0 0 1px #222;
}

.register input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #0e0e0e;
    color: #fff;
    font-size: 15px;
}

.register input::placeholder {
    color: #777;
}

.register button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #f5c16c, #ff9f1c);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* =====================
   CONTENT (SEO)
===================== */
.content {
    background: #0e0e0e;
    padding: 50px 0;
}

.content h2 {
    color: #f5c16c;
    margin: 32px 0 12px;
    font-size: 24px;
}

.content h3 {
    color: #fff;
    margin: 20px 0 8px;
    font-size: 18px;
}

.content p {
    color: #ccc;
    margin-bottom: 12px;
}

.content ul {
    margin-left: 18px;
    margin-bottom: 12px;
}

.content li {
    color: #ccc;
    margin-bottom: 6px;
}

/* =====================
   FOOTER
===================== */
.footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    color: #777;
    font-size: 14px;
}
/* =====================
   FAQ ACCORDION
===================== */
.faq {
    background: #0e0e0e;
    padding: 50px 0;
}

.faq h2 {
    color: #f5c16c;
    margin-bottom: 24px;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #222;
    padding: 12px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.faq-icon {
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    color: #ccc;
    margin-top: 10px;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.form-message {
    margin-top: 10px;
    font-size: 14px;
    color: #ff6b6b;
    display: none;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
    }

    .logo {
        height: 40px;
    }
    .content h2 {
        font-size: 18px;
    }
}



/* =====================
   PROCESS
===================== */
.process {
    background: #111;
    padding: 50px 0;
}

.process h2 {
    color: #f5c16c;
    text-align: center;
    margin-bottom: 24px;
}

.process ol {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 20px;
}

.process li {
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.6;
}
/* =====================
   STATS
===================== */
.stats {
    background: #0e0e0e;
    padding: 50px 0;
}

.stats h2 {
    color: #f5c16c;
    text-align: center;
    margin-bottom: 30px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-grid div {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 0 0 1px #222;
}

.stat-grid strong {
    display: block;
    font-size: 28px;
    color: #f5c16c;
    margin-bottom: 6px;
}

.stat-grid p {
    color: #ccc;
    font-size: 14px;
}
/* =====================
   CTA
===================== */
.cta {
    background: radial-gradient(circle at top, #1e1e1e, #000);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: #fff;
    margin-bottom: 12px;
}

.cta p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 16px;
}
@media (max-width: 768px) {

    .process ol {
        padding-left: 18px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .stat-grid strong {
        font-size: 22px;
    }

    .cta h2 {
        font-size: 22px;
    }

    .cta p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
}
