*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1D283A;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.richmond-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ===== Header ===== */
.richmond-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #E7E8E8;
    height: 74px;
}
.richmond-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.richmond-header__logo img {
    display: block;
    width: 160px;
    height: 40px;
}
.richmond-header__menu {
    display: flex;
    align-items: center;
    gap: 27px;
}
.richmond-header__nav {
    display: flex;
    gap: 27px;
    align-items: center;
}
.richmond-header__nav a {
    font-size: 18px;
    font-weight: 400;
    color: #1D283A;
    transition: opacity 0.2s;
}
.richmond-header__nav a:hover {
    opacity: 0.7;
}
.richmond-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1D283A;
    color: #EEF5F3;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    min-width: 207px;
    height: 44px;
    transition: background 0.2s;
}
.richmond-header__cta:hover {
    background: #263a4d;
    color: #EEF5F3;
}
.richmond-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.richmond-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1D283A;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}
.richmond-header__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.richmond-header__burger.is-open span:nth-child(2) {
    opacity: 0;
}
.richmond-header__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Pill Badge (reusable section label) ===== */
.richmond-pill {
    display: inline-block;
    background: #EEF5F3;
    border: 1px solid rgba(47, 169, 140, 0.22);
    border-radius: 39px;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1D283A;
    line-height: 1.56;
    margin-bottom: 16px;
    width: fit-content;
}

/* ===== Hero ===== */
.richmond-hero {
    padding: 20px 0 0;
}
.richmond-hero__row {
    display: flex;
    gap: 20px;
    align-items: stretch;
    height: 631px;
    padding: 0 20px;
}
.richmond-hero__text {
    flex: 0 0 54%;
    background: #EEF5F3;
    border-radius: 38px;
    padding: 0 23px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.richmond-hero__text-inner {
    max-width: 600px;
    width: 100%;
}
.richmond-hero__heading {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 600;
    color: #1D283A;
    text-transform: uppercase;
    margin: 0 0 22px;
}
.richmond-hero__heading em {
    font-style: italic;
    font-weight: 400;
}
.richmond-hero__desc {
    font-size: 18px;
    line-height: 1.39;
    font-weight: 400;
    color: #1D283A;
    margin: 0 0 22px;
}
a.richmond-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1D283A;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    min-width: 207px;
    height: 44px;
    transition: background 0.2s;
}
a.richmond-hero__btn:hover {
    background: #263a4d;
    color: #fff;
}
.richmond-hero__image {
    flex: 1 1 auto;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}
.richmond-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 38px;
}

/* ===== Trust Badges Bar ===== */
.richmond-badges-bar {
    background: #1D283A;
    padding: 16px 0;
    margin-top: 20px;
    overflow: hidden;
}
.richmond-badges-bar__track {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.richmond-badges-bar__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 23px;
}
.richmond-badges-bar__row--clone {
    display: none;
}
.richmond-badges-bar__item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}
.richmond-badges-bar__item svg {
    flex-shrink: 0;
    color: #fff;
    width: 19px;
    height: 19px;
}

/* ===== Who We Are ===== */
.richmond-whoweare {
    min-height: 480px;
    margin-top: 60px;
    overflow-x: clip;
}
.richmond-whoweare__inner {
    position: relative;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    min-height: 480px;
}
.richmond-whoweare__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(47, 169, 140, 0.3);
    filter: blur(120px);
    pointer-events: none;
}
.richmond-whoweare__glow--left {
    left: 10%;
    top: 10%;
}
.richmond-whoweare__glow--right {
    right: -5%;
    top: 30%;
    width: 300px;
    height: 300px;
    background: rgba(47, 169, 140, 0.6);
    filter: blur(120px);
}
.richmond-whoweare__text {
    position: relative;
    z-index: 2;
    margin-left: 57%;
    padding: 20px 0 40px 0;
}
.richmond-whoweare__heading {
    font-size: 46px;
    line-height: 1.08;
    font-weight: 600;
    text-transform: uppercase;
    color: #1D283A;
    margin: 0 0 22px;
    max-width: 578px;
}
.richmond-whoweare__heading em {
    font-style: italic;
    font-weight: 400;
}
.richmond-whoweare__desc {
    font-size: 16px;
    line-height: 1.56;
    font-weight: 400;
    color: #1D283A;
    margin: 0;
    max-width: 516px;
}
.richmond-whoweare__image {
    position: absolute;
    left: -50px;
    top: 5%;
    width: 55%;
    max-width: 737px;
    z-index: 1;
}
.richmond-whoweare__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Specialties ===== */
.richmond-specialties {
    max-width: 1128px;
    margin: 0 auto;
    padding: 60px 0;
}
.richmond-specialties__header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.richmond-specialties__heading {
    font-size: 46px;
    line-height: 1.11;
    font-weight: 600;
    text-transform: uppercase;
    color: #1D283A;
    margin: 0;
}
.richmond-specialties__heading em {
    font-style: italic;
    font-weight: 400;
}
.richmond-specialties__sub {
    font-size: 16px;
    line-height: 1.56;
    font-weight: 400;
    color: #1D283A;
    max-width: 712px;
    margin: 0;
}
.richmond-specialties__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.richmond-specialties__row {
    display: flex;
    gap: 24px;
}
.richmond-specialties__row--center {
    justify-content: center;
}
.richmond-card {
    width: 360px;
    background: #EEF5F3;
    border-radius: 24px;
    padding: 20px;
}
.richmond-card__icon {
    width: 60px;
    height: 60px;
    background: #EEF5F3;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.richmond-card__icon img {
    width: 40px;
    height: 40px;
}
.richmond-card__title {
    font-size: 24px;
    font-weight: 600;
    color: #1D283A;
    line-height: 1.04;
    margin: 0 0 15px;
}
.richmond-card__desc {
    font-size: 14px;
    font-weight: 400;
    color: #1D283A;
    line-height: 1.29;
    margin: 0;
}

/* ===== Services ===== */
.richmond-services {
    max-width: 1128px;
    margin: 0 auto;
    padding: 60px 0;
}
.richmond-services__top {
    display: flex;
    align-items: flex-start;
    gap: 73px;
    margin-bottom: 39px;
    min-height: 390px;
}
.richmond-services__top-text {
    flex: 0 0 540px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 33px;
}
.richmond-services__heading {
    font-size: 46px;
    line-height: 1.11;
    font-weight: 600;
    text-transform: uppercase;
    color: #1D283A;
    margin: 0;
}
.richmond-services__heading em {
    font-style: italic;
    font-weight: 400;
}
.richmond-services__desc {
    font-size: 16px;
    line-height: 1.56;
    font-weight: 400;
    color: #1D283A;
    margin: 0;
}
.richmond-services__top-image {
    flex: 0 0 532px;
    height: 390px;
    border-radius: 24px;
    overflow: hidden;
}
.richmond-services__top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.richmond-services__grid {
    display: flex;
    gap: 103px;
}
.richmond-services__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.richmond-svc-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
}
.richmond-svc-item__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF5F3;
    border-radius: 30px;
}
.richmond-svc-item__icon img {
    width: 40px;
    height: 40px;
}
.richmond-svc-item__text h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #1D283A;
    line-height: 1.14;
}
.richmond-svc-item__text p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #1D283A;
    line-height: 1.19;
}

