:root {
    --rb-primary: #1F3A5F;
    --rb-secondary: #F5F7FA;
    --rb-accent: #C9A646;
    --rb-white: #FFFFFF;
}

:focus-visible {
    outline: 2px solid #c9a646;
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px;
}

body {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    background-color: var(--rb-secondary);
    color: #1a1a2e;
}

.rb-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 68px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease;
}

.rb-navbar.is-scrolled {
    box-shadow: 0 2px 12px rgba(31, 58, 95, 0.1);
}

.rb-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.rb-navbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.rb-navbar__logo {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.rb-navbar__site-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--rb-primary);
    white-space: nowrap;
}

.rb-navbar__desktop {
    flex: 1;
    display: none;
    min-width: 0;
}

@media (min-width: 768px) {
    .rb-navbar__desktop {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

.rb-navbar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.rb-nav-link {
    position: relative;
    display: inline-block;
    padding: 4px 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #1f3a5f;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    white-space: nowrap;
}

.rb-nav-link--dropdown .rb-nav-chevron {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    color: #c9a646;
    transform-origin: center;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.rb-nav-link::after {
    content: "";
    display: block;
    height: 2px;
    background: #c9a646;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    margin-top: 2px;
}

.rb-nav-link:hover::after,
.rb-nav-link:focus-visible::after,
.rb-nav-link.is-active::after {
    transform: scaleX(1);
}

.rb-nav-item {
    position: relative;
}

.rb-nav-link--dropdown.rb-nav-link::after {
    width: calc(100% - 22px);
}

.rb-nav-link--dropdown:is(button):focus-visible {
    outline: 2px solid var(--rb-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

.rb-nav-link--dropdown:is(button)::after {
    width: calc(100% - 14px);
}

.rb-nav-link--section:is(a):focus-visible,
.rb-navbar__brand:focus-visible {
    outline: 2px solid var(--rb-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

.rb-nav-item.is-open > .rb-nav-link--dropdown .rb-nav-chevron {
    transform: rotate(180deg);
}

.rb-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}

.rb-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 240px;
    padding: 8px 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid #c9a646;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(31, 58, 95, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 999;
}

.rb-nav-item.is-open .rb-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rb-dropdown__item {
    display: block;
    padding: 11px 20px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a2e;
    text-decoration: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(31, 58, 95, 0.06);
    transition: background 0.18s ease, border-left-color 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.rb-dropdown__item:last-child {
    border-bottom: none;
}

.rb-dropdown__item:hover,
.rb-dropdown__item:focus-visible {
    background: rgba(31, 58, 95, 0.04);
    border-left-color: #c9a646;
    color: #1f3a5f;
    font-weight: 600;
    padding-left: 24px;
}

.rb-dropdown__item:focus-visible {
    outline: none;
}

.rb-nav-cta {
    margin-left: 12px;
    display: inline-block;
    padding: 12px 28px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #1f3a5f;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease;
    white-space: nowrap;
}

.rb-nav-cta::after {
    display: none;
}

.rb-nav-cta:hover,
.rb-nav-cta:focus-visible {
    background: #c9a646;
}

.rb-nav-cta:focus-visible {
    outline: 2px solid #c9a646;
    outline-offset: 3px;
}

.rb-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #1f3a5f;
}

.rb-nav-toggle:focus-visible {
    outline: 2px solid var(--rb-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .rb-nav-toggle {
        display: none;
    }
}

.rb-nav-toggle__bars {
    position: relative;
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rb-nav-toggle__bar {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.28s ease, opacity 0.2s ease;
    transform-origin: center;
}

.rb-nav-toggle.is-open .rb-nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rb-nav-toggle.is-open .rb-nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.rb-nav-toggle.is-open .rb-nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.rb-nav-mobile {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    padding: 16px 0 24px;
    background: #ffffff;
    border-top: 3px solid #c9a646;
    box-shadow: 0 8px 24px rgba(31, 58, 95, 0.15);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .rb-nav-mobile {
        transform: translateY(-110%) !important;
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        height: 0;
        padding: 0;
        overflow: hidden;
        border: none;
        box-shadow: none;
    }

    .rb-nav-mobile.is-open {
        visibility: hidden;
    }
}

@media (max-width: 767px) {
    .rb-nav-mobile {
        display: block;
        visibility: hidden;
        pointer-events: none;
    }

    .rb-nav-mobile.is-open {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }
}

.rb-nav-mobile__inner {
    display: flex;
    flex-direction: column;
}

.rb-nav-mobile__link {
    display: block;
    padding: 14px 24px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1f3a5f;
    text-decoration: none;
    border-bottom: 1px solid #e2e8f0;
}

.rb-nav-mobile__link.is-active {
    color: #1f3a5f;
    box-shadow: inset 3px 0 0 #c9a646;
}

.rb-nav-mobile-cta {
    display: block;
    margin: 16px 24px 0;
    padding: 12px 28px;
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #1f3a5f;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.rb-nav-mobile-cta:focus-visible {
    outline: 2px solid var(--rb-accent);
    outline-offset: 3px;
}

.rb-nav-mobile-cta:hover {
    background: #c9a646;
}

.rb-nav-mobile-cta:active {
    background: #c9a646;
}

.rb-nav-mobile-group {
    border-bottom: 1px solid #e2e8f0;
}

.rb-nav-mobile-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 24px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1f3a5f;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.rb-nav-mobile-trigger:focus-visible {
    outline: 2px solid var(--rb-accent);
    outline-offset: -2px;
}

.rb-nav-mobile-trigger__chevron {
    font-size: 12px;
    color: #c9a646;
    transition: transform 0.2s ease;
}

.rb-nav-mobile-group.is-open .rb-nav-mobile-trigger__chevron {
    transform: rotate(180deg);
}

.rb-nav-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.rb-nav-mobile-group.is-open .rb-nav-mobile-submenu {
    max-height: 320px;
}

.rb-nav-mobile__sublink {
    display: block;
    padding: 11px 24px 11px 40px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    text-decoration: none;
    border-left: 3px solid #c9a646;
    background: rgba(31, 58, 95, 0.03);
}

.rb-nav-mobile__sublink:hover,
.rb-nav-mobile__sublink:focus-visible {
    background: rgba(31, 58, 95, 0.06);
    color: #1f3a5f;
}

/* Hero: less top padding than other sections so content sits slightly higher under the navbar */
.rb-section.rb-hero {
    padding-top: 40px;
    padding-bottom: 80px;
}

.rb-hero {
    width: 100%;
    min-height: calc(100vh - 68px);
    background-image:
        linear-gradient(rgba(31, 58, 95, 0.82), rgba(31, 58, 95, 0.82)),
        url("https://images.unsplash.com/photo-1456324504439-367cee3b3c32?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rb-hero__overlay {
    width: 100%;
    min-height: calc(100vh - 68px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rb-hero__container {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 64px 24px 72px;
    color: var(--rb-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rb-hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 36px;
}

.rb-hero-logo {
    width: 152px;
    height: 152px;
    object-fit: contain;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.rb-hero-tagline {
    margin: 0 auto 20px;
    max-width: 820px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    text-align: center;
}

.rb-hero-subtext {
    margin: 0 auto;
    max-width: 680px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
}

@media (max-width: 1279px) and (min-width: 768px) {
    .rb-section.rb-hero {
        padding-top: 32px;
    }

    .rb-hero__container {
        padding: 52px 24px 60px;
    }

    .rb-hero-logo {
        width: 110px;
        height: 110px;
    }

    .rb-hero-tagline {
        font-size: 38px;
    }

    .rb-hero-subtext {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .rb-section.rb-hero {
        padding-top: 28px;
    }

    .rb-hero__container {
        padding: 40px 20px 48px;
    }

    .rb-hero-logo {
        width: 80px;
        height: 80px;
    }

    .rb-hero-tagline {
        font-size: 28px;
    }

    .rb-hero-subtext {
        font-size: 15px;
    }
}

.rb-overview {
    width: 100%;
    background-color: var(--rb-secondary);
    padding: 80px 0;
}

.rb-overview__layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: start;
}

.rb-overview__col--left {
    position: relative;
    padding-right: 8px;
}

.rb-overview__quote-mark {
    position: absolute;
    left: -8px;
    top: -48px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 96px;
    line-height: 1;
    color: var(--rb-primary);
    opacity: 0.08;
    pointer-events: none;
    user-select: none;
}

.rb-overview__col-left-inner {
    position: relative;
    z-index: 1;
}

.rb-overview__label {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rb-accent);
}

.rb-overview__rule {
    width: 48px;
    height: 3px;
    margin: 12px 0 0;
    background-color: var(--rb-accent);
}

.rb-overview__pull {
    margin: 20px 0 0;
    max-width: 280px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--rb-primary);
}

.rb-overview__body {
    border-left: 3px solid var(--rb-primary);
    padding-left: 28px;
}

.rb-overview__para {
    margin: 0 0 20px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #1a1a2e;
}

.rb-overview__para:last-child {
    margin-bottom: 0;
}

.rb-overview__strong {
    font-weight: 600;
    color: var(--rb-primary);
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.rb-overview__strong:hover {
    background-color: rgba(201, 166, 70, 0.1);
}

.rb-overview__foot-rule {
    width: 80px;
    height: 2px;
    margin: 40px auto 0;
    background-color: var(--rb-accent);
}

.rb-engagement {
    width: 100%;
    background-color: #ffffff;
}

.rb-engagement__container {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 80px 0 80px;
}

.rb-engagement__intro {
    margin-bottom: 48px;
}

.rb-engagement__title {
    margin: 0 0 14px;
    color: var(--rb-primary);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    line-height: 1.3;
    font-weight: 700;
}

.rb-engagement__subtitle {
    margin: 0;
    max-width: 920px;
    color: #4b5563;
    font-size: 1.06rem;
    line-height: 1.8;
    font-weight: 600;
}

.rb-engagement__timeline {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: 48px;
}

.rb-engagement__timeline-line {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    height: 2px;
    background-color: var(--rb-primary);
    z-index: 0;
}

@media (min-width: 901px) {
    .rb-engagement__timeline-line {
        display: block;
    }
}

.rb-timeline-step {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.rb-timeline-step__node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--rb-primary);
    color: var(--rb-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background-color 0.25s ease;
}

.rb-timeline-step__card {
    width: 100%;
    background-color: var(--rb-white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    border-top: 3px solid transparent;
    padding: 22px 18px;
    box-sizing: border-box;
    transition: border-color 0.25s ease, border-top-color 0.25s ease;
}

.rb-timeline-step:hover .rb-timeline-step__node,
.rb-timeline-step.is-active .rb-timeline-step__node {
    background-color: var(--rb-accent);
}

.rb-timeline-step:hover .rb-timeline-step__card,
.rb-timeline-step.is-active .rb-timeline-step__card {
    border-color: var(--rb-accent);
    border-top-color: var(--rb-accent);
}

.rb-step-card__text {
    margin: 0;
    color: var(--rb-primary);
    font-size: 0.96rem;
    line-height: 1.55;
    font-weight: 700;
}

.rb-engagement__content {
    margin-bottom: 34px;
}

.rb-engagement__text {
    margin: 0 0 18px;
    color: var(--rb-primary);
    font-size: 1rem;
    line-height: 1.9;
}

.rb-engagement__list {
    margin: 0 0 18px 20px;
    padding: 0;
    color: var(--rb-primary);
}

.rb-engagement__list li {
    margin: 0 0 10px;
    line-height: 1.8;
}

.rb-engagement__list li:last-child {
    margin-bottom: 0;
}

.rb-engagement__figure {
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(31, 58, 95, 0.15);
    border-radius: 10px;
    background-color: #ffffff;
}

.rb-engagement__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .rb-overview {
        padding: 80px 0;
    }

    .rb-engagement__container {
        padding: 80px 0;
    }

    .rb-engagement__timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .rb-engagement__timeline::before {
        content: "";
        position: absolute;
        left: 25px;
        right: auto;
        top: 26px;
        bottom: 26px;
        width: 2px;
        height: auto;
        background-color: var(--rb-primary);
        z-index: 0;
    }

    .rb-timeline-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        flex: none;
    }

    .rb-timeline-step__node {
        position: relative;
        z-index: 1;
    }

    .rb-timeline-step__card {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .rb-engagement__figure {
        padding: 14px;
    }
}

/* -------------------------------------------------------------------------- */
/* Shared section layout (component-rules)                                    */
/* -------------------------------------------------------------------------- */

.rb-section {
    padding: 80px 0;
    scroll-margin-top: 80px;
}

.rb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------------------------------- */
/* Pathways of Engagement (Section C)                                         */
/* -------------------------------------------------------------------------- */

.rb-pathways {
    background-color: #ffffff;
}

.rb-pathways .rb-section__header {
    margin: 0 0 40px;
}

.rb-pathways .rb-section__title {
    margin: 0 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 2.4vw, 2.125rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--rb-primary);
}

.rb-pathways .rb-section__rule {
    width: 60px;
    height: 3px;
    background-color: var(--rb-accent);
    margin: 0;
}

.rb-pathways__banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    padding: 20px 32px;
    background-color: var(--rb-primary);
    border-radius: 10px;
    margin-bottom: 0;
}

.rb-pathways__banner-item {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: #ffffff;
}

.rb-pathways__banner-text {
    color: #ffffff;
}

.rb-pathways__banner-gold {
    color: var(--rb-accent);
}

.rb-pathways__banner-divider {
    flex: 0 0 auto;
    width: 1px;
    align-self: stretch;
    min-height: 2.5rem;
    margin: 0 24px;
    background-color: var(--rb-accent);
}

.rb-pathways__intro {
    margin: 24px 0 40px;
    max-width: 740px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #1a1a2e;
}

.rb-pathways__columns {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.rb-pathways__columns::before {
    content: "";
    position: absolute;
    left: calc(50% - 0.5px);
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e2e8f0;
    pointer-events: none;
}

.rb-pathways__card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #ffffff;
    transition: box-shadow 0.25s ease, border-left-color 0.25s ease;
}

.rb-pathways__card--mentoring {
    border-left: 4px solid var(--rb-primary);
}

.rb-pathways__card--support {
    border-left: 4px solid var(--rb-accent);
}

.rb-pathways__card-cap {
    width: 100%;
    height: 8px;
    flex-shrink: 0;
    transition: height 0.25s ease, background-color 0.25s ease;
}

.rb-pathways__card--mentoring .rb-pathways__card-cap {
    background-color: var(--rb-primary);
}

.rb-pathways__card--support .rb-pathways__card-cap {
    background-color: var(--rb-accent);
}

.rb-pathways__card-body {
    padding: 32px;
}

.rb-pathways__card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-pathways__card-icon {
    flex-shrink: 0;
}

.rb-pathways__card-icon--primary {
    color: var(--rb-primary);
}

.rb-pathways__card-icon--accent {
    color: var(--rb-accent);
}

.rb-pathways__card-title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--rb-primary);
}

.rb-pathways__card-sub {
    margin: 4px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7280;
}

.rb-pathways__card-lead {
    margin: 16px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #1a1a2e;
}

.rb-pathways__list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.rb-pathways__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 10px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #1a1a2e;
}

.rb-pathways__list li:last-child {
    margin-bottom: 0;
}

.rb-pathways__list-icon {
    flex-shrink: 0;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-pathways__list--primary .rb-pathways__list-icon {
    color: var(--rb-primary);
}

.rb-pathways__list--accent .rb-pathways__list-icon {
    color: var(--rb-accent);
}

.rb-pathways__card-close {
    margin: 16px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    color: #4b5563;
}

.rb-pathways__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    min-height: 44px;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.rb-pathways__cta--outline {
    padding: 11px 26px;
    background-color: transparent;
    color: var(--rb-accent);
    border: 2px solid var(--rb-accent);
}

.rb-pathways__cta:focus-visible {
    outline: 2px solid var(--rb-accent);
    outline-offset: 3px;
}

.rb-pathways__cta--primary {
    background-color: var(--rb-primary);
    color: #ffffff;
    border: 2px solid transparent;
}

.rb-pathways__cta--primary:hover {
    background-color: var(--rb-accent);
    color: #ffffff;
}

.rb-pathways__cta--outline:hover {
    background-color: var(--rb-accent);
    color: #ffffff;
}

.rb-pathways__card--mentoring:hover {
    box-shadow: 0 4px 16px rgba(31, 58, 95, 0.1);
    border-left-color: #1f3a5f;
}

.rb-pathways__card--support:hover {
    box-shadow: 0 4px 16px rgba(31, 58, 95, 0.1);
    border-left-color: #c9a646;
}

.rb-pathways__card:hover .rb-pathways__card-cap {
    height: 10px;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .rb-pathways__card-body {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .rb-pathways__columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rb-pathways__columns::before {
        display: none;
    }

    .rb-pathways__banner {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px;
    }

    .rb-pathways__banner-divider {
        width: 100%;
        height: 2px;
        min-height: 0;
        margin: 16px 0;
        align-self: stretch;
    }

    .rb-pathways__banner-item {
        text-align: left;
    }
}

/* -------------------------------------------------------------------------- */
/* Overview: stack under 768px                                                */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .rb-overview__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rb-overview__quote-mark {
        display: none;
    }

    .rb-overview__pull {
        max-width: none;
    }
}

/* -------------------------------------------------------------------------- */
/* Unified scroll reveal ([data-reveal])                                      */
/* -------------------------------------------------------------------------- */

[data-reveal="true"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal="true"][data-reveal-direction="left"] {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal="true"][data-reveal-direction="right"] {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal="true"][data-reveal-direction="hero"] {
    opacity: 0;
    transform: none;
    transition: opacity 0.6s ease;
}

[data-reveal="true"][data-reveal-direction="hero-logo"] {
    opacity: 0;
    transform: none;
    transition: opacity 0.6s ease;
}

[data-reveal="true"][data-reveal-direction="hero-sub"] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal="true"][data-reveal-direction="eng-heading"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal="true"][data-reveal-direction="eng-step"] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal="true"][data-reveal-type="scale-x"] {
    opacity: 1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s ease;
}

[data-reveal="true"].is-revealed:not([data-reveal-type="scale-x"]) {
    opacity: 1;
    transform: translate(0, 0);
}

[data-reveal="true"][data-reveal-type="scale-x"].is-revealed {
    opacity: 1;
    transform: scaleX(1);
}

[data-reveal="true"][data-reveal-direction="hero"].is-revealed {
    opacity: 1;
    transform: none;
}

[data-reveal="true"][data-reveal-direction="hero-logo"].is-revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal="true"] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    [data-reveal="true"][data-reveal-type="scale-x"] {
        transform: scaleX(1) !important;
    }
}

/* -------------------------------------------------------------------------- */
/* Ethical Framework (Section D)                                              */
/* -------------------------------------------------------------------------- */

.rb-ethical {
    padding: 90px 0;
    color: #ffffff;
    background-color: #1f3a5f;
}

.rb-ethical__header {
    text-align: center;
}

.rb-ethical__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 2.8vw, 38px);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

.rb-ethical__rule {
    width: 60px;
    height: 3px;
    margin: 14px auto 16px;
    background-color: #c9a646;
}

.rb-ethical__intro {
    margin: 0 auto;
    max-width: 740px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
}

.rb-ethical__bridge {
    margin: 20px 0 36px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #c9a646;
    font-style: italic;
}

.rb-ethical__columns {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.rb-ethical__columns::before {
    content: "";
    position: absolute;
    left: calc(50% - 0.5px);
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.rb-ethical__card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.rb-ethical__card-cap {
    width: 100%;
    height: 4px;
}

.rb-ethical__card--principles .rb-ethical__card-cap {
    background-color: #c9a646;
}

.rb-ethical__card--boundaries .rb-ethical__card-cap {
    background-color: #e53e3e;
}

.rb-ethical__card-body {
    padding: 36px 32px;
}

.rb-ethical__card-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rb-ethical__card-heading .fa-circle-check {
    color: #c9a646;
    font-size: 18px;
}

.rb-ethical__card-heading .fa-triangle-exclamation {
    color: #e53e3e;
    font-size: 18px;
}

.rb-ethical__card-title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #ffffff;
}

.rb-ethical__card-rule {
    width: 40px;
    height: 2px;
    margin: 10px 0 24px;
}

.rb-ethical__card--principles .rb-ethical__card-rule {
    background-color: #c9a646;
}

.rb-ethical__card--boundaries .rb-ethical__card-rule {
    background-color: #e53e3e;
}

.rb-ethical__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-left: 3px solid transparent;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.rb-ethical__item-sep {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.rb-ethical__item-icon {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rb-ethical__item-icon svg {
    width: 16px;
    height: 16px;
}

.rb-ethical__card--principles .rb-ethical__item-icon {
    color: #c9a646;
}

.rb-ethical__card--boundaries .rb-ethical__item-icon {
    color: #e53e3e;
}

.rb-ethical__item-text {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

.rb-ethical__item-label {
    font-weight: 700;
    color: #ffffff;
}

.rb-ethical__item-desc {
    color: rgba(255, 255, 255, 0.75);
}

.rb-ethical__card--boundaries .rb-ethical__item-text {
    color: rgba(255, 255, 255, 0.78);
}

.rb-boundary-no {
    font-weight: 700;
    color: #e53e3e;
}

.rb-ethical__card--principles .rb-ethical__item:hover {
    background-color: rgba(201, 166, 70, 0.08);
    border-left-color: #c9a646;
    padding-left: 8px;
}

.rb-ethical__card--boundaries .rb-ethical__item:hover {
    background-color: rgba(229, 62, 62, 0.08);
    border-left-color: #e53e3e;
    padding-left: 8px;
}

.rb-ethical__badges {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-ethical__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rb-ethical__badge i {
    color: #c9a646;
    font-size: 20px;
}

.rb-ethical__badge span {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.rb-ethical__badge-divider {
    width: 1px;
    height: 20px;
    margin: 0 24px;
    background-color: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) and (max-width: 1279px) {
    .rb-ethical__card-body {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .rb-ethical__columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rb-ethical__columns::before {
        display: none;
    }

    .rb-ethical__badges {
        flex-direction: column;
        gap: 12px;
    }

    .rb-ethical__badge-divider {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/* Who We Serve (Section E)                                                   */
/* -------------------------------------------------------------------------- */

.rb-serve {
    padding: 90px 0;
    background-color: #f5f7fa;
}

.rb-serve__header {
    text-align: center;
}

.rb-serve__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 2.8vw, 38px);
    line-height: 1.25;
    font-weight: 700;
    color: #1f3a5f;
}

.rb-serve__rule {
    width: 60px;
    height: 3px;
    margin: 12px auto 18px;
    background-color: #c9a646;
}

.rb-serve__intro {
    margin: 0 auto;
    max-width: 740px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: #4b5563;
}

.rb-serve__intro--second {
    margin-top: 14px;
}

.rb-serve__groups-row {
    margin-top: 48px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.rb-serve__groups-label {
    flex-shrink: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a646;
}

.rb-serve__groups-line {
    flex-grow: 1;
    border-top: 1px solid #e2e8f0;
}

.rb-serve-grid {
    width: 100%;
}

.rb-serve-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

.rb-serve-row + .rb-serve-row {
    margin-top: 24px;
}

.rb-serve-row--3 .rb-serve__card,
.rb-serve-row--2 .rb-serve__card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
}

.rb-serve__card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(31, 58, 95, 0.06);
    padding: 32px 28px 28px;
    transition: all 0.28s ease;
}

.rb-serve-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.rb-serve-card__body .rb-serve__desc {
    flex: 1;
}

.rb-serve__card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent #1f3a5f transparent transparent;
    transition: border-color 0.25s ease;
}

.rb-serve__num {
    display: inline-block;
    margin-bottom: 12px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #c9a646;
}

.rb-serve__icon-box,
.rb-serve-icon-box {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 18px;
    background: transparent;
    transition: transform 0.3s ease;
}

.rb-serve__icon-box dotlottie-player,
.rb-serve-icon-box dotlottie-player {
    width: 80px;
    height: 80px;
}

.rb-serve__label {
    margin: 4px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    color: #1f3a5f;
}

.rb-serve__desc {
    margin: 8px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #6b7280;
}

.rb-serve__desc::before {
    content: "— ";
}

.rb-serve__bottom-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #c9a646;
    border-radius: 0 0 12px 12px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.rb-serve__card:hover {
    box-shadow: 0 8px 28px rgba(31, 58, 95, 0.13);
    border-color: #c9a646;
}

.rb-serve__card:hover::before {
    border-color: transparent #c9a646 transparent transparent;
}

.rb-serve__card:hover .rb-serve__icon-box,
.rb-serve__card:hover .rb-serve-icon-box {
    transform: translateY(-4px);
}

.rb-serve__card:hover .rb-serve__bottom-line {
    transform: scaleX(1);
}

.rb-serve__closer {
    margin-top: 48px;
    text-align: center;
}

.rb-serve__closer-rule {
    width: 80px;
    height: 2px;
    margin: 0 auto 20px;
    background: #c9a646;
}

.rb-serve__closer-icons {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.rb-serve__closer-icons i {
    font-size: 18px;
    color: rgba(31, 58, 95, 0.25);
}

@media (min-width: 768px) and (max-width: 1279px) {
    .rb-serve-row--3 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rb-serve-row--3 .rb-serve__card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
        padding: 24px 20px;
    }

    .rb-serve-row--2 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rb-serve-row--2 .rb-serve__card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
        padding: 24px 20px;
    }
}

@media (max-width: 767px) {
    .rb-serve__header {
        text-align: left;
    }

    .rb-serve__rule {
        margin-left: 0;
        margin-right: 0;
    }

    .rb-serve__intro {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
        text-align: left;
    }

    .rb-serve__title {
        font-size: 30px;
    }

    .rb-serve-row {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .rb-serve-row + .rb-serve-row {
        margin-top: 24px;
    }

    .rb-serve-row--3 .rb-serve__card,
    .rb-serve-row--2 .rb-serve__card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .rb-serve__icon-box,
    .rb-serve-icon-box {
        width: 88px;
        height: 88px;
    }

    .rb-serve__icon-box dotlottie-player,
    .rb-serve-icon-box dotlottie-player {
        width: 64px;
        height: 64px;
    }
}

/* -------------------------------------------------------------------------- */
/* Why ResearchBeacon (Section F)                                             */
/* -------------------------------------------------------------------------- */

.rb-why {
    padding: 90px 0;
    background: #ffffff;
}

.rb-why__header {
    text-align: left;
}

.rb-why__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 2.8vw, 38px);
    font-weight: 700;
    line-height: 1.25;
    color: #1f3a5f;
}

.rb-why__rule {
    width: 60px;
    height: 3px;
    margin: 12px 0 0;
    background: #c9a646;
}

.rb-why__statement {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 40px 48px;
    border-radius: 14px;
    background: #1f3a5f;
    position: relative;
    overflow: hidden;
}

.rb-why__quote-mark {
    position: absolute;
    top: -20px;
    left: 24px;
    z-index: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 220px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    user-select: none;
}

.rb-why__left-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 14px 0 0 14px;
    background: #c9a646;
}

.rb-why__statement-text {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 860px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.75;
    color: #ffffff;
}

.rb-why__bridge {
    margin: 0 0 48px;
    max-width: 760px;
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
}

.rb-why__bridge i {
    margin-top: 6px;
    font-size: 14px;
    color: #c9a646;
    flex-shrink: 0;
}

.rb-why-grid {
    width: 100%;
}

.rb-why-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

.rb-why-row + .rb-why-row {
    margin-top: 24px;
}

.rb-why-row--3 .rb-why__card,
.rb-why-row--2 .rb-why__card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
}

.rb-why__card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 3px solid transparent;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(31, 58, 95, 0.05);
    transition: all 0.28s ease;
}

.rb-why__card::after {
    content: "";
    width: 80px;
    height: 80px;
    border: 20px solid rgba(31, 58, 95, 0.03);
    border-radius: 50%;
    position: absolute;
    bottom: -20px;
    right: -20px;
    pointer-events: none;
    transition: border-color 0.28s ease;
}

.rb-why__num {
    display: inline-block;
    margin-bottom: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(201, 166, 70, 0.6);
    transition: color 0.28s ease;
}

.rb-why-icon-box {
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.rb-why-icon-box dotlottie-player {
    width: 80px;
    height: 80px;
}

.rb-why__card:hover .rb-why-icon-box {
    transform: translateY(-4px);
}

.rb-why__card-title {
    margin: 0 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #1f3a5f;
}

.rb-why__card-desc {
    margin: 0;
    flex: 1;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.72;
    color: #4b5563;
}

.rb-why__card:hover {
    box-shadow: 0 10px 32px rgba(31, 58, 95, 0.12);
    border-color: #c9a646;
    border-left-color: #c9a646;
}

.rb-why__card:hover .rb-why__num {
    color: #c9a646;
}

.rb-why__card:hover::after {
    border-color: rgba(201, 166, 70, 0.07);
}

.rb-why__closer {
    margin-top: 56px;
    padding: 24px 32px;
    border-radius: 10px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    gap: 16px;
}

.rb-why__closer i {
    font-size: 20px;
    color: #c9a646;
    flex-shrink: 0;
}

.rb-why__closer-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.rb-why__closer-text {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.72;
    font-style: italic;
    color: #6b7280;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .rb-why__statement {
        padding: 28px 32px;
    }

    .rb-why__statement-text {
        font-size: 19px;
    }

    .rb-why-row--3 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rb-why-row--3 .rb-why__card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .rb-why-row--2 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rb-why-row--2 .rb-why__card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .rb-why__statement {
        padding: 24px 20px;
    }

    .rb-why__quote-mark {
        display: none;
    }

    .rb-why__statement-text {
        font-size: 17px;
    }

    .rb-why__bridge {
        font-size: 15px;
    }

    .rb-why-row {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .rb-why-row + .rb-why-row {
        margin-top: 24px;
    }

    .rb-why-row--3 .rb-why__card,
    .rb-why-row--2 .rb-why__card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .rb-why__closer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .rb-why__closer-divider {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/* Intellectual Foundations (Section G)                                       */
/* -------------------------------------------------------------------------- */

.rb-intel {
    padding: 90px 0;
    background: #f5f7fa;
}

.rb-intel__header {
    text-align: left;
    margin-bottom: 40px;
}

.rb-intel__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.9rem, 2.6vw, 36px);
    line-height: 1.3;
    font-weight: 700;
    color: #1f3a5f;
}

.rb-intel__rule {
    width: 60px;
    height: 3px;
    margin: 12px 0 16px;
    background: #c9a646;
}

.rb-intel__intro {
    margin: 0;
    max-width: 740px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.rb-intel__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    align-items: stretch;
}

.rb-intel__grid .rb-profile-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    box-sizing: border-box;
}

.rb-intel__card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(31, 58, 95, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.28s ease;
}

.rb-intel__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c9a646;
    transition: background-color 0.25s ease;
}

.rb-intel__card::after {
    content: "";
    position: absolute;
    width: 84px;
    height: 84px;
    right: -22px;
    bottom: -22px;
    border: 20px solid rgba(31, 58, 95, 0.04);
    border-radius: 50%;
    pointer-events: none;
    transition: border-color 0.25s ease;
}

.rb-intel__avatar {
    width: 98px;
    height: 112px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: #e2e8f0;
    border: 2px solid #c9a646;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.rb-intel__avatar-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
}

.rb-intel__name {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1f3a5f;
}

.rb-intel__title-line {
    margin: 6px 0 12px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #c9a646;
}

.rb-intel__divider {
    width: 40px;
    height: 2px;
    margin: 12px auto;
    background: #e2e8f0;
}

.rb-intel__desc {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
}

.rb-intel__link {
    display: inline-block;
    margin-top: 14px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1f3a5f;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.rb-intel__card:hover {
    border-color: #c9a646;
    box-shadow: 0 12px 30px rgba(31, 58, 95, 0.1);
    transform: translateY(-4px);
}

.rb-intel__card:hover::before {
    background: #c9a646;
}

.rb-intel__card:hover::after {
    border-color: rgba(201, 166, 70, 0.05);
}

.rb-intel__link:hover {
    color: #c9a646;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .rb-intel__grid .rb-profile-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .rb-intel__card {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .rb-intel__grid .rb-profile-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .rb-intel__card {
        padding: 22px;
    }

    .rb-intel__title {
        font-size: 30px;
    }

    .rb-intel__name {
        font-size: 17px;
    }

    .rb-intel__desc {
        font-size: 13px;
    }
}

/* -------------------------------------------------------------------------- */
/* Testimonials (Section H)                                                   */
/* -------------------------------------------------------------------------- */

.rb-testimonial {
    background: #ffffff;
    padding: 100px 0;
}

.rb-testimonial__container {
    max-width: 1100px;
}

.rb-testimonial__header {
    text-align: left;
}

.rb-testimonial__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.9rem, 2.6vw, 36px);
    font-weight: 700;
    line-height: 1.3;
    color: #1f3a5f;
}

