/* --- High-Fidelity Design System --- */
:root {
    --gale-navy: #082046;
    --gale-blue: #082046;
    --gale-cyan: #1E4E8A;
    --gale-gold: #C5A028;
    --gale-light-gold: #E6C34C;
}

/* --- High-Fidelity Hero (1:1 with Reference) --- */
.hero-box {
    background: #082046;
    /* Base color for transition */
    background-image: url('../images/backgrounds/trading-hero-background.png');
    /* Fallback image */
    background-size: cover;
    background-position: center;
    padding: 220px 0;
    overflow: hidden;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-box .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-box .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(8, 32, 70, 0.315), rgba(8, 32, 70, 0.409));
    z-index: 1;
}

.hero-box .hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-box .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-box .hero-left {
    flex: 1;
    max-width: 750px;
    padding-top: 100px;
}

.hero-box .hero-topline {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-box .hero-title {
    color: #fff;
    font-size: 65px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-box .hero-title span {
    background: linear-gradient(90deg, #c5a021 0%, #f1d279 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-box .hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-box .hero-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #c5a021, #e6c34c);
    color: #fff;
    padding: 8px 8px 8px 32px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(197, 160, 33, 0.4);
}

.hero-box .hero-btn .icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.hero-box .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(197, 160, 33, 0.6);
}

.hero-box .hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-box .hero-phone {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    transform: perspective(1000px) rotateY(-5deg);
}

/* Trust stats strip — hidden on desktop, shown only on mobile */
.hero-mobile-stats {
    display: none;
}


.terminal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 70px;
}

.terminal-card {
    background: #ffffff;
    color: var(--clr-navy);
    border-radius: 40px;
    border: 1px solid rgba(8, 32, 70, 0.06);
    padding: 40px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.terminal-card.featured {
    transform: scale(1.05);
    /* box-shadow: 0 30px 60px rgba(8, 32, 70, 0.1); */
    z-index: 2;
    border: 1px solid rgba(8, 32, 70, 0.06);
    /* border-color: #c5a021; */
}

.terminal-card:hover {
    transform: translateY(-15px);
    background: #082046;
    box-shadow: 0 40px 80px rgba(8, 32, 70, 0.2);
}

.terminal-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
    background: #082046;
    box-shadow: 0 50px 100px rgba(8, 32, 70, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--grad-gold);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-navy);
    font-size: 32px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(197, 160, 33, 0.3);
}

.terminal-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--clr-navy);
    transition: color 0.4s ease;
}

.terminal-card:hover h3 {
    color: #ffffff;
}

.terminal-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 30px;
    color: var(--clr-navy);
    transition: color 0.4s ease, opacity 0.4s ease;
}

.terminal-card:hover p {
    color: #ffffff;
    opacity: 0.9;
}

.card-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(8, 32, 70, 0.05);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-navy);
    transition: all 0.4s ease;
}

.terminal-card:hover .card-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #c5a021;
}

.card-tag.gold {
    background: var(--grad-gold);
    color: var(--clr-navy);
}

/* --- Hero: Large Tablet --- */
@media screen and (max-width: 1100px) {
    .hero-box .hero-title {
        font-size: 60px;
    }
}

/* --- Hero: Tablet (960px) --- */
@media screen and (max-width: 960px) {
    .hero-box {
        padding-top: 130px;
        padding-bottom: 60px;
        height: auto;
        min-height: 90vh;
        align-items: flex-start;
    }

    .hero-box .hero-overlay {
        background: linear-gradient(rgba(8, 32, 70, 0.3), rgba(8, 32, 70, 0.55));
    }

    .hero-box .hero-container {
        padding: 0 24px;
    }

    .hero-box .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-box .hero-left {
        max-width: 100%;
        padding-top: 20px;
    }

    .hero-box .hero-title {
        font-size: 52px;
    }

    .hero-box .hero-desc {
        margin: 0 auto 36px;
        max-width: 560px;
    }

    .hero-box .hero-btn {
        display: inline-flex;
        margin: 0 auto;
    }

    .hero-box .hero-right {
        margin-top: 30px;
    }
}

