:root {
    --brand-orange: #E54D0E;
    --dark: #0F172A;
    --text-gray: #64748B;
    --white: #ffffff;
    --bg-light: #fef8f5;
    --bg-gray: #F8FAFC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--dark); line-height: 1.6; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.orange-text { color: var(--brand-orange); }

/* HERO SECTION */
.hero-section { padding: 80px 0; background: var(--bg-light); }
.flex-hero { display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1; }
.hero-image { flex: 1; position: relative; }
.hero-image img { width: 100%; border-radius: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; font-weight: 800; }
.hero-text p { font-size: 1.2rem; margin-bottom: 40px; color: var(--text-gray); }

.badge { background: #ffe9e0; color: var(--brand-orange); padding: 8px 18px; border-radius: 50px; font-weight: bold; font-size: 0.8rem; }
.btn-main { background: var(--brand-orange); color: white; border: none; padding: 18px 40px; border-radius: 12px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-main:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--dark); padding: 16px 40px; border-radius: 12px; font-weight: bold; margin-left: 0px; cursor: pointer; transition: 0.3s; }
.btn-outline:hover { background: var(--dark); color: white; }

/* PROGRESS BAR */
.progress-wrapper { padding: 80px 0; display: flex; justify-content: center; }
.progress-bar-container { width: 100%; max-width: 800px; height: 10px; background: #E2E8F0; border-radius: 20px; position: relative; display: flex; justify-content: space-between; align-items: center; }
.progress-line { position: absolute; height: 100%; background: var(--brand-orange); width: 33%; border-radius: 20px; }
.milestone-point { width: 55px; height: 55px; background: white; border: 4px solid #E2E8F0; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; position: relative; font-weight: bold; }
.milestone-point.active { border-color: var(--brand-orange); color: var(--brand-orange); box-shadow: 0 0 20px rgba(229, 77, 14, 0.3); }
.milestone-point.prize { background: var(--brand-orange); color: white; border-color: var(--brand-orange); }
.milestone-point::after { content: attr(data-label); position: absolute; bottom: -35px; white-space: nowrap; font-size: 0.85rem; font-weight: 600; color: var(--text-gray); }

/* REWARD CARDS */
.reward-grid-section { padding-bottom: 80px; }
.grid-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.reward-card { background: white; padding: 50px 40px; border-radius: 30px; border: 1px solid #F1F5F9; text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.03); transition: 0.4s; display: flex; flex-direction: column; align-items: center; }
.reward-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.reward-card.grand-prize { background: var(--brand-orange); color: white; border: none; }
.icon-box { font-size: 3rem; color: var(--brand-orange); margin-bottom: 20px; }
.grand-prize .icon-box { color: white; }
.reward-card h2 { font-size: 2.4rem; margin: 10px 0; }
.reward-card p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 20px; }
.grand-prize p { color: #fecaca; }

.btn-main-small, .btn-white { margin-top: auto; width: 100%; padding: 15px; border-radius: 12px; font-weight: bold; border: none; cursor: pointer; }
.btn-main-small { background: var(--brand-orange); color: white; margin-top: 30px; }
.btn-white { background: white; color: var(--brand-orange); margin-top: 30px; }

/* CLAIM SECTION CSS (Fixed) */
.claim-section-premium { padding: 100px 0; background: var(--bg-gray); }
.claim-card-wrapper { display: flex; background: white; border-radius: 40px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
.claim-image-side { flex: 1; position: relative; }
.claim-image-side img { width: 100%; height: 100%; object-fit: cover; }
.image-overlay-card { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 15px 25px; border-radius: 20px; display: flex; align-items: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.check-icon { width: 40px; height: 40px; background: var(--brand-orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.claim-text-side { flex: 1.2; padding: 60px; }
.sub-heading { color: var(--brand-orange); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.claim-text-side h2 { font-size: 2.8rem; margin-bottom: 30px; }
.step-vertical-list { margin-bottom: 30px; }
.step-item { display: flex; gap: 20px};



/* ============================= */
/* FAQ SECTION */
/* ============================= */

.faq-section {
    padding: 120px 0;
    background: #fff;
}

.faq-flex {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-info-side {
    flex: 1;
}

.faq-info-side h2 {
    font-size: 2.8rem;
    margin: 20px 0;
}

.faq-info-side p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff7f2;
    padding: 20px 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.support-icon {
    width: 55px;
    height: 55px;
    background: var(--brand-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.faq-accordion-side {
    flex: 1.2;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--brand-orange);
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ============================= */
/* MOBILE FIXES */
/* ============================= */

@media(max-width: 992px){

    .flex-hero{
        flex-direction: column;
        text-align: center;
    }

    .faq-flex{
        flex-direction: column;
        gap: 50px;
    }

    .claim-card-wrapper{
        flex-direction: column;
    }

    .grid-layout{
        grid-template-columns: 1fr;
    }

    .reward-card.grand-prize,
    .reward-card.grand-prize h2,
    .reward-card.grand-prize h3,
    .reward-card.grand-prize p {
        color: white !important;
    }

    .reward-card.grand-prize p{
        color: #fff3f0 !important;
    }

}