.rb-testimonial__rule {
    width: 60px;
    height: 3px;
    margin: 12px 0 16px;
    background: #c9a646;
}

.rb-testimonial__intro {
    margin: 0;
    max-width: 760px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.rb-testimonial__carousel-wrap {
    margin-top: 36px;
}

.rb-testimonial__carousel {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    column-gap: 8px;
}

.rb-testimonial__viewport {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.rb-testimonial__slide {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.68);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
}

.rb-testimonial__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
    z-index: 3;
    pointer-events: auto;
}

.rb-testimonial__slide.is-prev {
    opacity: 0.5;
    visibility: visible;
    transform: translate(-120%, -50%) scale(0.75);
    z-index: 1;
}

.rb-testimonial__slide.is-next {
    opacity: 0.5;
    visibility: visible;
    transform: translate(20%, -50%) scale(0.75);
    z-index: 1;
}

.rb-testimonial__slide.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.68);
    filter: blur(1px);
    z-index: 0;
}

.rb-testimonial__card {
    width: 100%;
    margin: 0;
    background: linear-gradient(to bottom right, #f5f7fa, #eef2f7);
    border: 1px solid rgba(31, 58, 95, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 12px 36px rgba(31, 58, 95, 0.1);
}

.rb-testimonial__card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #c9a646;
    border-radius: 4px 0 0 4px;
}

.rb-testimonial__quote-mark {
    position: absolute;
    top: 10px;
    left: 16px;
    z-index: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 160px;
    line-height: 1;
    color: rgba(201, 166, 70, 0.08);
    transition: opacity 0.5s ease;
}

.rb-testimonial__quote {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    line-height: 1.8;
    font-style: italic;
    color: #1f3a5f;
}

.rb-testimonial__author {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    color: #1f3a5f;
}

.rb-testimonial__designation {
    margin: 4px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.rb-testimonial__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f3a5f;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    z-index: 2;
}

.rb-testimonial__arrow:hover {
    background: #1f3a5f;
    color: #ffffff;
}

.rb-testimonial__arrow:active {
    transform: scale(0.95);
}

.rb-testimonial__arrow svg {
    width: 18px;
    height: 18px;
}

.rb-testimonial__arrow--prev {
    justify-self: end;
}

.rb-testimonial__arrow--next {
    justify-self: start;
}

.rb-testimonial__arrow--prev,
.rb-testimonial__arrow--next {
    position: relative;
    margin-top: -8px;
}

.rb-testimonial__dots {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rb-testimonial__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #d1d5db;
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease, border-radius 0.25s ease;
}

.rb-testimonial__dot.is-active {
    background: #c9a646;
    width: 18px;
    border-radius: 999px;
}

.rb-testimonial__final {
    margin: 28px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .rb-testimonial__viewport {
        min-height: 500px;
    }

    .rb-testimonial__slide {
        width: 68%;
    }

    .rb-testimonial__slide.is-prev {
        transform: translate(-108%, -50%) scale(0.82);
    }

    .rb-testimonial__slide.is-next {
        transform: translate(8%, -50%) scale(0.82);
    }

    .rb-testimonial__card {
        padding: 32px 36px;
    }

    .rb-testimonial__quote {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .rb-testimonial__carousel {
        grid-template-columns: 48px 48px;
        row-gap: 14px;
        justify-content: center;
    }

    .rb-testimonial__viewport {
        min-height: 470px;
        grid-column: 1 / -1;
        order: 1;
    }

    .rb-testimonial__slide,
    .rb-testimonial__slide.is-active {
        width: 100%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        visibility: hidden;
        filter: blur(0);
    }

    .rb-testimonial__slide.is-active {
        opacity: 1;
        visibility: visible;
        z-index: 3;
    }

    .rb-testimonial__slide.is-prev,
    .rb-testimonial__slide.is-next {
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }

    .rb-testimonial__arrow {
        order: 2;
    }

    .rb-testimonial__arrow--prev {
        justify-self: end;
    }

    .rb-testimonial__arrow--next {
        justify-self: start;
    }

    .rb-testimonial__card {
        padding: 28px 20px;
    }

    .rb-testimonial__quote {
        font-size: 17px;
        text-align: center;
    }

    .rb-testimonial__author,
    .rb-testimonial__designation,
    .rb-testimonial__final {
        text-align: center;
    }
}

/* -------------------------------------------------------------------------- */
/* Our Philosophy (Section I)                                                 */
/* -------------------------------------------------------------------------- */

.rb-philosophy {
    padding: 110px 0;
    background: #ffffff;
}

.rb-philosophy__container {
    max-width: 900px;
}

.rb-philosophy__header {
    text-align: center;
}

.rb-philosophy__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 2.8vw, 38px);
    line-height: 1.25;
    font-weight: 700;
    color: #1f3a5f;
}

