/* Work & Learn Program — main-site design tokens */

h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 47px;
    margin-bottom: 0;
    color: #2356A5;
}

h2 span {
    color: #E15625;
}

p.description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #464646;
    margin-bottom: 0;
}

.section-head {
    margin-bottom: 40px;
}

.section-head .description {
    max-width: 720px;
    margin: 16px auto 0;
}

/* Scroll reveal */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.left-animation {
    transform: translateX(-40px);
}

.scroll-animate.right-animation {
    transform: translateX(40px);
}

.scroll-animate.fade-up {
    transform: translateY(30px);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: none;
}

/* Hero */
.career-hero .container {
    padding: 80px 0 0 60px;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border-radius: 15px;
}

.career-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 16px;
    color: #2356A5;
}

.career-hero .hero-content h1 span {
    color: #E15625;
}

.career-hero .hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #2356A5;
    margin-bottom: 16px;
}

.career-hero .hero-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #464646;
    margin-bottom: 14px;
}

.career-hero .hero-subline {
    margin-bottom: 32px !important;
    font-weight: 500 !important;
}

.career-hero .hero-cta-group,
.closing-cta-box .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.career-hero .hero-btn,
.closing-cta-box .hero-btn {
    padding: 12px 24px;
    background: #2356A5;
    border: 3px solid #FF794A;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.career-hero .hero-btn::after,
.closing-cta-box .hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: #FF794A;
    transition: width 0.4s ease-in-out;
    z-index: -1;
}

.career-hero .hero-btn:hover::after,
.closing-cta-box .hero-btn:hover::after {
    width: 100%;
}

.career-hero .hero-btn:hover,
.closing-cta-box .hero-btn:hover {
    border-color: #2356A5;
    color: #fff;
}

.career-hero .hero-btn-secondary,
.closing-cta-box .hero-btn-secondary {
    background: transparent;
    color: #2356A5;
}

.career-hero .hero-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
}

/* Shared panel sections */
.foundations-section,
.readiness-section,
.why-pathway-section,
.suitability-section,
.understand-section,
.includes-section,
.roadmap-section,
.outcomes-section,
.employer-section,
.approach-section,
.home-faq-section,
.progress-note-section,
.closing-cta-section {
    padding: 80px 0;
}

.foundation-card,
.feature-card,
.include-card,
.readiness-box,
.outcomes-box,
.approach-box,
.progress-note-box,
.closing-cta-box {
    height: 100%;
    padding: 32px 28px;
    border-radius: 15px;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    border: 1px solid rgba(35, 86, 165, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.foundation-card:hover,
.feature-card:hover,
.include-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(35, 86, 165, 0.1);
}

.foundation-logo {
    height: 72px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.foundation-logo img {
    max-height: 64px;
    max-width: 160px;
    object-fit: contain;
}

.foundation-logo-text span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #2356A5;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.04em;
}

.foundation-card h3,
.feature-card h3,
.include-card h3,
.suitability-header h3,
.roadmap-body h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #2356A5;
    margin-bottom: 14px;
}

.foundation-card p,
.feature-card p,
.include-card p,
.roadmap-body p,
.readiness-box .description,
.outcomes-box .description,
.approach-box .description,
.progress-note-box .description,
.closing-cta-box .description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #464646;
    margin-bottom: 12px;
}

.readiness-box h2,
.outcomes-box h2,
.approach-box h2,
.progress-note-box h2,
.closing-cta-box h2 {
    margin-bottom: 18px;
}

.quote-line {
    font-style: italic;
}

.quote-emphasis {
    font-weight: 600 !important;
    font-style: normal;
    color: #2356A5 !important;
}

.readiness-close,
.why-pathway-close,
.roadmap-close,
.employer-close,
.outcomes-close {
    margin-top: 20px !important;
    font-weight: 500 !important;
}

.why-pathway-close {
    margin-top: 32px !important;
}

/* Suitability */
.suitability-card {
    height: 100%;
    border-radius: 15px;
    padding: 32px 28px;
    border: 1px solid rgba(35, 86, 165, 0.1);
}

.suitability-card.suitable {
    background: linear-gradient(180deg, #EFF5FF 0%, #FFF7F4 100%);
}

.suitability-card.not-suitable {
    background: linear-gradient(180deg, #FFF7F4 0%, #FFF1EB 100%);
}

.suitability-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suitability-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #464646;
}

.suitability-card.suitable li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #2356A5;
    font-weight: 700;
}

