/* =========================================
   CORPORATE TRAINING PAGE — corporate.css
========================================= */

/* =========================================
   SECTION 1 — INTRO
========================================= */

.corporatepage .corporate-intro-section {
    width: 100%;
    padding: 130px 30px 150px;
    background: #F6F8FE;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.corporatepage .corporate-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.corporatepage .corporate-title {
    flex: 1;
    max-width: 700px;
    color: #082F56;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.corporatepage .corporate-title-spacer {
    flex: 1;
    max-width: 700px;
}

.corporatepage .corporate-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.corporatepage .corporate-content-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.corporatepage .corporate-description {
    max-width: 500px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.corporatepage .corporate-image {
    width: 701px;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
}

/* =========================================
   BUTTONS
========================================= */

.corporatepage .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: transparent;
    border-radius: 45px;
    border: 1px solid #082F56;
    color: #082F56;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.corporatepage .btn-outline-dark:hover {
    background: #082F56;
    color: #ffffff;
}

.corporatepage .btn-primary-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: #082F56;
    border-radius: 45px;
    border: 1px solid #082F56;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.corporatepage .btn-primary-dark:hover {
    background: transparent;
    color: #082F56;
}

/* =========================================
   DIVIDERS
========================================= */

.corporatepage .section-divider {
    width: 100%;
    height: 1px;
    background: #000000;
}

.corporatepage .section-divider-navy {
    width: 100%;
    height: 1px;
    background: #082F56;
}

/* =========================================
   SECTION 2 — HOW IT WORKS
========================================= */

.corporatepage .howitworks-section {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.corporatepage .howitworks-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.corporatepage .howitworks-title-spacer {
    flex: 1;
    max-width: 700px;
}

.corporatepage .howitworks-title {
    flex: 1;
    max-width: 700px;
    color: #082F56;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.corporatepage .howitworks-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.corporatepage .howitworks-image {
    width: 701px;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
}

.corporatepage .howitworks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.corporatepage .howitworks-description {
    max-width: 500px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.corporatepage .howitworks-description a {
    color: #212529;
    text-decoration: underline;
}

.corporatepage .howitworks-description a:hover {
    color: #082F56;
}

/* =========================================
   SECTION 3 — CUSTOMIZED SOLUTIONS
========================================= */

.corporatepage .solutions-section {
    width: 100%;
    padding: 100px 30px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.corporatepage .solutions-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.corporatepage .solutions-heading {
    max-width: 500px;
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.corporatepage .solutions-subheading {
    max-width: 500px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   ACCORDION
========================================= */

.corporatepage .solutions-list {
    display: flex;
    flex-direction: column;
}

.corporatepage .solution-item {
    border-top: 1px solid #082F56;
}

.corporatepage .solution-item:last-child {
    border-bottom: 1px solid #082F56;
}

/* accordion header row */
.corporatepage .solution-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    cursor: pointer;
    gap: 20px;
}

.corporatepage .solution-header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.corporatepage .solution-item-title {
    max-width: 700px;
    color: #082F56;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    transition: color .25s;
}

.corporatepage .solution-item-subtitle {
    max-width: 700px;
    color: #92AED8;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

/* chevron toggle button */
.corporatepage .solution-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid #082F56;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 8px;
    transition: background .25s;
}

.corporatepage .solution-toggle::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #082F56;
    border-bottom: 1.5px solid #082F56;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .3s, border-color .25s, margin-top .3s;
}

.corporatepage .solution-item.open .solution-toggle {
    background: #082F56;
}

.corporatepage .solution-item.open .solution-toggle::after {
    border-color: #ffffff;
    transform: rotate(-135deg);
    margin-top: 4px;
}

/* accordion body */
.corporatepage .solution-body {
    display: none;
    padding-bottom: 80px;
}

.corporatepage .solution-item.open .solution-body {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.corporatepage .solution-body-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.corporatepage .solution-body-image {
    width: 701px;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
}

/* content blocks inside accordion */
.corporatepage .solution-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.corporatepage .solution-block-title {
    max-width: 500px;
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.corporatepage .solution-block-text {
    max-width: 500px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* light info card inside accordion */
.corporatepage .solution-info-card {
    padding: 50px 30px 80px;
    background: #F1F3FA;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.corporatepage .solution-info-card-title {
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.corporatepage .solution-info-card-text {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   FAQ CARD (dark navy)
========================================= */

.corporatepage .faq-card {
    padding: 40px 30px 80px;
    background: #082F56;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.corporatepage .faq-card-title {
    color: #ffffff;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.corporatepage .faq-list {
    display: flex;
    flex-direction: column;
}

.corporatepage .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.corporatepage .faq-item:first-child {
    border-top: none;
}

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

.corporatepage .faq-question {
    flex: 1;
    max-width: 600px;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.corporatepage .faq-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    transition: background .25s;
}

.corporatepage .faq-toggle::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .3s, margin-top .3s;
}

.corporatepage .faq-item.open .faq-toggle {
    background: rgba(255,255,255,0.15);
}

.corporatepage .faq-item.open .faq-toggle::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.corporatepage .faq-answer {
    display: none;
    padding-bottom: 25px;
}

.corporatepage .faq-item.open .faq-answer {
    display: block;
}

.corporatepage .faq-answer p {
    max-width: 600px;
    color: #ffffff;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   LARGE SCREENS
========================================= */

@media (min-width: 1400px) {

    .corporatepage .corporate-intro-section,
    .corporatepage .solutions-section {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1920px) {

    .corporatepage .corporate-intro-section,
    .corporatepage .solutions-section {
        padding-left: 160px;
        padding-right: 160px;
    }

    .corporatepage .corporate-title,
    .corporatepage .howitworks-title {
        font-size: 80px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .corporatepage .corporate-intro-section,
    .corporatepage .solutions-section {
        padding: 80px 20px;
        gap: 50px;
    }

    .corporatepage .corporate-top,
    .corporatepage .corporate-bottom,
    .corporatepage .howitworks-top,
    .corporatepage .howitworks-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .corporatepage .corporate-title,
    .corporatepage .howitworks-title {
        font-size: 42px;
    }

    .corporatepage .corporate-image,
    .corporatepage .howitworks-image {
        width: 100%;
        height: 300px;
    }

    .corporatepage .solution-item-title {
        font-size: 28px;
    }

    .corporatepage .solution-item-subtitle {
        font-size: 16px;
    }

    .corporatepage .solution-item.open .solution-body {
        flex-direction: column;
    }

    .corporatepage .solution-body-image {
        width: 100%;
        height: 280px;
    }

    .corporatepage .corporate-title-spacer,
    .corporatepage .howitworks-title-spacer {
        display: none;
    }
}

@media (max-width: 576px) {

    .corporatepage .corporate-title,
    .corporatepage .howitworks-title {
        font-size: 32px;
    }

    .corporatepage .solution-item-title {
        font-size: 22px;
    }

    .corporatepage .faq-question {
        font-size: 16px;
    }
}