.rb-philosophy__rule {
    width: 70px;
    height: 3px;
    margin: 16px auto 32px;
    background: #c9a646;
}

.rb-philosophy__content {
    position: relative;
    padding: 48px 56px;
    background: #f5f7fa;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(31, 58, 95, 0.1);
    transition: box-shadow 0.25s ease;
}

.rb-philosophy__content:hover {
    box-shadow: 0 4px 16px rgba(31, 58, 95, 0.12);
}

.rb-philosophy__accent {
    position: absolute;
    left: 0;
    top: 20%;
    width: 4px;
    height: 60%;
    background: #c9a646;
    border-radius: 2px;
}

.rb-philosophy__quote {
    position: absolute;
    top: 6px;
    left: 20px;
    z-index: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 140px;
    line-height: 1;
    color: rgba(31, 58, 95, 0.04);
    pointer-events: none;
    user-select: none;
}

.rb-philosophy__text-wrap {
    position: relative;
    z-index: 1;
}

.rb-philosophy__text {
    margin: 0 auto 20px;
    max-width: 720px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #4b5563;
    text-align: center;
}

.rb-philosophy__text:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .rb-philosophy__content {
        padding: 36px 40px;
    }

    .rb-philosophy__text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .rb-philosophy__content {
        padding: 28px 20px;
    }

    .rb-philosophy__title {
        font-size: 30px;
    }

    .rb-philosophy__text {
        text-align: left;
    }

    .rb-philosophy__quote {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/* Get in Touch (Section J)                                                   */
/* -------------------------------------------------------------------------- */

.rb-contact {
    padding: 110px 0;
    color: #ffffff;
    background: #1f3a5f;
    position: relative;
    overflow: hidden;
}

.rb-contact__container {
    max-width: 1100px;
    position: relative;
}

.rb-contact__bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 30px solid rgba(255, 255, 255, 0.03);
}

