/* =========================================
   ROOT VARIABLES
========================================= */

:root {

    /* Colors */
    --primary-dark: #0d1d32;
    --primary-dark-light: #142842;

    --gold: #ffc35c;
    --gold-light: #ffda91;
    --gold-dark: #e8a93c;

    --white: #ffffff;
    --text-muted: #9ca9b8;

    --border-color: rgba(255, 255, 255, 0.08);

    /* Background */
    --body-bg: #081421;
    --card-bg: #102238;

    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);

    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.15);

    --shadow-gold: 0 10px 30px rgba(255, 195, 92, 0.25);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    /* Transition */
    --transition: all 0.3s ease;

}


/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Anek Bangla", sans-serif;

    background: var(--body-bg);

    color: var(--white);

    overflow-x: hidden;

}


button,
input {
    font-family: inherit;
}


/* =========================================
   HEADER
========================================= */

.site-header {

    position: relative;

    width: 100%;

    background:
        linear-gradient(90deg,
            #0d1b2e 0%,
            #0d1b2e 55%,
            #1d2d3f 100%);

    border-top: 5px solid #345d86;

}


.header-wrapper {

    min-height: 100px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================
   BRAND LOGO
========================================= */

.brand-logo {

    text-decoration: none;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 0.2px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

}


.brand-white {

    color: var(--white);

}


.brand-gold {

    color: var(--gold);

}


/* =========================================
   HEADER BUTTON
========================================= */

.header-cta {

    border: none;

    outline: none;

    min-width: 210px;

    height: 66px;

    padding: 0 28px;

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            var(--gold),
            var(--gold-light));

    color: #1c2b3d;

    font-size: 16px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    cursor: pointer;

    box-shadow:
        var(--shadow-gold);

    transition:
        var(--transition);

}


.header-cta:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(255, 195, 92, 0.35);

}


.header-cta i {

    font-size: 13px;

    transition:
        var(--transition);

}


.header-cta:hover i {

    transform: translateX(4px);

}


/* =========================================
   MODAL
========================================= */

.modal-content {

    border: none;

}


.registration-modal-content {

    position: relative;

    background:
        linear-gradient(145deg,
            #10253c,
            #0b1828);

    border-radius: var(--radius-lg);

    padding: 38px;

    border:
        1px solid rgba(255, 195, 92, 0.15);

    box-shadow:
        var(--shadow-md);

    color: var(--white);

}


.modal-close-btn {

    position: absolute;

    top: 15px;

    right: 18px;

    width: 38px;

    height: 38px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        var(--transition);

}


.modal-close-btn:hover {

    background: var(--gold);

    color: var(--primary-dark);

}


/* =========================================
   MODAL HEADER
========================================= */

.registration-modal-header {

    text-align: center;

    margin-bottom: 30px;

}


.modal-icon {

    width: 65px;

    height: 65px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg,
            var(--gold),
            var(--gold-light));

    color: var(--primary-dark);

    font-size: 26px;

}


.registration-modal-header h2 {

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 10px;

    color: var(--white);

}


.registration-modal-header p {

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-muted);

    margin: 0;

}


/* =========================================
   FORM
========================================= */

.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    font-size: 15px;

    font-weight: 600;

    color: var(--white);

}


.form-group label span {

    color: #ff6868;

}


.input-wrapper {

    position: relative;

}


.input-wrapper i {

    position: absolute;

    top: 50%;

    left: 18px;

    transform: translateY(-50%);

    color: var(--gold);

    font-size: 16px;

}


.input-wrapper input {

    width: 100%;

    height: 56px;

    border-radius: var(--radius-sm);

    border:
        1px solid rgba(255, 255, 255, 0.1);

    background:
        rgba(255, 255, 255, 0.05);

    color: var(--white);

    padding:
        0 18px 0 48px;

    outline: none;

    transition:
        var(--transition);

}


.input-wrapper input::placeholder {

    color: #718096;

}


.input-wrapper input:focus {

    border-color: var(--gold);

    background:
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 0 0 3px rgba(255, 195, 92, 0.08);

}


/* =========================================
   SUBMIT BUTTON
========================================= */

.registration-submit-btn {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: var(--radius-sm);

    background:
        linear-gradient(135deg,
            var(--gold),
            var(--gold-light));

    color: var(--primary-dark);

    font-size: 16px;

    font-weight: 800;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    cursor: pointer;

    transition:
        var(--transition);

}


.registration-submit-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        var(--shadow-gold);

}


.registration-submit-btn i {

    transition:
        var(--transition);

}


.registration-submit-btn:hover i {

    transform: translateX(5px);

}


/* =========================================
   FORM NOTE
========================================= */

.form-note {

    text-align: center;

    margin-top: 18px;

    margin-bottom: 0;

    color: var(--text-muted);

    font-size: 13px;

}


.form-note i {

    color: var(--gold);

    margin-right: 5px;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .site-header {

        border-top-width: 3px;

    }


    .header-wrapper {

        min-height: 82px;

        gap: 15px;

    }


    .brand-logo {

        font-size: 16px;

        gap: 3px;

        flex-wrap: wrap;

    }


    .header-cta {

        min-width: auto;

        height: 48px;

        padding: 0 15px;

        border-radius: 12px;

        font-size: 13px;

        white-space: nowrap;

    }


    .registration-modal-content {

        padding: 30px 22px;

        margin: 10px;

    }


    .registration-modal-header h2 {

        font-size: 24px;

    }

}


