﻿
:root {
    --ms-blue: #0067b8;
    --ms-blue-hover: #005a9e;
    --text-dark: #242424;
    --text-mid: #616161;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --hero-accent: #7b2d8b;
    --dark-bg: #1b1b1b;
    --border: #e0e0e0;
    --transition-fast: 0.15s ease;
    --content-width: 1200px;
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.split-feature--muted {
    background: var(--bg-light);
}
.text-cyan {
    color: #7cc3ff;
}
.hero-content {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 32px 36px 36px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    width: 44px;
    height: 44px;
    border: 1px solid #d6e7f6;
    border-radius: 4px;
    background: #f8fbff;
    color: var(--ms-blue);
    flex: 0 0 auto;
}
    .audience-icon svg {
        width: 24px;
        height: 24px;
        display: block;
        stroke: blue;
        fill: none;
        stroke-width: 1.95;
        stroke-linecap: round;
        stroke-linejoin: round;
        vector-effect: non-scaling-stroke;
    }
.outcome-item:not(:last-child) {
    border-right: 1px solid #3a3a3a;
}
.outcomes {
    background: var(--dark-bg);
    color: var(--white);
}
.outcome-icon {
    width: 42px;
    height: 42px;
    color: #7cc3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid #2f4b63;
    border-radius: 50%;
    background: rgba(0, 103, 184, 0.12);
}
    .outcome-icon svg {
        width: 22px;
        height: 22px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        vector-effect: non-scaling-stroke;
    }
.mission-text {
    border-left: 4px solid;
}
.accordion .accordion-header > .btn > span.glyph {
    position: absolute;
    right: 0;
}
.accordion .accordion-header .btn-collapse[aria-expanded=false] .glyph::before {
    transform: rotate(0deg);
}
.accordion .accordion-header .btn-collapse[aria-expanded=true] .glyph::before {
    transform: rotate(180deg);
}
.accordion .btn-collapse {
    font-size: 1.3125rem;
}

   

    .journey {
    background: #f0f6ff;
}

.journey-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    position: relative;
}

    .journey-list::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 22px;
        width: 2px;
        background: linear-gradient(to bottom, #9ab8d6, #b8cee6);
    }

.journey-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 16px;
    opacity: 1;
    transform: translateY(16px);
}

    .journey-item:last-child {
        margin-bottom: 0;
    }

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ms-blue);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 0 0 4px #f0f6ff;
    z-index: 1;
}

.journey-item.key-focus .step-circle {
    background: var(--hero-accent);
}

.journey-content {
    text-align: left;
    background: #ffffff;
    border: 1px solid #cfe0f1;
    border-radius: 4px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.journey-item.key-focus .journey-content {
    border-color: rgba(123, 45, 139, 0.35);
    background: rgba(123, 45, 139, 0.06);
}

.journey-step-tag {
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--hero-accent);
    background: rgba(123, 45, 139, 0.1);
    border: 1px solid rgba(123, 45, 139, 0.25);
    padding: 4px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.journey-content h3 {
    margin-bottom: 6px;
    font-size: 21px;
    line-height: 1.3;
    color: #1f1f1f;
}

.journey-content p {
    color: #4f4f4f;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.journey.visible .journey-item {
    animation: journeyStepIn 0.45s ease forwards;
}

    .journey.visible .journey-item:nth-child(1) {
        animation-delay: 0.02s;
    }

    .journey.visible .journey-item:nth-child(2) {
        animation-delay: 0.10s;
    }

    .journey.visible .journey-item:nth-child(3) {
        animation-delay: 0.18s;
    }

    .journey.visible .journey-item:nth-child(4) {
        animation-delay: 0.26s;
    }

    .journey.visible .journey-item:nth-child(5) {
        animation-delay: 0.34s;
    }

@keyframes journeyStepIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 767px) {
  

    .journey-list::before {
        left: 18px;
    }

    .journey-item {
        grid-template-columns: 36px 1fr;
        gap: 12px;
        opacity: 1;
        transform: none;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .journey-content {
        padding: 12px 13px;
    }

        .journey-content h3 {
            font-size: 18px;
        }
    .outcome-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #3a3a3a;
    }

   
}

@media(min-width:1084px) {
    .hero-content {
        background: rgba(27, 27, 27, 0.60) !important;
    }
}

@media (max-width: 1024px) {
    .mission-text {
        border-top: 4px solid;
        border-left: 0;
        margin-top: 20px;
    }
}