
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
}

.rm-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rm-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #A6452D;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rm-logo:hover {
    color: #8F3B26;
}

.rm-nav {
    display: flex;
}

.rm-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(16px * 1.5);
}

.rm-nav-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    padding: calc(20px / 2) calc(24px / 2);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.rm-nav-link:hover {
    color: #8F3B26;
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
    background-color: transparent;
}

.rm-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.rm-burger-ico::before,
.rm-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.rm-burger-ico::before {
    top: -8px;
}

.rm-burger-ico::after {
    bottom: -8px;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico {
    background-color: transparent;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 767px) {
    .rm-burger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: calc(20px * 2) 24px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-nav-list {
        flex-direction: column;
        gap: 16px;
        margin-top: calc(20px * 3);
    }

    .rm-nav-link {
        display: block;
        padding: 20px 24px;
        border-radius: 12px;
    }

    .rm-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
    }

    .rm-nav.rm-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.rm-foot {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
}

.rm-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.rm-foot-sec {
    display: flex;
    flex-direction: column;
}

.rm-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.rm-foot-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.rm-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.rm-foot-nav,
.rm-foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-foot-nav li,
.rm-foot-social li {
    margin-bottom: 0.6rem;
}

.rm-foot-nav a,
.rm-foot-social a,
.rm-foot-contact a,
.rm-foot-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-foot-nav a:hover,
.rm-foot-social a:hover,
.rm-foot-contact a:hover,
.rm-foot-legal a:hover {
    color: #007bff;
    text-decoration: underline;
}

.rm-foot-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.rm-foot-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rm-foot-copy {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rm-foot-legal {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .rm-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rm-foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rm-foot-legal {
        justify-content: center;
    }
}



.rm-hero {

    background: #A6452D;
    color: #FFFFFF;
    padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
    position: relative;
    overflow: hidden;
}

.rm-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: floatOrb 20s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, 40px) scale(1.1);
    }
    66% {
        transform: translate(20px, -30px) scale(0.9);
    }
}