/* ===== Testimonials ===== */
.richmond-testimonials {
    max-width: 1128px;
    margin: 0 auto;
    padding: 60px 0;
}
.richmond-testimonials__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}
.richmond-testimonials__heading {
    font-size: 46px;
    line-height: 1.11;
    font-weight: 600;
    text-transform: uppercase;
    color: #1D283A;
    margin: 0;
    max-width: 692px;
}
.richmond-testimonials__heading em {
    font-style: italic;
    font-weight: 400;
}
.richmond-testimonials__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.richmond-testimonials__stat {
    font-size: 16px;
    font-weight: 600;
    color: #1D283A;
    display: flex;
    align-items: center;
    gap: 3px;
}
.richmond-testimonials__stat img {
    width: 24px;
    height: 24px;
}
.richmond-testimonials__desc {
    font-size: 16px;
    line-height: 1.56;
    font-weight: 400;
    color: #1D283A;
    max-width: 692px;
    margin: 0;
}
.richmond-reviews {
    display: flex;
    gap: 24px;
}
.richmond-review-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(238, 247, 245, 1) 0%, rgba(240, 253, 247, 1) 100%);
    border-radius: 14px;
    padding: 36px;
    position: relative;
    min-height: 266px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.richmond-review-card__body {
    flex: 1;
}
.richmond-review-card__text {
    font-size: 18px;
    line-height: 1.28;
    font-weight: 400;
    color: #1D283A;
    margin: 0;
    text-align: left;
    padding-right: 50px;
}
.richmond-review-card__quote {
    position: absolute;
    right: 22px;
    bottom: 17px;
    font-size: 112px;
    line-height: 1;
    color: #1D283A;
    font-family: 'Proxima Nova', sans-serif;
    transform: scaleX(-1);
}
.richmond-review-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}
.richmond-review-card__verified {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
}
.richmond-review-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #1D283A;
    line-height: 1.44;
}

/* ===== About ===== */
.richmond-about-section {
    padding: 60px 0;
}
.richmond-about {
    background: #EEF5F3;
    border-radius: 38px;
    padding: 46px 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 46px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}
.richmond-about__image {
    flex: 0 0 500px;
    height: 539px;
    border-radius: 44px;
    overflow: hidden;
}
.richmond-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.richmond-about__text {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.richmond-about__heading {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 600;
    text-transform: uppercase;
    color: #1D283A;
    margin: 0;
    text-align: left;
}
.richmond-about__heading em {
    font-style: italic;
    font-weight: 400;
}
.richmond-about__desc {
    font-size: 18px;
    line-height: 1.39;
    font-weight: 400;
    color: #1D283A;
    margin: 0;
    text-align: left;
}
.richmond-about__action {
    margin-top: 0;
}

/* ===== Certifications ===== */
.richmond-certs-section {
    padding: 60px 0;
}
.richmond-certs-heading {
    font-size: 46px;
    line-height: 1.11;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #1D283A;
    margin: 0 auto 58px;
    max-width: 750px;
}
.richmond-certs-heading em {
    font-style: italic;
    font-weight: 400;
}
.richmond-certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.richmond-certifications img {
    height: 138px;
    width: 306px;
    object-fit: contain;
}
.richmond-certifications img:first-child {
    width: 350px;
    height: 225px;
}

/* ===== CTA ===== */
.richmond-cta-section {
    position: relative;
    background-size: cover;
    background-position: center 75%;
    padding: 117px 40px;
    text-align: center;
    border-radius: 57px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    overflow: hidden;
}
.richmond-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 57px;
}
.richmond-cta-section > * {
    position: relative;
    z-index: 1;
}
.richmond-cta__heading {
    color: #EEF5F3;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 auto 20px;
}
.richmond-cta__heading em {
    font-style: italic;
    font-weight: 400;
    color: #1D283A;
}
.richmond-cta__desc {
    color: #EEF5F3;
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.39;
    font-weight: 400;
}
a.richmond-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1D283A;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    min-width: 207px;
    height: 44px;
}
a.richmond-cta__btn:hover {
    background: #263a4d;
    color: #EEF5F3;
}

/* ===== FAQ ===== */
.richmond-faq {
    padding: 80px 0 100px;
}
.richmond-faq__top {
    max-width: 778px;
    margin: 0 auto 40px;
    text-align: center;
}
.richmond-faq__heading {
    font-size: 46px;
    line-height: 1.11;
    font-weight: 600;
    text-transform: uppercase;
    color: #1D283A;
    margin: 0;
}
.richmond-faq__heading em {
    font-style: italic;
    font-weight: 400;
}
.richmond-faq__box {
    max-width: 778px;
    margin: 0 auto;
}
.richmond-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.richmond-faq__item {
    background: #e6efec;
    border-radius: 12px;
}
.richmond-faq__title {
    font-size: 18px;
    font-weight: 600;
    color: #1D283A;
    padding: 20px 56px 20px 24px;
    display: block;
    position: relative;
    margin: 0;
    cursor: pointer;
}
.richmond-faq__title u {
    font-size: 28px;
    font-weight: 300;
    color: #1D283A;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}
.richmond-faq__title u::before {
    content: '+';
    font-size: 28px;
    font-weight: 300;
}
.richmond-faq__title.active u::before {
    content: '\00d7';
}
.richmond-faq__answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 16px;
    line-height: 1.56;
    color: #1D283A;
}
.richmond-faq__title.active + .richmond-faq__answer {
    display: block;
}

