/* Global Wrapper Styling & Typography */
.mr-9e10c895-wrapper {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    line-height: 1.6;
}

.mr-9e10c895-container {
    width: 100%;
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
}

/* Section Title & Descriptions */
.mr-9e10c895-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0B1C33;
    text-align: center;
    margin-bottom: 12px;
}
.mr-9e10c895-section-desc {
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.mr-9e10c895-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 0 !important; /* STRICTLY NO ROUNDED CORNERS */
}

.mr-9e10c895-btn-primary {
    background-color: #0D47A1;
    color: #FFFFFF !important;
}
.mr-9e10c895-btn-primary:hover {
    background-color: #0B1C33;
}

.mr-9e10c895-btn-outline {
    background-color: transparent;
    border: 2px solid #0D47A1;
    color: #0D47A1 !important;
}
.mr-9e10c895-btn-outline:hover {
    background-color: #0D47A1;
    color: #FFFFFF !important;
}

/* SECTION 1: HERO */
.mr-9e10c895-hero {
    position: relative;
    text-align: center;
    overflow: visible;
    z-index: 2;
}
.mr-9e10c895-hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    z-index: 0;
    object-fit: cover;
    overflow: hidden;
}
.mr-9e10c895-hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.mr-9e10c895-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mr-9e10c895-hero-content {
    position: relative;
    z-index: 2;
}
.mr-9e10c895-hero-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0D47A1;
    display: block;
    margin-bottom: 16px;
}
.mr-9e10c895-hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #0B1C33;
    margin-bottom: 20px;
}
.mr-9e10c895-hero-desc {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #333333;
}

/* Hero Goal Grid */
.mr-9e10c895-goal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.mr-9e10c895-goal-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}
.mr-9e10c895-goal-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0B1C33;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.mr-9e10c895-goal-card p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}
.mr-9e10c895-goal-card.mr-9e10c895-active {
    border-color: #0D47A1;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.1);
}

/* SECTION 2: INTERACTIVE JOURNEY */
.mr-9e10c895-journey-section {
    background-color: #FFFFFF;
}
.mr-9e10c895-journey-steps-container {
    margin-bottom: 40px;
}
.mr-9e10c895-journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.mr-9e10c895-journey-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E5E5E5;
    z-index: 1;
}
.mr-9e10c895-step-node {
    position: relative;
    z-index: 2;
    text-align: center;
    cursor: pointer;
    flex: 1;
}
.mr-9e10c895-step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50% !important; /* Allowed for step numbers visual only */
    background-color: #E5E5E5;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 10px auto;
    transition: all 0.3s ease;
}
.mr-9e10c895-step-label {
    font-size: 13px;
    font-weight: 600;
    color: #666666;
    display: block;
}
.mr-9e10c895-active-node .mr-9e10c895-step-circle {
    background-color: #0D47A1;
    color: #FFFFFF;
}
.mr-9e10c895-active-node .mr-9e10c895-step-label {
    color: #0D47A1;
}

/* Detail Panel */
.mr-9e10c895-detail-panel {
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.mr-9e10c895-detail-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0B1C33;
    margin-bottom: 15px;
}
.mr-9e10c895-detail-text p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 25px;
}
.mr-9e10c895-detail-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.mr-9e10c895-detail-bullets li {
    font-size: 14px;
    color: #333333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.mr-9e10c895-detail-bullets li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: #0D47A1;
    font-weight: bold;
}
.mr-9e10c895-detail-actions {
    display: flex;
    gap: 15px;
}
.mr-9e10c895-detail-img {
    overflow: hidden;
}

.mr-9e10c895-detail-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* SECTION 3: LEARN CARDS */
.mr-9e10c895-learn-section {
    background-color: #F8F9FA;
}
.mr-9e10c895-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mr-9e10c895-learn-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 40px 30px;
    transition: all 0.3s ease;
}
.mr-9e10c895-learn-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.mr-9e10c895-learn-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0B1C33;
    margin-bottom: 15px;
}
.mr-9e10c895-learn-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
}
.mr-9e10c895-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #0D47A1;
    text-decoration: none;
}