/* --- Hero: Mobile (600px) --- */
@media screen and (max-width: 600px) {
    .hero-box {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: 80vh;
        align-items: center;
    }

    .hero-box .hero-overlay {
        /* Stronger overlay for better text contrast on mobile */
        background: linear-gradient(160deg,
                rgba(5, 20, 41, 0.55) 0%,
                rgba(8, 32, 70, 0.7) 60%,
                rgba(5, 20, 41, 0.8) 100%);
    }

    .hero-box .hero-container {
        padding: 0 18px;
    }

    .hero-box .hero-content {
        gap: 0;
    }

    .hero-box .hero-left {
        padding-top: 0;
        width: 100%;
    }

    /* Top badge pill */
    .hero-box .hero-topline {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-bottom: 18px;
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        padding: 6px 16px;
        border-radius: 100px;
        color: rgba(255, 255, 255, 0.95);
    }

    .hero-box .hero-title {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .hero-box .hero-desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 28px;
        padding: 0;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.8);
    }

    /* CTA button — full-width feel on mobile */
    .hero-box .hero-btn {
        /* width: 100%; */
        justify-content: space-between;
        font-size: 16px;
        padding: 10px 10px 10px 24px;
        /* border-radius: 16px; */
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-box .hero-btn .icon-wrap {
        width: 40px;
        height: 40px;
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Mobile Trust Stats Strip */
    .hero-mobile-stats {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-top: 36px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        overflow: hidden;
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, 0.07);
    }

    .hero-mobile-stats .stat {
        flex: 1;
        text-align: center;
        padding: 14px 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-mobile-stats .stat:last-child {
        border-right: none;
    }

    .hero-mobile-stats .stat-num {
        font-size: 18px;
        font-weight: 800;
        color: #f1d279;
        line-height: 1;
        margin-bottom: 4px;
    }

    .hero-mobile-stats .stat-label {
        font-size: 10px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .hero-box .hero-right {
        display: none;
    }
}

/* --- Hero: Very Small Phones (380px) --- */
@media screen and (max-width: 380px) {
    .hero-box .hero-title {
        font-size: 30px;
    }

    .hero-box .hero-topline {
        font-size: 11px;
    }

    .hero-box .hero-desc {
        font-size: 13px;
    }

    .hero-mobile-stats .stat-num {
        font-size: 15px;
    }

    .hero-mobile-stats .stat-label {
        font-size: 9px;
    }
}

/* --- Promotions Section (1:1 Restoration) --- */
.promotions-box {
    padding: 70px 0;
    background-color: #fff;
    overflow: hidden;
}

.promotions-box .title {
    color: #0A1927;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

/* --- Promotions Box (User Reference 1:1) --- */
.promotions-box {
    padding-bottom: 70px;
    padding-top: 70px;
    background-color: #fff;
    max-width: 100%;
    overflow: hidden;
}

.promotions-box .title {
    color: var(--gale-navy);
    /* High-fidelity Navy from Design System */
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.promotions-box .title span {
    background: linear-gradient(90deg, #c5a021 0%, #f1d279 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.swiperPro {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 1320px;
    padding: 0 20px;
}

.swiperPro .swiper-wrapper {
    align-items: center;
    /* Center vertically for better scaling feel */
    min-height: 550px;
    padding-bottom: 40px;
}

.swiperPro .swiper-slide {
    border-radius: 20px;
    height: 400px;
    overflow: hidden;
    position: relative;
    transform: scale(0.85);
    /* Slightly smaller for better contrast */
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 420px;
    opacity: 0.6;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

.swiperPro .swiper-slide-active {
    transform: scale(1.2) !important;
    /* Significantly larger */
    opacity: 1;
    z-index: 10;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); */
    border: 1px solid var(--gale-gold);
    /* Add gold border to active */
}

.swiperPro .swiper-slide-prev,
.swiperPro .swiper-slide-next {
    transform: scale(0.95);
    opacity: 0.85;
}

.swiper-slide .img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.swiper-slide .info {
    align-items: center;
    backdrop-filter: blur(12.5px);
    background: rgba(10, 25, 39, 0.35);
    /* border: 1px solid rgba(197, 160, 40, 0.5); */
    border-radius: 20px;
    bottom: 0;
    box-shadow: -20px 68px 20px 0 transparent, -13px 43px 18px rgba(0, 0, 0, 0.01), -7px 24px 15px rgba(0, 0, 0, 0.04), -3px 11px 11px rgba(0, 0, 0, 0.07), -1px 3px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 180px;
    padding-bottom: 20px;
    padding-top: 12px;
    position: absolute;
    width: 100%;
    left: 0;
    transition: all 0.2s;
}

.swiper-slide {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .info {
    background: rgba(10, 25, 39, 0.5);
    backdrop-filter: blur(16px);
    border-color: #E6C34C;
}

.swiper-slide-prev .info,
.swiper-slide-next .info {
    background: rgba(10, 25, 39, 0.3);
    backdrop-filter: blur(10px);
}

.swiper-slide .info .c-title {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
}

.swiper-slide .info .c-text {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 10px;
    min-height: 40px;
    padding: 0 32px;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.swiper-slide .info .c-btn {
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 24px;
    padding: 5px 22px;
    text-align: center;
    text-decoration: none;
    width: fit-content;
    transition: all 0.2s ease;
    background: rgba(197, 160, 40, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.swiper-slide .info .c-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.c-btn.gold {
    background: linear-gradient(135deg, #C5A028, #E6C34C);
    box-shadow: inset 0 1px 1px rgba(255, 255, 240, 0.3), 0 6px 12px rgba(0, 0, 0, 0.2);
}

.swiperPro-pagination {
    margin-top: 24px;
    position: relative;
    text-align: center;
}

.swiperPro-pagination .swiper-pagination-bullet {
    background: rgba(10, 25, 39, 0.3);
    height: 8px;
    width: 8px;
    opacity: 1;
    transition: all 0.3s;
    margin: 0 5px;
}

.swiperPro-pagination .swiper-pagination-bullet-active {
    background: #0f9cdb;
    border-radius: 4px;
    width: 24px;
}

.pro-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .promotions-box {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .promotions-box .title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .swiperPro {
        display: none !important;
    }

    .pro-mobile {
        display: block !important;
        /* padding: 0 16px; */
    }

    .mobile-card-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mobile-card {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        background: #0A1927;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-card .img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .mobile-card .info {
        background: linear-gradient(180deg, rgba(10, 25, 39, 0.8) 0%, #0A1927 100%);
        backdrop-filter: blur(15px);
        padding: 24px;
        margin-top: -10px;
        position: relative;
        z-index: 2;
        border-radius: 0 0 20px 20px;
    }

    .mobile-card .c-title {
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 8px;
        background: linear-gradient(135deg, #fff 0%, #E6C34C 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mobile-card .c-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .mobile-card .c-btn {
        display: inline-block;
        padding: 8px 24px;
        border-radius: 100px;
        font-weight: 700;
        color: #0A1927;
        background: linear-gradient(135deg, #C5A028, #E6C34C);
        text-decoration: none;
        font-size: 14px;
        box-shadow: 0 5px 15px rgba(197, 160, 40, 0.3);
        transition: 0.3s;
    }

    .mobile-card .c-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(197, 160, 40, 0.4);
    }

    .mobile-card .c-btn:active {
        transform: scale(0.96);
    }
}




/* --- Awards Section (Production) --- */
.awards-box {
    background: #fcfcfc;
    padding: 80px 24px;
}

.awards-box .title {
    color: #082046;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.awards-box .title span {
    font-weight: 800;
}

.awards-box .awards-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.awards-box .award-item {
    flex: 1;
    text-align: center;
}

.awards-box .award-img-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.awards-box .award-img-wrapper img {
    max-height: 100%;
}

.awards-box .award-text {
    color: #082046;
    font-weight: 700;
    font-size: 16px;
}



@media screen and (max-width: 960px) {

    .awards-box .awards-grid {
        flex-wrap: wrap;
    }

    .awards-box .award-item {
        width: 50%;
    }

}

@media screen and (max-width: 600px) {
    .awards-box .award-item {
        width: 100%;
    }

}

/* --- High-Fidelity Experts (Production) --- */
.expert-section {
    background: var(--gale-navy);
    padding: 100px 24px;
}

.expert-section .title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.expert-section .title span {
    font-weight: 800;
    color: var(--gale-cyan);
}

.expert-section .expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.expert-section .expert-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s;
}

.expert-section .expert-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gale-cyan);
    transform: translateY(-10px);
}

.expert-section .expert-img {
    height: 300px;
    background: #000;
}

.expert-section .expert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
}

.expert-section .expert-card:hover .expert-img img {
    opacity: 1;
}

.expert-section .expert-info {
    padding: 30px;
    text-align: center;
    color: #fff;
}

.expert-section .name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.expert-section .role {
    color: var(--gale-cyan);
    font-weight: 600;
    margin-bottom: 20px;
}

.expert-section .expert-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    opacity: 0.6;
}



@media screen and (max-width: 960px) {
    .expert-section .expert-grid {
        grid-template-columns: 1fr;
    }

    .expert-section .expert-img {
        height: 400px;
    }
}

/* --- Market Insights (Production) --- */
/* --- Why Choose (Production) --- */
/* ========== Gale Prime Advantage (State of the Art Design) ========== */
.new-choose {
    background: #fafbfc;
    padding: 120px 24px;
    position: relative;
}

.new-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#082046 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
}

.new-choose .new-choose-box {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    counter-reset: advantage-counter;
}

.new-choose .title {
    color: #082046;
    font-size: 46px;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.new-choose .title span {
    color: #e6b800;
    /* Logo Gold */
    position: relative;
}

.new-choose .title span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e6b800;
    border-radius: 2px;
    opacity: 0.3;
}

.new-choose .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.new-choose .card-item {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px 20px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    counter-increment: advantage-counter;
}

/* Decorative Number */
.new-choose .card-item::after {
    content: "0" counter(advantage-counter);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 900;
    color: #e6b800;
    opacity: 1;
    transition: 0.5s ease;
}

/* Hover Accent Line */
.new-choose .card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: #e6b800;
    transition: 0.5s ease;
    transform: translateX(-50%);
}

.new-choose .card-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(8, 32, 70, 0.1);
    border-color: rgba(230, 184, 0, 0.2);
}

.new-choose .card-item:hover::before {
    width: 60%;
}

.new-choose .card-item:hover::after {
    opacity: 1;
    color: #e6b800;
    transform: translateY(-5px);
}

.new-choose .card-icon {
    width: 105px;
    height: 105px;
    background: #f8fafc;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 1), 0 10px 20px rgba(0, 0, 0, 0.04);
}

.new-choose .card-item:hover .card-icon {
    background: linear-gradient(135deg, #f1d279 0%, #c5a028 100%);
    border-radius: 50%;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 30px rgba(197, 160, 40, 0.2);
}

.new-choose .icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: 0.5s ease;
}

.new-choose .card-item:hover .icon-img {
    filter: brightness(0) invert(1);
    transform: scale(1);
}

.new-choose .card-title {
    color: #082046;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.new-choose .card-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .new-choose .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 650px) {
    .new-choose .card-grid {
        grid-template-columns: 1fr;
    }

    .new-choose .title {
        font-size: 34px;
    }

    .new-choose .card-item {
        padding: 50px 25px;
    }
}

/* --- Stats Section (Production) --- */
.stats-table-section {
    background: #fff;
    padding: 60px 24px;
}

.stats-table-section .table-box {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #082046;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.stats-table-section .table-header {
    background: linear-gradient(135deg, #082046, #1E4E8A);
    padding: 30px;
    text-align: center;
    color: #fff;
}

.stats-table-section .billion-num {
    font-size: 48px;
    font-weight: 700;
}

.stats-table-section .table-body {
    display: flex;
    background: #fff;
    border-top: 1px solid #082046;
}

.stats-table-section .table-col {
    flex: 1;
    padding: 40px;
    text-align: center;
    border-right: 1px solid #082046;
}

.stats-table-section .table-col:last-child {
    border-right: none;
}

.stats-table-section .col-num {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--gale-blue), #1E4E8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-table-section .col-label {
    color: #082046;
    font-size: 14px;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .stats-table-section .table-body {
        flex-direction: column;
    }

    .stats-table-section .table-col {
        border-right: none;
        border-bottom: 1px solid var(--gale-blue);
    }

    .new-choose .card-grid {
        grid-template-columns: 1fr;
    }
}



/* --- Cinematic Markets Dashboard --- */
.cinematic-markets {
    background: radial-gradient(circle at top right, #082046 0%, #040e21 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cinematic-markets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/patterns/grid-pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.cm-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.cm-header .title {
    color: #fff;
    font-size: 46px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cm-header .title span {
    font-weight: 800;
    background: linear-gradient(90deg, #c5a028 0%, #f1d279 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cm-header .text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
}

/* Tabs */
.cm-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cm-tabs {
    display: inline-flex;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.cm-tab {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0 0 15px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cm-tab:hover {
    color: #fff;
}

.cm-tab.active {
    color: #c5a028;
}

.cm-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c5a028;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cm-tab.active::after {
    transform: scaleX(1);
}

/* Stage */
.cm-stage {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    /* min-height: 600px; */
}

.cm-view {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 0;
}

.cm-view.active {
    display: flex;
    opacity: 1;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Visual Left */
.cm-visual {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.cm-visual img {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
    mix-blend-mode: luminosity;
    transition: all 0.8s ease;
}

.cm-view.active .cm-visual img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.cm-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(8, 32, 70, 0.9) 0%, rgba(8, 32, 70, 0.2) 100%);
    z-index: 1;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(197, 160, 40, 0.2);
    filter: blur(100px);
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
}

.cm-desc {
    position: relative;
    z-index: 2;
}

.cm-desc h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.cm-desc p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
}

.cm-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(197, 160, 40, 0.5);
    color: #c5a028;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    background: rgba(197, 160, 40, 0.05);
}

.cm-btn:hover {
    background: #c5a028;
    color: #082046;
}

/* Data Right (Ticker Grid) */
.cm-data {
    width: 600px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    align-content: center;
    background: rgba(0, 0, 0, 0.15);
}

.cm-ticker {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.cm-ticker:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.tic-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tic-top .sym {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.tic-top .spread {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.tic-mid {
    display: flex;
    justify-content: space-between;
}

.tic-val {
    display: flex;
    flex-direction: column;
}

.tic-val small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.tic-val {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.tic-val span {
    font-size: 28px;
    font-weight: 700;
}

.tic-val.up {
    color: #2eac68;
}

.tic-val.down {
    color: #d84545;
}

.tic-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 32, 70, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: 0.3s;
}

.cm-ticker:hover .tic-hover {
    opacity: 1;
}

.tic-hover button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}

.b-sell {
    background: #d84545;
}

.b-sell:hover {
    background: #ff5252;
    box-shadow: 0 5px 15px rgba(216, 69, 69, 0.4);
}

.b-buy {
    background: #2eac68;
}

.b-buy:hover {
    background: #35cf7d;
    box-shadow: 0 5px 15px rgba(46, 172, 104, 0.4);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .cm-view.active {
        flex-direction: column;
    }

    .cm-visual {
        min-height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .cm-data {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .cm-header .title {
        font-size: 32px;
    }

    .cm-data {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .cm-tabs {
        width: 100%;
        overflow-x: auto;
        border-radius: 12px;
        justify-content: flex-start;
    }

    .cm-tab {
        border-radius: 8px;
    }
}

.safe {
    position: relative;
    /* background: #fdfdfd; */
    padding: 140px 24px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Institutional Texture */
.safe::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#082046 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Soft Color Spotlights */
.safe::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(230, 184, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(8, 32, 70, 0.04) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.safe .title {
    position: relative;
    z-index: 2;
    color: #082046;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 30px;
    letter-spacing: -1.5px;
    text-align: center;
}

.safe .title span {
    color: #c5a021;
    display: block;
    font-weight: 800;
}

.safe .text {
    position: relative;
    z-index: 2;
    color: #4a5568;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 50px;
}

.safe .img-box {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.safe .img-box .img {
    max-width: 500px;
    width: 100%;
    /* filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.08)); */
    /* animation: float-platform 6s ease-in-out infinite; */
}

.safe .img-box .img img {
    width: 100%;
    height: auto;
    display: block;
}

.safe .btn-1 {
    position: relative;
    padding: 15px 45px;
    border: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    cursor: pointer;
    background: linear-gradient(180deg, #fff3a6 0%, #ffd85f 35%, #ffbf2f 70%, #d78a10 100%);
    box-shadow: 0 4px 15px rgba(215, 138, 16, 0.2), 0 0 20px rgba(255, 204, 51, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    margin: 50px auto 0;
    align-self: center;
    z-index: 2;
}

.safe .btn-1::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1;
}

.safe .btn-1::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150px;
    width: 100px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: rotate(25deg);
    animation: shine-btn 3.5s linear infinite;
    z-index: 2;
}

@keyframes shine-btn {
    0% {
        left: -150px;
    }

    100% {
        left: 120%;
    }
}

.safe .btn-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 138, 16, 0.4), 0 0 30px rgba(255, 204, 51, 0.4);
}

/* Responsive Overrides for Safe Section */
@media (max-width: 991px) {
    .safe {
        padding: 90px 20px;
    }

    .safe .title {
        font-size: 38px;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .safe .text {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .safe .img-box {
        margin-top: 40px;
    }

    .safe .img-box .img {
        max-width: 400px;
    }

    .safe .btn-1 {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .safe {
        padding: 60px 16px;
    }

    .safe .title {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .safe .text {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .safe .img-box {
        margin-top: 30px;
    }

    .safe .img-box .img {
        max-width: 280px;
    }

    .safe .btn-1 {
        padding: 12px 30px;
        font-size: 15px;
        margin-top: 30px;
    }
}


.total-box .info .btn {
    position: relative;
    padding: 15px 45px;
    border: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    cursor: pointer;
    background: linear-gradient(180deg, #fff3a6 0%, #ffd85f 35%, #ffbf2f 70%, #d78a10 100%);
    box-shadow: 0 4px 15px rgba(215, 138, 16, 0.2), 0 0 20px rgba(255, 204, 51, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
}

.total-box .info .btn::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1;
}

.total-box .info .btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150px;
    width: 100px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: rotate(25deg);
    animation: shine-btn 3.5s linear infinite;
    z-index: 2;
}

.total-box .info .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 138, 16, 0.4), 0 0 30px rgba(255, 204, 51, 0.4);
}

@keyframes float-platform {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.journey-section {
    padding: 160px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: 100px;
}

.journey-header .title {
    font-size: 56px;
    color: #082046;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.journey-header .title span {
    color: #c5a021;
}

.journey-header .subtitle {
    font-size: 20px;
    color: #4a5568;
    font-weight: 400;
}

.journey-path {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-path .path-line {
    position: absolute;
    top: 50px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, #c5a021 0%, rgba(197, 160, 33, 0.1) 100%);
    z-index: 1;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.journey-item {
    text-align: center;
}

.journey-item .item-inner {
    background: #fff;
    padding: 60px 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(8, 32, 70, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: 0.4s;
}

.journey-item:hover .item-inner {
    transform: translateY(-15px);
    border-color: #c5a021;
    box-shadow: 0 30px 60px rgba(197, 160, 33, 0.1);
}

.journey-item .step-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #082046;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    border: 5px solid #fdfdfd;
}

.journey-item .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 33, 0.08);
    color: #c5a021;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.journey-item:hover .icon-box {
    background: #c5a021;
    color: #fff;
}

.journey-item .step-title {
    font-size: 20px;
    color: #082046;
    font-weight: 800;
    margin-bottom: 15px;
}

.journey-item .step-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.journey-action {
    text-align: center;
    margin-top: 80px;
}

.journey-action .btn-prime {
    position: relative;
    padding: 15px 45px;
    border: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    cursor: pointer;
    background: linear-gradient(180deg, #fff3a6 0%, #ffd85f 35%, #ffbf2f 70%, #d78a10 100%);
    box-shadow: 0 4px 15px rgba(215, 138, 16, 0.2), 0 0 20px rgba(255, 204, 51, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
}

.journey-action .btn-prime::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1;
}

.journey-action .btn-prime::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150px;
    width: 100px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: rotate(25deg);
    animation: shine-btn 3.5s linear infinite;
    z-index: 2;
}

.journey-action .btn-prime:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215, 138, 16, 0.4), 0 0 30px rgba(255, 204, 51, 0.4);
}

@media (max-width: 991px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .journey-path .path-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-section {
        padding: 100px 0px;
    }

    .journey-header .title {
        font-size: 36px;
    }
}

/* Total Control Section - Professional Icons (SVG) */
/* ========== THE PRIME VAULT (Minimalist Luxury Design) ========== */
/* --- Reference Design: Light Theme Vault Section --- */
.vault-section-v4 {
    padding: 90px 0;
    background-image: url('../images/account-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.vault-section-v4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.219);
    /* Soft light overlay */
    z-index: 1;
}

.vault-section-v4 .container {
    position: relative;
    z-index: 2;
}

.vault-top-right {
    max-width: 1300px;
    margin: 0 auto 60px auto;
    text-align: left;
    /* Text within the block is left-aligned */
    display: flex;
    justify-content: flex-end;
    /* Block is on the right side */
}

/* Intro Content */
.vault-intro {
    flex: 1;
    max-width: 550px;
}

.vault-top-right .intro-actions {
    justify-content: flex-start;
}

.vault-top-right .intro-desc {
    margin-left: 0;
    margin-right: auto;
}

.intro-tag {
    color: var(--gale-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.intro-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--gale-navy);
    line-height: 1;
    margin-bottom: 30px;
}

.intro-title span {
    display: block;
    color: #f1c40f;
}

.intro-desc {
    font-size: 19px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 45px;
}

.intro-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.how-btn {
    color: var(--gale-navy);
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    padding: 14px 28px;
    border-radius: 100px;
    background: rgba(8, 32, 70, 0.05);
    text-transform: uppercase;
}

.how-btn:hover {
    background: rgba(8, 32, 70, 0.08);
    transform: translateX(5px);
}

/* Feature Cards Bottom */
.vault-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card-v4 {
    background: #fff;
    padding: 35px 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.feature-card-v4:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.card-top-v4 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.card-icon-v4 {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #3b82f6;
    flex-shrink: 0;
}

.card-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: #082046;
    margin: 0 0 8px 0;
}

.card-info p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.card-dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.card-dots span {
    font-size: 12px;
    font-weight: 700;
    color: #082046;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-dots span:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #f1c40f;
    border-radius: 50%;
    margin-left: 12px;
}

/* Divider Section */
.vault-divider {
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    opacity: 0.4;
}

.divider-text {
    font-size: 13px;
    font-weight: 900;
    color: var(--gale-navy);
    letter-spacing: 4px;
}

.divider-icon {
    font-size: 24px;
    color: var(--gale-navy);
}

/* Responsiveness */
@media screen and (max-width: 1100px) {
    .vault-top {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .vault-intro {
        max-width: 100%;
    }

    .intro-actions {
        justify-content: center;
    }

    .vault-bottom {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .tiles-grid {
        justify-items: center;
    }
}

@media screen and (max-width: 767px) {
    .intro-title {
        font-size: 44px;
    }

    .payment-tile {
        width: 100px;
        height: 100px;
        font-size: 36px;
    }

    .intro-actions {
        flex-direction: column;
        gap: 15px;
    }

    .manage-btn,
    .how-btn {
        width: 100%;
        justify-content: center;
    }

    .feature-card-v4 {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        align-items: center;
    }
}

/* Responsive Tablets & Mobile */
@media screen and (max-width: 960px) {
    .total-box .info {
        padding: 0 45px;
    }

    .total-box .info .list .item .name {
        font-size: 24px;
    }

    .total-box .info .list .item .icon {
        width: 44px;
        height: 44px;
    }

    .total-box .info .list .item .icon svg {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .total-box {
        min-height: auto;
    }

    .total-box .info {
        /* background: linear-gradient(181.09deg, #ebecec 89.82%, #ebecec80 96.82%); */
        box-shadow: 0 0 20px 10px rgba(235, 236, 236, 0.5);
        padding: 32px 24px 48px;
        position: relative;
        z-index: 2;
        margin: 0 16px 24px;
        border-radius: 36px;
    }

    .total-box .info .title {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.2;
        margin-top: 0;
        text-align: center;
        max-width: 100%;
    }

    .total-box .info .text {
        font-size: 15px;
        line-height: 1.4;
        margin-top: 16px;
        text-align: center;
        max-width: 100%;
    }

    .total-box .info .list {
        margin-top: 28px;
    }

    .total-box .info .list .item {
        margin-bottom: 20px;
        align-items: center;
    }

    .total-box .info .list .item .icon {
        width: 48px;
        height: 48px;
        margin-right: 16px;
    }

    .total-box .info .list .item .icon svg {
        width: 26px;
        height: 26px;
    }

    .total-box .info .list .item .name {
        font-size: 20px;
        font-weight: 600;
    }

    .total-box .info .btn {
        font-size: 16px;
        margin-top: 32px;
        padding: 10px 28px;
        width: 100%;
        justify-content: center;
    }

    .total-box .info .tips {
        font-size: 12px;
        margin-top: 28px;
        text-align: center;
    }

    .total-box .bg-image {
        height: 360px;
        margin-top: -20px;
        object-position: 70% 50%;
        position: relative;
        width: 100%;
        border-radius: 28px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        z-index: 1;
    }
}

@media screen and (max-width: 480px) {
    .total-box .info {
        padding: 24px 18px 36px;
        margin: 0 12px 20px;
    }

    .total-box .info .title {
        font-size: 28px;
    }

    .total-box .info .text {
        font-size: 14px;
    }

    .total-box .info .list .item .name {
        font-size: 18px;
    }

    .total-box .info .list .item .icon {
        width: 42px;
        height: 42px;
    }

    .total-box .info .list .item .icon svg {
        width: 22px;
        height: 22px;
    }

    .total-box .info .btn {
        font-size: 15px;
        padding: 8px 20px;
    }
}

/* ========== OPEN ACCOUNT SECTION (PIXEL-PERFECT CLONE) ========== */
.steep-box {
    background: #fff;
    padding: 70px 24px 100px;
}

.steep-box-inner {
    margin: 0 auto;
    max-width: 1200px;
}

/* title style */
.steep-title {
    color: #082046;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 45px;
    text-align: center;
}

.steep-title span {
    font-weight: 800;
}

/* grid layout — 2 columns on desktop, stacks on mobile */
.steep-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 48px;
    margin-top: 40px;
}

/* individual card item */
.steep-item {
    align-items: flex-start;
    background: #082046;
    border-radius: 16px;
    cursor: default;
    display: flex;
    gap: 20px;
    padding: 26px 28px;
    transition: all 0.3s ease;
}

.steep-item:hover {
    background: linear-gradient(107deg, #082046 2.64%, #1E4E8A 101.66%);
}

.steep-num {
    color: #fff;
    flex-shrink: 0;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.steep-info {
    flex: 1;
    min-width: 0;
}

.steep-title-text {
    color: #fff;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 30px;
}

.steep-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

/* slogan and text styles */
.steep-slogan {
    color: #082046;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.steep-text {
    color: #082046;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
}

/* responsive: mobile adjustments to perfectly match original (as seen in the snippet) */
@media screen and (max-width: 767px) {
    .steep-box {
        padding: 48px 16px 60px;
    }

    .steep-title {
        font-size: 28px;
        margin-bottom: 0;
        /* let grid have its own margin-top */
    }

    .steep-grid {
        gap: 16px;
        grid-template-columns: 1fr;
        margin-bottom: 36px;
    }

    .steep-item {
        padding: 24px 20px;
    }

    .steep-num {
        font-size: 100px;
        margin-top: -10px;
        /* to keep alignment as original */
    }

    .steep-title-text {
        font-size: 30px;
        line-height: 1.2;
    }

    .steep-slogan {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .steep-desc {
        font-size: 11px;
        margin-top: 10px;
    }

    .steep-text {
        font-size: 14px;
        padding: 0 6px;
    }
}

/* tablet-friendly adjustments (optional) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .steep-item {
        padding: 20px 22px;
    }

    .steep-num {
        font-size: 60px;
    }

    .steep-title-text {
        font-size: 24px;
    }

    .steep-desc {
        font-size: 13px;
    }

    .steep-slogan {
        font-size: 26px;
    }
}

/* additional polished hover effects and smoothness */
.steep-item {
    transition: transform 0.2s ease, background 0.25s ease;
}

.steep-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 20, 137, 0.15);
}

/* ---------- THE PRESTIGE GRID (ADVANTAGE SECTION) ---------- */
.prestige-section {
    padding: 140px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.prestige-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.prestige-title {
    font-size: 72px;
    font-weight: 300;
    color: #082046;
    letter-spacing: -3px;
    margin-bottom: 24px;
    line-height: 1;
}

.prestige-title span {
    font-weight: 800;
    color: #c5a021;
}

.prestige-subtitle {
    font-size: 22px;
    color: #64748b;
    font-weight: 400;
}

.prestige-grid {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.prestige-card {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-featured {
    flex: 1.6;
    background: #082046;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #f1d279;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    margin-bottom: 40px;
    border: 1px solid rgba(241, 210, 121, 0.2);
}

.card-name {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.card-name span {
    font-weight: 800;
    color: #f1d279;
}

.card-desc {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    max-width: 500px;
}

.prestige-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card-mini {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
}

.card-mini .card-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a021;
    font-size: 32px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.card-info h4 {
    font-size: 20px;
    font-weight: 800;
    color: #082046;
    margin-bottom: 10px;
}

.card-info p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(8, 32, 70, 0.2);
}

.card-mini:hover {
    transform: translateX(15px);
    border-color: #c5a021;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.card-mini:hover .card-icon {
    background: #c5a021;
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.speed-indicator {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.speed-indicator .bar {
    height: 6px;
    width: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.speed-indicator .bar.highlight {
    background: #f1d279;
    box-shadow: 0 0 30px rgba(241, 210, 121, 0.6);
}

@media (max-width: 1100px) {
    .prestige-grid {
        flex-direction: column;
    }

    .prestige-title {
        font-size: 52px;
    }

    .card-name {
        font-size: 42px;
    }
}

/* Responsive Overrides for Vault Section */
@media (max-width: 1200px) {
    .vault-section-v4 {
        padding: 80px 0;
    }

    .vault-top-right {
        margin-bottom: 50px;
    }
}

@media (max-width: 991px) {
    .vault-section-v4 {
        padding: 60px 0;
    }

    .vault-top-right {
        text-align: center;
        justify-content: center;
        margin-bottom: 50px;
    }

    .vault-intro {
        max-width: 100%;
        padding: 0 20px;
    }

    .intro-title {
        font-size: 42px;
    }

    .intro-desc {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .intro-actions {
        justify-content: center;
    }

    .vault-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .feature-card-v4 {
        flex: 1 1 calc(50% - 10px);
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 34px;
    }

    .vault-bottom {
        flex-direction: column;
        align-items: center;
    }

    .feature-card-v4 {
        width: 100%;
        max-width: 500px;
        padding: 30px 25px;
    }

    .card-icon-v4 {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .card-info h3 {
        font-size: 18px;
    }
    
    .terminal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .vault-section-v4 {
        padding: 50px 0;
    }

    .intro-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .intro-desc {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .intro-actions {
        flex-direction: column;
        gap: 15px;
    }

    .vault-intro .glow-btn {
        width: 100%;
        justify-content: center;
    }

    .feature-card-v4 {
        padding: 24px 20px;
        border-radius: 16px;
    }
}