/* =========================================
   PREMIUM HERO SECTION
========================================= */

.hero-section {

    position: relative;

    min-height: 610px;

    padding: 52px 0 72px;

    overflow: hidden;

    background:
        radial-gradient(circle at 75% 25%,
            rgba(69, 102, 132, 0.32),
            transparent 28%),
        radial-gradient(circle at 20% 80%,
            rgba(35, 68, 105, 0.28),
            transparent 30%),
        linear-gradient(110deg,
            #0f1f34 0%,
            #142943 48%,
            #1d3957 100%);

}


/* Subtle texture */

.hero-section::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.18;

    background-image:

        linear-gradient(rgba(255, 255, 255, 0.015) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px);

    background-size: 55px 55px;

    pointer-events: none;

}


/* Bottom fade */

.hero-section::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 130px;

    background:
        linear-gradient(transparent,
            rgba(7, 19, 33, 0.18));

    pointer-events: none;

}


/* =========================================
   BACKGROUND GLOW
========================================= */

.hero-bg-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

}


.hero-bg-glow-1 {

    right: -180px;

    top: -180px;

    background:
        rgba(255, 195, 92, 0.06);

}


.hero-bg-glow-2 {

    left: -250px;

    bottom: -300px;

    background:
        rgba(47, 104, 165, 0.12);

}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {

    position: relative;

    z-index: 5;

}


/* =========================================
   MASTERCLASS BADGE
========================================= */

.masterclass-badge {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 17px;

    margin-bottom: 22px;

    border-radius: 50px;

    border:
        1px solid rgba(255, 195, 92, 0.42);

    background:
        linear-gradient(90deg,
            rgba(255, 195, 92, 0.10),
            rgba(255, 255, 255, 0.025));

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 25px rgba(0, 0, 0, 0.12);

    color: #ffd481;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

}


.badge-star {

    color: #ffd481;

    font-size: 11px;

}


.badge-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 10px var(--gold);

}


/* =========================================
   HERO TITLE
========================================= */

.hero-title {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(60px, 5.8vw, 92px);

    line-height: 0.94;

    font-weight: 700;

    letter-spacing: -3px;

    text-shadow:
        0 5px 20px rgba(0, 0, 0, 0.18);

}


.hero-title span {

    display: block;

}


.hero-title-white {

    color:
        #f5f6f7;

}


.hero-title-gold {

    color:
        #ffd37d;

    text-shadow:
        0 0 25px rgba(255, 195, 92, 0.08);

}


.ampersand {

    display: inline !important;

    margin-right: 8px;

}


/* =========================================
   TITLE ACCENT
========================================= */

.hero-title-line {

    display: flex;

    align-items: center;

    width: 125px;

    margin-top: 25px;

    margin-bottom: 22px;

}


.hero-title-line span {

    width: 100%;

    height: 2px;

    background:
        linear-gradient(90deg,
            var(--gold),
            transparent);

    position: relative;

}


.hero-title-line span::after {

    content: "";

    position: absolute;

    right: 0;

    top: 50%;

    width: 7px;

    height: 7px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        var(--gold);

    box-shadow:
        0 0 12px var(--gold);

}


/* =========================================
   DESCRIPTION
========================================= */

.hero-description {

    max-width: 780px;

    margin: 0 0 28px;

    color: #d3dae3;

    font-size: 20px;

    line-height: 1.65;

    letter-spacing: 0.2px;

}


.hero-description strong {

    color: #eef1f4;

    font-weight: 600;

}


/* =========================================
   DETAIL CARDS
========================================= */

.hero-details {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;

}


.hero-detail-card {

    min-width: 145px;

    min-height: 64px;

    padding: 10px 14px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 13px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.035));

    backdrop-filter:
        blur(8px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.10);

    transition:
        var(--transition);

}


.hero-detail-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(255, 195, 92, 0.38);

    background:
        rgba(255, 255, 255, 0.08);

}


/* Detail icon */

.detail-icon-box {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255, 195, 92, 0.12);

    border:
        1px solid rgba(255, 195, 92, 0.16);

    color:
        var(--gold);

    font-size: 15px;

}


.detail-content {

    display: flex;

    flex-direction: column;

    line-height: 1.3;

}


.detail-content small {

    color:
        #91a1b2;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.8px;

    margin-bottom: 4px;

}


.detail-content span {

    color:
        #f2f4f7;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

}


/* =========================================
   CTA
========================================= */