/* ===== Partner Form ===== */
.richmond-form-section {
    padding: 60px 40px 80px;
}
.richmond-form-section__inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    min-height: 840px;
    position: relative;
}
.richmond-form-section__left {
    flex: 0 0 49%;
    background-size: cover;
    background-position: center;
    border-radius: 57px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.richmond-form-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.25);
    backdrop-filter: blur(5px);
    border-radius: 57px;
}
.richmond-form-section__left-text {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 460px;
    padding: 40px;
}
.richmond-form-section__heading {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    color: #EEF5F3;
    margin: 0 0 16px;
}
.richmond-form-section__sub {
    font-size: 18px;
    line-height: 1.39;
    font-weight: 600;
    color: #EEF5F3;
}
.richmond-form-section__right {
    flex: 1;
    background: #fff;
    border-radius: 46px;
    box-shadow: 0 0 53px 7px rgba(155, 152, 187, 0.18);
    padding: 38px;
    margin-left: 16px;
    display: flex;
    align-items: center;
}
.richmond-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 46px;
}
.richmond-form__group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.richmond-form__section-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1D283A;
    line-height: 1.2;
}
.richmond-form__row {
    display: flex;
    gap: 24px;
}
.richmond-form__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.richmond-form__field--full {
    width: 100%;
}
.richmond-form__field label {
    font-size: 16px;
    font-weight: 400;
    color: #001C46;
    opacity: 0.8;
}
.richmond-form__field input[type="text"],
.richmond-form__field input[type="email"],
.richmond-form__field input[type="tel"],
.richmond-form__select-wrap select {
    width: 100%;
    background: #EEF5F3;
    border: 1px solid rgba(64, 65, 65, 0.19);
    border-radius: 9px;
    padding: 12px 16px;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    color: #001C46;
    outline: none;
    transition: border-color 0.2s;
}
.richmond-form__field input:focus,
.richmond-form__select-wrap select:focus {
    border-color: #5BC2B1;
}
.richmond-form__select-wrap {
    position: relative;
}
.richmond-form__select-wrap select {
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}
.richmond-form__select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #001C46;
    pointer-events: none;
}
.richmond-form__options {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
.richmond-form__radio,
.richmond-form__checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #001C46;
    opacity: 0.8;
    cursor: pointer;
    user-select: none;
}
.richmond-form__radio input,
.richmond-form__checkbox input {
    display: none;
}
.richmond-form__radio-mark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #5BC2B1;
    flex-shrink: 0;
    position: relative;
}
.richmond-form__radio input:checked + .richmond-form__radio-mark::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #5BC2B1;
}
.richmond-form__check-mark {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #5BC2B1;
    flex-shrink: 0;
    position: relative;
}
.richmond-form__checkbox input:checked + .richmond-form__check-mark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 9px;
    border: solid #5BC2B1;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.richmond-form__submit {
    width: 100%;
    background: #002746;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.richmond-form__submit:hover {
    background: #003d6b;
}
.richmond-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.richmond-form__status {
    text-align: center;
    font-size: 14px;
    min-height: 20px;
}
.richmond-form__status--success {
    color: #2FA98C;
}
.richmond-form__status--error {
    color: #e44;
}

/* ===== Footer ===== */
.richmond-footer {
    background: #1D283A;
    border-top: 1px solid #C1E4DA;
    padding: 80px 0;
}
.richmond-footer__inner {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 40px;
}
.richmond-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 66px;
}
.richmond-footer__brand {
    width: 311px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.richmond-footer__brand img {
    display: block;
    width: 160px;
    height: 40px;
}
.richmond-footer__tagline {
    font-size: 20px;
    line-height: 1.35;
    color: #EEF5F3;
}
.richmond-footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.richmond-footer__social a {
    display: flex;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.richmond-footer__social a:hover {
    opacity: 1;
}
.richmond-footer__social img {
    width: 21px;
    height: 21px;
}
.richmond-footer__links h4,
.richmond-footer__contact h4 {
    font-size: 20px;
    font-weight: 700;
    color: #EEF5F3;
    line-height: 1.1;
    margin-bottom: 20px;
}
.richmond-footer__links-cols {
    display: flex;
    gap: 40px;
}
.richmond-footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.richmond-footer__links a {
    font-size: 18px;
    color: #EEF5F3;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.richmond-footer__links a:hover {
    opacity: 1;
}
.richmond-footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.richmond-footer__contact li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    color: #EEF5F3;
    opacity: 0.7;
}
.richmond-footer__contact img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}
.richmond-footer__contact a {
    transition: opacity 0.2s;
}
.richmond-footer__contact a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
.richmond-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(193, 228, 218, 0.2);
}
.richmond-footer__copy {
    font-size: 15px;
    color: #EEF5F3;
    opacity: 0.5;
}
.richmond-footer__legal {
    display: flex;
    gap: 40px;
}
.richmond-footer__legal a {
    font-size: 15px;
    color: #EEF5F3;
    transition: opacity 0.2s;
}
.richmond-footer__legal a:hover {
    opacity: 0.7;
}

