/* =============================================
   C.A.R.R. PAGE — carr_old.css
   All button styles (.btn_gold, .btn_outline, etc.) live in global.css
   ============================================= */

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

/* Global section glow — same as gift.css */
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;
    }
}


/* Pill-style section label */
.program_label_pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    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: 5px 16px;
    margin-bottom: 16px;
}

/* Shared section sub-text */
.section_sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Shared section header */
.section_header {
    h2 {
        font-family: 'Gilroy', sans-serif;
        font-weight: 800;
        color: #c59b32;
    }
}

/* =============================================
   HERO
   ============================================= */
section.carr_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 {
            font-family: 'Gilroy', sans-serif;
            font-weight: 800;
            line-height: 1.1;
        }

        .hero_btns {
            margin-top: 8px;
        }
    }

    .hero_image {
        position: relative;
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(197, 155, 50, 0.2);

        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) {
        .hero_image {
            margin-bottom: 40px;

            img { min-height: 280px; }
        }

        .hero_content {
            padding-left: 0 !important;
        }
    }
}

/* =============================================
   PROGRAM OVERVIEW
   ============================================= */
section.carr_overview {
    background-color: rgb(27, 28, 29);

    .overview_text {
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .overview_image {
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(197, 155, 50, 0.2);

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

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

/* =============================================
   FOUR-STEP FRAMEWORK
   CHANGED: replaced carr-process.jpg with poly-bg.jpg
   ============================================= */
section.carr_process {
    background: linear-gradient(rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.92) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;

    .process_card {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 36px 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;
        }

        .process_number {
            font-family: 'Gilroy', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            color: rgba(197, 155, 50, 0.18);
            line-height: 1;
            margin-bottom: 16px;
        }

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #c59b32;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }
    }

    @media (max-width: 767px) {
        .process_card { margin-bottom: 8px; }
    }
}

/* =============================================
   PROGRAM TIMELINE
   CHANGED: added section — was unstyled, now uses poly-bg.jpg
   ============================================= */
section.carr_timeline {
    background: linear-gradient(rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.92) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;

    .timeline_track {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
        padding-left: 32px;

        &::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 8px;
            bottom: 8px;
            width: 1px;
            background: linear-gradient(to bottom, #c59b32, rgba(197, 155, 50, 0.15));
        }
    }

    .timeline_item {
        position: relative;
        padding: 28px 0 28px 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);

        &:last-child { border-bottom: none; }

        &::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 36px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #c59b32;
            box-shadow: 0 0 0 3px rgba(197, 155, 50, 0.2);
        }
    }

    .timeline_phase {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #c59b32;
        margin-bottom: 8px;

        span {
            color: rgba(255, 255, 255, 0.4);
            font-weight: 400;
            margin-left: 8px;
            letter-spacing: 0;
            text-transform: none;
        }
    }

    h4 {
        font-family: 'Gilroy', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 12px;
    }

    .timeline_list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;

        li {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
            line-height: 1.65;
            padding-left: 16px;
            position: relative;

            &::before {
                content: '—';
                position: absolute;
                left: 0;
                color: rgba(197, 155, 50, 0.5);
            }
        }
    }
}

/* =============================================
   CAPITAL CYCLE
   CHANGED: replaced carr-partner.jpg with poly-bg.jpg
   ============================================= */
section.carr_cycle {
    background: linear-gradient(rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.92) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;

    .advantage_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;
        }

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

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #c59b32;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }
    }

    @media (max-width: 767px) {
        .advantage_card { margin-bottom: 8px; }
    }
}

/* =============================================
   C.A.R.R. ADVANTAGE
   ============================================= */
section.carr_advantage {
    background: linear-gradient(rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.92) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;

    .advantage_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;
        }

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

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #c59b32;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }
    }

    @media (max-width: 767px) {
        .advantage_card { margin-bottom: 8px; }
    }
}

/* =============================================
   ELIGIBLE ASSETS
   ============================================= */
section.carr_eligible {
    background-color: rgb(27, 28, 29);

    .eligible_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;
        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.4);
            transform: translateY(-4px);
        }

        &:hover::before {
            opacity: 1;
        }
    }

    .eligible_image {
        height: 200px;
        overflow: hidden;

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

        &--icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(197, 155, 50, 0.08) 0%, rgba(27, 28, 29, 0.9) 100%);
            border-bottom: 1px solid rgba(197, 155, 50, 0.15);
        }
    }

    .eligible_card:hover .eligible_image img {
        transform: scale(1.06);
    }

    .eligible_body {
        padding: 24px 22px;

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

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

/* =============================================
   ELIGIBILITY REQUIREMENTS
   ============================================= */
section.carr_eligibility {
    background-color: rgb(27, 28, 29);

    .advantage_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;
        }

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

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #c59b32;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }
    }
}