.hero-action {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.hero-cta {

    min-width: 245px;

    height: 58px;

    padding: 0 22px;

    border: none;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    cursor: pointer;

    background:
        linear-gradient(135deg,
            #ffc35c 0%,
            #ffe09a 100%);

    color:
        #15263a;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 0.2px;

    box-shadow:
        0 10px 0 rgba(130, 84, 22, 0.08),
        0 16px 35px rgba(255, 195, 92, 0.25);

    transition:
        var(--transition);

}


.hero-cta:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 22px 45px rgba(255, 195, 92, 0.36);

}


.cta-icon {

    width: 26px;

    height: 26px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(16, 35, 55, 0.12);

}


.cta-arrow {

    margin-left: 2px;

    transition:
        var(--transition);

}


.hero-cta:hover .cta-arrow {

    transform:
        translateX(5px);

}


/* =========================================
   LIMITED SEAT
========================================= */

.limited-seat-info {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 14px;

    color:
        #b9c4d1;

    font-size: 13px;

}


.limited-seat-info i {

    color:
        var(--gold);

    font-size: 12px;

}


.limited-seat-info b {

    color:
        var(--gold);

    padding: 0 3px;

}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {

    position: relative;

    z-index: 4;

    width: 100%;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================
   ORBITS
========================================= */

.orbit {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(255, 195, 92, 0.12);

}


.orbit-1 {

    width: 390px;

    height: 390px;

    border-style: dashed;

}


.orbit-2 {

    width: 310px;

    height: 310px;

    border:
        1px solid rgba(115, 154, 190, 0.12);

}


/* =========================================
   MAIN CIRCLE
========================================= */

.market-circle {

    position: relative;

    width: 245px;

    height: 245px;

    border-radius: 50%;

    display: flex;

    /* flex-direction: column; */

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    border:
        1px solid rgba(255, 195, 92, 0.42);

    background:
        radial-gradient(circle at 50% 35%,
            #294461,
            #172d47 65%,
            #10233a);

    box-shadow:

        inset 0 1px 30px rgba(255, 255, 255, 0.04),

        0 0 60px rgba(20, 56, 90, 0.38),

        0 25px 50px rgba(0, 0, 0, 0.18);

}


/* Inner border */

.market-circle::before {

    content: "";

    position: absolute;

    inset: 12px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.035);

}


/* =========================================
   MAIN SPARKLE
========================================= */

.main-sparkle {

    position: relative;

    z-index: 2;

    color:
        #ffdc8a;

    font-size: 46px;

    margin-bottom: 13px;

    filter:
        drop-shadow(0 0 14px rgba(255, 211, 125, 0.5));

}


/* =========================================
   MARKET CONTENT
========================================= */

.market-circle-content {

    position: relative;

    z-index: 2;

    color:
        #ffd37d;

    font-family:
        Georgia,
        serif;

}


.circle-label {

    display: block;

    color:
        rgba(255, 255, 255, 0.38);

    font-family:
        "Anek Bangla",
        sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 9px;

}


.market-circle-content h3 {

    margin: 0;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 600;

}


/* =========================================
   CIRCLE DIVIDER
========================================= */

.circle-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin: 8px 0;

}


.circle-divider span {

    width: 30px;

    height: 1px;

    background:
        rgba(255, 195, 92, 0.45);

}


.circle-divider i {

    font-size: 7px;

}


/* =========================================
   BOTTOM CHART ICON
========================================= */

.circle-bottom-icon {

    position: absolute;

    bottom: 17px;

    color:
        rgba(255, 195, 92, 0.32);

    font-size: 12px;

}


/* =========================================
   ORBIT ICONS
========================================= */

.orbit-icon {

    position: absolute;

    z-index: 5;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255, 195, 92, 0.20);

    background:
        rgba(19, 42, 65, 0.88);

    color:
        var(--gold);

    font-size: 14px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);

}


.orbit-icon-1 {

    top: 45px;

    left: 50px;

}


.orbit-icon-2 {

    right: 45px;

    bottom: 65px;

}


.orbit-icon-3 {

    right: 25px;

    top: 115px;

}


/* =========================================
   VISUAL SPARKLES
========================================= */

.visual-sparkle {

    position: absolute;

    z-index: 5;

    color:
        rgba(255, 211, 125, 0.7);

}


.sparkle-1 {

    top: 60px;

    right: 80px;

    font-size: 14px;

}


.sparkle-2 {

    bottom: 75px;

    left: 55px;

    font-size: 11px;

}


.sparkle-3 {

    top: 125px;

    left: 20px;

    font-size: 8px;

}


/* =========================================
   BACKGROUND COSMIC STARS
========================================= */

.hero-decor {

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

}


.cosmic-star {

    position: absolute;

    color:
        rgba(108, 149, 190, 0.16);

    filter:
        drop-shadow(0 0 15px rgba(67, 113, 160, 0.12));

}


.cosmic-star-1 {

    right: 1%;

    bottom: 10%;

    font-size: 46px;

    transform:
        rotate(15deg);

}


.cosmic-star-2 {

    right: 8%;

    bottom: 8%;

    font-size: 35px;

    transform:
        rotate(-10deg);

}


.cosmic-star-3 {

    right: 17%;

    bottom: 3%;

    font-size: 42px;

}


.cosmic-star-4 {

    right: 27%;

    bottom: 0;

    font-size: 28px;

}


.cosmic-star-5 {

    left: 65%;

    bottom: -10px;

    font-size: 38px;

}