/* ===== Marquee animation ===== */
@keyframes richmond-marquee {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .richmond-services {
        padding: 60px 20px;
    }
    .richmond-services__top {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .richmond-services__top-text {
        flex: none;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .richmond-services__top-image {
        flex: none;
        width: 100%;
        height: 390px;
    }
    .richmond-services__grid {
        gap: 40px;
    }
    .richmond-about {
        padding: 46px 40px;
        gap: 30px;
    }
    .richmond-about__image {
        flex: 0 0 45%;
        height: 450px;
    }
    .richmond-cta-section {
        max-width: calc(100% - 40px);
        padding: 80px 30px;
    }
}
@media (max-width: 991px) {
    .richmond-header__menu {
        display: none;
    }
    .richmond-header__menu.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid #E7E8E8;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        z-index: 99;
    }
    .richmond-header__menu.is-open .richmond-header__nav {
        flex-direction: column;
        gap: 16px;
    }
    .richmond-header__menu.is-open .richmond-header__cta {
        width: 100%;
        text-align: center;
    }
    .richmond-header__burger {
        display: flex;
    }
    .richmond-header__inner {
        padding: 0 20px;
    }
    .richmond-container {
        padding: 0 20px;
    }
    .richmond-hero__row {
        flex-direction: column;
        height: auto;
    }
    .richmond-hero__text {
        padding: 60px 28px;
        flex: none;
    }
    .richmond-hero__heading {
        font-size: 36px;
    }
    .richmond-hero__image {
        min-height: 300px;
    }
    .richmond-whoweare {
        min-height: auto;
    }
    .richmond-whoweare__inner {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
    }
    .richmond-whoweare__text {
        flex: none;
        max-width: 100%;
    }
    .richmond-whoweare__heading {
        font-size: 36px;
    }
    .richmond-whoweare__image {
        position: relative;
        left: 0;
        width: 80%;
        max-width: 400px;
        margin: 20px auto 0;
    }
    .richmond-specialties {
        padding: 60px 20px;
    }
    .richmond-specialties__heading {
        font-size: 36px;
    }
    .richmond-specialties__row {
        flex-wrap: wrap;
    }
    .richmond-card {
        width: calc(50% - 12px);
    }
    .richmond-badges-bar__row {
        justify-content: center;
    }
    .richmond-services__heading,
    .richmond-testimonials__heading,
    .richmond-about__heading,
    .richmond-certs-heading,
    .richmond-cta__heading,
    .richmond-faq__heading {
        font-size: 36px;
    }
    .richmond-services__grid {
        flex-direction: column;
        gap: 0;
    }
    .richmond-reviews {
        flex-direction: column;
        padding: 0 20px;
    }
    .richmond-about {
        flex-direction: column;
        padding: 20px 20px 20px;
    }
    .richmond-about__image {
        flex: none;
        width: 100%;
        height: 350px;
    }
    .richmond-about__text {
        max-width: 100%;
    }
    .richmond-cta-section {
        max-width: calc(100% - 20px);
        border-radius: 30px;
        padding: 60px 20px;
    }
    .richmond-cta-section::before {
        border-radius: 30px;
    }
    .richmond-form-section {
        padding: 40px 20px 60px;
    }
    .richmond-form-section__inner {
        flex-direction: column;
        min-height: auto;
    }
    .richmond-form-section__left {
        flex: none;
        min-height: 300px;
        border-radius: 30px;
    }
    .richmond-form-section__overlay {
        border-radius: 30px;
    }
    .richmond-form-section__heading {
        font-size: 36px;
    }
    .richmond-form-section__right {
        margin-left: 0;
        margin-top: 16px;
        border-radius: 30px;
    }
    .richmond-form__row {
        flex-direction: column;
    }
    .richmond-footer__top {
        flex-direction: column;
        gap: 40px;
    }
    .richmond-footer__brand {
        width: 100%;
    }
    .richmond-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
@media (max-width: 750px) {
    .richmond-hero__text {
        padding: 40px 22px;
        align-items: center;
        text-align: center;
    }
    .richmond-hero__heading {
        font-size: 28px;
    }
    .richmond-hero__image {
        min-height: 220px;
    }
    a.richmond-hero__btn {
        width: 100%;
        min-width: unset;
    }
    .richmond-whoweare__inner {
        max-width: 100%;
        padding: 40px 0 0;
    }
    .richmond-whoweare__text {
        margin-left: 0;
        padding: 0 16px 20px;
        text-align: center;
    }
    .richmond-whoweare__heading {
        font-size: 32px;
        max-width: 100%;
    }
    .richmond-whoweare__desc {
        margin-left: 0;
        max-width: 100%;
        text-align: left;
    }
    .richmond-whoweare__glow--left {
        display: none;
    }
    .richmond-whoweare__glow--right {
        width: 200px;
        height: 200px;
        right: -50px;
        top: 60px;
        background: rgba(47, 169, 140, 0.45);
        filter: blur(90px);
    }
    .richmond-whoweare__image {
        position: relative;
        left: 0;
        width: calc(100% + 7px);
        max-width: none;
        margin: 0 0 0 -7px;
    }
    .richmond-whoweare__image::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(47, 169, 140, 0.35);
        filter: blur(80px);
        left: 60px;
        top: -10px;
        pointer-events: none;
        z-index: 1;
    }
    .richmond-badges-bar__track {
        justify-content: flex-start;
        padding: 0;
        max-width: none;
        animation: richmond-marquee 15s linear infinite;
    }
    .richmond-badges-bar__row {
        flex-wrap: nowrap;
        flex-shrink: 0;
        gap: 20px;
        padding: 0 10px;
    }
    .richmond-badges-bar__row--clone {
        display: flex;
    }
    .richmond-card {
        width: 100%;
    }
    .richmond-specialties {
        padding: 40px 16px;
    }
    .richmond-specialties__header .richmond-hero__btn {
        width: 100%;
    }
    .richmond-services__top-text .richmond-hero__btn {
        width: 100%;
    }
    .richmond-about {
        flex-direction: column-reverse;
    }
    .richmond-about__text {
        text-align: center;
        align-items: center;
    }
    .richmond-about__desc {
        text-align: left;
    }
    .richmond-about__action .richmond-hero__btn {
        width: 100%;
    }
    .richmond-certs-heading {
        margin-bottom: 10px;
    }
    .richmond-certifications {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .richmond-certifications img {
        width: 280px;
        height: 138px;
        object-fit: contain;
        margin-top: 12px;
    }
    .richmond-certifications img:first-child {
        width: 280px;
        height: 249px;
        object-fit: contain;
        margin-top: -30px;
        margin-bottom: -48px;
    }
    .richmond-cta-section {
        padding: 50px 16px;
        border-radius: 20px;
    }
    .richmond-cta-section::before {
        border-radius: 20px;
    }
    .richmond-cta__heading {
        font-size: 28px;
    }
    .richmond-footer {
        padding: 50px 0;
    }
    .richmond-footer__inner {
        padding: 0 16px;
    }
    .richmond-footer__legal {
        gap: 20px;
    }
}
/* ===== Longevity page ===== */
.rp-mh-page {
    background: #fff;
}

/* ===== Shared: pill badge ===== */
.rp-mh-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 289px;
    padding: 10px;
    border-radius: 39px;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5625;
    letter-spacing: 0;
    color: #1D283A;
    background: #EEF5F3;
    border: 1px solid rgba(47, 169, 140, 0.22);
}
.rp-mh-pill--on-dark {
    color: #EEF5F3;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ===== Shared: buttons ===== */
.rp-mh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 30px;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.218;
    text-decoration: none;
    min-width: 207px;
    box-sizing: border-box;
    transition: background .2s, color .2s;
}
.rp-mh-btn--light {
    background: #fff;
    color: #1D283A;
}
.rp-mh-btn--light:hover {
    background: #EEF5F3;
    color: #1D283A;
}
.rp-mh-btn--dark {
    background: #1D283A;
    color: #EEF5F3;
}
.rp-mh-btn--dark:hover {
    background: #263a4d;
    color: #EEF5F3;
}

/* ===================================================== */
/* 1. Hero                                                */
/* ===================================================== */
.rp-mh-hero {
    position: relative;
    height: 613px;
    overflow: hidden;
    background: #1A1A1A;
}
.rp-mh-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.rp-mh-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.rp-mh-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(41, 41, 41, 0.8) 0%, rgba(22, 22, 22, 0.2) 100%);
}
.rp-mh-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 108px 80px;
    max-width: 736px; /* 80 padding-left + 656 content width */
}
.rp-mh-hero__content > .rp-mh-pill {
    align-self: flex-start;
}
.rp-mh-hero__title {
    margin: 0;
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0;
    max-width: 656px;
}
.rp-mh-hero__title em {
    font-style: italic;
    font-weight: 400;
}
.rp-mh-hero__desc {
    margin: 0;
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.389;
    max-width: 526px;
}
.rp-mh-hero__content > .rp-mh-btn {
    align-self: flex-start;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .rp-mh-hero__content { padding: 80px 40px; }
    .rp-mh-hero__title { font-size: 38px; }
}

@media (max-width: 991px) {
    .rp-mh-hero { height: auto; min-height: 480px; }
    .rp-mh-hero__content { padding: 60px 24px; gap: 18px; }
    .rp-mh-hero__title { font-size: 32px; line-height: 1.1; }
    .rp-mh-hero__desc { font-size: 16px; }
}

@media (max-width: 600px) {
    .rp-mh-hero { min-height: 420px; }
    .rp-mh-hero__content { padding: 40px 16px; gap: 16px; max-width: 100%; }
    .rp-mh-hero__title { font-size: 26px; }
    .rp-mh-hero__desc { font-size: 15px; }
    .rp-mh-pill { width: auto; padding: 8px 16px; font-size: 14px; }
}

/* ===================================================== */
/* 2. Compounding Backbone                                */
/* ===================================================== */
.rp-mh-backbone {
    padding: 76px 60px 0;
}
.rp-mh-backbone__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1320px;
    margin: 0 auto;
}
.rp-mh-backbone__col--left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 516px;
    flex: 0 0 516px;
}
.rp-mh-backbone__col--right {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 643px;
    flex: 0 0 643px;
}
.rp-mh-backbone__title {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.08;
    color: #1D283A;
    text-transform: uppercase;
    letter-spacing: 0;
}
.rp-mh-backbone__title em {
    font-style: italic;
    font-weight: 400;
}
.rp-mh-backbone__col--right p {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4375;
    color: #1D283A;
}