/* SECTION 4: FIND YOUR BEST PATH */
.mr-9e10c895-path-section {
    background-color: #FFFFFF;
}
.mr-9e10c895-path-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}
.mr-9e10c895-path-questions {
    border-right: 1px solid #E5E5E5;
    padding-right: 40px;
}
.mr-9e10c895-progress-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}
.mr-9e10c895-pstep {
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    border: 2px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #666666;
}
.mr-9e10c895-pstep-active {
    border-color: #0D47A1;
    background-color: #0D47A1;
    color: #FFFFFF;
}
.mr-9e10c895-pstep-line {
    flex: 1;
    height: 2px;
    background-color: #E5E5E5;
    max-width: 60px;
}
.mr-9e10c895-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}
.mr-9e10c895-opt-btn {
    text-align: left;
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0B1C33;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0 !important;
}
.mr-9e10c895-opt-btn:hover {
    background: #E5E5E5;
}
.mr-9e10c895-opt-btn.mr-9e10c895-selected {
    border-color: #0D47A1;
    background-color: #0D47A1;
    color: #FFFFFF;
}
.mr-9e10c895-path-nav {
    display: flex;
    gap: 15px;
}
.mr-9e10c895-path-results {
    background: #F8F9FA;
    padding: 40px;
    border: 1px solid #E5E5E5;
}
.mr-9e10c895-results-placeholder {
    text-align: center;
    color: #666666;
    padding: 40px 0;
}
.mr-9e10c895-results-placeholder h3 {
    color: #0B1C33;
    margin-bottom: 10px;
}
.mr-9e10c895-results-actual h3.mr-9e10c895-results-headline {
    font-size: 18px;
    font-weight: 700;
    color: #0B1C33;
    margin-bottom: 25px;
}
.mr-9e10c895-result-item {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 25px;
    margin-bottom: 20px;
}
.mr-9e10c895-result-item h4 {
    font-size: 18px;
    color: #0D47A1;
    margin-bottom: 10px;
}
.mr-9e10c895-result-item p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}
.mr-9e10c895-result-actions {
    display: flex;
    gap: 10px;
}
.mr-9e10c895-result-btn {
    text-decoration: none;
}
.mr-9e10c895-disclaimer {
    font-size: 12px;
    color: #888888;
    margin-top: 30px;
}

/* SECTION 5: GUIDES & CHECKLISTS */
.mr-9e10c895-guides-section {
    background-color: #FFFFFF;
    border-top: 1px solid #E5E5E5;
}
.mr-9e10c895-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mr-9e10c895-guide-card {
    background: #F8F9FA;
    border: 1px solid #E5E5E5;
    padding: 30px;
    transition: all 0.3s ease;
}
.mr-9e10c895-guide-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: #0D47A1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.mr-9e10c895-guide-card h3 {
    font-size: 18px;
    color: #0B1C33;
    margin-bottom: 12px;
}
.mr-9e10c895-guide-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}
.mr-9e10c895-guide-link {
    font-size: 14px;
    font-weight: 600;
    color: #0D47A1;
    text-decoration: none;
}
.mr-9e10c895-guides-footer {
    text-align: center;
    margin-top: 40px;
}

/* SECTION 6: QUICK ANSWERS (FAQ) */
.mr-9e10c895-faq-section {
    background-color: #F8F9FA;
}
.mr-9e10c895-faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.mr-9e10c895-faq-tab {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0 !important;
}
.mr-9e10c895-faq-tab-active, .mr-9e10c895-faq-tab:hover {
    background-color: #0D47A1;
    color: #FFFFFF;
    border-color: #0D47A1;
}

.mr-9e10c895-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.mr-9e10c895-faq-item {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    margin-bottom: 15px;
}
.mr-9e10c895-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #0B1C33;
    text-align: left;
    cursor: pointer;
}
.mr-9e10c895-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}
.mr-9e10c895-faq-panel p {
    font-size: 14px;
    color: #555555;
    margin: 0;
    padding-bottom: 20px;
}

/* SECTION 7: HUMAN SUPPORT */
.mr-9e10c895-support-section {
    background-color: #0B1C33;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}
.mr-9e10c895-support-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.mr-9e10c895-support-desc {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 35px auto;
    color: #CCCCCC;
}

/* SECTION 8: FINAL CTA */
.mr-9e10c895-cta-section {
    background-color: #0D47A1;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}
.mr-9e10c895-cta-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
    color: #FFFFFF;
}
.mr-9e10c895-cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}
.mr-9e10c895-cta-desc {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 35px auto;
    color: rgba(255, 255, 255, 0.8);
}
.mr-9e10c895-cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.mr-9e10c895-cta-section .mr-9e10c895-btn-primary {
    background-color: #FFFFFF;
    color: #0D47A1 !important;
}
.mr-9e10c895-cta-section .mr-9e10c895-btn-primary:hover {
    background-color: #0B1C33;
    color: #FFFFFF !important;
}
.mr-9e10c895-cta-section .mr-9e10c895-btn-outline {
    border-color: #FFFFFF;
    color: #FFFFFF !important;
}
.mr-9e10c895-cta-section .mr-9e10c895-btn-outline:hover {
    background-color: #FFFFFF;
    color: #0D47A1 !important;
}

