/* Hero Section Styles for Platform Page - Pro Portal v8 (Background Focus) */
.hero-section.pro-portal {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 800px;
    background: #020812;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
    /* Reduced since no mockup below */
}

/* Cinematic Background Layering */
.portal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blurred-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    /* Slightly higher opacity since it's the main visual now */
    filter: blur(5px) grayscale(0.2);
    transform: scale(1.1);
}

.portal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(8, 32, 70, 0) 0%, rgba(2, 8, 18, 0.95) 85%);
    z-index: 2;
}

.portal-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 40px 0px 40px;
}

/* Text Header - Strong Institutional */
.portal-text {
    text-align: center;
    margin-bottom: 60px;
}

.portal-badge {
    display: inline-block;
    color: #f7efd3;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.portal-title {
    font-size: 80px;
    /* Larger presence since no mockup */
    font-weight: 300;
    background: linear-gradient(135deg, #c5a021 0%, #f1d279 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portal-title span {
    font-weight: 900;
    display: block;
    background: linear-gradient(135deg, #c5a021 0%, #f1d279 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 15px;
    letter-spacing: -2px;
}

.tradelocker-logo {
    border-radius: 10px;
    max-width: 450px;
    /* Adjust size as needed */
    height: auto;
    margin-top: 15px;
    filter: invert(1);
    mix-blend-mode: screen;
    display: inline-block;
}

.portal-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0 auto 50px auto;
    max-width: 800px;
    font-weight: 400;
}

/* Action Buttons */
.portal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.portal-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Stat Bar - Institutional Style */
.portal-stats {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px 80px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-val {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.stat-lab {
    font-size: 11px;
    color: #c5a021;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .portal-title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .hero-section.pro-portal {
        height: auto;
        padding: 120px 24px 60px;
        min-height: 100vh;
    }

    .blurred-bg {
        filter: blur(6px) grayscale(0.2);
    }

    .portal-content {
        padding: 20px 20px 0px 20px;
    }

    .portal-text {
        margin-bottom: 40px;
    }

    .portal-badge {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .portal-title {
        font-size: 46px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .portal-title span {
        font-size: 52px;
        margin-top: 10px;
        letter-spacing: -1px;
    }

    .tradelocker-logo {
        max-width: 320px;
        margin-top: 10px;
    }

    .portal-description {
        font-size: 16px;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .portal-stats {
        flex-direction: column;
        gap: 25px;
        padding: 40px;
        border-radius: 24px;
        width: 100%;
    }

    .stat-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section.pro-portal {
        padding-top: 100px;
    }

    .portal-title {
        font-size: 28px;
    }

    .portal-title span {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .tradelocker-logo {
        max-width: 240px;
    }

    .portal-description {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 30px;
    }

    .portal-actions {
        width: 100%;
    }

    .portal-actions .glow-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        letter-spacing: 0.5px;
    }
}

/* Marketplace Terminal - High-Fidelity Bento Grid */
.marketplace-terminal {
    padding: 140px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.terminal-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .marketplace-terminal {
        padding: 80px 0;
    }

    .terminal-container {
        padding: 0 20px;
    }
}

.terminal-header {
    margin-bottom: 80px;
    max-width: 900px;
}

.terminal-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--clr-navy);
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.terminal-title span {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-top: 5px;
}

.terminal-subtitle {
    font-size: 22px;
    color: var(--clr-text-muted);
    font-weight: 400;
}

/* Bento Grid */
.terminal-grid {
    display: grid;
    grid-template-columns: repeat(4, 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);
}

/* Feature List */
.terminal-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    background: #f8fbff;
    padding: 20px 60px;
    border-radius: 100px;
    border: 1px solid rgba(8, 32, 70, 0.05);
}

.feat-item {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feat-item i {
    color: #c5a021;
    font-size: 18px;
}

/* Actions */
.terminal-action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Terminal */
@media (max-width: 1100px) {
    .terminal-title {
        font-size: 52px;
    }

    .terminal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .terminal-card.featured {
        transform: none;
    }

    .terminal-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .terminal-header {
        margin-bottom: 50px;
    }

    .terminal-title {
        font-size: 38px;
    }

    .terminal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .terminal-card.featured {
        grid-column: span 1;
    }

    .terminal-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-radius: 30px;
        width: 100%;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .terminal-title {
        font-size: 28px;
    }

    .terminal-subtitle {
        font-size: 16px;
    }

    .terminal-card {
        padding: 40px 24px;
        border-radius: 30px;
    }

    .terminal-card h3 {
        font-size: 20px;
    }
}

/* ----- PREMIUM DESIGN MATCH (DOWNLOAD BOX & FLIP CARDS) ----- */

/* container to center content like original page */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0.2rem;
}

/* ---------- DOWNLOAD BOX (PREMIUM GLASSMORPISM) ---------- */
.download-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 4rem 3rem;
    margin: 2rem auto 5rem;
    max-width: 1200px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(8, 32, 70, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.download-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 104, 227, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.download-box .title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--clr-navy) !important;
    margin-bottom: 3rem !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.download-box .title span {
    background: var(--grad-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}



.btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.btn.sign {
    background: var(--grad-gold);
    color: var(--clr-navy);
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(197, 160, 33, 0.2);
    display: inline-block;
    border: none;
    text-decoration: none;
}

.btn.sign:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(197, 160, 33, 0.3);
}

.btn.sign:active {
    transform: translateY(-2px) scale(0.98);
}

.link-box {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.link-box a {
    text-decoration: none;
}

.link-box .btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 1px solid rgba(8, 32, 70, 0.1);
    padding: 0.8rem 2.2rem;
    border-radius: 100px;
    font-weight: 600;
    color: var(--clr-navy);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.link-box .btn:hover {
    background: #f8fbff;
    border-color: var(--clr-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(8, 32, 70, 0.05);
}

.link-box .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-box .icon img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.link-box .btn:hover .icon img,
.link-box .btn:hover .icon i {
    transform: scale(1.15);
}

.link-box .name {
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive adjustments for Download Box - Moved to ensure priority */
@media (max-width: 768px) {
    .download-box {
        padding: 2.5rem 1.2rem;
        border-radius: 32px;
        margin: 2rem 1rem 4rem;
    }

    .download-box .title {
        font-size: 1.5rem !important;
        margin-bottom: 2rem !important;
        padding: 0 10px;
    }

    .btn-box {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100%;
    }

    .btn.sign {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        box-sizing: border-box;
    }

    .link-box {
        width: 100%;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .link-box .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        box-sizing: border-box;
    }
}

/* ---------- INSTITUTIONAL ADVANTAGES (CLEAN MINIMALIST DESIGN) ---------- */
.institutional-advantages {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.inst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.inst-header {
    text-align: center;
    margin-bottom: 70px;
}

.inst-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.inst-title span {
    color: #c5a021;
}

.inst-line {
    width: 60px;
    height: 4px;
    background: #c5a021;
    margin: 0 auto;
    border-radius: 2px;
}

.inst-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.inst-item {
    flex: 0 1 calc(25% - 20px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    transition: all 0.4s ease;
}

.inst-item:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 33, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.inst-icon-wrap {
    width: 64px;
    height: 64px;
    background: #f8fbff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #c5a021;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.inst-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: #c5a021;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(197, 160, 33, 0.3);
}

.inst-item:hover .inst-icon-wrap {
    background: #c5a021;
    color: #fff;
    transform: translateY(-5px);
}

.inst-item:hover .inst-number {
    background: var(--clr-navy);
}

.inst-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 12px;
}

.inst-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive inst */
@media (max-width: 1200px) {
    .inst-item {
        flex: 0 1 calc(33.33% - 30px);
    }
}

@media (max-width: 992px) {
    .inst-item {
        flex: 0 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .institutional-advantages {
        padding: 60px 0;
    }

    .inst-title {
        font-size: 28px;
    }

    .inst-item {
        flex: 0 1 100%;
        max-width: 400px;
    }
}

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

    .inst-item {
        align-items: center;
        text-align: center;
    }
}

.name {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--clr-navy);
    margin: 0;
    line-height: 1.2;
}

.more {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0068E3;
    background: #F0F4FF;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-layer:hover .more {
    background: var(--clr-gold);
    color: var(--clr-navy);
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    padding: 0 1rem;
}

.back-btn {
    display: none;
    /* Hidden as hover handles flip back on desktop */
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1.5rem;
}

/* Show back-btn only on mobile where flip is click-based */
@media (hover: none) {
    .back-btn {
        display: inline-block;
    }

    .more {
        display: inline-block;
    }
}

/* responsive adjustments for flex grid */
@media (max-width: 1200px) {
    .item-layer {
        flex: 0 1 calc(33.33% - 1.5rem);
    }
}

@media (max-width: 992px) {
    .item-layer {
        flex: 0 1 calc(50% - 1.2rem);
    }

    .cards-grid {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .item-layer {
        flex: 0 1 100%;
        max-width: 400px;
    }
}

/* extras for premium feel */
.back::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ========= TREE-BOX (DOWNLOAD MT4 TIMELINE SECTION) ========= */
.tree-box {
    background: #ffffff;
    /* border-radius: 48px; */
    padding: 3rem 2.5rem;
    margin: 3rem auto;
    max-width: 1280px;
    position: relative;
    box-shadow: 0 20px 40px rgba(8, 32, 70, 0.05);
    border: 1px solid rgba(8, 32, 70, 0.08);
}

.tree-box .title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--clr-navy) !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.tree-box .title span {
    background: var(--grad-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tree-box .desc {
    text-align: center;
    color: #3a4b8c;
    font-size: 1rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
}

.icon-look {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-look .img {
    width: 35px;
    height: auto;
    opacity: 0.8;
}

/* Desktop timeline - updated icon background to blue gradient */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.timeline .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* odd items: icon on left, text on right */
.timeline .item:nth-child(odd) .left {
    order: 1;
    text-align: right;
}

.timeline .item:nth-child(odd) .right {
    order: 3;
}

.timeline .item:nth-child(odd) .line {
    order: 2;
}

/* even items: text on left, icon on right */
.timeline .item:nth-child(even) .left {
    order: 1;
    text-align: right;
}

.timeline .item:nth-child(even) .right {
    order: 3;
    text-align: left;
}

.timeline .item:nth-child(even) .line {
    order: 2;
}

.timeline .left,
.timeline .right {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.timeline .left {
    align-items: flex-end;
}

.timeline .right {
    align-items: flex-start;
}

.timeline .icon {
    background: var(--grad-gold);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(197, 160, 33, 0.2);
    transition: transform 0.2s;
}

.timeline .icon:hover {
    transform: scale(1.02);
}

.timeline .icon img {
    width: 48px;
    height: auto;
    filter: brightness(0) invert(1);
    /* makes icons white for contrast */
}

.timeline .m-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.timeline .m-title .num {
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline .m-title .name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-navy);
}

.timeline .text {
    color: #3f4e7a;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
}

.timeline .line {
    width: 2px;
    height: 100px;
    background: var(--grad-gold);
    opacity: 0.4;
    margin: 0 1rem;
}

/* Mobile version – blue icon backgrounds */
.mobile-timeline {
    display: none;
}

@media (max-width: 960px) {
    .timeline {
        display: none;
    }

    .mobile-timeline {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .mobile-timeline .item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        background: #fafcff;
        border-radius: 28px;
        padding: 1rem;
        border: 1px solid rgba(8, 32, 70, 0.1);
    }

    /* mobile icon background – blue gradient */
    .mobile-timeline .icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        background: var(--grad-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 16px rgba(197, 160, 33, 0.15);
    }

    .mobile-timeline .icon img {
        width: 40px;
        filter: brightness(0) invert(1);
        /* white icons */
    }

    .mobile-timeline .info {
        flex: 1;
    }

    .mobile-timeline .m-title {
        font-size: 1.3rem !important;
        font-weight: 800 !important;
        background: var(--grad-gold);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 6px !important;
        letter-spacing: 1px !important;
        text-align: left !important;
    }

    .mobile-timeline .m-text {
        color: #3f4e7a;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .tree-box {
        padding: 2rem 1.5rem;
    }

    .tree-box .title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 640px) {
    .tree-box {
        padding: 1.8rem 1rem;
    }

    .mobile-timeline .icon {
        width: 55px;
        height: 55px;
    }

    .mobile-timeline .icon img {
        width: 30px;
    }

    .mobile-timeline .m-title {
        font-size: 1.1rem !important;
    }

    .mobile-timeline .m-text {
        font-size: 0.75rem;
    }
}

/* ----- FAQ SECTION ----- */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-section .title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: var(--clr-navy) !important;
    margin-bottom: 60px !important;
}

.faq-section .title span {
    background: var(--grad-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 0 30px;
    box-shadow: 0 10px 30px rgba(8, 32, 70, 0.05);
    border: 1px solid rgba(8, 32, 70, 0.06);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 15px 40px rgba(8, 32, 70, 0.1);
    border-color: rgba(8, 32, 70, 0.12);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
}

.faq-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-navy);
}

.faq-header i {
    transition: transform 0.3s ease;
    color: #0068E3;
    font-size: 1.1rem;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    padding-bottom: 30px;
    opacity: 1;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-content p {
    color: #3f4e7a;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-section .title {
        font-size: 1.8rem !important;
        margin-bottom: 40px !important;
    }

    .faq-title {
        font-size: 1.1rem;
    }

    .faq-item {
        padding: 0 20px;
        border-radius: 16px;
    }

    .faq-header {
        padding: 20px 0;
    }
}