@media (max-width: 1280px) {
    .rp-mh-backbone { padding-left: 24px; padding-right: 24px; }
    .rp-mh-backbone__col--left  { flex: 1 1 516px; width: auto; min-width: 0; }
    .rp-mh-backbone__col--right { flex: 1 1 643px; width: auto; min-width: 0; }
}
@media (max-width: 1200px) {
    .rp-mh-backbone { padding: 60px 40px 0; }
}
@media (max-width: 991px) {
    .rp-mh-backbone { padding: 48px 24px 0; }
    .rp-mh-backbone__inner { flex-direction: column; gap: 28px; }
    .rp-mh-backbone__col--left,
    .rp-mh-backbone__col--right { width: 100%; flex: none; }
    .rp-mh-backbone__title { font-size: 32px; }
}
@media (max-width: 600px) {
    .rp-mh-backbone { padding: 40px 16px 0; }
    .rp-mh-backbone__title { font-size: 26px; }
}

/* ===================================================== */
/* 3. Why Clinics                                         */
/* ===================================================== */
.rp-mh-whyclinics {
    padding: 100px 40px 0;
}
.rp-mh-whyclinics__inner {
    display: flex;
    align-items: center;
    gap: 88px;
    max-width: 1268px;
    margin: 0 auto;
}
.rp-mh-whyclinics__image {
    flex: 0 0 608px;
    width: 608px;
    max-width: 608px;
    aspect-ratio: 608 / 511;
    border-radius: 36px;
    overflow: hidden;
}
.rp-mh-whyclinics__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rp-mh-whyclinics__content {
    flex: 0 0 625px;
    width: 625px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
}
.rp-mh-whyclinics__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rp-mh-mobile-br { display: none; }
.rp-mh-whyclinics__title {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.108;
    color: #1D283A;
    text-transform: uppercase;
    letter-spacing: 0;
}
.rp-mh-whyclinics__title em {
    font-style: italic;
    font-weight: 400;
}

/* Stats list */
.rp-mh-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: flex-start;
    width: 557px;
    max-width: 100%;
}
.rp-mh-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    height: 87px;
    box-sizing: border-box;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 6px 14px -6px rgba(0, 0, 0, 0.06);
    overflow: visible;
}
.rp-mh-stat__icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EEF5F3;
    border-radius: 50%;
}
.rp-mh-stat__icon img {
    width: 40px;
    height: 40px;
    display: block;
}
.rp-mh-stat__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.rp-mh-stat__value {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.04;
    color: #1D283A;
}
.rp-mh-stat__desc {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.286;
    color: #1D283A;
    opacity: 0.7;
}

@media (max-width: 1400px) {
    .rp-mh-whyclinics { padding-left: 24px; padding-right: 24px; }
    .rp-mh-whyclinics__inner { gap: 48px; }
    .rp-mh-whyclinics__image { flex: 1 1 608px; width: auto; max-width: 608px; min-width: 0; }
    .rp-mh-whyclinics__content { flex: 1 1 625px; width: auto; min-width: 0; }
}
@media (max-width: 1200px) {
    .rp-mh-whyclinics { padding: 80px 40px 0; }
    .rp-mh-whyclinics__inner { gap: 48px; }
    .rp-mh-whyclinics__image { flex: 1 1 50%; width: 50%; max-width: 50%; }
    .rp-mh-whyclinics__content { flex: 1 1 50%; width: 50%; }
}
@media (max-width: 991px) {
    .rp-mh-whyclinics { padding: 60px 24px 0; }
    .rp-mh-whyclinics__inner { flex-direction: column; gap: 32px; }
    .rp-mh-whyclinics__image {
        flex: none; width: 100%; max-width: 100%;
    }
    .rp-mh-whyclinics__content { flex: none; width: 100%; gap: 28px; }
    .rp-mh-whyclinics__title { font-size: 32px; }
}
@media (max-width: 600px) {
    .rp-mh-whyclinics { padding: 48px 16px 0; }
    .rp-mh-whyclinics__image { border-radius: 24px; }
    .rp-mh-whyclinics__title { font-size: 26px; }
    .rp-mh-stat { padding: 16px; gap: 14px; border-radius: 20px; }
    .rp-mh-stat__icon { width: 52px; height: 52px; flex-basis: 52px; }
    .rp-mh-stat__icon img { width: 32px; height: 32px; }
}

/* ===================================================== */
/* 4. Men's Health Medications We Compound                */
/* ===================================================== */
.rp-mh-meds {
    margin-top: 120px;
    padding: 50px 40px;
    background: #EEF5F3;
}
.rp-mh-meds__inner {
    max-width: 1128px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.rp-mh-meds__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.rp-mh-meds__title {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.108;
    color: #1D283A;
    text-transform: uppercase;
}
.rp-mh-meds__title em {
    font-style: italic;
    font-weight: 400;
}
.rp-mh-meds__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
/* 10 medication cards: last (10th) centered in the fourth row */
.rp-mh-meds__list .rp-mh-med-card:nth-child(10) {
    grid-column: 2 / 3;
}
.rp-mh-med-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    min-height: 190px;
    box-sizing: border-box;
}
.rp-mh-med-card__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: calc(100% - 60px);
}
.rp-mh-med-card__title {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.04;
    color: #1D283A;
}
.rp-mh-med-card__desc {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.286;
    color: #1D283A;
    opacity: 0.7;
}
.rp-mh-med-card__link {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s;
}
.rp-mh-med-card__link:hover {
    opacity: 0.85;
}
.rp-mh-med-card__link img {
    width: 44px;
    height: 44px;
    display: block;
}

@media (max-width: 1200px) {
    .rp-mh-meds { padding: 48px 40px; }
}
@media (max-width: 991px) {
    .rp-mh-meds { padding: 40px 24px; }
    .rp-mh-meds__title { font-size: 32px; }
    .rp-mh-meds__list { grid-template-columns: 1fr; gap: 16px; }
    .rp-mh-meds__list .rp-mh-med-card:nth-child(10) { grid-column: auto; }
    .rp-mh-med-card__body { max-width: calc(100% - 60px); }
}
@media (max-width: 600px) {
    .rp-mh-meds { padding: 32px 16px; }
    .rp-mh-meds__title { font-size: 26px; }
}

