*, *::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__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;
    }
}
