* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(255, 255, 255);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.8);
}

.rnWrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.rnTitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.3px;
}

.rnSubtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #ee5e00;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.rnBtn {
    display: inline-block;
    background: #ee5e00;
    color: #fff !important;
    font-weight: 300;
    text-transform: uppercase;
    padding: 14px 20px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.2s;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
}

.rnBtn:hover {
    background: #d45300;
    color: #1f1f1f;
}

.rnBtnOutline {
    background: transparent;
    border: 1px solid #ee5e00;
    color: #ee5e00;
}

.rnBtnOutline:hover {
    background: #ee5e00;
    color: #333;
}


.rnHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    padding: 22px 0;
    background: transparent;
}

.rnHeader .rnWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rnLogo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.rnLogo img {
    height: 40px;
    width: auto;
}

.rnLogo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.35rem;
    letter-spacing: 1px;
}

.rnNav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.rnNav a {
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: 0.2s;
}

.rnNav a:hover {
    color: #ee5e00;
}

.rnNav .rnBtn {
    padding: 10px 28px;
}

.rnBurger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.rnBurger span {
    width: 30px;
    height: 2px;
    background: #fff;
    transition: 0.2s;
}


.rnHero {
    background: url('../img/main.webp') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.rnHero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
}

.rnHero .rnWrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.rnHeroContent {
    max-width: 980px;
    margin: 0 auto;
    padding: 120px 0 80px;
}

.rnHeroContent .rnSubtitle {
    color: #fff;
    font-weight: 600;
}

.rnHeroContent h1 {
    font-size: 4.2rem;
    line-height: 1.2;
    margin: 12px 0 20px;
    color: #fff;
}

.rnHeroContent p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 32px;
    opacity: 0.85;
    color: #fff;
}


.rnSection {
    padding: 80px 0;
}

.rnSectionDark {
    background: #000;
}

.rnSectionLight {
    background: #fbf8f6;
}

.rnSectionBeige {
    background: #f1ece9;
}

.rnSectionGray {
    background: #f1eeeb;
}

.rnSectionTitleWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 48px;
    gap: 20px;
}

.rnSectionTitleLeft {
    flex: 1 1 50%;
}

.rnSectionTitleLeft .rnSubtitle {
    margin-bottom: 2px;
}

.rnSectionTitleLeft h2 {
    font-size: 2.5rem;
    letter-spacing: 0.5px;
}

.rnSectionTitleRight {
    flex: 1 1 40%;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
}


.rnGrid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rnBenefitBlock {
    background: #fbf8f6;
    padding: 36px 28px;
    transition: 0.2s;
    text-align: center;
}

.rnBenefitBlock img {
    height: 48px;
    margin-bottom: 18px;
}

.rnBenefitBlock h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.rnBenefitBlock p {
    font-weight: 300;
}


.rnAboutContent {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rnAboutText {
    font-weight: 300;
    line-height: 1.6;
}

.rnAboutText p {
    margin-bottom: 18px;
}

.rnStats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.rnStatItem {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 180px;
}

.rnStatNumber {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 2.8rem;
    color: #000;
    line-height: 1;
}

.rnStatInfo {
    display: flex;
    flex-direction: column;
}

.rnStatInfo strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.rnStatInfo span {
    font-weight: 300;
    font-size: 0.9rem;
    opacity: 0.8;
}


.rnServicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #000;
    max-width: 1130px;
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
}

.rnServiceItem {
    padding: 48px 32px;
    background: transparent;
    border-bottom: 1px solid;
    border-image: linear-gradient(to top, #c5c5c5, #fff0) 1;
    border-right: 1px solid;
    border-image: linear-gradient(to left, #c5c5c5, #fff0) 1;
    color: #fff;
}

.rnServiceItem:nth-child(3n) {
    border-right: none;
}

.rnServiceItem img {
    height: 60px;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
}

.rnServiceItem h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    font-size: 1rem;
}

.rnServiceItem p {
    font-weight: 300;
    opacity: 0.75;
    font-size: 0.95rem;
}


.rnStepsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rnStepBlock {
    background: #f1eeeb;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.rnStepBlock .rnStepNum {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 2.4rem;
    color: #ee5e00;
    opacity: 0.4;
    margin-bottom: 4px;
}

.rnStepBlock h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    font-size: 1rem;
    margin-bottom: 6px;
}

.rnStepBlock p {
    font-weight: 300;
    font-size: 0.9rem;
    opacity: 0.8;
}

.rnStepDivider {
    width: 2px;
    background: #ee5e00;
    height: 30px;
    margin: 0 auto;
}


.rnCta {
    background: #000;
    color: #fff;
    padding: 70px 0;
    text-align: center;
    border-bottom: 1px solid #464646;
}

.rnCta .rnSubtitle {
    color: #ee5e00;
}

.rnCta h2 {
    color: #fff;
    font-size: 2.8rem;
    margin: 8px 0 16px;
}