.suitability-card.not-suitable li::before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 0;
    color: #E15625;
    font-weight: 700;
}

/* Includes */
.include-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2356A5;
    border: 3px solid #FF794A;
    box-shadow: 0 6px 16px rgba(35, 86, 165, 0.18);
    flex-shrink: 0;
}

.include-icon i {
    font-size: 22px;
    line-height: 1;
    color: #FFFFFF;
}

.include-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Roadmap */
.roadmap-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(35, 86, 165, 0.12);
}

.roadmap-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2356A5;
    border: 3px solid #FF794A;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-body h3 {
    margin-bottom: 8px;
}

.roadmap-body p {
    margin-bottom: 0;
}

/* Outcomes checklist */
.outcomes-lead {
    margin-top: 8px !important;
    margin-bottom: 18px !important;
    font-weight: 500 !important;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #464646;
}

.check-list li img {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Employer pills */
.employer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.employer-pill {
    padding: 12px 22px;
    border-radius: 50px;
    background: #fff;
    border: 2px solid #2356A5;
    color: #2356A5;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

/* FAQ */
.home-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.home-faq-accordion .accordion-item {
    border: 1px solid rgba(35, 86, 165, 0.15);
    border-radius: 15px !important;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
}

.home-faq-accordion .accordion-button {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #2356A5;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
    box-shadow: none !important;
    padding: 20px 24px;
}

.home-faq-accordion .accordion-button:not(.collapsed) {
    color: #E15625;
    background: linear-gradient(99.61deg, #FFF7F4 2.2%, #EFF5FF 96.03%);
}

.home-faq-accordion .accordion-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #464646;
    padding: 8px 24px 22px;
}

.closing-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 20px;
}

.closing-cta-list li {
    position: relative;
    padding-left: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #464646;
}

.closing-cta-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF794A;
}

.closing-cta-note {
    margin-bottom: 28px !important;
    font-weight: 500 !important;
}

.closing-cta-box .hero-btn-secondary {
    background: transparent;
    color: #2356A5;
}

@media (max-width: 991px) {
    .career-hero .container {
        padding: 48px 24px 24px;
    }

    .career-hero .hero-content h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .check-list,
    .closing-cta-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .foundations-section,
    .readiness-section,
    .why-pathway-section,
    .suitability-section,
    .understand-section,
    .includes-section,
    .roadmap-section,
    .outcomes-section,
    .employer-section,
    .approach-section,
    .home-faq-section,
    .progress-note-section,
    .closing-cta-section {
        padding: 48px 0;
    }

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .career-hero .hero-cta-group,
    .closing-cta-box .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .career-hero .hero-btn,
    .closing-cta-box .hero-btn {
        text-align: center;
    }

    .check-list,
    .closing-cta-list {
        grid-template-columns: 1fr;
    }

    .roadmap-item {
        padding: 20px;
    }

    .home-faq-accordion .accordion-button {
        font-size: 17px;
        line-height: 24px;
        padding: 16px 18px;
    }

    .scroll-animate.left-animation,
    .scroll-animate.right-animation {
        transform: translateY(24px);
    }
}

.closing-cta-lead {
    margin-top: 20px !important;
    margin-bottom: 18px !important;
    font-weight: 500 !important;
}

.readiness-box .bim-supports-list {
    margin-top: 8px;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 767px) {
    .readiness-box .bim-supports-list {
        grid-template-columns: 1fr;
    }
}

/* ================= Back to Top ================= */

#backToTopBtn {
    position: fixed;
    bottom: 55px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    display: none;
}

#backToTopBtn div {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#backToTopBtn button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF794A;
    border: 3px solid #FF794A;
    border-radius: 50%;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(225, 86, 37, 0.28);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn button:hover {
    background: #2356A5;
    border-color: #2356A5;
    transform: translateY(-2px);
}

#backToTopBtn p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FF794A;
    margin-bottom: 0;
    margin-top: 6px;
    white-space: nowrap;
}

#backToTopBtn.scrolled-90 p {
    color: #FF794A;
}

@media (max-width: 767px) {
    .mobile#backToTopBtn {
        display: none !important;
    }

    #backToTopBtn {
        display: none;
    }
}