/* ===================================================== */
/* 5. Which Partners                                      */
/* ===================================================== */
.rp-mh-partners {
    padding: 120px 40px 0;
}
.rp-mh-partners__inner {
    max-width: 1128px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 39px;
}
.rp-mh-partners__top {
    display: flex;
    gap: 28px;
    align-items: center;
}
.rp-mh-partners__heading {
    flex: 0 0 475px;
    width: 475px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rp-mh-partners__title {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.108;
    color: #1D283A;
    text-transform: uppercase;
}
.rp-mh-partners__title em {
    font-style: italic;
    font-weight: 400;
}
.rp-mh-partners__image {
    flex: 1;
    aspect-ratio: 625 / 338;
    border-radius: 24px;
    overflow: hidden;
}
.rp-mh-partners__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rp-mh-partners__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 20px 16px;
}
.rp-mh-partner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    border-radius: 12px;
}
.rp-mh-partner__icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EEF5F3;
    border-radius: 50%;
}
.rp-mh-partner__icon img {
    width: 32px;
    height: 32px;
    display: block;
}
.rp-mh-partner__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.rp-mh-partner__title {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.1364;
    color: #1D283A;
}
.rp-mh-partner__desc {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.125;
    color: #1D283A;
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .rp-mh-partners { padding: 120px 40px 0; }
    .rp-mh-partners__list { gap: 20px 40px; }
}
@media (max-width: 991px) {
    .rp-mh-partners { padding: 80px 24px 0; }
    .rp-mh-partners__top { flex-direction: column; align-items: stretch; gap: 24px; }
    .rp-mh-partners__heading { width: 100%; flex: none; }
    .rp-mh-partners__image { width: 100%; flex: none; }
    .rp-mh-partners__title { font-size: 32px; }
    .rp-mh-partners__list {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 16px;
    }
}
@media (max-width: 600px) {
    .rp-mh-partners { padding: 60px 16px 0; }
    .rp-mh-partners__title { font-size: 26px; }
    .rp-mh-partner { padding: 8px 0; gap: 14px; }
    .rp-mh-partner__icon { width: 52px; height: 52px; flex-basis: 52px; }
    .rp-mh-partner__icon img { width: 28px; height: 28px; }
}

/* ===================================================== */
/* 6. How We Fulfill                                      */
/* ===================================================== */
.rp-mh-fulfill {
    background: rgba(238, 245, 243, 0.89);
    padding: 50px 40px 78px;
}
.rp-mh-fulfill__inner {
    max-width: 1300px;
    margin: 0 auto;
}
.rp-mh-fulfill__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.rp-mh-fulfill__title {
    margin: 0;
    max-width: 858px;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.108;
    color: #1D283A;
    text-transform: uppercase;
    text-align: center;
}
.rp-mh-fulfill__title em {
    font-style: italic;
    font-weight: 400;
}

/* Timeline (zigzag with 4 steps and horizontal line) */
.rp-mh-timeline {
    position: relative;
    margin: 80px auto 0;
    width: 100%;
    max-width: 1140px;
    height: 211px;
}
.rp-mh-timeline__line {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 100px;
    height: 2px;
    background: rgba(91, 194, 177, 0.17);
}
.rp-mh-step {
    position: absolute;
    top: 0;
    height: 211px;
}
.rp-mh-step__dot {
    position: absolute;
    top: 85px;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    box-sizing: border-box;
}
.rp-mh-step__dot--active {
    background: #FCFFFF;
}
.rp-mh-step__dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #D5ECE8;
}
.rp-mh-step__dot--active::after {
    background: #5BC2B1;
}
.rp-mh-step__text {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rp-mh-step__label {
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 0.857;
    color: #5BC2B1;
    text-transform: uppercase;
    letter-spacing: 0;
}
.rp-mh-step__desc {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.278;
    color: #19343C;
}
/* Step positions from Figma (timeline inner 1140x211) */
.rp-mh-step--1 { left: 0; width: 254px; }
.rp-mh-step--1 .rp-mh-step__text { top: 133px; width: 254px; }
.rp-mh-step--2 { left: 25.8%; width: 238px; }
.rp-mh-step--2 .rp-mh-step__text { top: 0; width: 238px; }
.rp-mh-step--3 { left: 50.2%; width: 244px; }
.rp-mh-step--3 .rp-mh-step__text { top: 133px; width: 244px; }
.rp-mh-step--4 { left: 75.1%; width: 238px; }
.rp-mh-step--4 .rp-mh-step__text { top: 0; width: 238px; }

/* ===================================================== */
/* 7. Safety Bar                                          */
/* ===================================================== */
.rp-mh-safety {
    background: #1D283A;
    padding: 17px 60px 16px;
    min-height: 102px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}
.rp-mh-safety__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 23px;
    width: 100%;
    max-width: 1056px;
    flex-wrap: wrap;
}
.rp-mh-safety__items li {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.389;
    color: #EEF5F3;
}
.rp-mh-safety__items img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}
.rp-mh-safety__disclaimer {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 2.083;
    color: rgba(238, 245, 243, 0.6);
    text-align: center;
}

/* ===================================================== */
/* 8. FAQ                                                 */
/* ===================================================== */
.rp-mh-faq {
    background: #fff;
    padding: 122px 40px 119px;
}
.rp-mh-faq__inner {
    max-width: 778px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.rp-mh-faq__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.rp-mh-faq__title {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.108;
    color: #1D283A;
    text-transform: uppercase;
    text-align: center;
}
.rp-mh-faq__title em {
    font-style: italic;
    font-weight: 400;
}
.rp-mh-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.rp-mh-faq__item {
    background: #EEF5F3;
    border-radius: 20px;
    padding: 13px 24px;
    min-height: 78px;
    box-sizing: border-box;
}
.rp-mh-faq__item[open] {
    min-height: 146px;
}
.rp-mh-faq__item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.333;
    color: #1D283A;
    gap: 12px;
}
.rp-mh-faq__item summary::-webkit-details-marker { display: none; }
.rp-mh-faq__item[open] summary {
    font-size: 20px;
    line-height: 1.2;
}
.rp-mh-faq__item summary::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: url('/assets/img/richmond/mens-health/icons/plus.svg') center / contain no-repeat;
    transition: transform .2s;
}
.rp-mh-faq__item[open] summary::after {
    background-image: url('/assets/img/richmond/mens-health/icons/minus.svg');
}
.rp-mh-faq__answer {
    margin: 0;
    padding-top: 0;
    max-width: 701px;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(29, 40, 58, 0.8);
}