/* Responsive adjustments */
@media(max-width: 1024px) {
    .mr-9e10c895-goal-grid, .mr-9e10c895-learn-grid, .mr-9e10c895-guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mr-9e10c895-detail-panel {
        grid-template-columns: 1fr;
    }
    .mr-9e10c895-path-grid {
        grid-template-columns: 1fr;
    }
    .mr-9e10c895-path-questions {
        border-right: none;
        padding-right: 0;
    }
}
@media(max-width: 768px) {
    .mr-9e10c895-goal-grid, .mr-9e10c895-learn-grid, .mr-9e10c895-guides-grid {
        grid-template-columns: 1fr;
    }
    .mr-9e10c895-journey-steps {
        overflow-x: auto;
        padding-bottom: 15px;
    }
    .mr-9e10c895-step-node {
        min-width: 100px;
    }
}


/* Keyboard focus states */
.mr-9e10c895-goal-card:focus-visible,
.mr-9e10c895-step-node:focus-visible,
.mr-9e10c895-opt-btn:focus-visible,
.mr-9e10c895-faq-tab:focus-visible,
.mr-9e10c895-faq-trigger:focus-visible,
.mr-9e10c895-btn:focus-visible,
.mr-9e10c895-card-link:focus-visible,
.mr-9e10c895-guide-link:focus-visible {
    outline: 3px solid #0D47A1;
    outline-offset: 3px;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .mr-9e10c895-wrapper *,
    .mr-9e10c895-wrapper *::before,
    .mr-9e10c895-wrapper *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


/* Hero goal cards overlap the next section like the approved mockup */
.mr-9e10c895-goal-grid {
    position: relative;
    z-index: 5;
}

.mr-9e10c895-journey-section {
    position: relative;
    z-index: 1;
}

/* Optional images inside learning and guide cards */
.mr-9e10c895-learn-card-image,
.mr-9e10c895-guide-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.mr-9e10c895-learn-card-image img,
.mr-9e10c895-guide-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Human support image point from the mockup */
.mr-9e10c895-support-inner {
    position: relative;
    z-index: 3;
}

.mr-9e10c895-support-inner.has-media {
    display: flex;
    align-items: stretch;
    gap: 0;
    text-align: left;
}

.mr-9e10c895-support-media {
    flex: 0 0 auto;
    overflow: hidden;
}

.mr-9e10c895-support-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.mr-9e10c895-support-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.mr-9e10c895-support-inner.has-media .mr-9e10c895-support-desc {
    margin-left: 0;
    margin-right: 0;
}

/* Reusable section background media */
.mr-9e10c895-journey-section,
.mr-9e10c895-learn-section,
.mr-9e10c895-path-section,
.mr-9e10c895-guides-section,
.mr-9e10c895-faq-section,
.mr-9e10c895-support-section,
.mr-9e10c895-cta-section {
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

.mr-9e10c895-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mr-9e10c895-section-bg-color,
.mr-9e10c895-section-bg-image,
.mr-9e10c895-section-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mr-9e10c895-section-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mr-9e10c895-section-overlay {
    z-index: 2;
}

.mr-9e10c895-journey-section > .mr-9e10c895-container,
.mr-9e10c895-learn-section > .mr-9e10c895-container,
.mr-9e10c895-path-section > .mr-9e10c895-container,
.mr-9e10c895-guides-section > .mr-9e10c895-container,
.mr-9e10c895-faq-section > .mr-9e10c895-container,
.mr-9e10c895-support-section > .mr-9e10c895-container,
.mr-9e10c895-cta-section > .mr-9e10c895-container {
    position: relative;
    z-index: 3;
}

@media(max-width: 768px) {
    .mr-9e10c895-support-inner.has-media {
        display: block;
    }

    .mr-9e10c895-support-media {
        width: 100% !important;
    }

    .mr-9e10c895-support-copy {
        padding: 35px 20px;
    }

    .mr-9e10c895-learn-card-image img,
    .mr-9e10c895-guide-image img {
        height: 160px;
    }
}


/* =========================================================
   FINAL MOCKUP MATCH OVERRIDES
   These rules intentionally define the approved default look.
   Elementor controls can override sizing/colors through selectors.
   ========================================================= */

.mr-9e10c895-wrapper {
    overflow: visible;
}

/* HERO */
.mr-9e10c895-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: visible !important;
}

.mr-9e10c895-hero-content {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.mr-9e10c895-hero-copy {
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.mr-9e10c895-hero-img-bg,
.mr-9e10c895-hero-video-bg {
    inset: 0;
    width: 100%;
    height: 100%;
}

.mr-9e10c895-goal-grid {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 45px;
}

.mr-9e10c895-goal-card {
    appearance: none;
    width: 100%;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #D8DDE5;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    font-family: inherit;
}

.mr-9e10c895-goal-card.mr-9e10c895-active {
    border: 2px solid #0D47A1;
}

.mr-9e10c895-goal-accent {
    display: none;
    position: absolute;
    width: 64px;
    height: 3px;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    background: #0D47A1;
}

.mr-9e10c895-goal-card.mr-9e10c895-active .mr-9e10c895-goal-accent {
    display: block;
}

/* JOURNEY */
.mr-9e10c895-journey-section {
    padding-top: 95px !important;
}

.mr-9e10c895-journey-header {
    text-align: center;
    margin-bottom: 30px;
}

.mr-9e10c895-journey-heading {
    margin-bottom: 3px !important;
}

.mr-9e10c895-journey-subtitle {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.mr-9e10c895-journey-steps-container {
    margin-bottom: 30px;
}

.mr-9e10c895-detail-panel-outer {
    position: relative;
}

.mr-9e10c895-detail-panel {
    position: relative;
    display: flex !important;
    grid-template-columns: none !important;
    align-items: stretch;
    background: #FFFFFF;
    border: 1px solid #DDE1E6;
    min-height: 295px;
}

.mr-9e10c895-detail-media {
    flex: 0 0 31%;
    min-width: 0;
    overflow: hidden;
}

.mr-9e10c895-detail-media img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.mr-9e10c895-detail-media-placeholder {
    width: 100%;
    height: 260px;
    background: #EFF1F4;
    border: 1px dashed #C7CDD5;
}

.mr-9e10c895-detail-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px 20px 0;
}

.mr-9e10c895-detail-copy h3 {
    margin: 0 0 12px;
    font-size: 28px;
    color: #0B1C33;
}

.mr-9e10c895-detail-copy p {
    margin: 0 0 22px;
    line-height: 1.65;
}

.mr-9e10c895-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: auto;
}

.mr-9e10c895-detail-tasks {
    flex: 0 0 30%;
    min-width: 240px;
    border-left: 1px solid #E3E6EA;
    padding: 20px 0 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mr-9e10c895-detail-tasks h4 {
    margin: 0 0 15px;
    color: #0B1C33;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
}

.mr-9e10c895-detail-tasks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mr-9e10c895-detail-tasks li {
    margin: 0 0 12px;
    color: #0D47A1;
    font-size: 14px;
    font-weight: 500;
}

.mr-9e10c895-detail-nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mr-9e10c895-detail-nav button {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 54px;
    border: 0;
    background: transparent;
    color: #111111;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.mr-9e10c895-detail-prev {
    left: -58px;
}

.mr-9e10c895-detail-next {
    right: -58px;
}

/* LEARN */
.mr-9e10c895-learn-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.mr-9e10c895-learn-card {
    min-height: 190px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.mr-9e10c895-learn-card .mr-9e10c895-card-link {
    margin-top: auto;
}

/* BEST PATH */
.mr-9e10c895-path-section > .mr-9e10c895-container {
    border: 1px solid #0B1C33;
}

.mr-9e10c895-path-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.mr-9e10c895-path-questions {
    background: linear-gradient(135deg, #0B1C33 0%, #0D47A1 100%);
    color: #FFFFFF;
    border-right: 0;
    padding: 36px;
}

.mr-9e10c895-path-questions h2,
.mr-9e10c895-path-questions h3,
.mr-9e10c895-path-questions p {
    color: #FFFFFF;
}

.mr-9e10c895-path-results {
    border: 0;
    background: #FFFFFF;
    padding: 36px;
}

/* GUIDES + FAQ side-by-side like mockup */
.mr-9e10c895-guides-section,
.mr-9e10c895-faq-section {
    width: 50%;
    display: inline-block;
    vertical-align: top;
}

.mr-9e10c895-guides-section > .mr-9e10c895-container,
.mr-9e10c895-faq-section > .mr-9e10c895-container {
    max-width: 100% !important;
}

.mr-9e10c895-guides-section .mr-9e10c895-section-title,
.mr-9e10c895-guides-section .mr-9e10c895-section-desc,
.mr-9e10c895-faq-section .mr-9e10c895-section-title,
.mr-9e10c895-faq-section .mr-9e10c895-section-desc {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.mr-9e10c895-guides-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.mr-9e10c895-guide-card {
    min-height: 105px;
    padding: 18px;
}

.mr-9e10c895-faq-tabs {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.mr-9e10c895-faq-accordion {
    max-width: none;
}

/* SUPPORT: optional, compact if enabled */
.mr-9e10c895-support-section {
    text-align: left;
}

.mr-9e10c895-support-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.mr-9e10c895-support-inner.has-media {
    min-height: 340px;
}

.mr-9e10c895-support-copy {
    padding: 45px;
}

/* FINAL CTA: compact horizontal bar exactly like mockup */
.mr-9e10c895-cta-section {
    padding: 34px 20px !important;
    text-align: left;
}

.mr-9e10c895-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.mr-9e10c895-cta-copy {
    flex: 1 1 55%;
    min-width: 0;
}

.mr-9e10c895-cta-heading {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.2;
    color: #FFFFFF;
}

.mr-9e10c895-cta-desc {
    margin: 0;
    max-width: none;
    color: #FFFFFF;
    opacity: .92;
}

.mr-9e10c895-cta-btns {
    flex: 0 0 auto;
    justify-content: flex-end;
    align-items: center;
}

/* Mobile/tablet */
@media (max-width: 1100px) {
    .mr-9e10c895-learn-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .mr-9e10c895-guides-section,
    .mr-9e10c895-faq-section {
        width: 100%;
        display: block;
    }

    .mr-9e10c895-detail-prev {
        left: 0;
    }

    .mr-9e10c895-detail-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .mr-9e10c895-hero {
        min-height: auto;
    }

    .mr-9e10c895-goal-grid {
        grid-template-columns: 1fr;
        transform: none !important;
        margin-bottom: 0 !important;
    }

    .mr-9e10c895-journey-section {
        padding-top: 55px !important;
    }

    .mr-9e10c895-detail-panel {
        display: block !important;
    }

    .mr-9e10c895-detail-media,
    .mr-9e10c895-detail-tasks {
        width: 100% !important;
        min-width: 0;
    }

    .mr-9e10c895-detail-copy {
        padding: 25px 0;
    }

    .mr-9e10c895-detail-tasks {
        border-left: 0;
        border-top: 1px solid #E3E6EA;
        padding: 25px 0 0;
    }

    .mr-9e10c895-detail-nav {
        display: none;
    }

    .mr-9e10c895-learn-grid {
        grid-template-columns: 1fr;
    }

    .mr-9e10c895-path-grid {
        grid-template-columns: 1fr;
    }

    .mr-9e10c895-guides-grid {
        grid-template-columns: 1fr;
    }

    .mr-9e10c895-cta-inner {
        display: block;
        text-align: center;
    }

    .mr-9e10c895-cta-btns {
        justify-content: center;
        margin-top: 24px;
        flex-wrap: wrap;
    }
}
/* =========================================================
   FIX: GUIDES + QUICK ANSWERS SIDE BY SIDE
   ========================================================= */

.mr-9e10c895-guides-section,
.mr-9e10c895-faq-section {
    width: 50% !important;
    max-width: 50% !important;
    box-sizing: border-box !important;
    display: block !important;
    float: left;
    vertical-align: top;
}

/* Keep each section's content inside its own half */
.mr-9e10c895-guides-section > .mr-9e10c895-container,
.mr-9e10c895-faq-section > .mr-9e10c895-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Guides left / FAQ right */
.mr-9e10c895-guides-section {
    float: left;
}

.mr-9e10c895-faq-section {
    float: right;
}

/* Make sure sections below start on a fresh row */
.mr-9e10c895-support-section,
.mr-9e10c895-cta-section {
    clear: both;
}

/* Keep Guides cards in the 3 x 2 layout from the mockup */
.mr-9e10c895-guides-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* FAQ stays fully inside the right column */
.mr-9e10c895-faq-accordion {
    width: 100%;
    max-width: none !important;
}

/* Tablet / Mobile: stack the two sections */
@media (max-width: 1024px) {

    .mr-9e10c895-guides-section,
    .mr-9e10c895-faq-section {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        display: block !important;
    }
}
/* =========================================================
   FIX: FIND YOUR BEST PATH - COMPACT MOCKUP LAYOUT
   ========================================================= */

.mr-9e10c895-path-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    align-items: stretch;
}

.mr-9e10c895-path-questions,
.mr-9e10c895-path-results {
    min-height: 0 !important;
}

.mr-9e10c895-path-questions {
    padding: 36px 34px !important;
}

.mr-9e10c895-path-results {
    padding: 36px 34px !important;
}

.mr-9e10c895-progress-steps {
    margin: 24px 0 28px !important;
}

.mr-9e10c895-question-block h3 {
    margin-bottom: 18px !important;
}

.mr-9e10c895-options {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin: 0 0 22px !important;
}

.mr-9e10c895-opt-btn {
    min-height: 54px !important;
    padding: 12px 16px !important;
    text-align: center !important;
}

.mr-9e10c895-path-nav {
    margin-top: 6px !important;
}

.mr-9e10c895-btn-next,
.mr-9e10c895-btn-prev {
    min-width: 100px;
}

.mr-9e10c895-results-placeholder {
    padding: 20px 10px !important;
}

.mr-9e10c895-results-placeholder h3 {
    margin-bottom: 8px !important;
}

.mr-9e10c895-result-item {
    padding: 20px !important;
    margin-bottom: 14px !important;
}

.mr-9e10c895-result-item:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .mr-9e10c895-path-grid {
        grid-template-columns: 1fr !important;
    }

    .mr-9e10c895-options {
        grid-template-columns: 1fr !important;
    }
}
/* =========================================================
   FIX: REMOVE WHITE GAP INSIDE BEST PATH SECTION
   ========================================================= */

.mr-9e10c895-best-path-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mr-9e10c895-best-path-section > .mr-9e10c895-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.mr-9e10c895-path-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}
/* =========================================================
   FIX: REMOVE OUTER WHITE GAP FROM BEST PATH SECTION
   ========================================================= */

.mr-9e10c895-path-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mr-9e10c895-path-section > .mr-9e10c895-container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mr-9e10c895-path-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mr-9e10c895-path-questions {
    margin-left: 0 !important;
}

.mr-9e10c895-path-results {
    margin-right: 0 !important;
}
/* =========================================================
   FIX: KEEP GUIDES + FAQ SIDE BY SIDE
   AND FORCE FINAL CTA TO START BELOW THEM
   ========================================================= */

.mr-9e10c895-guides-section,
.mr-9e10c895-faq-section {
    width: 50% !important;
    max-width: 50% !important;
    box-sizing: border-box !important;
    float: left !important;
    display: block !important;
}

.mr-9e10c895-guides-section > .mr-9e10c895-container,
.mr-9e10c895-faq-section > .mr-9e10c895-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Clear the two-column row before CTA */
.mr-9e10c895-cta-section {
    clear: both !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Also clear optional support section */
.mr-9e10c895-support-section {
    clear: both !important;
}

/* Prevent parent collapse caused by floated sections */
.mr-9e10c895-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

/* Tablet/mobile */
@media (max-width: 1024px) {
    .mr-9e10c895-guides-section,
    .mr-9e10c895-faq-section {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
    }
}
/* ===== FINAL CTA — COMPACT EQUAL BUTTONS ===== */

.mr-9e10c895-cta-btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.mr-9e10c895-cta-btns .mr-9e10c895-btn {
    width: 200px;
    min-width: 200px;
    height: 48px;
    min-height: 48px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.15;
    white-space: normal;
}

/* Mobile */
@media (max-width: 767px) {
    .mr-9e10c895-cta-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .mr-9e10c895-cta-btns .mr-9e10c895-btn {
        width: 100%;
        min-width: 0;
        height: 48px;
    }
}