.rb-contact__bg-circle--lg {
    width: 400px;
    height: 400px;
    right: -140px;
    bottom: -180px;
}

.rb-contact__bg-circle--sm {
    width: 220px;
    height: 220px;
    left: -90px;
    top: -100px;
}

.rb-contact__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: 56px;
    align-items: start;
}

.rb-contact__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 3vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.rb-contact__rule {
    width: 60px;
    height: 3px;
    margin: 16px 0 28px;
    background: #c9a646;
}

.rb-contact__cta {
    margin: 0 0 28px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.rb-contact__reassurance {
    margin: 0 0 32px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
}

.rb-contact__tagline {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: #c9a646;
}

.rb-contact__card {
    background: #ffffff;
    color: #1f3a5f;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.25s ease;
}

.rb-contact__card:hover {
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.rb-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.rb-contact__item--last {
    margin-bottom: 0;
}

.rb-contact__item i {
    margin-top: 2px;
    font-size: 18px;
    color: #c9a646;
    flex-shrink: 0;
}

.rb-contact__item-text {
    min-width: 0;
}

.rb-contact__label {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: #1f3a5f;
}

.rb-contact__value {
    margin: 2px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .rb-contact {
        padding: 90px 0;
    }

    .rb-contact__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 767px) {
    .rb-contact {
        padding: 80px 0;
    }

    .rb-contact__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rb-contact__left {
        text-align: center;
    }

    .rb-contact__rule {
        margin-left: auto;
        margin-right: auto;
    }

    .rb-contact__title {
        font-size: 32px;
    }

    .rb-contact__card {
        width: 100%;
        padding: 28px 20px;
    }
}

/* -------------------------------------------------------------------------- */
/* Profile Modal (Intellectual Foundations)                                   */
/* -------------------------------------------------------------------------- */

.rb-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.rb-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.rb-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 58, 95, 0.85); /* Deep Blue Overlay */
    backdrop-filter: blur(4px);
}