/* ===================================================== */
/* 9. Bottom CTA                                          */
/* ===================================================== */
.rp-mh-cta {
    position: relative;
    height: 431px;
    overflow: hidden;
}
.rp-mh-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.rp-mh-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.rp-mh-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
}
.rp-mh-cta__content {
    position: relative;
    z-index: 2;
    max-width: 815px;
    margin: 0 auto;
    padding: 104px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.rp-mh-cta__title {
    margin: 0;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.08;
    color: #fff;
    text-transform: uppercase;
}
.rp-mh-cta__title em {
    font-style: italic;
    font-weight: 400;
}
.rp-mh-cta__desc {
    margin: 0;
    max-width: 622px;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
}
.rp-mh-btn--glass {
    background: rgba(255, 255, 255, 0.16);
    color: #EEF5F3;
    min-width: 290px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.rp-mh-btn--glass:hover {
    background: rgba(255, 255, 255, 0.26);
    color: #fff;
}

/* ===================================================== */
/* Responsive for sections 6–9                            */
/* ===================================================== */
@media (max-width: 1200px) {
    .rp-mh-fulfill { padding: 50px 20px 70px; }
    .rp-mh-safety { padding: 17px 20px 16px; }
    .rp-mh-safety__items { gap: 16px; }
    .rp-mh-faq { padding: 70px 20px; }
}

@media (max-width: 991px) {
    .rp-mh-fulfill__title { font-size: 36px; }
    .rp-mh-timeline { height: auto; margin-top: 48px; }
    .rp-mh-timeline__line { display: none; }
    .rp-mh-step,
    .rp-mh-step--1,
    .rp-mh-step--2,
    .rp-mh-step--3,
    .rp-mh-step--4 {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        padding-left: 44px;
        margin-bottom: 24px;
    }
    .rp-mh-step__dot {
        top: 0;
    }
    .rp-mh-step__text,
    .rp-mh-step--1 .rp-mh-step__text,
    .rp-mh-step--2 .rp-mh-step__text,
    .rp-mh-step--3 .rp-mh-step__text,
    .rp-mh-step--4 .rp-mh-step__text {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
    }

    .rp-mh-safety__items { flex-direction: column; align-items: flex-start; gap: 12px; }

    .rp-mh-faq__title { font-size: 32px; }
    .rp-mh-faq__item[open] summary { font-size: 18px; }

    .rp-mh-cta__title { font-size: 36px; }
    .rp-mh-cta__desc { font-size: 18px; }
    .rp-mh-cta__content { padding-top: 80px; }
}

@media (max-width: 600px) {
    .rp-mh-fulfill { padding: 50px 16px 60px; }
    .rp-mh-fulfill__title { font-size: 28px; }

    .rp-mh-safety { padding: 14px 16px 14px; }
    .rp-mh-safety__items li { font-size: 15px; line-height: 1.35; }

    .rp-mh-faq { padding: 50px 16px; }
    .rp-mh-faq__inner { gap: 28px; }
    .rp-mh-faq__title { font-size: 26px; }
    .rp-mh-faq__item { padding: 12px 16px; border-radius: 16px; }
    .rp-mh-faq__item summary { font-size: 16px; gap: 8px; }
    .rp-mh-faq__item[open] summary { font-size: 17px; }

    .rp-mh-cta { height: auto; min-height: 360px; }
    .rp-mh-cta__content { padding: 60px 16px; gap: 14px; }
    .rp-mh-cta__title { font-size: 26px; }
    .rp-mh-cta__desc { font-size: 16px; }
    .rp-mh-btn--glass { min-width: 0; width: 100%; }
}

/* ========================================================= */
/* Mobile match to Figma qG3ngnyXUqK2mnH9UBqS6H node 354:2521 */
/* Longevity: DOM order = Figma order (About before Why) — no */
/* reorder needed. Late rules win over earlier 600px blocks.  */
/* ========================================================= */
@media (max-width: 600px) {
    /* Section rhythm — 46px gap; safety attached to fulfill */
    .rp-mh-page > section { margin-top: 46px; }
    .rp-mh-page > .rp-mh-hero,
    .rp-mh-page > .rp-mh-safety { margin-top: 0; }

    /* Shared pill — Figma: pad 10 all, 14/25 w600, radius 39 */
    .rp-mh-pill {
        width: auto;
        padding: 10px;
        min-width: 0;
        font-size: 14px;
        line-height: 1.786;
        font-weight: 600;
        border-radius: 39px;
    }

    /* 1. Hero — 360×693. Mobile composite (sky gradient top + people image bottom). */
    .rp-mh-hero {
        height: auto;
        min-height: 0;
        aspect-ratio: 360 / 693;
        position: relative;
        background: url('/assets/img/richmond/mens-health/hero-bg-mobile.webp') center / 100% 100% no-repeat;
    }
    .rp-mh-hero__bg { display: none; }
    .rp-mh-hero__overlay {
        background: linear-gradient(180deg,
            rgba(20, 20, 20, 0.85) 0%,
            rgba(20, 20, 20, 0.2) 100%);
    }

    /* Hero pill — Figma: transparent fill + teal rim stroke, no glass effect */
    .rp-mh-hero .rp-mh-pill--on-dark {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: 1px solid rgba(47, 169, 140, 0.22);
    }
    .rp-mh-hero__content {
        padding: 29px 16px 0;
        gap: 22px;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .rp-mh-hero__content > .rp-mh-pill { align-self: center; }
    .rp-mh-hero__title {
        font-size: 26px;
        line-height: 1.077;
        max-width: 328px;
        color: #fff;
    }
    .rp-mh-hero__desc {
        font-size: 16px;
        line-height: 1.375;
        max-width: 328px;
    }
    .rp-mh-hero__content > .rp-mh-btn {
        width: 328px;
        max-width: 100%;
        align-self: center;
    }

    /* 2. About This Specialty (Backbone) — 328×623 */
    .rp-mh-backbone {
        padding: 0 16px;
    }
    .rp-mh-backbone__inner {
        gap: 20px;
        max-width: 328px;
        margin: 0 auto;
    }
    .rp-mh-backbone__col--left {
        width: 100%;
        flex: none;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    .rp-mh-backbone__col--right {
        width: 100%;
        flex: none;
        gap: 22px;
    }
    .rp-mh-backbone__title {
        font-size: 28px;
        line-height: 1.071;
        text-align: center;
    }
    .rp-mh-backbone__col--right p {
        font-size: 16px;
        line-height: 1.4375;
        text-align: left;
    }

    /* 3. Why Clinics — 328×818. Order: header → stats → image */
    .rp-mh-whyclinics {
        padding: 0 16px;
    }
    .rp-mh-whyclinics__inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 328px;
        margin: 0 auto;
        align-items: stretch;
    }
    .rp-mh-whyclinics__image {
        order: 2;
        width: 328px;
        max-width: 100%;
        aspect-ratio: 328 / 275;
        border-radius: 19px;
    }
    .rp-mh-whyclinics__content {
        order: 1;
        width: 100%;
        gap: 24px;
    }
    .rp-mh-whyclinics__top {
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .rp-mh-whyclinics__title {
        font-size: 26px;
        line-height: 1.231;
    }
    .rp-mh-mobile-br { display: inline; }
    .rp-mh-stats {
        width: 100%;
        gap: 20px;
    }
    .rp-mh-stat {
        width: 100%;
        padding: 0;
        height: auto;
        min-height: 79px;
        gap: 13px;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        align-items: flex-start;
    }
    .rp-mh-stat__icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        border-radius: 30px;
    }
    .rp-mh-stat__icon img { width: 40px; height: 40px; }
    .rp-mh-stat__text {
        width: 255px;
        flex: 1;
        gap: 8px;
    }
    .rp-mh-stat__value { font-size: 22px; line-height: 1.136; }
    .rp-mh-stat__desc { font-size: 14px; line-height: 1.286; }

    /* 4. Meds — horizontal carousel of flat cards 278×198 (Figma) */
    .rp-mh-meds {
        margin-top: 46px;
        padding: 31px 0;
        background: #EEF5F3;
    }
    .rp-mh-meds__inner {
        max-width: 100%;
        padding: 0;
        gap: 26px;
    }
    .rp-mh-meds__top {
        padding: 0 16px;
        gap: 16px;
    }
    .rp-mh-meds__title {
        font-size: 28px;
        line-height: 1.25;
        max-width: 328px;
        margin-left: auto;
        margin-right: auto;
    }
    .rp-mh-meds__list {
        display: flex;
        grid-template-columns: none;
        flex-direction: row;
        gap: 16px;
        padding: 0 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .rp-mh-meds__list::-webkit-scrollbar { display: none; }
    .rp-mh-meds__list .rp-mh-med-card,
    .rp-mh-meds__list .rp-mh-med-card:nth-child(10) {
        flex: 0 0 278px;
        width: 278px;
        min-height: 198px;
        scroll-snap-align: start;
        padding: 16px;
        grid-column: auto;
    }
    .rp-mh-med-card__title { font-size: 20px; line-height: 1.2; }
    .rp-mh-med-card__desc  { font-size: 13px; line-height: 1.31; }
    .rp-mh-med-card__link  { right: 16px; bottom: 16px; }

    /* 5. Who We Work With (Partners) — 6 cards, image at bottom (after list) */
    .rp-mh-partners {
        padding: 0 16px;
    }
    .rp-mh-partners__inner {
        max-width: 328px;
        margin: 0 auto;
        gap: 24px;
    }
    .rp-mh-partners__top {
        display: contents;
    }
    .rp-mh-partners__heading {
        width: 100%;
        flex: none;
        align-items: center;
        text-align: center;
        gap: 16px;
        order: 1;
    }
    .rp-mh-partners__image {
        width: 328px;
        max-width: 100%;
        aspect-ratio: 328 / 177;
        border-radius: 13px;
        order: 3;
    }
    .rp-mh-partners__title {
        font-size: 28px;
        line-height: 1.286;
    }
    .rp-mh-partners__list {
        order: 2;
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        grid-template-rows: none;
        grid-auto-flow: row;
        gap: 20px;
    }
    .rp-mh-partner {
        padding: 0;
        min-height: auto;
        gap: 13px;
        align-items: flex-start;
        border-radius: 0;
    }
    .rp-mh-partner__icon {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        border-radius: 30px;
    }
    .rp-mh-partner__icon img { width: 32px; height: 32px; }
    .rp-mh-partner__text { gap: 8px; }
    .rp-mh-partner__title { font-size: 22px; line-height: 1.136; }
    .rp-mh-partner__desc { font-size: 14px; line-height: 1.286; }

    /* 6. Process — vertical timeline */
    .rp-mh-fulfill {
        padding: 28px 16px 56px;
        background: rgba(238, 245, 243, 0.89);
    }
    .rp-mh-fulfill__inner {
        max-width: 328px;
        margin: 0 auto;
    }
    .rp-mh-fulfill__top {
        gap: 16px;
        align-items: center;
    }
    .rp-mh-fulfill__title {
        font-size: 28px;
        line-height: 1.357;
        max-width: 328px;
    }
    .rp-mh-fulfill__top .rp-mh-btn {
        width: 328px;
        max-width: 100%;
    }
    .rp-mh-timeline {
        position: relative;
        margin-top: 62px;
        width: 100%;
        max-width: 328px;
        height: auto;
        min-height: 332px;
    }
    .rp-mh-timeline__line {
        display: block;
        position: absolute;
        left: 14px;
        right: auto;
        top: 29px;
        width: 2px;
        height: 332px;
        background: rgba(91, 194, 177, 0.17);
        border-radius: 68px;
    }
    .rp-mh-step,
    .rp-mh-step--1,
    .rp-mh-step--2,
    .rp-mh-step--3,
    .rp-mh-step--4 {
        position: absolute;
        left: 0;
        width: 100%;
        height: auto;
        padding-left: 0;
        margin-bottom: 0;
    }
    .rp-mh-step--1 { top: 0; }
    .rp-mh-step--2 { top: 96px; }
    .rp-mh-step--3 { top: 192px; }
    .rp-mh-step--4 { top: 288px; }
    .rp-mh-step__dot {
        position: absolute;
        top: 0;
        left: 0;
    }
    .rp-mh-step__text,
    .rp-mh-step--1 .rp-mh-step__text,
    .rp-mh-step--2 .rp-mh-step__text,
    .rp-mh-step--3 .rp-mh-step__text,
    .rp-mh-step--4 .rp-mh-step__text {
        position: absolute;
        top: 0;
        left: 42px;
        width: calc(100% - 42px);
        gap: 8px;
    }
    .rp-mh-step__label { font-size: 22px; line-height: 1.091; }
    .rp-mh-step__desc { font-size: 16px; line-height: 1.25; color: #19343C; }

    /* 7. Safety — navy bar 204h */
    .rp-mh-safety {
        padding: 20px 16px 16px;
        min-height: 204px;
        gap: 12px;
        margin-top: 0;
    }
    .rp-mh-safety__items {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .rp-mh-safety__items li {
        font-size: 18px;
        line-height: 1.389;
        gap: 3px;
    }
    .rp-mh-safety__disclaimer {
        text-align: left;
        font-size: 14px;
        line-height: 1.357;
    }

    /* 8. FAQ — 328×992. 8 items: 1 open 312h + 7 closed 65h, gap 8 */
    .rp-mh-faq {
        padding: 0 16px;
    }
    .rp-mh-faq__inner {
        max-width: 328px;
        margin: 0 auto;
        gap: 20px;
    }
    .rp-mh-faq__heading {
        align-items: center;
        gap: 16px;
    }
    .rp-mh-faq__title {
        font-size: 28px;
        line-height: 1.143;
    }
    .rp-mh-faq__list { gap: 8px; }
    .rp-mh-faq__item {
        padding: 13px 16px;
        border-radius: 20px;
        min-height: 65px;
    }
    .rp-mh-faq__item[open] {
        min-height: 312px;
    }
    .rp-mh-faq__item summary {
        font-size: 14px;
        line-height: 1.5;
        padding: 10px 0;
    }
    .rp-mh-faq__item[open] summary {
        font-size: 14px;
        line-height: 1.5;
    }
    .rp-mh-faq__answer {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 9. CTA — auto height so content fits, BG image aspect matched (360×342) */
    .rp-mh-cta {
        height: auto;
        min-height: 342px;
        background: url('/assets/img/richmond/mens-health/cta-bg-mobile.webp') center / cover no-repeat;
    }
    .rp-mh-cta__bg { display: none; }
    .rp-mh-cta__overlay { background: transparent; }
    .rp-mh-cta__content {
        max-width: 328px;
        padding: 56px 16px 56px;
        gap: 16px;
        align-items: center;
    }
    .rp-mh-cta__title {
        font-size: 36px;
        line-height: 1.083;
        max-width: 328px;
    }
    .rp-mh-cta__desc {
        font-size: 20px;
        line-height: 1.25;
        max-width: 328px;
    }
    .rp-mh-btn--glass {
        min-width: 290px;
        width: 290px;
        max-width: 100%;
    }
}