.cosmic-star-6 {

    left: 72%;

    bottom: 2%;

    font-size: 25px;

}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 991px) {

    .hero-section {

        padding:
            65px 0 60px;

    }


    .hero-content {

        text-align: center;

    }


    .masterclass-badge {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-title-line {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

        max-width: 720px;

    }


    .hero-details {

        justify-content: center;

    }


    .hero-action {

        align-items: center;

    }


    .hero-visual {

        min-height: 420px;

        margin-top: 10px;

    }


    .cosmic-star {

        display: none;

    }

}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 575px) {

    .hero-section {

        padding:
            42px 0 45px;

    }


    .masterclass-badge {

        padding:
            8px 12px;

        gap: 6px;

        font-size: 9px;

        letter-spacing: 0.6px;

        white-space: nowrap;

    }


    .hero-title {

        font-size:
            clamp(48px, 14vw, 64px);

        line-height: 0.98;

        letter-spacing: -1.8px;

    }


    .ampersand {

        margin-right: 4px;

    }


    .hero-title-line {

        width: 85px;

        margin-top: 20px;

        margin-bottom: 18px;

    }


    .hero-description {

        font-size: 16px;

        line-height: 1.65;

        margin-bottom: 24px;

    }


    .hero-details {

        display: grid;

        grid-template-columns:
            1fr;

        width: 100%;

        gap: 9px;

    }


    .hero-detail-card {

        width: 100%;

        min-height: 58px;

        justify-content: flex-start;

    }


    .detail-icon-box {

        width: 36px;

        height: 36px;

    }


    .hero-cta {

        width: 100%;

        max-width: 310px;

        min-width: auto;

        height: 56px;

        font-size: 11px;

    }


    .limited-seat-info {

        font-size: 11px;

        justify-content: center;

        text-align: center;

    }


    /* Visual */

    .hero-visual {

        min-height: 340px;

        margin-top: 5px;

    }


    .orbit-1 {

        width: 310px;

        height: 310px;

    }


    .orbit-2 {

        width: 250px;

        height: 250px;

    }


    .market-circle {

        width: 205px;

        height: 205px;

    }


    .main-sparkle {

        font-size: 38px;

        margin-bottom: 8px;

    }


    .market-circle-content h3 {

        font-size: 19px;

    }


    .orbit-icon {

        width: 34px;

        height: 34px;

        font-size: 11px;

    }


    .orbit-icon-1 {

        top: 40px;

        left: 20px;

    }


    .orbit-icon-2 {

        right: 20px;

        bottom: 40px;

    }


    .orbit-icon-3 {

        right: 5px;

        top: 100px;

    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 375px) {

    .hero-title {

        font-size: 46px;

    }


    .masterclass-badge {

        font-size: 8px;

        padding: 8px 10px;

    }


    .hero-description {

        font-size: 15px;

    }

}





/* =========================================
   LEARNING SECTION
========================================= */

.learning-section {

    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(135deg,
            #f4f5f7 0%,
            #e9ebef 50%,
            #f4f5f7 100%);

    overflow: hidden;

}


/* =========================================
   SECTION HEADER
========================================= */

.learning-header {

    max-width: 1200px;

    margin-bottom: 42px;

}


.section-eyebrow {

    display: inline-block;

    margin-bottom: 14px;

    color: #9b6a16;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.learning-header h2 {

    max-width: 1250px;

    margin: 0 0 20px;

    color: #1c2c42;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4.2vw, 68px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -1.5px;

}


.learning-header h2 span {

    display: block;

}


.learning-header p {

    max-width: 950px;

    margin: 0;

    color: #607084;

    font-size: 20px;

    line-height: 1.7;

}


/* =========================================
   CARDS ROW
========================================= */

.learning-row {

    --bs-gutter-x: 22px;

    --bs-gutter-y: 22px;

}


/* =========================================
   LEARNING CARD
========================================= */

.learning-card {

    position: relative;

    height: 100%;

    min-height: 278px;

    padding: 42px 32px 30px;

    border-radius: 22px;

    border: 1px solid rgba(74, 98, 126, 0.16);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.92),
            rgba(247, 248, 250, 0.82));

    box-shadow:
        0 20px 45px rgba(35, 55, 80, 0.08);

    transition:
        all 0.35s ease;

    overflow: hidden;

}


/* Top subtle highlight */

.learning-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(191, 137, 36, 0.7),
            transparent);

    opacity: 0;

    transition:
        all 0.35s ease;

}


.learning-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(191, 137, 36, 0.35);

    box-shadow:
        0 25px 55px rgba(35, 55, 80, 0.14);

}


.learning-card:hover::before {

    opacity: 1;

}


/* =========================================
   CARD ICON
========================================= */

.learning-icon {

    width: 58px;

    height: 58px;

    margin-bottom: 28px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    background:
        linear-gradient(135deg,
            #f3f5f8,
            #e3e7ec);

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.9);

}


/* =========================================
   CARD TITLE
========================================= */

.learning-card h3 {

    margin: 0 0 14px;

    color: #1d2d42;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 800;

}


/* =========================================
   CARD DESCRIPTION
========================================= */

