/* SECTION BASE */
.logistics-insights-section {
    background: linear-gradient(135deg, #071c3d, #0d2150, #021027);
    padding: 80px 0;
    color: #fff;
}

/* TITLES */
.insights-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.insights-subtitle {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #dbe2ff;
}

/* GRID: GLOBAL STATS */
.insights-stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.insights-stat-card {
    background: rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
}

.insights-number {
    font-size: 42px;
    font-weight: 900;
    color: #7ac8ff;
}

.insights-label {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 600;
}

.insights-desc {
    font-size: 13px;
    opacity: 0.8;
}

/* SUBSECTION */
.insights-sub-section-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 30px;
    text-align: center;
    color: #ffffff;
}
/* When animation finishes — show formatted text cleanly */
.insights-number.final-text {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.3;
}
.insights-stat-card .insights-number.final-text {
    margin-bottom: 6px;
}


/* INDUSTRY DEMAND */
.industry-demand-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.demand-card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
}

.demand-icon {
    width: 60px;
    margin-bottom: 15px;
}

.demand-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    margin-top: 12px;
}

.demand-bar span {
    display: block;
    height: 100%;
    background: #4fb9ff;
    border-radius: 100px;
}

/* SALARY GRID */
.salary-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.salary-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.salary-card h4 {
    font-size: 20px;
    margin-bottom: 6px;
}

.salary-amount {
    font-size: 18px;
    font-weight: 700;
    color: #86d6ff;
}

/* CTA */
.insights-cta .btn {
    margin: 10px;
}

/* Base number style */
.insights-number {
    font-size: 48px;
    font-weight: 800;
    color: #88c8ff;
    transition: all 0.3s ease-in-out;
    display: block;
}

/* Final formatted text should be smaller */
.insights-number.final-text {
    font-size: 26px !important;
    font-weight: 700;
    color: #ffffff;
}


/* RESPONSIVE */
@media (max-width: 992px) {

    .insights-stats-grid,
    .industry-demand-grid,
    .salary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .insights-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {

    .insights-stats-grid,
    .industry-demand-grid,
    .salary-grid {
        grid-template-columns: 1fr;
    }

    .insights-number {
        font-size: 34px;
    }
}