.rm-hero .rm-hero-in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rm-hero .rm-hero-body {
    /*max-width: 800px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

}

@media(max-width: 767px) {
    .rm-hero .rm-hero-body {
        flex-direction: column
    }
    }

.rm-hero .rm-hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #212529;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;

    transform: translateY(20px);
}

.rm-hero .rm-hero-title {
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 800;
    margin: 0 0 1.5rem;
    line-height: 1.1;

    transform: translateY(30px);
}

.rm-hero .rm-hero-sub {
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 0 0 2rem;
    opacity: 0.95;
    line-height: 1.6;

    transform: translateY(30px);
}

.rm-hero .rm-hero-metric {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);

    transform: scale(0.9);
}

.rm-hero .rm-hero-num {
    color: #212529;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 1;
}

.rm-hero .rm-hero-label {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #212529;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rm-step {

    background: #FFFFFF;
    color: #212529;
    padding: clamp(52px, 7vw, 90px) clamp(16px, 3vw, 40px);
}

.rm-step-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-step-box {
    max-width: 920px;
    margin: 0 auto;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: clamp(18px, 2.6vw, 28px);
    text-align: center;
    position: relative;
    overflow: hidden;

    transform: translateY(14px);
}

.rm-step-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(260px 160px at 20% 10%, rgba(0, 86, 179, 0.10), transparent 60%),
    radial-gradient(240px 160px at 85% 20%, rgba(255, 107, 53, 0.10), transparent 62%);
    pointer-events: none;
}

.rm-step-title {
    margin: 0;
    font-size: clamp(28px, 4.6vw, 44px);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.rm-step-title-text {
    position: relative;
    z-index: 1;
}

.rm-step-underline {
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 10px;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 86, 179, 0.25), rgba(255, 107, 53, 0.25));
    transition: width 520ms ease-in-out;
    z-index: 0;
}

.rm-step-text {
    margin: 34px auto 0;
    max-width: 72ch;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: #6C757D;
    position: relative;
    z-index: 1;
}

.rm-step-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.rm-step-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}

.rm-step-btn--main {
    background: #A6452D;
    color: #FFFFFF;
    border-color: rgba(0, 86, 179, 0.25);
}

.rm-step-btn--ghost {
    background: rgba(166, 69, 45, 0.08);
    color: #A6452D;
    border-color: rgba(255, 107, 53, 0.25);
}

.rm-step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.rm-step-ico {
    transition: transform 0.3s ease-in-out;
}

.rm-step-btn:hover .rm-step-ico {
    transform: rotate(-8deg) translateX(2px);
}

.rm-step.rm-in .rm-step-box {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 520ms ease-in-out, transform 520ms ease-in-out;
}

.rm-step.rm-in .rm-step-underline {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .rm-step-box {
        opacity: 1;
        transform: none;
    }

    .rm-step-underline {
        width: 100%;
        transition: none;
    }
}

.rm-how {

    padding: clamp(18px, 3vw, 44px);
    background: #A6452D;
    color: #FFFFFF;
}

.rm-how-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-how-head {
    margin-bottom: clamp(14px, 2.2vw, 22px);
}

.rm-how-title {
    margin: 0;
    font-size: clamp(24px, 4.6vw, 44px);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.rm-how-sub {
    margin: 10px 0 0;
    max-width: 70ch;
    color: rgba(255, 255, 255, .82);
}

.rm-how-wrap {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.rm-how-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.16);
    position: relative;
}

.rm-how-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.85));
    transition: width 600ms ease-in-out;
}

.rm-how-list {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.rm-how-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.rm-how-row.rm-on {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
}

.rm-how-num {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 900;
}

.rm-how-name {
    font-weight: 900;
    letter-spacing: -.01em;
}

.rm-how-desc {
    margin-top: 6px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    .rm-how-fill {
        transition: none;
    }
}

.rm-plan {

    padding: clamp(18px, 3vw, 44px);
    background: #FFFFFF;
    color: #212529;
}

.rm-plan-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-plan-head {
    margin-bottom: clamp(14px, 2.2vw, 22px);
}

.rm-plan-title {
    margin: 0;
    font-size: clamp(24px, 4.2vw, 40px);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.rm-plan-sub {
    margin: 10px 0 0;
    max-width: 72ch;
    color: #6C757D;
}

.rm-plan-grid {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    gap: 14px;
}

.rm-plan-card {
    grid-column: span 4;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid #E9ECEF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 16px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.rm-plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(166, 69, 45, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.rm-plan-top {
    padding: 14px;
    border-radius: 16px;
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
}

.rm-plan-name {
    font-weight: 900;
    letter-spacing: -.01em;
    color: #212529;
}

.rm-plan-price {
    margin-top: 8px;
    font-weight: 900;
    font-size: clamp(18px, 2.4vw, 28px);
    letter-spacing: -.02em;
    color: #A6452D;
}

.rm-plan-body {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.rm-plan-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.rm-plan-ok {
    width: 24px;
    height: 24px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(166, 69, 45, 0.08);
    color: #A6452D;
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: 900;
    flex: 0 0 auto;
    animation: plansL1Ok 2.8s ease-in-out infinite;
}

.rm-plan-card:nth-child(2) .rm-plan-ok {
    animation-duration: 3.3s
}

.rm-plan-card:nth-child(3) .rm-plan-ok {
    animation-duration: 3.8s
}

@keyframes plansL1Ok {
    0%, 100% {
        transform: translateY(0px)
    }
    50% {
        transform: translateY(-2px)
    }
}

.rm-plan-text {
    color: #6C757D;
    line-height: 1.6;
}

.rm-plan-btn {
    margin-top: 14px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #A6452D;
    color: #FFFFFF;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.rm-plan-btn:hover {
    background: #8F3B26;
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .rm-plan-card {
        grid-column: span 6;
    }
}

@media (max-width: 640px) {
    .rm-plan-card {
        grid-column: span 12;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rm-plan-ok {
        animation: none;
    }
}

.rm-clar {
    padding: clamp(18px, 3vw, 44px);
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    color: #000;
    overflow: hidden;
    position: relative;
}

.rm-clar::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
    filter: blur(18px);
    animation: c1Glow 6s ease-in-out infinite;
    opacity: .8;
    pointer-events: none;
}

@keyframes c1Glow {
    0%, 100% {
        transform: translate3d(-1%, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(1.5%, -1%, 0) scale(1.03);
    }
}

.rm-clar-in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.rm-clar-head {
    margin-bottom: clamp(14px, 2.2vw, 22px);
}

.rm-clar-title {
    margin: 0;
    font-size: clamp(24px, 4.6vw, 44px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.rm-clar-sub {
    margin: 10px 0 0;
    max-width: 70ch;
}

.rm-clar-grid {
    display: grid;
    gap: 12px;
}

.rm-clar-item {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.rm-clar-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.rm-clar-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #A6452D;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
    flex: 0 0 auto;
    animation: c1Dot 1.8s ease-in-out infinite;
}

@keyframes c1Dot {
    0%, 100% {
        transform: scale(1);
        opacity: .9
    }
    50% {
        transform: scale(1.15);
        opacity: 1
    }
}

.rm-clar-qtext {
    font-weight: 800;
    letter-spacing: -.01em
}

.rm-clar-chev {
    margin-left: auto;
    opacity: .85;
    transition: transform 0.3s ease-in-out;
}

.rm-clar-a {
    display: none;
    padding: 0 16px 16px 38px;
    line-height: 1.6;
}

.rm-clar-item.rm-open .rm-clar-chev {
    transform: rotate(180deg);
}

.rm-clar-item.rm-open .rm-clar-a {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .rm-clar::before, .rm-clar-dot {
        animation: none;
    }
}

.rm-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rm-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #A6452D;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rm-logo:hover {
    color: #8F3B26;
}

.rm-nav {
    display: flex;
}

.rm-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(16px * 1.5);
}

.rm-nav-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    padding: calc(20px / 2) calc(24px / 2);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.rm-nav-link:hover {
    color: #8F3B26;
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
    background-color: transparent;
}

.rm-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.rm-burger-ico::before,
.rm-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.rm-burger-ico::before {
    top: -8px;
}

.rm-burger-ico::after {
    bottom: -8px;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico {
    background-color: transparent;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 767px) {
    .rm-burger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: calc(20px * 2) 24px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-nav-list {
        flex-direction: column;
        gap: 16px;
        margin-top: calc(20px * 3);
    }

    .rm-nav-link {
        display: block;
        padding: 20px 24px;
        border-radius: 12px;
    }

    .rm-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
    }

    .rm-nav.rm-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.rm-foot {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
}

.rm-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.rm-foot-sec {
    display: flex;
    flex-direction: column;
}

.rm-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.rm-foot-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.rm-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.rm-foot-nav,
.rm-foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-foot-nav li,
.rm-foot-social li {
    margin-bottom: 0.6rem;
}

.rm-foot-nav a,
.rm-foot-social a,
.rm-foot-contact a,
.rm-foot-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-foot-nav a:hover,
.rm-foot-social a:hover,
.rm-foot-contact a:hover,
.rm-foot-legal a:hover {
    color: #007bff;
    text-decoration: underline;
}

.rm-foot-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.rm-foot-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rm-foot-copy {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rm-foot-legal {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .rm-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rm-foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rm-foot-legal {
        justify-content: center;
    }
}



.rm-partners {

    color: #212529;
    background: #FFFFFF;
    padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
}

.rm-partners .rm-partners-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-partners .rm-partners-title {
    font-size: clamp(28px, 5vw, 48px);
    text-align: center;
    margin: 0 0 clamp(48px, 7vw, 72px);
    color: #212529;
}

.rm-partners .rm-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: clamp(32px, 5vw, 48px);
}

.rm-partners .rm-partners-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E9ECEF;
    text-align: center;
}

.rm-partners .rm-partners-logo img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.rm-partners .rm-partners-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rm-partners .rm-partners-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rm-partners .rm-partners-body h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin: 0 0 0.75rem;
    color: #212529;
}

.rm-partners .rm-partners-body {
    padding: clamp(32px, 5vw, 40px);

}

.rm-partners .rm-partners-body p {
    font-size: clamp(15px, 2.2vw, 17px);
    line-height: 1.6;
    color: #6C757D;
    margin: 0;
}

.rm-faq {

    background: #fff;
    color: #212529;
    padding: clamp(16px, 3vw, 40px);
}

.rm-faq .rm-faq-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-faq .rm-faq-row {
    border-bottom: 1px solid rgba(166, 69, 45, 0.3);
    padding: .8rem 0;
}

.rm-faq .rm-faq-q {
    font-size: 22px;
    cursor: pointer;
    background: #FFFFFF;
    color: #212529;
    border: 0;
    width: 100%;
    text-align: left;
    padding: .8rem 1rem;
    border-radius: 12px;
}

.rm-faq .rm-faq-a {
    display: none;
    padding: .6rem 1rem;
    color: #6C757D;
}

.rm-id {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    color: #FFFFFF;
    padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
    position: relative;
    overflow: hidden;
}

.rm-id::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(166, 69, 45, 0.35), transparent 40%);
    opacity: 0.8;
    pointer-events: none;
}

.rm-id-in {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rm-id-head {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
    transform: translateY(-20px);
}

.rm-id-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    color: #A6452D;
    margin: 0 0 0.75rem;
}

.rm-id h2 {
    font-size: clamp(36px, 5vw, 60px);
    margin: 0 0 1rem;
    color: #212529;
}

.rm-id-lead {
    margin: 0 auto;
    max-width: 720px;
    color: #6C757D;
    font-size: clamp(18px, 2.4vw, 22px);
}

.rm-id-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 32px);
}

.rm-id-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(233, 236, 239, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    transform: translateY(30px);
    color: #212529;
}

.rm-id-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(166, 69, 45, 0.25), rgba(166, 69, 45, 0));


    mask-composite: exclude;
    pointer-events: none;
}

.rm-id-icon {
    width: 64px;
    height: 64px;
    border-radius: 24px;
    background: rgba(166, 69, 45, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 1.25rem;
    color: #A6452D;
}

.rm-id-meta {
    margin-bottom: 0.75rem;
}

.rm-id-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #A6452D;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rm-id-card h3 {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(20px, 2.4vw, 26px);
    color: #212529;
}

.rm-id-body {
    margin: 0 0 1.25rem;
    color: #6C757D;
}

.rm-id-foot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #A6452D;
}

.rm-id-foot::before {
    content: "";
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, currentColor);
}

.rm-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rm-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #A6452D;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rm-logo:hover {
    color: #8F3B26;
}

.rm-nav {
    display: flex;
}

.rm-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(16px * 1.5);
}

.rm-nav-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    padding: calc(20px / 2) calc(24px / 2);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.rm-nav-link:hover {
    color: #8F3B26;
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
    background-color: transparent;
}

.rm-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.rm-burger-ico::before,
.rm-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.rm-burger-ico::before {
    top: -8px;
}

.rm-burger-ico::after {
    bottom: -8px;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico {
    background-color: transparent;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 767px) {
    .rm-burger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: calc(20px * 2) 24px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-nav-list {
        flex-direction: column;
        gap: 16px;
        margin-top: calc(20px * 3);
    }

    .rm-nav-link {
        display: block;
        padding: 20px 24px;
        border-radius: 12px;
    }

    .rm-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
    }

    .rm-nav.rm-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.rm-foot {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
}

.rm-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.rm-foot-sec {
    display: flex;
    flex-direction: column;
}

.rm-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.rm-foot-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.rm-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.rm-foot-nav,
.rm-foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-foot-nav li,
.rm-foot-social li {
    margin-bottom: 0.6rem;
}

.rm-foot-nav a,
.rm-foot-social a,
.rm-foot-contact a,
.rm-foot-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-foot-nav a:hover,
.rm-foot-social a:hover,
.rm-foot-contact a:hover,
.rm-foot-legal a:hover {
    color: #007bff;
    text-decoration: underline;
}

.rm-foot-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.rm-foot-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rm-foot-copy {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rm-foot-legal {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .rm-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rm-foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rm-foot-legal {
        justify-content: center;
    }
}



.rm-feed {
    background: #FFFFFF;
    color: #212529;
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
}

.rm-feed-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-feed-head {
    text-align: center;
    margin-bottom: clamp(22px, 5vw, 44px);

    transform: translateY(-18px);
}

.rm-feed-head h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 4.4vw, 44px);
    letter-spacing: -0.02em;
}

.rm-feed-head p {
    margin: 0;
    color: #6C757D;
}

.rm-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: clamp(14px, 2.6vw, 22px);
}

.rm-feed-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(233, 236, 239, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: clamp(18px, 3vw, 26px);

    transform: translateY(28px);
}

.rm-feed-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.rm-feed-who {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.rm-feed-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(166, 69, 45, 0.08);
    border: 1px solid #E9ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.rm-feed-who h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 20ch;
}

.rm-feed-who p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #6C757D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 26ch;
}

.rm-feed-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #F8F9FA;
    border: 1px solid #E9ECEF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex: 0 0 auto;
}

.rm-feed-stars {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #A6452D;
    line-height: 1;
}

.rm-feed-score {
    font-size: 12px;
    font-weight: 800;
    color: #212529;
}

.rm-feed-quote {
    margin: 14px 0 0;
    color: #212529;
    font-size: 14px;
    line-height: 1.65;
}

.rm-feed-badge {
    display: inline-flex;
    margin-top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #A6452D;
    color: #FFFFFF;
    border: 1px solid rgba(166, 69, 45, 0.3);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rm-two {
    padding: clamp(48px, 8vw, 80px) 0;
}

.rm-two-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.rm-two-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(16px * 2);
    align-items: start;
}

.rm-two--split .rm-two-text {
    padding: 0 0 0 0;
    border-left: 2px solid #E9ECEF;
    padding-left: 24px;
}

.rm-two--split .rm-two-text:first-child {
    border-left: 0;
    padding-left: 0;
}

.rm-two-text h2 {
    margin-bottom: 20px;
    color: #212529;
}

.rm-two-text p {
    margin-bottom: 20px;
    color: #6C757D;
}

.rm-cap {

    background: #F8F9FA;
    color: #343A40;
    padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
}

.rm-cap .rm-cap-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-cap .rm-cap-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 72px);

}

.rm-cap h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin: 0 0 1rem;
}

.rm-cap .rm-cap-sub {
    font-size: clamp(16px, 2vw, 20px);
    margin: 0;
    color: #6C757D;
}

.rm-cap .rm-cap-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: clamp(24px, 4vw, 48px);
    position: relative;
}

.rm-cap .rm-cap-step {
    position: relative;

    transform: translateY(30px);
}

.rm-cap .rm-cap-num {
    width: 56px;
    height: 56px;
    background: #A6452D;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.rm-cap .rm-cap-num::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: #A6452D;
    opacity: 0.2;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.5);

    }
}

.rm-cap .rm-cap-box {
    background: #FFFFFF;
    border: 2px solid #E9ECEF;
    border-radius: 16px;
    padding: clamp(24px, 3vw, 32px);
    text-align: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.rm-cap .rm-cap-step:hover .rm-cap-box {
    border-color: #A6452D;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.rm-cap .rm-cap-box h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    margin: 0 0 1rem;
    color: #212529;
}

.rm-cap .rm-cap-box p {
    margin: 0;
    color: #6C757D;
    line-height: 1.6;
}

.rm-cap .rm-cap-arrow {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    font-size: 32px;
    color: #A6452D;
    opacity: 0.5;
}

.rm-cap .rm-cap-step:last-child .rm-cap-arrow {
    display: none;
}

@media (min-width: 768px) {
    .rm-cap .rm-cap-arrow {
        bottom: auto;
        top: 50%;
        left: auto;
        right: -40px;
        transform: translateY(-50%) rotate(0deg);
    }
}

.rm-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rm-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #A6452D;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rm-logo:hover {
    color: #8F3B26;
}

.rm-nav {
    display: flex;
}

.rm-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(16px * 1.5);
}

.rm-nav-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    padding: calc(20px / 2) calc(24px / 2);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.rm-nav-link:hover {
    color: #8F3B26;
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
    background-color: transparent;
}

.rm-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.rm-burger-ico::before,
.rm-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.rm-burger-ico::before {
    top: -8px;
}

.rm-burger-ico::after {
    bottom: -8px;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico {
    background-color: transparent;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 767px) {
    .rm-burger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: calc(20px * 2) 24px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-nav-list {
        flex-direction: column;
        gap: 16px;
        margin-top: calc(20px * 3);
    }

    .rm-nav-link {
        display: block;
        padding: 20px 24px;
        border-radius: 12px;
    }

    .rm-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
    }

    .rm-nav.rm-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.rm-foot {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
}

.rm-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.rm-foot-sec {
    display: flex;
    flex-direction: column;
}

.rm-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.rm-foot-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.rm-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.rm-foot-nav,
.rm-foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-foot-nav li,
.rm-foot-social li {
    margin-bottom: 0.6rem;
}

.rm-foot-nav a,
.rm-foot-social a,
.rm-foot-contact a,
.rm-foot-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-foot-nav a:hover,
.rm-foot-social a:hover,
.rm-foot-contact a:hover,
.rm-foot-legal a:hover {
    color: #007bff;
    text-decoration: underline;
}

.rm-foot-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.rm-foot-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rm-foot-copy {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rm-foot-legal {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .rm-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rm-foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rm-foot-legal {
        justify-content: center;
    }
}



.rm-contacts--color {
    position: relative;
    overflow: hidden;
    padding: 56px 20px;
    background: radial-gradient(80% 120% at 10% 20%, rgba(255, 255, 255, 0.25), transparent 60%),
    radial-gradient(70% 120% at 90% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    #A6452D;
    color: #FFFFFF;

}

.rm-contacts--color::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 55%);
    pointer-events: none;
}

.rm-contacts-in {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.rm-contacts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.rm-contacts-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(9, 12, 22, 0.2);
    transition: transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.rm-contacts-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(9, 12, 22, 0.28);
}

.rm-contacts-label {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.rm-contacts-value {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .rm-contacts-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

.rm-form-section {

    background: #fff;
    color: #212529;
    padding: clamp(16px, 3vw, 40px);
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.rm-form-section .rm-form-wrap {
    max-width: min(720px, 1200px);
    margin: 0 auto;
}

.rm-form-section .rm-form-head h2 {
    margin: 0 0 .25rem;
    font-size: clamp(22px, 4vw, 36px);
    color: black
}

.rm-form-section .rm-form-head p {
    margin: 1rem 0;
    color: #6C757D;
}

.rm-form-section .rm-form {
    display: grid;
    gap: 12px;
}

.rm-form-section .rm-form-row {
    display: grid;
    gap: 6px;
}

.rm-form-section label {
    font-size: .9rem;
    opacity: .85;
}

.rm-form-section input:not([type="checkbox"]), .rm-form-section textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid rgba(166, 69, 45, 0.3);
    border-radius: 12px;
    background: #fff;
    transition: box-shadow .2s, transform .15s;
    box-sizing: border-box;
}

.rm-form-section input:focus, .rm-form-section textarea:focus {
    box-shadow: 0 0 0 3px rgba(166, 69, 45, 0.08);
    transform: translateY(-1px);
    outline: none;
}

.rm-form-section .rm-agree {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: #6C757D;
}

.rm-form-section button {
    padding: .9rem 1.2rem;
    border-radius: 16px;
    background: #A6452D;
    color: #FFFFFF;
    border: 0;
    cursor: pointer;
    transition: transform .2s;
}

.rm-form-section button:hover {
    transform: translateY(-2px);
}

.rm-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rm-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #A6452D;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rm-logo:hover {
    color: #8F3B26;
}

.rm-nav {
    display: flex;
}

.rm-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(16px * 1.5);
}

.rm-nav-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    padding: calc(20px / 2) calc(24px / 2);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.rm-nav-link:hover {
    color: #8F3B26;
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
    background-color: transparent;
}

.rm-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.rm-burger-ico::before,
.rm-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.rm-burger-ico::before {
    top: -8px;
}

.rm-burger-ico::after {
    bottom: -8px;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico {
    background-color: transparent;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 767px) {
    .rm-burger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: calc(20px * 2) 24px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-nav-list {
        flex-direction: column;
        gap: 16px;
        margin-top: calc(20px * 3);
    }

    .rm-nav-link {
        display: block;
        padding: 20px 24px;
        border-radius: 12px;
    }

    .rm-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
    }

    .rm-nav.rm-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.rm-foot {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
}

.rm-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.rm-foot-sec {
    display: flex;
    flex-direction: column;
}

.rm-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.rm-foot-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.rm-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.rm-foot-nav,
.rm-foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-foot-nav li,
.rm-foot-social li {
    margin-bottom: 0.6rem;
}

.rm-foot-nav a,
.rm-foot-social a,
.rm-foot-contact a,
.rm-foot-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-foot-nav a:hover,
.rm-foot-social a:hover,
.rm-foot-contact a:hover,
.rm-foot-legal a:hover {
    color: #007bff;
    text-decoration: underline;
}

.rm-foot-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.rm-foot-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rm-foot-copy {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rm-foot-legal {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .rm-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rm-foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rm-foot-legal {
        justify-content: center;
    }
}



.rm-policy {

    background: #FFFFFF;
    color: #212529;
    padding: clamp(16px, 3vw, 40px);
}

.rm-policy-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-policy-title {
    text-align: center;
    margin-bottom: 3rem;
}

.rm-policy-title h1 {
    margin: 0 0 .5rem;
    font-size: clamp(28px, 5vw, 48px);
    color: #212529;
}

.rm-policy-title p {
    margin: 0;
    font-size: 16px;
    color: #6C757D;
}

.rm-policy-items {
    display: grid;
    gap: 1.5rem;
}

.rm-policy-item {
    color: #000;
}

.rm-policy-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rm-policy-mark {
    width: 8px;
    height: 8px;
    background: #A6452D;
    border-radius: 50%;
    flex-shrink: 0;
}

.rm-policy-head h3 {
    margin: 0;
    font-size: clamp(20px, 3vw, 26px);
}

.rm-policy-body p {
    margin: 0;
    font-size: 1rem;
    opacity: .95;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .rm-policy-item {
        padding: 1.5rem;
    }
}

.rm-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rm-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #A6452D;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rm-logo:hover {
    color: #8F3B26;
}

.rm-nav {
    display: flex;
}

.rm-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(16px * 1.5);
}

.rm-nav-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    padding: calc(20px / 2) calc(24px / 2);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.rm-nav-link:hover {
    color: #8F3B26;
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
    background-color: transparent;
}

.rm-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.rm-burger-ico::before,
.rm-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.rm-burger-ico::before {
    top: -8px;
}

.rm-burger-ico::after {
    bottom: -8px;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico {
    background-color: transparent;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 767px) {
    .rm-burger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: calc(20px * 2) 24px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-nav-list {
        flex-direction: column;
        gap: 16px;
        margin-top: calc(20px * 3);
    }

    .rm-nav-link {
        display: block;
        padding: 20px 24px;
        border-radius: 12px;
    }

    .rm-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
    }

    .rm-nav.rm-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.rm-foot {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
}

.rm-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.rm-foot-sec {
    display: flex;
    flex-direction: column;
}

.rm-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.rm-foot-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.rm-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.rm-foot-nav,
.rm-foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-foot-nav li,
.rm-foot-social li {
    margin-bottom: 0.6rem;
}

.rm-foot-nav a,
.rm-foot-social a,
.rm-foot-contact a,
.rm-foot-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-foot-nav a:hover,
.rm-foot-social a:hover,
.rm-foot-contact a:hover,
.rm-foot-legal a:hover {
    color: #007bff;
    text-decoration: underline;
}

.rm-foot-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.rm-foot-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rm-foot-copy {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rm-foot-legal {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .rm-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rm-foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rm-foot-legal {
        justify-content: center;
    }
}



.rm-terms--color {
    padding: 56px 20px;
    background: #212529;
    color: #FFFFFF;
}

.rm-terms-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-terms-title {
    margin: 0 0 10px;
    font-size: clamp(22px, 3.5vw, 28px);
    color: #FFFFFF;
}

.rm-terms-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 10px;
}

.rm-terms-item h3 {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

.rm-terms-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #E9ECEF;
}

.rm-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rm-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #A6452D;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rm-logo:hover {
    color: #8F3B26;
}

.rm-nav {
    display: flex;
}

.rm-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(16px * 1.5);
}

.rm-nav-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    padding: calc(20px / 2) calc(24px / 2);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.rm-nav-link:hover {
    color: #8F3B26;
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
    background-color: transparent;
}

.rm-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.rm-burger-ico::before,
.rm-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.rm-burger-ico::before {
    top: -8px;
}

.rm-burger-ico::after {
    bottom: -8px;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico {
    background-color: transparent;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 767px) {
    .rm-burger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: calc(20px * 2) 24px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-nav-list {
        flex-direction: column;
        gap: 16px;
        margin-top: calc(20px * 3);
    }

    .rm-nav-link {
        display: block;
        padding: 20px 24px;
        border-radius: 12px;
    }

    .rm-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
    }

    .rm-nav.rm-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.rm-foot {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
}

.rm-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.rm-foot-sec {
    display: flex;
    flex-direction: column;
}

.rm-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.rm-foot-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.rm-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.rm-foot-nav,
.rm-foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-foot-nav li,
.rm-foot-social li {
    margin-bottom: 0.6rem;
}

.rm-foot-nav a,
.rm-foot-social a,
.rm-foot-contact a,
.rm-foot-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-foot-nav a:hover,
.rm-foot-social a:hover,
.rm-foot-contact a:hover,
.rm-foot-legal a:hover {
    color: #007bff;
    text-decoration: underline;
}

.rm-foot-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.rm-foot-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rm-foot-copy {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rm-foot-legal {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .rm-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rm-foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rm-foot-legal {
        justify-content: center;
    }
}



.rm-thanks {

    background: #F8F9FA;
    color: #343A40;
    padding: clamp(32px, 7vw, 80px) clamp(16px, 4vw, 56px);
}

.rm-thanks-in {
    max-width: 1200px;
    margin: 0 auto;
}

.rm-thanks-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
}

.rm-thanks-body h1 {
    font-size: clamp(26px, 4.5vw, 38px);
    margin: 0 0 0.75rem;
}

.rm-thanks-body p {
    margin: 0 0 1.75rem;
    opacity: 0.9;
}

.rm-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rm-thanks-btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.85rem 1.3rem;
    border-radius: 16px;
    font-weight: 500;
    transition: background 0.3s ease-in-out,
    color 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.rm-thanks-btn--main {
    background: #A6452D;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-thanks-btn--main:hover {
    background: #8F3B26;
    transform: translateY(-2px);
}

.rm-thanks-btn--ghost {
    background: transparent;
    color: #212529;
    border: 1px solid #E9ECEF;
}

.rm-thanks-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.rm-thanks-panel {
    background: #FFFFFF;
    color: #212529;
    border-radius: 24px;
    padding: 1.5rem 1.7rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #E9ECEF;
}

.rm-thanks-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.rm-thanks-row--muted {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .rm-thanks-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .rm-thanks-actions {
        flex-direction: column;
    }

    .rm-thanks-btn {
        width: 100%;
        text-align: center;
    }
}

.rm-head {
    background-color: #FFFFFF;
    color: #212529;
    border-bottom: 1px solid #E9ECEF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rm-head-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rm-logo {
    font-size: calc(16px * 1.5);
    font-weight: 700;
    color: #A6452D;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rm-logo:hover {
    color: #8F3B26;
}

.rm-nav {
    display: flex;
}

.rm-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(16px * 1.5);
}

.rm-nav-link {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    padding: calc(20px / 2) calc(24px / 2);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.rm-nav-link:hover {
    color: #8F3B26;
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(20px / 2);
    border-radius: 8px;
    background-color: transparent;
}

.rm-burger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.rm-burger-ico {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #212529;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}

.rm-burger-ico::before,
.rm-burger-ico::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #212529;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.rm-burger-ico::before {
    top: -8px;
}

.rm-burger-ico::after {
    bottom: -8px;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico {
    background-color: transparent;
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::before {
    transform: rotate(45deg) translate(5px, 6px);
}

.rm-burger[aria-expanded="true"] .rm-burger-ico::after {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 767px) {
    .rm-burger {
        display: block;
    }

    .rm-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        padding: calc(20px * 2) 24px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .rm-nav.rm-open {
        right: 0;
    }

    .rm-nav-list {
        flex-direction: column;
        gap: 16px;
        margin-top: calc(20px * 3);
    }

    .rm-nav-link {
        display: block;
        padding: 20px 24px;
        border-radius: 12px;
    }

    .rm-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: -1;
    }

    .rm-nav.rm-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.rm-foot {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
}

.rm-foot-in {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.rm-foot-sec {
    display: flex;
    flex-direction: column;
}

.rm-foot-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.rm-foot-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.rm-foot-sec h3 {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    color: #495057;
}

.rm-foot-nav,
.rm-foot-social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rm-foot-nav li,
.rm-foot-social li {
    margin-bottom: 0.6rem;
}

.rm-foot-nav a,
.rm-foot-social a,
.rm-foot-contact a,
.rm-foot-legal a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-foot-nav a:hover,
.rm-foot-social a:hover,
.rm-foot-contact a:hover,
.rm-foot-legal a:hover {
    color: #007bff;
    text-decoration: underline;
}

.rm-foot-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.rm-foot-bottom {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rm-foot-copy {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rm-foot-legal {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .rm-foot-in {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rm-foot-bottom {
        flex-direction: column;
        text-align: center;
    }

    .rm-foot-legal {
        justify-content: center;
    }
}



.rm-404 {

    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    color: #FFFFFF;
    padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
}

.rm-404-in {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.rm-404-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #212529;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.rm-404 h1 {
    font-size: clamp(32px, 6vw, 56px);
    margin: 0 0 0.5rem;
    color: #212529;
}

.rm-404-sub {
    margin: 0 0 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    color: #6C757D;
}

.rm-404-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    background: rgba(166, 69, 45, 0.08);
    color: #A6452D;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.rm-404-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.rm-404-btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.9rem 1.4rem;
    border-radius: 16px;
    font-weight: 500;
    transition: transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    background 0.3s ease-in-out,
    color 0.3s ease-in-out;
}

.rm-404-btn--main {
    background: #A6452D;
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.rm-404-btn--main:hover {
    transform: translateY(-2px);
    background: #8F3B26;
}

.error-404__btn--ghost {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.error-404__btn--ghost:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
    .rm-404-actions {
        flex-direction: column;
    }

    .rm-404-btn {
        width: 100%;
        text-align: center;
    }
}

.rm-cookie {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    z-index: 1000;
    background: #A6452D;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    padding: clamp(18px, 3vw, 28px);
    border-radius: 24px;
}

.rm-cookie-in {
    display: grid;
    gap: 1.5rem;
}

.rm-cookie-text strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.rm-cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #FFFFFF;
    opacity: 0.95;
    line-height: 1.6;
}

.rm-cookie-ctl {
    display: flex;
    gap: 0.85rem;
}

.rm-cookie-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #FFFFFF;
    border-radius: 16px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all .25s;
    font-weight: 500;
    width: 100%;
}

.rm-cookie-accept {
    background: #FFFFFF;
    color: #A6452D;
    border-color: #FFFFFF;
}

.rm-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

.rm-cookie-reject {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.rm-cookie-reject:hover {
    background: rgba(255, 255, 255, .15);
}

.rm-cookie-manage {
    background: rgba(255, 255, 255, .1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, .3);
}

.rm-cookie-manage:hover {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .5);
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {

        transform: translateY(20px);
    }
}

@media (max-width: 767px) {
    .rm-cookie {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
    }

    .rm-cookie-ctl {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rm-cookie-btn {
        flex: 1;
        min-width: 0;
    }
}