.rnCta p {
    max-width: 500px;
    margin: 0 auto 28px;
    opacity: 0.7;
}

.rnContactBlock {
    display: flex;
    align-items: center;
    gap: 20px 40px;
}


.rnFooter {
    background: #000;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
}

.rnFooter a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.rnFooter a:hover {
    color: #fff;
}

.rnFooterTop {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #464646;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.rnFooterContact {
    flex: 2 1 300px;
}

.rnFooterContact h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    font-size: 36px;
    margin-bottom: 25px;
}

.rnFooterContactItem {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.rnFooterContactItem img {
    width: 42px;
}

.rnFooterContactItem strong {
    color: #fff;
    font-weight: 400;
    display: block;
}

.rnFooterContactItem span {
    font-weight: 300;
}

.rnFooterMid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #464646;
    padding-bottom: 26px;
    margin-bottom: 26px;
    gap: 20px;
}

.rnFooterLogo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rnFooterLogo img {
    height: 32px;
}

.rnFooterLogo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.rnFooterLinks {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.rnFooterLinks a {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.rnFooterBottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
}

.rnFooterBottom .rnFooterPhone {
    font-weight: 300;
}


.rnContactSection {
    background: #fff;
    padding-top: 140px;
}

.rnContactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


.rnContactFormWrap .rnSubtitle {
    margin-bottom: 4px;
}

.rnContactFormWrap h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.rnFormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.rnFormField {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    background: #fafafa;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    outline: none;
    transition: border 0.2s;
    box-sizing: border-box;
}

.rnFormField:focus {
    border-color: #ee5e00;
}

.rnFormField.textarea {
    resize: vertical;
    min-height: 140px;
}

.rnContactFormWrap .rnBtn {
    margin-top: 24px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 14px 38px;
}

#rnThankYou {
    margin-top: 20px;
    font-weight: 400;
    color: #ee5e00;
    display: none;
    font-size: 1.05rem;
}


.rnContactInfo .rnSubtitle {
    margin-bottom: 4px;
}

.rnContactInfo h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.rnContactInfo .rnInfoText {
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 36px;
    max-width: 400px;
}

.rnContactItem {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.rnContactItem:last-child {
    margin-bottom: 0;
}

.rnContactItem .rnLabel {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    font-size: 0.85rem;
}

.rnContactItem .rnValue {
    font-weight: 300;
    opacity: 0.85;
}


.rnQuickBook .rnLabel {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    font-size: 0.85rem;
}

.rnQuickBook .rnValue a {
    color: #ee5e00;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: border 0.2s;
}

.rnQuickBook .rnValue a:hover {
    border-bottom-color: #ee5e00;
}


@media (max-width: 992px) {
    .rnContactGrid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 576px) {
    .rnFormRow {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rnContactSection {
        padding-top: 120px;
    }
}

.rnAboutPage {
    background: #fff;
    padding-top: 140px;
}


.rnBreadcrumbs {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.rnBreadcrumbs a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.rnBreadcrumbs a:hover {
    color: #ee5e00;
}

.rnBreadcrumbs span {
    margin: 0 6px;
}

.rnAboutPage .rnPageTitle {
    font-size: 2.8rem;
    margin-bottom: 48px;
}


.rnAboutMain {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
}

.rnAboutMain .rnAboutTextCol {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rnAboutMain .rnAboutTextCol p {
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.85;
}

.rnAboutMain .rnAboutImgCol img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.rnFeaturesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 64px;
}

.rnFeatureBlock {
    background: #fbf8f6;
    padding: 36px 28px;
    transition: 0.2s;
    text-align: center;
}

.rnFeatureBlock img {
    height: 44px;
    margin-bottom: 16px;
}

.rnFeatureBlock h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 4px;
    font-size: 1rem;
}

.rnFeatureBlock p {
    font-weight: 300;
    opacity: 0.8;
    font-size: 0.95rem;
}


.rnFaqItem {
    border-bottom: 1px solid #e5e5e5;
}

.rnFaqItem:last-child {
    border-bottom: none;
}

.rnFaqQuestion {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    user-select: none;
}

.rnFaqQuestion .rnFaqIcon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s;
    color: #ee5e00;
}

.rnFaqItem.active .rnFaqQuestion .rnFaqIcon {
    transform: rotate(45deg);
}

.rnFaqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0 0 0;
    font-weight: 300;
    opacity: 0.85;
    line-height: 1.6;
}

.rnFaqItem.active .rnFaqAnswer {
    max-height: 300px;
    padding: 0 0 24px 0;
}


