:root {
    --orange: #E8701A;
    --white: #FFFFFF;
    --font: 'Be Vietnam Pro', sans-serif;
}

body {
    font-family: var(--font);
}

/* ============================================================
     STATS SECTION
  ============================================================ */
.section-stats {
    background: var(--orange);
    padding: 52px 24px;
}

.section-stats .stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.section-stats .stat-item {
    text-align: center;
    padding: 12px 20px;
    position: relative;
}

/* divider between items */
.section-stats .stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, .3);
}

.section-stats .stat-item .stat-number {
    font-size: 54px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.section-stats .stat-item .stat-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .2px;
}

/* ============================================================
     RESPONSIVE – TABLET
  ============================================================ */
@media (max-width: 768px) {
    .section-stats {
        padding: 48px 20px;
    }

    .section-stats .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }

    .section-stats .stat-item+.stat-item::before {
        height: 44px;
    }

    /* remove divider for 3rd item (new row start) */
    .section-stats .stat-item:nth-child(3)::before {
        display: none;
    }

    .section-stats .stat-item .stat-number {
        font-size: 44px;
    }
}

/* ============================================================
     RESPONSIVE – MOBILE
  ============================================================ */
@media (max-width: 480px) {
    .section-stats {
        padding: 40px 16px;
    }

    .section-stats .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 0;
    }

    .section-stats .stat-item .stat-number {
        font-size: 38px;
    }

    .section-stats .stat-item .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 340px) {
    .section-stats .stats-container {
        grid-template-columns: 1fr;
    }

    .section-stats .stat-item+.stat-item::before {
        display: none;
    }
}


:root {
    --navy: #1B2E4B;
    --navy-dark: #0F1E33;
    --gray-text: #8C97A8;
    --gray-light: #F2F4F7;
    --white: #FFFFFF;
    --border: #E4E8EF;
    --orange: #E8701A;
    --font: 'Be Vietnam Pro', sans-serif;
}

body {
    font-family: var(--font);
    background: var(--white);
}

/* ============================================================
     SECTION PARTNERS
  ============================================================ */
.section-partners {
    background: var(--gray-light);
    padding: 64px 24px 72px;
}

.section-partners .partners-container {
    max-width: 1180px;
    margin: 0 auto;
}

.section-partners .partners-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 40px;
}

.section-partners .partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.section-partners .partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 14px 18px;
    text-align: center;
}

.section-partners .partner-card:hover {
    box-shadow: 0 6px 20px rgba(27, 46, 75, .1);
    border-color: rgba(27, 46, 75, .18);
}

/* first card of each row gets orange left border accent */
.section-partners .partner-card.accent {
    border-left: 3px solid var(--orange);
}

.section-partners .partner-card .card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.section-partners .partner-card .card-industry {
    font-size: 12.5px;
    color: var(--gray-text);
}

/* ============================================================
     RESPONSIVE – TABLET
  ============================================================ */
@media (max-width: 1024px) {
    .section-partners .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .section-partners {
        padding: 52px 16px 60px;
    }

    .section-partners .partners-title {
        font-size: 24px;
    }

    .section-partners .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* ============================================================
     RESPONSIVE – MOBILE
  ============================================================ */
@media (max-width: 500px) {
    .section-partners .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-partners .partner-card {
        padding: 16px 10px 14px;
    }

    .section-partners .partner-card .card-name {
        font-size: 13px;
    }

    .section-partners .partner-card .card-industry {
        font-size: 11.5px;
    }
}

@media (max-width: 340px) {
    .section-partners .partners-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================ */
/* BOTTOM CTA SECTION
/* ============================================================ */
.bottom-cta-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-sub);
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-sub);
    opacity: 0.85;
    /* to let the background image slightly show through */
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-heading {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 16px;
    max-width: 750px;
    line-height: 40px;
}

.cta-subtext-box {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #fff;
    color: var(--color-sub);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-cta-solid:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: #fff;
    color: var(--color-sub);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Responsive Bottom CTA */
@media (max-width: 768px) {
    .bottom-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .cta-heading {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
}