/* =============================================
   D.I.S.C. PAGE — disc.css
   Matches gift.css / carr.css design system
   ============================================= */

body { background: rgb(27, 28, 29) !important; }

section {
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(ellipse, rgba(197, 155, 50, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }
}

/* ── Shared program label ───────────────────── */
.program_label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c59b32;
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 1px;
        background-color: #c59b32;
    }
}

/* ── Shared card_label ─────────────────────── */
.card_label {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 0.70rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c59b32;
    margin-bottom: 12px;
    display: block;
}

/* ── Shared detail_list ────────────────────── */
.detail_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;

    li {
        color: rgba(255, 255, 255, 0.65);
        padding: 10px 0 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
        font-size: 0.9rem;
        line-height: 1.6;

        &:first-child { padding-top: 0; }
        &:last-child { border-bottom: none; padding-bottom: 0; }

        &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 14px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #c59b32;
        }
    }
}

/* ── Shared disc_list (flip card lists) ─────── */
.disc_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;

    li {
        color: rgba(255, 255, 255, 0.70);
        font-size: 0.82rem;
        line-height: 1.55;
        padding-left: 14px;
        position: relative;

        &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: #c59b32;
        }
    }
}

/* ── Shared disc_check_list ─────────────────── */
.disc_check_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;

    li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: rgba(255, 255, 255, 0.75);
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-family: 'Instrument Sans', sans-serif;
        font-size: 0.9rem;
        line-height: 1.6;

        &:first-child { padding-top: 0; }
        &:last-child { border-bottom: none; padding-bottom: 0; }

        svg { flex-shrink: 0; margin-top: 3px; }
    }
}

