.six-paths-container-d93bbd52 {
    font-family: 'DM Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    color: #111827;
}
.sp-header {
    text-align: center;
    margin-bottom: 32px;
}
.sp-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sp-heading {
    font-size: 42px;
    font-weight: 700;
    margin: 12px 0;
    color: #111827;
}
.sp-desc {
    font-size: 18px;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto;
}
.sp-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
}
/* Base Tab State */
html body .six-paths-container-d93bbd52 .sp-tabs button.sp-tab {
    flex: 1;
    height: 60px;
    border-radius: 16px;
    background-color: #ffffff !important;
    background-image: none !important;
    border: 1px solid #1B6CA8 !important;
    color: #111827 !important;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    box-shadow: none !important;
}
/* Hover State animation translateY(-3px) */
html body .six-paths-container-d93bbd52 .sp-tabs button.sp-tab:hover {
    border-color: #1B6CA8 !important;
    background-color: #ffffff !important;
    background-image: none !important;
    color: #1B6CA8 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(27,108,168,0.1) !important;
}
/* Active State */
html body .six-paths-container-d93bbd52 .sp-tabs button.sp-tab.active {
    background-color: #1B6CA8 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: #1B6CA8 !important;
    box-shadow: 0 4px 12px rgba(27,108,168,0.2) !important;
    transform: translateY(0);
}
html body .six-paths-container-d93bbd52 .sp-tabs button.sp-tab.active:hover {
    background-color: #1B6CA8 !important;
    color: #ffffff !important;
    border-color: #1B6CA8 !important;
    box-shadow: 0 4px 12px rgba(27,108,168,0.2) !important;
    transform: translateY(0);
}

/* Intro Slogan Blocks below tabs - centered alignment */
.sp-intro-blocks {
    text-align: center;
    margin-bottom: 48px;
    min-height: 90px;
}
.sp-intro-block {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sp-intro-block.active {
    display: block;
    opacity: 1;
}
.sp-intro-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1B6CA8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.sp-intro-slogan {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
    color: #111827;
    margin: 0;
}

.sp-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}
.sp-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Layout widths updated: approximately 55% left column, 45% right column */
.sp-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
}
.sp-outcome-card {
    background: #fff;
    border: 1px solid #D9E3EC;
    border-radius: 24px;
    padding: 32px;
    position: sticky;
    top: 120px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

/* Outcome Card Headings */
.sp-outcome-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #111827;
}
.sp-outcome-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1B6CA8;
    margin-bottom: 16px;
}
.sp-path-outcome {
    font-size: 15px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #E3EAF1;
}

/* Spacing and borders between benefits */
.sp-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.sp-benefit {
    padding-bottom: 16px;
    border-bottom: 1px solid #E3EAF1;
}
.sp-benefit:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.sp-benefit h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
}
.sp-benefit p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748B;
    margin: 0;
}

/* Increased spacing between KPI/stat cards */
.sp-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}
.sp-stat {
    background: #1B6CA8;
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    flex: 1;
    text-align: center;
}
.sp-stat strong {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}
.sp-stat span {
    font-size: 14px;
    opacity: 0.9;
}

/* Strengthened Visual Hierarchy of Timeline & Step headers */
.sp-timeline {
    position: relative;
    padding-left: 28px;
    border-left: 3px solid #E2E8F0; /* Thicker, more visible connector line */
}
.sp-step {
    background: #fff;
    border: 1px solid #E3EAF1;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
    cursor: pointer;
    position: relative;
    border-left: 4px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sp-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.sp-step.active {
    border-left-color: #1B6CA8;
    border-color: #CBD5E1;
    box-shadow: 0 10px 30px rgba(27,108,168,0.08);
}

.sp-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: none;
    position: relative;
}
.sp-step-num {
    background: #F1F5F9;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}
.sp-step.active .sp-step-num {
    background: #1B6CA8;
    color: #ffffff;
}

.sp-step-title-group {
    flex-grow: 1;
}
.sp-step-title-group h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px 0;
}
.sp-step-title-group p {
    font-size: 13px;
    color: #64748B;
    margin: 0;
}

/* Chevron arrow on the right */
.sp-step-arrow {
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}
.sp-step.active .sp-step-arrow {
    transform: rotate(180deg);
    color: #1B6CA8;
}

.sp-step-content {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E3EAF1;
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
}
.sp-step.active .sp-step-content {
    display: block;
}