/* =============================================
   EXIT STRATEGIES
   CHANGED: replaced carr-exit-strategies.jpg with poly-bg.jpg
   ============================================= */
section.carr_exit {
    background: linear-gradient(rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;

    .exit_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: 36px 28px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease, transform 0.3s ease;

        &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, 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;
        }

        .exit_icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            -webkit-border-radius: 12px;
            background-color: rgba(197, 155, 50, 0.1);
            border: 1px solid rgba(197, 155, 50, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #c59b32;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }
    }

    @media (max-width: 767px) {
        .exit_card { margin-bottom: 8px; }
    }
}

/* =============================================
   MARKET INSIGHTS: GOLD
   ============================================= */
section.carr_market_gold {
    background-color: rgb(27, 28, 29);

    .market_image {
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(197, 155, 50, 0.2);

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

        @media (max-width: 991px) {
            margin-bottom: 40px;

            img { min-height: 260px; }
        }
    }

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

        .market_intro {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.75;
            margin-bottom: 32px;
        }
    }

    .market_items {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .market_item {
        padding: 20px 22px;
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 10px;
        -webkit-border-radius: 10px;
        border-left: 3px solid #c59b32;

        h4 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

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

/* =============================================
   MARKET INSIGHTS: OTHER (Silver & Gemstones)
   ============================================= */
section.carr_market_other {
    background-color: rgb(23, 22, 20);

    .insight_block {
        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%;

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
        }
    }

    .insight_item {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);

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

        h4 {
            font-family: 'Instrument Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 6px;
        }

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

/* =============================================
   CRYPTO-BACKED STABLECOINS
   ============================================= */
section.carr_crypto {
    background-color: rgb(23, 22, 20);

    .crypto_image {
        border-radius: 16px;
        -webkit-border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(197, 155, 50, 0.15);

        img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            display: block;

            @media (max-width: 767px) {
                height: 220px;
            }
        }
    }

    .crypto_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 26px;
        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;
        }

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #c59b32;
        }

        p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }
    }

    @media (max-width: 767px) {
        .crypto_card { margin-bottom: 8px; }
    }
}

/* =============================================
   PARTNER CTA
   CHANGED: replaced carr-partner.jpg with poly-bg.jpg
   ============================================= */
section.carr_partner {
    background: linear-gradient(rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.93) 100%),
        url('../../assets/img/gift/poly-bg.jpg') no-repeat center center / cover;

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

    .partner_features {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 28px;
    }

    .partner_feature {
        display: flex;
        align-items: flex-start;
        gap: 16px;

        .feature_dot {
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            background-color: #c59b32;
            margin-top: 6px;
        }

        strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 4px;
        }

        p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }
    }

    .partner_contact_card {
        background-color: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(197, 155, 50, 0.25);
        border-radius: 16px;
        -webkit-border-radius: 16px;
        padding: 40px 36px;
        position: relative;
        overflow: hidden;

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

        h3 {
            font-family: 'Gilroy', sans-serif;
            font-weight: 700;
        }

        p {
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
        }
    }

    .partner_email {
        display: inline-block;
        color: #c59b32;
        font-size: 0.9rem;
        font-weight: 600;
        word-break: break-all;
        transition: opacity 0.3s ease;
        text-decoration: none;
        width: auto;

        &:hover { opacity: 0.75; }
    }

    @media (max-width: 991px) {
        .partner_contact_card {
            margin-top: 40px;
        }
    }
}

/* =============================================
   INTAKE FORMS
   ============================================= */
section.carr_intake {
    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;

    .section_header h2 {
        color: #ffffff;
    }

    .intake_buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .intake_btn {
        display: inline-block;
        padding: 14px 28px;
        background-color: rgba(197, 155, 50, 0.08);
        border: 1px solid rgba(197, 155, 50, 0.4);
        border-radius: 6px;
        -webkit-border-radius: 6px;
        color: #c59b32;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        width: auto;

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

/* =============================================
   FAQ
   ============================================= */
section.carr_faq {
    background-color: rgb(20, 20, 21);

    .section_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-size: 1rem;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
        transition: color 0.3s ease, background-color 0.3s ease;
        font-family: inherit;

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

        &[aria-expanded="true"] {
            color: #c59b32;

            .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.6);
            line-height: 1.75;
            margin: 0;
        }
    }
}

/* =============================================
   DISCLOSURE CTA
   ============================================= */
section.carr_disclosure_cta {
    padding: 80px 0;
    background: rgba(197, 155, 50, 0.06);
    border-top: 1px solid rgba(197, 155, 50, 0.2);

    .disclosure_label {
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
    }
}