.rb-modal__container {
    position: relative;
    z-index: 1;
    width: min(800px, 94%);
    max-height: 85vh;
    background-color: var(--rb-white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.rb-modal.is-active .rb-modal__container {
    transform: translateY(0);
}

.rb-modal__header {
    padding: 32px 40px 24px;
    background-color: var(--rb-white);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.rb-modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--rb-primary);
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.rb-modal__close:hover {
    color: var(--rb-accent);
    background-color: var(--rb-secondary);
}

.rb-modal__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    color: var(--rb-primary);
    line-height: 1.3;
}

.rb-modal__subtitle {
    margin: 8px 0 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--rb-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rb-modal__content {
    padding: 40px;
    overflow-y: auto;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a2e;
}

.rb-modal__content p {
    margin-bottom: 24px;
}

.rb-modal__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .rb-modal__header {
        padding: 24px 24px 16px;
    }
    
    .rb-modal__content {
        padding: 24px;
    }
    
    .rb-modal__title {
        font-size: 22px;
        padding-right: 32px;
    }
}

/* -------------------------------------------------------------------------- */
/* Correction 3 — Page segmentation, banners & CTAs                           */
/* -------------------------------------------------------------------------- */

.rb-page-banner {
    background: #1f3a5f;
    padding: 56px 0;
    text-align: center;
}

.rb-page-banner__title {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

.rb-page-banner__rule {
    width: 60px;
    height: 3px;
    margin: 12px auto 14px;
    background: #c9a646;
}

.rb-page-banner__breadcrumb {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.rb-page-banner__home-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.rb-page-banner__home-link:hover {
    color: #c9a646;
}

.rb-footer {
    background: #1a1a2e;
    padding: 48px 0 28px;
    margin-top: 0;
}

.rb-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.rb-footer__name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.rb-footer__tagline {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.rb-footer__copyright {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    text-align: center;
}

.rb-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    min-width: 48px;
    min-height: 48px;
    padding: 10px 12px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    background: #1f3a5f;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(31, 58, 95, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.rb-back-to-top:hover,
.rb-back-to-top:focus-visible {
    background: #c9a646;
    border-color: #ffffff;
}

.rb-back-to-top__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
}

.rb-overview--surface-white {
    background-color: #ffffff;
}

.rb-pathways--muted-surface {
    background-color: #f5f7fa !important;
}

.rb-pathway-cta {
    display: block;
    width: 100%;
    margin-top: 28px;
    min-height: 48px;
    padding: 12px 28px;
    text-align: center;
    border-radius: 6px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.35;
    box-sizing: border-box;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.rb-pathway-cta:focus-visible {
    outline: 2px solid var(--rb-accent);
    outline-offset: 3px;
}

.rb-pathway-cta .fa-arrow-right {
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
}

.rb-pathway-cta--primary {
    background-color: #1f3a5f;
    color: #ffffff;
}

.rb-pathway-cta--primary:hover,
.rb-pathway-cta--primary:focus-visible:hover {
    background-color: #c9a646;
}

.rb-pathway-cta--outline {
    padding: 11px 26px;
    border: 2px solid #c9a646;
    color: #c9a646;
    background: transparent;
}

.rb-pathway-cta--outline:hover,
.rb-pathway-cta--outline:focus-visible:hover {
    background-color: #c9a646;
    color: #ffffff;
}

.rb-intel-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.rb-intel-filter__tab {
    border: none;
    cursor: pointer;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    padding: 6px 16px;
    color: #6b7280;
    background: transparent;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.rb-intel-filter__tab:hover {
    color: #1f3a5f;
}

.rb-intel-filter__tab.is-active {
    background: #1f3a5f;
    color: #ffffff;
}

.rb-intel-filter__tab:focus-visible {
    outline: 2px solid var(--rb-accent);
    outline-offset: 3px;
    border-radius: 20px;
}

.rb-profile-card {
    opacity: 1;
    transform: translateY(0);
}

.rb-contact__consult-cta-row {
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: center;
}

.rb-contact__consult-lead {
    margin: 0 0 16px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

.rb-consultation-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 16px 40px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background: #c9a646;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(31, 58, 95, 0.1);
    transition: all 0.25s ease;
}

.rb-consultation-cta .fa-calendar-check {
    font-size: 18px;
}

.rb-consultation-cta:hover,
.rb-consultation-cta:focus-visible {
    background: #ffffff;
    color: #1f3a5f;
    box-shadow: 0 4px 16px rgba(31, 58, 95, 0.1);
}

.rb-consultation-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.rb-contact__consult-divider {
    width: 60px;
    height: 2px;
    margin: 28px auto;
    background: #c9a646;
}

@media (max-width: 767px) {
    .rb-intel-filter {
        gap: 8px;
    }

    .rb-pathway-cta {
        padding: 12px 24px;
    }
}

/* -------------------------------------------------------------------------- */
/* Correction 4 — formal typography defaults                                  */
/* -------------------------------------------------------------------------- */

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
}

body,
p,
button,
input,
textarea,
select,
label,
.rb-nav-link,
.rb-dropdown__item {
    font-family: "Open Sans", Arial, sans-serif;
}