.learning-card p {

    margin: 0;

    color: #617185;

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1199px) {

    .learning-section {

        padding: 85px 0;

    }


    .learning-header h2 {

        font-size: clamp(42px, 5vw, 62px);

    }


    .learning-card {

        min-height: 255px;

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .learning-section {

        padding: 75px 0;

    }


    .learning-header {

        margin-bottom: 35px;

    }


    .learning-header h2 {

        font-size: 48px;

    }


    .learning-header p {

        max-width: 800px;

        font-size: 18px;

    }


    .learning-card {

        min-height: 250px;

        padding: 35px 28px;

    }


    .learning-card h3 {

        font-size: 22px;

    }


    .learning-card p {

        font-size: 16px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .learning-section {

        padding: 60px 0;

    }


    .learning-header {

        margin-bottom: 30px;

    }


    .section-eyebrow {

        margin-bottom: 10px;

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .learning-header h2 {

        font-size: clamp(36px, 10vw, 50px);

        line-height: 1.1;

        letter-spacing: -1px;

        margin-bottom: 16px;

    }


    .learning-header h2 span {

        display: inline;

    }


    .learning-header p {

        font-size: 16px;

        line-height: 1.7;

    }


    .learning-row {

        --bs-gutter-y: 16px;

    }


    .learning-card {

        min-height: auto;

        padding: 30px 25px;

        border-radius: 18px;

    }


    .learning-icon {

        width: 52px;

        height: 52px;

        margin-bottom: 20px;

        border-radius: 14px;

        font-size: 26px;

    }


    .learning-card h3 {

        margin-bottom: 10px;

        font-size: 21px;

    }


    .learning-card p {

        font-size: 15px;

        line-height: 1.65;

    }


    .learning-card:hover {

        transform: translateY(-4px);

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .learning-section {

        padding: 50px 0;

    }


    .learning-header h2 {

        font-size: 34px;

    }


    .learning-header p {

        font-size: 15px;

    }


    .learning-card {

        padding: 27px 22px;

    }

}


/* =========================================
   CURRICULUM SECTION
========================================= */

.curriculum-section {

    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(135deg,
            #f4f5f7 0%,
            #e9ebef 50%,
            #f4f5f7 100%);

    overflow: hidden;

}


/* Subtle premium background glow */

.curriculum-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    top: -300px;

    right: -200px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(191, 137, 36, 0.05),
            transparent 70%);

    pointer-events: none;

}


/* =========================================
   HEADER
========================================= */

.curriculum-header {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin-bottom: 35px;

}


.curriculum-header h2 {

    margin: 0 0 14px;

    color: #1d2d42;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 4vw, 62px);

    line-height: 1.04;

    font-weight: 700;

    letter-spacing: -1px;

}


.curriculum-header h2 span {

    display: block;

}


.curriculum-header p {

    max-width: 650px;

    margin: 0;

    color: #607084;

    font-size: 16px;

    line-height: 1.65;

}


/* =========================================
   CURRICULUM GRID
========================================= */

.curriculum-row {

    position: relative;

    z-index: 2;

    --bs-gutter-x: 14px;

    --bs-gutter-y: 14px;

}


/* =========================================
   CURRICULUM CARD
========================================= */

.curriculum-card {

    position: relative;

    width: 100%;

    min-height: 150px;

    padding: 19px 22px;

    display: flex;

    align-items: center;

    gap: 22px;

    border-radius: 15px;

    border:
        1px solid rgba(77, 98, 122, 0.15);

    background:
        rgba(255, 255, 255, 0.60);

    box-shadow:
        0 10px 25px rgba(31, 48, 70, 0.05);

    transition:
        all 0.3s ease;

    overflow: hidden;

}


/* Premium gold hover line */

.curriculum-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 3px;

    height: 100%;

    background:
        linear-gradient(to bottom,
            #d7a23c,
            #f2cf83);

    opacity: 0;

    transition:
        opacity 0.3s ease;

}


.curriculum-card:hover {

    transform: translateY(-4px);

    background: #ffffff;

    border-color:
        rgba(191, 137, 36, 0.32);

    box-shadow:
        0 18px 35px rgba(31, 48, 70, 0.10);

}


.curriculum-card:hover::before {

    opacity: 1;

}


/* =========================================
   NUMBER
========================================= */

.curriculum-number {

    min-width: 25px;

    padding-top: 1px;

    color: #a46f17;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.5px;

}


/* =========================================
   CONTENT
========================================= */

.curriculum-content {

    flex: 1;

}


.curriculum-content h3 {

    margin: 0 0 7px;

    color: #1e2d41;

    /* font-size: 15px; */

    line-height: 1.4;

    font-weight: 800;

}


.curriculum-content p {

    margin: 0;

    color: #617185;

    /* font-size: 11px; */

    line-height: 1.6;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .curriculum-section {

        padding: 80px 0;

    }


    .curriculum-header {

        max-width: 800px;

    }


    .curriculum-row {

        max-width: 100%;

    }


    .curriculum-header h2 {

        font-size: 48px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .curriculum-section {

        padding: 60px 0;

    }


    .curriculum-header {

        margin-bottom: 28px;

    }


    .curriculum-header h2 {

        font-size: clamp(34px, 9vw, 46px);

        line-height: 1.1;

        margin-bottom: 14px;

    }


    .curriculum-header h2 span {

        display: inline;

    }


    .curriculum-header p {

        font-size: 15px;

        line-height: 1.7;

    }


    .curriculum-row {

        --bs-gutter-y: 12px;

    }


    .curriculum-card {

        min-height: auto;

        padding: 20px 18px;

        gap: 15px;

        border-radius: 14px;

    }


    .curriculum-number {

        min-width: 24px;

        font-size: 11px;

    }


    .curriculum-content h3 {

        font-size: 14px;

        margin-bottom: 6px;

    }


    .curriculum-content p {

        font-size: 11px;

        line-height: 1.6;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .curriculum-section {

        padding: 50px 0;

    }


    .curriculum-header h2 {

        font-size: 33px;

    }


    .curriculum-header p {

        font-size: 14px;

    }


    .curriculum-card {

        padding: 18px 15px;

        gap: 12px;

    }

}




/* =========================================
   WHO SHOULD ATTEND
========================================= */

.attend-section {

    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f4f5f7 0%,
            #e9ebef 50%,
            #f4f5f7 100%);

}


/* =========================================
   HEADER
========================================= */

.attend-header {

    position: relative;

    z-index: 2;

    margin-bottom: 38px;

}


.attend-header .section-eyebrow {

    display: inline-block;

    margin-bottom: 14px;

    color: #9b6a16;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.attend-header h2 {

    margin: 0;

    color: #1d2d42;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(46px, 4.5vw, 68px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;

}


/* =========================================
   AUDIENCE LIST
========================================= */

.attend-list {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 14px 16px;

    align-items: center;

}


/* =========================================
   ATTEND PILL
========================================= */

.attend-pill {

    position: relative;

    min-height: 58px;

    padding: 8px 25px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border-radius: 999px;

    border:
        1px solid rgba(77, 98, 122, 0.16);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.80),
            rgba(245, 246, 248, 0.62));

    box-shadow:
        0 8px 20px rgba(31, 48, 70, 0.04);

    color: #25354a;

    font-size: 16px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.attend-pill:hover {

    transform: translateY(-4px);

    border-color:
        rgba(191, 137, 36, 0.38);

    background: #ffffff;

    box-shadow:
        0 14px 30px rgba(31, 48, 70, 0.10);

}


/* =========================================
   ICON
========================================= */

.attend-icon {

    width: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #a46f17;

    font-size: 15px;

}


.attend-pill:hover .attend-icon {

    color: #c28a24;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .attend-section {

        padding: 85px 0;

    }


    .attend-header h2 {

        font-size: clamp(42px, 6vw, 58px);

    }


    .attend-list {

        gap: 14px;

    }


    .attend-pill {

        font-size: 15px;

        padding: 8px 21px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .attend-section {

        padding: 65px 0;

    }


    .attend-header {

        margin-bottom: 28px;

    }


    .attend-header .section-eyebrow {

        margin-bottom: 10px;

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .attend-header h2 {

        font-size: clamp(35px, 10vw, 48px);

        line-height: 1.12;

        letter-spacing: -1px;

    }


    .attend-list {

        gap: 10px;

    }


    .attend-pill {

        min-height: 52px;

        padding: 7px 18px;

        gap: 8px;

        font-size: 14px;

    }


    .attend-icon {

        font-size: 14px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .attend-section {

        padding: 55px 0;

    }


    .attend-header h2 {

        font-size: 34px;

    }


    .attend-list {

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;

    }


    .attend-pill {

        width: 100%;

        justify-content: flex-start;

        padding: 13px 18px;

        border-radius: 14px;

    }

}


/* =========================================================
   REGISTRATION SECTION
========================================================= */

.registration-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #102238 0%,
            #18324f 55%,
            #203d5d 100%);
}


/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.registration-section::before {
    content: "";
    position: absolute;

    width: 550px;
    height: 550px;

    top: -250px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 164, 58, 0.08) 0%,
            transparent 70%);

    pointer-events: none;
}


.registration-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.registration-header {
    margin-bottom: 35px;
}


.registration-header .section-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: #f1c76b;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.registration-header h2 {
    margin: 0 0 20px;

    color: #f7f5f1;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(46px, 5vw, 72px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.registration-header h2 span {
    display: block;
}


.registration-header p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.registration-form-wrapper {
    position: relative;

    padding: 36px;

    border-radius: 28px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.96),
            rgba(232, 235, 240, 0.96));

    border:
        1px solid rgba(255, 255, 255, 0.55);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   FORM GROUP
========================================================= */

.masterclass-form .form-group {
    position: relative;

    width: 100%;
}


/* =========================================================
   INPUT ICON
========================================================= */

.masterclass-form .form-group>i {
    position: absolute;

    top: 50%;
    left: 24px;

    transform: translateY(-50%);

    z-index: 3;

    width: 20px;

    color: #d39a2e;

    font-size: 17px;

    text-align: center;

    pointer-events: none;
}


/* =========================================================
   INPUT FIELD
========================================================= */

/* Strong Bootstrap override */

.registration-section .masterclass-form input.form-control {
    width: 100% !important;

    height: 82px !important;

    padding: 0 25px 0 68px !important;

    border-radius: 18px !important;

    border:
        1px solid rgba(77, 99, 125, 0.25) !important;

    /* THIS PREVENTS WHITE INPUT */
    background-color:
        rgba(224, 228, 234, 0.58) !important;

    background-image: none !important;

    color: #1d2d42 !important;

    font-size: 16px !important;

    font-weight: 500 !important;

    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, 0.35),
        0 2px 5px rgba(20, 35, 55, 0.02) !important;

    outline: none !important;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.registration-section .masterclass-form input.form-control::placeholder {
    color: #687789 !important;

    opacity: 1 !important;
}


/* =========================================================
   INPUT FOCUS
========================================================= */

.registration-section .masterclass-form input.form-control:focus {
    border-color:
        rgba(207, 154, 46, 0.85) !important;

    background-color:
        rgba(235, 238, 242, 0.75) !important;

    color: #1d2d42 !important;

    box-shadow:
        0 0 0 4px rgba(214, 164, 58, 0.12),
        0 8px 20px rgba(20, 35, 55, 0.05) !important;

    outline: none !important;
}


/* =========================================================
   AUTOFILL FIX
========================================================= */

.registration-section .masterclass-form input.form-control:-webkit-autofill,

.registration-section .masterclass-form input.form-control:-webkit-autofill:hover,

.registration-section .masterclass-form input.form-control:-webkit-autofill:focus {

    -webkit-text-fill-color:
        #1d2d42 !important;

    -webkit-box-shadow:
        0 0 0 1000px #e1e5eb inset !important;

    box-shadow:
        0 0 0 1000px #e1e5eb inset !important;

    transition:
        background-color 5000s ease-in-out 0s;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.registration-submit-btn {
    width: 100%;

    height: 80px;

    border: none;

    border-radius: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    cursor: pointer;

    color: #1b2b40;

    background:
        linear-gradient(90deg,
            #f8bc42 0%,
            #ffd875 48%,
            #ffe6aa 100%);

    font-size: 16px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    box-shadow:
        0 14px 30px rgba(191, 137, 36, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.registration-submit-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(191, 137, 36, 0.35);
}


.registration-submit-btn:active {
    transform: translateY(0);
}


.registration-submit-btn i {
    font-size: 15px;

    transition: transform 0.3s ease;
}


.registration-submit-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .registration-section {
        padding: 80px 0;
    }

    .registration-header h2 {
        font-size: clamp(42px, 6vw, 58px);
    }

    .registration-form-wrapper {
        padding: 28px;

        border-radius: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .registration-section {
        padding: 65px 0;
    }

    .registration-header {
        margin-bottom: 28px;
    }

    .registration-header .section-eyebrow {
        margin-bottom: 10px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .registration-header h2 {
        margin-bottom: 16px;

        font-size: clamp(36px, 10vw, 48px);

        line-height: 1.1;
    }

    .registration-header h2 span {
        display: inline;
    }

    .registration-header p {
        font-size: 15px;
    }

    .registration-form-wrapper {
        padding: 18px;

        border-radius: 20px;
    }

    .registration-section .masterclass-form input.form-control {
        height: 64px !important;

        padding-left: 55px !important;

        border-radius: 14px !important;

        font-size: 14px !important;
    }

    .masterclass-form .form-group>i {
        left: 19px;

        font-size: 15px;
    }

    .registration-submit-btn {
        height: 64px;

        border-radius: 14px;

        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .registration-section {
        padding: 55px 0;
    }

    .registration-header h2 {
        font-size: 34px;
    }

    .registration-header p {
        font-size: 14px;
    }

    .registration-form-wrapper {
        padding: 14px;

        border-radius: 18px;
    }

    .registration-section .masterclass-form input.form-control {
        height: 58px !important;

        padding-left: 52px !important;

        font-size: 13px !important;
    }

    .registration-submit-btn {
        height: 58px;

        font-size: 12px;
    }

}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    position: relative;
    padding: 100px 0 110px;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f2f3f5 0%,
            #e5e8ed 50%,
            #f1f2f4 100%);
}


/* =========================================================
   BACKGROUND EFFECT
========================================================= */

.faq-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 164, 58, 0.05),
            transparent 70%);

    pointer-events: none;
}


.faq-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FAQ HEADER
========================================================= */

.faq-header {
    margin-bottom: 45px;
}


.faq-header .section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #9a6817;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.faq-header h2 {
    margin: 0;

    color: #20324a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


/* =========================================================
   FAQ WRAPPER
========================================================= */

.faq-wrapper {
    width: 100%;
    max-width: 1080px;

    margin: 0 auto;
}


/* =========================================================
   ACCORDION ITEM
========================================================= */

.faq-section .accordion-item {
    margin-bottom: 14px;

    overflow: hidden;

    border:
        1px solid rgba(48, 70, 98, 0.15) !important;

    border-radius: 18px !important;

    background:
        rgba(255, 255, 255, 0.48) !important;

    box-shadow:
        0 8px 25px rgba(25, 45, 70, 0.03);

    transition:
        all 0.3s ease;
}


.faq-section .accordion-item:hover {
    transform: translateY(-2px);

    border-color:
        rgba(214, 164, 58, 0.35) !important;

    box-shadow:
        0 14px 35px rgba(25, 45, 70, 0.06);
}


/* =========================================================
   ACCORDION BUTTON
========================================================= */

.faq-section .accordion-button {
    position: relative;

    min-height: 68px;

    padding: 20px 28px;

    display: flex;

    align-items: center;

    background:
        transparent !important;

    color:
        #20324a !important;

    font-size: 16px;

    font-weight: 700;

    box-shadow: none !important;

    border-radius: 18px !important;
}


/* Remove Bootstrap default arrow */

.faq-section .accordion-button::after {
    display: none !important;
}


/* =========================================================
   CUSTOM FAQ ICON
========================================================= */

.faq-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 18px;

    margin-right: 10px;

    color: #20324a;

    font-size: 13px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


/* Open State */

.faq-section .accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(90deg);

    color: #c88f27;
}


.faq-section .accordion-button:not(.collapsed) {
    color: #20324a !important;
}


/* =========================================================
   ACCORDION BODY
========================================================= */

.faq-section .accordion-body {
    padding:
        0 28px 24px 56px;

    color: #627083;

    font-size: 15px;

    line-height: 1.75;

    background: transparent;
}


/* =========================================================
   ACTIVE ITEM
========================================================= */

.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color:
        rgba(214, 164, 58, 0.55) !important;

    background:
        rgba(255, 255, 255, 0.7) !important;

    box-shadow:
        0 15px 40px rgba(214, 164, 58, 0.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-wrapper {
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 65px 0 70px;
    }

    .faq-header {
        margin-bottom: 30px;
    }

    .faq-header .section-eyebrow {
        margin-bottom: 10px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .faq-header h2 {
        font-size: clamp(34px, 9vw, 46px);

        line-height: 1.1;

        letter-spacing: -0.8px;
    }

    .faq-section .accordion-item {
        margin-bottom: 10px;

        border-radius: 14px !important;
    }

    .faq-section .accordion-button {
        min-height: 60px;

        padding: 17px 18px;

        border-radius: 14px !important;

        font-size: 14px;

        line-height: 1.45;
    }

    .faq-icon {
        flex: 0 0 16px;

        margin-right: 8px;

        font-size: 11px;
    }

    .faq-section .accordion-body {
        padding:
            0 18px 20px 42px;

        font-size: 14px;

        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .faq-section {
        padding: 55px 0 60px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-section .accordion-button {
        padding: 16px;

        font-size: 13px;
    }

    .faq-section .accordion-body {
        padding:
            0 16px 18px 38px;

        font-size: 13px;
    }

}


/* =========================================================
   FINAL CTA SECTION
========================================================= */

.final-cta-section {
    position: relative;
    padding: 105px 0 95px;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #102238 0%,
            #12263e 50%,
            #0d1d30 100%);
}


/* =========================================================
   BACKGROUND EFFECT
========================================================= */

.final-cta-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -350px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(214, 164, 58, 0.07),
            transparent 70%);

    pointer-events: none;
}


.final-cta-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.final-cta-content {
    max-width: 1100px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.final-cta-content .section-eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: #f2c96d;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.final-cta-content h2 {
    max-width: 1000px;

    margin: 0 auto 22px;

    color: #f5f3ef;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(50px, 5.5vw, 72px);

    font-weight: 700;

    line-height: 1.02;

    letter-spacing: -1.5px;
}


.final-cta-content h2 span {
    display: block;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cta-description {
    margin: 0 auto 24px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================================
   HIGHLIGHT TEXT
========================================================= */

.cta-highlight-text {
    margin-bottom: 42px;

    color: #f3cf7e;

    font-size: 17px;

    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.cta-highlight-text span {
    display: inline-block;

    margin: 0 5px;

    color: #f7d98f;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.final-cta-btn {
    min-width: 300px;

    height: 64px;

    padding: 0 32px;

    border: none;

    border-radius: 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    cursor: pointer;

    color: #1c2b3f;

    background:
        linear-gradient(135deg,
            #f6b93f 0%,
            #ffd777 52%,
            #ffe6aa 100%);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.3px;

    text-transform: uppercase;

    box-shadow:
        0 14px 32px rgba(214, 164, 58, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.final-cta-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(214, 164, 58, 0.32);
}


.final-cta-btn:active {
    transform: translateY(0);
}


.final-cta-btn i {
    font-size: 15px;

    transition: transform 0.3s ease;
}


.final-cta-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   DISCLAIMER
========================================================= */

.cta-disclaimer {
    max-width: 1100px;

    margin: 42px auto 0;

    padding-top: 0;
}


.cta-disclaimer p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;

    line-height: 1.75;
}


.cta-disclaimer strong {
    color: #ffffff;

    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .final-cta-section {
        padding: 85px 0 75px;
    }

    .final-cta-content h2 {
        font-size: clamp(44px, 7vw, 62px);
    }

    .cta-disclaimer {
        max-width: 900px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .final-cta-section {
        padding: 70px 0 65px;
    }

    .final-cta-content .section-eyebrow {
        margin-bottom: 12px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .final-cta-content h2 {
        margin-bottom: 18px;

        font-size: clamp(38px, 10vw, 50px);

        line-height: 1.08;

        letter-spacing: -0.8px;
    }

    .final-cta-content h2 span {
        display: inline;
    }

    .cta-description {
        margin-bottom: 22px;

        font-size: 14px;
    }

    .cta-highlight-text {
        margin-bottom: 32px;

        font-size: 12px;

        line-height: 2;

        letter-spacing: 2px;
    }

    .final-cta-btn {
        width: 100%;

        max-width: 340px;

        height: 60px;

        min-width: auto;

        padding: 0 20px;

        border-radius: 15px;

        font-size: 12px;
    }

    .cta-disclaimer {
        margin-top: 35px;
    }

    .cta-disclaimer p {
        font-size: 12px;

        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .final-cta-section {
        padding: 60px 0 55px;
    }

    .final-cta-content h2 {
        font-size: 34px;
    }

    .cta-highlight-text {
        font-size: 11px;

        letter-spacing: 1px;
    }

    .cta-disclaimer p {
        font-size: 11px;
    }

}

/* =========================================================
   MASTERCLASS FOOTER
========================================================= */

.masterclass-footer {
    position: relative;

    padding: 28px 0;

    background: #0d1b2d;

    border-top: 1px solid rgba(255, 255, 255, 0.04);
}


/* Footer Text */

.masterclass-footer p {
    margin: 0;

    text-align: center;

    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;

    font-weight: 400;

    letter-spacing: 0.3px;

    line-height: 1.6;
}


/* Separator */

.masterclass-footer p span {
    display: inline-block;

    margin: 0 5px;

    color: #e7bd62;

    font-weight: 600;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .masterclass-footer {
        padding: 22px 0;
    }

    .masterclass-footer p {
        font-size: 12px;

        line-height: 1.8;

        padding: 0 10px;
    }

}