/* ── Shared buttons ─────────────────────────── */
.btn_gold {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid #c59b32;
    background-color: transparent;
    color: #c59b32;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;

    &:hover { background-color: #c59b32; color: #000000; }
}

.btn_outline {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease;

    &:hover { border-color: rgba(255, 255, 255, 0.5); color: #ffffff; }
}

/* =============================================
   1. HERO
   ============================================= */
section.disc_hero {
    background: linear-gradient(rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.85) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;

    .hero_content {
        h1 { color: #ffffff; }
        p { color: rgba(255, 255, 255, 0.70); line-height: 1.75; }

        .hero_btns {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
    }

    .hero_image {
        position: relative;

        img {
            width: 100%;
            height: auto;
            display: block;
            filter: drop-shadow(0 0 40px rgba(197, 155, 50, 0.25));
        }
    }

    @media (max-width: 991px) {
        .hero_image {
            margin-bottom: 40px;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero_content {
            text-align: center;

            .program_label { padding-left: 0; &::before { display: none; } }
            .hero_btns { justify-content: center; }
        }
    }
}

/* =============================================
   2. EXECUTIVE SUMMARY
   ============================================= */
section.disc_executive_summary {
    background-color: rgb(23, 22, 20);

    .header {
        margin-bottom: 24px;

        .program_label {
            font-weight: 600;
            letter-spacing: 2px;
            color: #ffffff;
            background-color: rgba(197, 155, 50, 0.15);
            border: 1px solid rgba(197, 155, 50, 0.3);
            border-radius: 20px;
            -webkit-border-radius: 20px;
            padding: 4px 14px;
            padding-left: 14px;
            margin-bottom: 16px;

            &::before { display: none; }
        }

        h2 { color: #ffffff; }
    }

    .main_content p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; margin-bottom: 1rem; }

    .difference_card {
        background: linear-gradient(rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.88) 100%),
            url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;
        border: 1px solid rgba(197, 155, 50, 0.4);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 32px 28px;
        position: relative;
        overflow: hidden;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
        }

        .card_label { color: #c59b32; }
    }

    @media (max-width: 991px) {
        .main_content { margin-bottom: 32px; }
    }
}

/* =============================================
   3. THREE PILLARS
   ============================================= */
section.disc_pillars {
    background-color: rgb(20, 20, 21);

    .header { h2 { color: #ffffff; } }

    .content {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 36px 32px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease, transform 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .pillar_icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background-color: rgba(197, 155, 50, 0.10);
            border: 1px solid rgba(197, 155, 50, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        h3 { margin-bottom: 1rem; }
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; margin-bottom: 0; }
    }
}

/* =============================================
   4. TRADE PROGRAM — FLIP CARDS
   ============================================= */
section.disc_trade_program {
    background-color: rgb(27, 28, 29);
    background-image: linear-gradient(rgba(27, 28, 29, 0.92) 0%, rgba(27, 28, 29, 0.92) 100%),
        url('../../assets/img/gift/poly-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    .header {
        h2 { color: #ffffff; }
        p { color: rgba(255, 255, 255, 0.60); }
    }

    .flip_card {
        perspective: 1000px;
        height: 300px;
        cursor: pointer;
        margin-bottom: 0;

        .flip_card_inner {
            position: relative;
            width: 100%; height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
        }

        &:hover .flip_card_inner { transform: rotateY(180deg); }

        .flip_card_front,
        .flip_card_back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 16px;
            -webkit-border-radius: 16px;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            overflow: hidden;
        }

        .flip_card_front {
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            align-items: flex-start;
            justify-content: flex-end;

            .card_icon {
                position: absolute;
                top: 28px;
                left: 28px;
                width: 52px;
                height: 52px;
                border-radius: 12px;
                background-color: rgba(197, 155, 50, 0.10);
                border: 1px solid rgba(197, 155, 50, 0.25);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            h3 {
                font-family: 'Gilroy', sans-serif;
                font-size: 1.2rem;
                font-weight: 800;
                color: #ffffff;
                line-height: 1.2;
                margin: 0;
            }
        }

        .flip_card_back {
            background-color: rgba(10, 10, 10, 0.97);
            border: 1px solid rgba(197, 155, 50, 0.3);
            transform: rotateY(180deg);
            justify-content: flex-start;
            padding-top: 36px;

            &::before {
                content: '';
                position: absolute;
                top: 0; left: 0; right: 0;
                height: 2px;
                background: linear-gradient(90deg, transparent, #c59b32, transparent);
            }
        }

        @media (max-width: 767px) { height: auto; min-height: 240px; }
    }
}

/* =============================================
   5. PROGRAM TIMELINE
   ============================================= */
section.disc_timeline {
    background-color: rgb(23, 22, 20);

    .section_header h2 { font-family: 'Gilroy', sans-serif; font-weight: 800; }

    .timeline_note {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.9rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.65;
    }

    .flip_card {
        perspective: 1000px;
        height: 200px;
        cursor: pointer;

        &--wide { height: 140px; }

        .flip_card_inner {
            position: relative;
            width: 100%; height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
        }

        &:hover .flip_card_inner { transform: rotateY(180deg); }

        .flip_card_front,
        .flip_card_back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 16px;
            -webkit-border-radius: 16px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .flip_card_front {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            align-items: flex-start;

            .phase_tag {
                font-size: 0.65rem;
                font-weight: 700;
                letter-spacing: 2.5px;
                text-transform: uppercase;
                color: #c59b32;
                margin-bottom: 10px;
            }

            h3 {
                font-family: 'Gilroy', sans-serif;
                font-size: 1rem;
                font-weight: 700;
                color: #ffffff;
                line-height: 1.3;
                margin: 0;
            }
        }

        .flip_card_back {
            background-color: rgba(10, 10, 10, 0.97);
            border: 1px solid rgba(197, 155, 50, 0.35);
            transform: rotateY(180deg);
            justify-content: flex-start;

            &::before {
                content: '';
                position: absolute;
                top: 0; left: 0; right: 0;
                height: 2px;
                background: linear-gradient(90deg, transparent, #c59b32, transparent);
            }

            .phase_tag {
                font-size: 0.60rem;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: #c59b32;
                margin-bottom: 10px;
            }

            p { color: rgba(255, 255, 255, 0.70); font-size: 0.85rem; line-height: 1.65; margin: 0; }
        }

        @media (max-width: 767px) {
            height: auto; min-height: 180px;
            &--wide { height: auto; min-height: 160px; }
        }
    }
}

/* =============================================
   6. DUE DILIGENCE
   ============================================= */
section.disc_due_diligence {
    background-color: rgb(20, 20, 21);
	
	img{
		max-height: 600px;
		object-fit: cover;
	}

    .section_image {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(197, 155, 50, 0.2);
        height: 100%;

        img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 480px; }

        &::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(197, 155, 50, 0.08) 0%, transparent 60%);
        }

        @media (max-width: 991px) { margin-bottom: 40px; img { min-height: 280px; } }
    }

    .header { h2 { color: #ffffff; } }

    .dd_steps { display: flex; flex-direction: column; gap: 0; }

    .dd_step {
        display: flex;
        gap: 18px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: padding-left 0.3s ease;

        &:first-child { padding-top: 0; }
        &:last-child { border-bottom: none; padding-bottom: 0; }
        &:hover { padding-left: 6px; }

        .dd_number {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: rgba(197, 155, 50, 0.12);
            border: 1px solid rgba(197, 155, 50, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c59b32;
            font-weight: 700;
            font-size: 0.82rem;
            margin-top: 2px;
        }

        .dd_content {
            h3 { color: #ffffff; font-family: 'Instrument Sans', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
            p { color: rgba(255, 255, 255, 0.60); font-size: 0.85rem; line-height: 1.7; margin: 0; }
        }
    }
}

/* =============================================
   7. KEY BENEFITS
   ============================================= */
section.disc_benefits {
    background-color: rgb(27, 28, 29);

    .header { h2 { color: #c59b32; } p { color: rgba(255, 255, 255, 0.60); } }

    .benefit_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 32px 28px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease, transform 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .benefit_icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            background-color: rgba(197, 155, 50, 0.10);
            border: 1px solid rgba(197, 155, 50, 0.25);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
        }

        h3 { margin-bottom: 0.75rem; }
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; margin-bottom: 0; }
    }
}

/* =============================================
   8. SECURITIES & REVENUE PARTICIPATION
   ============================================= */
section.disc_securities {
    background-color: rgb(23, 22, 20);

    .header { h2 { color: #ffffff; } }

    .content {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 36px 32px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); }

        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; font-size: 0.95rem; }
    }
}

/* =============================================
   9. ELIGIBILITY
   ============================================= */
section.disc_eligibility {
    background-color: rgb(20, 20, 21);

    .header { h2 { color: #ffffff; } }

    .eligibility_intro {
        color: rgba(255, 255, 255, 0.60);
        font-size: 0.92rem;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .eligibility_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 28px 24px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease, transform 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .elig_icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            background-color: rgba(197, 155, 50, 0.10);
            border: 1px solid rgba(197, 155, 50, 0.25);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }

        p { color: rgba(255, 255, 255, 0.70); font-size: 0.88rem; line-height: 1.7; }
    }
}

/* =============================================
   10. USE CASES
   ============================================= */
section.disc_use_cases {
    background-color: rgb(27, 28, 29);

    .header { h2 { color: #ffffff; } }

    .use_case_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        overflow: hidden;
        height: 100%;
        transition: border-color 0.3s ease, transform 0.3s ease;
        position: relative;

        &::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c59b32, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        &:hover { border-color: rgba(197, 155, 50, 0.35); transform: translateY(-4px); }
        &:hover::before { opacity: 1; }

        .use_case_image {
            height: 240px;
            overflow: hidden;

            img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
        }

        &:hover .use_case_image img { transform: scale(1.05); }

        .use_case_content {
            padding: 24px 24px 28px;
            p { color: rgba(255, 255, 255, 0.70); font-size: 0.9rem; line-height: 1.7; margin: 0; }
        }
    }
}

/* =============================================
   11. FAQ
   ============================================= */
section.disc_faq {
    background-color: rgb(23, 22, 20);

    .header { h2 { color: #ffffff; } }

    .faq_accordion {
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
    }

    .faq_item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        &:last-child { border-bottom: none; }
    }

    .faq_question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 22px 28px;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        color: rgba(255, 255, 255, 0.85);
        font-family: 'Instrument Sans', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        transition: color 0.3s ease, background-color 0.3s ease;

        &:hover { color: #c59b32; background-color: rgba(197, 155, 50, 0.04); }

        &[aria-expanded="true"] {
            color: #c59b32;
            background-color: rgba(197, 155, 50, 0.06);
            .faq_icon { transform: rotate(180deg); }
        }

        .faq_icon { flex-shrink: 0; transition: transform 0.3s ease; }
    }

    .faq_answer {
        padding: 0 28px 22px;
        background-color: rgba(197, 155, 50, 0.03);
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; margin: 0; }
    }
}

/* =============================================
   12. CONTACT CTA
   ============================================= */
section.disc_contact {
    background: linear-gradient(rgba(15, 14, 12, 0.88) 0%, rgba(15, 14, 12, 0.92) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(197, 155, 50, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .contact_image {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(197, 155, 50, 0.2);
        height: 100%;

        img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 440px; }

        &::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(197, 155, 50, 0.08) 0%, transparent 60%);
        }

        @media (max-width: 991px) { margin-bottom: 40px; img { min-height: 280px; } }
    }

    .contact_content {
        h2 { color: #c59b32; }
        p { color: rgba(255, 255, 255, 0.65); line-height: 1.75; }

        .hero_btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

        .contact_details {
            p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); margin-bottom: 4px; }
        }
    }
}