@media (max-width: 992px) {
    .rnAboutMain {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rnFeaturesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rnAboutPage {
        padding-top: 120px;
    }

    .rnAboutPage .rnPageTitle {
        font-size: 2.2rem;
    }

    .rnFeaturesGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .rnAboutPage .rnPageTitle {
        font-size: 1.8rem;
    }
}

.rnServicesPage {
    background: #fff;
    padding-top: 140px;
}


.rnBreadcrumbs {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.rnBreadcrumbs a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.rnBreadcrumbs a:hover {
    color: #ee5e00;
}

.rnBreadcrumbs span {
    margin: 0 6px;
}

.rnServicesPage .rnPageTitle {
    font-size: 2.8rem;
    margin-bottom: 48px;
}


.rnServicesMain {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}


.rnServicesLeft .rnServicesSubtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #ee5e00;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.rnServicesLeft h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.rnServicesLeft p {
    font-weight: 300;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 0;
}


.rnServicesList {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rnServiceItemRow {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px 28px;
    background: #fbf8f6;
    transition: 0.2s;
}

.rnServiceItemRow:hover {
    background: #f5f0eb;
}

.rnServiceItemRow img {
    width: 40px;
    margin-top: 2px;
    filter: brightness(1) invert(1);
}

.rnServiceItemRow .rnServiceContent h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    font-size: 1rem;
    margin-bottom: 4px;
}

.rnServiceItemRow .rnServiceContent p {
    font-weight: 300;
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.rnServiceItemRow .rnServiceContent ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rnServiceItemRow .rnServiceContent ul li {
    font-weight: 300;
    font-size: 0.9rem;
    opacity: 0.75;
    padding-left: 16px;
    position: relative;
}

.rnServiceItemRow .rnServiceContent ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #000;
    opacity: 0.6;
}


@media (max-width: 992px) {
    .rnServicesMain {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rnServicesPage .rnPageTitle {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .rnServicesPage {
        padding-top: 120px;
    }

    .rnServicesPage .rnPageTitle {
        font-size: 2rem;
    }

    .rnServicesLeft h2 {
        font-size: 1.8rem;
    }

    .rnServiceItemRow {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }

    .rnServiceItemRow img {
        margin: 0 auto;
    }

    .rnServiceItemRow .rnServiceContent ul li {
        padding-left: 0;
        text-align: center;
    }

    .rnServiceItemRow .rnServiceContent ul li::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .rnServicesPage .rnPageTitle {
        font-size: 1.6rem;
    }
}

.rnLegalPage {
    background: #fff;
    padding-top: 140px;
}

.rnBreadcrumbs {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.rnBreadcrumbs a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.rnBreadcrumbs a:hover {
    color: #ee5e00;
}

.rnBreadcrumbs span {
    margin: 0 6px;
}

.rnLegalPage .rnPageTitle {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.rnLegalMeta {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 36px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}


.rnLegalContent h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    font-size: 1.2rem;
    margin: 32px 0 12px 0;
}

.rnLegalContent h3:first-of-type {
    margin-top: 0;
}

.rnLegalContent p {
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 16px;
}

.rnLegalContent ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.rnLegalContent ul li {
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.85;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.rnLegalContent ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #ee5e00;
    opacity: 0.6;
}

.rnLegalContacts {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.rnLegalContacts h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    font-size: 1rem;
    margin-bottom: 12px;
}

.rnLegalContacts p {
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 4px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .rnLegalPage {
        padding-top: 120px;
    }

    .rnLegalPage .rnPageTitle {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .rnLegalPage .rnPageTitle {
        font-size: 1.6rem;
    }
}



































@media (max-width: 992px) {
    .rnGrid3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .rnServicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rnServiceItem:nth-child(3n) {
        border-right: 1px solid;
    }

    .rnServiceItem:nth-child(2n) {
        border-right: none;
    }

    .rnStepsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rnHeroContent h1 {
        font-size: 2.8rem;
    }

    .rnSectionTitleWrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .rnSectionTitleRight {
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .rnNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        gap: 22px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    }

    .rnStatItem {
        flex: auto;
    }

    .rnContactBlock {
        flex-wrap: wrap;
    }

    .rnCta h2 {
        font-size: 2rem;
    }

    .rnFooterContact h4 {
        font-size: 25px;
    }

    .rnNav a {
        color: #111;
    }

    .rnNav.open {
        display: flex;
    }

    .rnBurger {
        display: flex;
    }

    .rnGrid3 {
        grid-template-columns: 1fr;
    }

    .rnServicesGrid {
        grid-template-columns: 1fr;
    }

    .rnServiceItem {
        border-right: none !important;
    }

    .rnStepsGrid {
        grid-template-columns: 1fr;
    }

    .rnAboutText {
        columns: 1;
    }

    .rnStats {
        flex-direction: column;
    }

    .rnHeroContent h1 {
        font-size: 2.2rem;
    }

    .rnFooterMid {
        flex-direction: column;
        align-items: flex-start;
    }

    .rnFooterLinks {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .rnHeader {
        padding: 16px 0;
    }

    .rnLogo span {
        font-size: 1.1rem;
    }
}