:root {
    --rr-bg: #ececec;
    --rr-bg-soft: #f7f7f7;
    --rr-white: #ffffff;
    --rr-ink: #1f2327;
    --rr-ink-soft: #5f666d;
    --rr-line: rgba(31, 35, 39, 0.10);
    --rr-grey-1: #d9dbde;
    --rr-grey-2: #b7bcc2;
    --rr-grey-3: #848b92;
    --rr-grey-4: #4e565e;
    --rr-grey-5: #2c3136;
    --rr-orange: #f08a2b;
    --rr-orange-strong: #d87214;
    --rr-orange-soft: rgba(240, 138, 43, 0.14);
    --rr-shadow-lg: 0 28px 70px rgba(17, 20, 23, 0.12);
    --rr-shadow-md: 0 16px 40px rgba(17, 20, 23, 0.08);
    --rr-shadow-sm: 0 10px 24px rgba(17, 20, 23, 0.06);
    --rr-radius-xl: 34px;
    --rr-radius-lg: 26px;
    --rr-radius-md: 18px;
    --rr-radius-pill: 999px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    image-rendering: auto;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: #666d74;
    border-radius: 10px;
    border: 2px solid #dcdfe2;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #eef0f2;
}

.rr-home {
    background: linear-gradient(180deg, #e7e8ea 0%, #f2f3f4 22%, #f8f8f8 100%);
    color: var(--rr-ink);
    overflow-x: hidden;
}

.rr-home * {
    box-sizing: border-box;
}

.rr-home h1,
.rr-home h2,
.rr-home h3,
.rr-home p {
    margin: 0;
}

.rr-site {
    display: grid;
    gap: 0;
}

.rr-shell {
    width: min(1280px, 92vw);
    margin-inline: auto;
}

.rr-section-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rr-orange-strong);
}

.rr-section-tag-light {
    color: rgba(255,255,255,.78);
}

/* HERO */

.rr-hero {
    position: relative;
    padding: 34px 0 64px;
    overflow: hidden;
}

.rr-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: -12vw;
    width: 42vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(44,49,54,.08), rgba(44,49,54,0));
    transform: skewX(-18deg);
    pointer-events: none;
}

.rr-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(31,35,39,.14), transparent);
}

.rr-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: 34px;
    align-items: center;
}

.rr-hero-copy {
    display: grid;
    gap: 22px;
    padding: 18px 0;
}

.rr-overline {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--rr-ink-soft);
}

.rr-hero-logo {
    width: clamp(190px, 22vw, 350px);
    filter: drop-shadow(0 14px 24px rgba(0,0,0,.10));
}

.rr-hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 5.6rem);
    line-height: .95;
    letter-spacing: -.05em;
    text-transform: uppercase;
    font-weight: 900;
    max-width: 10ch;
}

.rr-hero-text {
    max-width: 58ch;
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    line-height: 1.8;
    color: var(--rr-ink-soft);
}

.rr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7em;
    min-height: 56px;
    padding: 14px 22px;
    border-radius: var(--rr-radius-pill);
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: .2s ease;
    border: 1px solid transparent;
}

.rr-btn .material-icons {
    font-size: 1.1rem;
}

.rr-btn-primary {
    background: linear-gradient(135deg, var(--rr-orange), var(--rr-orange-strong));
    color: #fff;
    box-shadow: 0 14px 30px rgba(240,138,43,.24);
}

.rr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(240,138,43,.28);
}

.rr-btn-secondary {
    background: rgba(255,255,255,.72);
    color: var(--rr-grey-5);
    border-color: rgba(31,35,39,.12);
}

.rr-btn-secondary:hover {
    transform: translateY(-2px);
    background: #fff;
}

.rr-btn-light-fill {
    background: linear-gradient(135deg, var(--rr-orange), var(--rr-orange-strong));
    color: #fff;
}

.rr-btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.24);
}

.rr-btn-outline-light:hover {
    background: rgba(255,255,255,.10);
}

.rr-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rr-hero-points div {
    padding: 10px 14px;
    border-radius: var(--rr-radius-pill);
    background: rgba(255,255,255,.64);
    border: 1px solid rgba(31,35,39,.08);
    color: var(--rr-grey-5);
    font-size: .9rem;
    font-weight: 700;
}

.rr-hero-media {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: stretch;
}

.rr-hero-image {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    border-radius: var(--rr-radius-xl);
    box-shadow: var(--rr-shadow-lg);
    filter: grayscale(.18) contrast(1.04);
}

.rr-hero-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: min(360px, calc(100% - 44px));
    padding: 22px;
    border-radius: 24px;
    background: rgba(31,35,39,.88);
    color: #fff;
    box-shadow: 0 22px 44px rgba(0,0,0,.22);
    backdrop-filter: blur(8px);
}

.rr-card-label {
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: rgba(255,255,255,.66);
    margin-bottom: 10px;
}

.rr-hero-card strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 10px;
}

.rr-hero-card p:last-child {
    color: rgba(255,255,255,.78);
    line-height: 1.65;
}

/* REASSURE STRIP */

.rr-reassure-strip {
    padding: 0 0 72px;
}

.rr-reassure-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rr-mini-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: start;
    padding: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(31,35,39,.08);
    border-radius: 24px;
    box-shadow: var(--rr-shadow-sm);
}

.rr-mini-card .material-icons {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--rr-orange-soft);
    color: var(--rr-orange-strong);
    font-size: 28px;
}

.rr-mini-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    text-transform: uppercase;
}

.rr-mini-card p {
    color: var(--rr-ink-soft);
    line-height: 1.7;
}

/* HEADINGS */

.rr-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.rr-heading-center {
    text-align: center;
    justify-items: center;
}

.rr-heading h2,
.rr-method-copy h2,
.rr-local-copy h2,
.rr-map-copy h2,
.rr-cta-copy h2 {
    font-size: clamp(1.7rem, 3vw, 3.2rem);
    line-height: 1.03;
    letter-spacing: -.04em;
    text-transform: uppercase;
    font-weight: 900;
}

.rr-heading-text {
    max-width: 760px;
    color: var(--rr-ink-soft);
    line-height: 1.8;
}

/* SERVICES */

.rr-services-section {
    padding: 12px 0 72px;
}

.rr-services-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.rr-service {
    grid-column: span 4;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(31,35,39,.08);
    box-shadow: var(--rr-shadow-sm);
    display: grid;
}

.rr-service-large {
    grid-column: span 8;
    grid-template-columns: 1.05fr .95fr;
}

.rr-service-dark {
    background: linear-gradient(135deg, #2d3136, #454b53);
    color: #fff;
}

.rr-service-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    filter: grayscale(.10) contrast(1.02);
}

.rr-service-body {
    padding: 24px;
    display: grid;
    align-content: start;
    gap: 12px;
}

.rr-service-number {
    display: inline-flex;
    width: fit-content;
    min-width: 52px;
    justify-content: center;
    padding: 8px 12px;
    border-radius: var(--rr-radius-pill);
    background: var(--rr-orange-soft);
    color: var(--rr-orange-strong);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.rr-service-dark .rr-service-number {
    background: rgba(240,138,43,.16);
    color: #ffb267;
}

.rr-service h3 {
    font-size: 1.4rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 900;
}

.rr-service p {
    color: var(--rr-ink-soft);
    line-height: 1.75;
}

.rr-service-dark p,
.rr-service-dark h3 {
    color: #fff;
}

.rr-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 6px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 2px solid rgba(240,138,43,.88);
    padding-bottom: 4px;
}

/* METHOD */

.rr-method {
    padding: 0 0 72px;
}

.rr-method-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 24px;
    align-items: start;
}

.rr-method-copy {
    display: grid;
    gap: 14px;
}

.rr-method-copy p:last-child {
    color: var(--rr-ink-soft);
    line-height: 1.8;
}

.rr-steps {
    display: grid;
    gap: 14px;
}

.rr-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 14px;
    align-items: start;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(31,35,39,.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--rr-shadow-sm);
}

.rr-step span {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--rr-grey-5);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.rr-step strong {
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-size: 1rem;
}

.rr-step p {
    color: var(--rr-ink-soft);
    line-height: 1.7;
}

/* TRUST */

.rr-trust-section {
    padding: 0 0 72px;
}

.rr-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.rr-trust-card {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(31,35,39,.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--rr-shadow-sm);
}

.rr-trust-card h3 {
    font-size: 1.08rem;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 10px;
}

.rr-trust-card p {
    color: var(--rr-ink-soft);
    line-height: 1.75;
}

/* LOCAL */

.rr-local {
    padding: 0 0 72px;
}

.rr-local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.rr-local-visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--rr-shadow-md);
    filter: grayscale(.14) contrast(1.03);
}

.rr-local-copy {
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
    border: 1px solid rgba(31,35,39,.08);
    border-radius: 30px;
    box-shadow: var(--rr-shadow-sm);
    padding: 34px;
    display: grid;
    align-content: center;
    gap: 16px;
}

.rr-local-copy p:not(.rr-section-tag) {
    color: var(--rr-ink-soft);
    line-height: 1.82;
}

.rr-local-points {
    margin-top: 10px;
    display: grid;
    gap: 16px;
}

.rr-local-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--rr-ink);
    text-transform: uppercase;
    font-size: .96rem;
}

.rr-local-points a {
    font-weight: 700;
    color: var(--rr-ink);
}

/* MAP */

.rr-map-section {
    padding: 0 0 72px;
}

.rr-map-box {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 20px;
    align-items: stretch;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(31,35,39,.08);
    border-radius: 30px;
    box-shadow: var(--rr-shadow-sm);
    padding: 28px;
}

.rr-map-copy {
    display: grid;
    align-content: center;
    gap: 14px;
}

.rr-map-copy p:last-child {
    color: var(--rr-ink-soft);
    line-height: 1.82;
}

.rr-map-frame iframe {
    display: block;
    width: 100%;
    border-radius: 22px;
}

/* CTA */

.rr-cta {
    padding: 0 0 96px;
}

.rr-cta-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: center;
    border-radius: 34px;
    padding: 36px;
    background: linear-gradient(135deg, #2e3338 0%, #464d55 100%);
    color: #fff;
    box-shadow: var(--rr-shadow-lg);
}

.rr-cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: rgba(240,138,43,.18);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.rr-cta-copy,
.rr-cta-actions {
    position: relative;
    z-index: 1;
}

.rr-cta-copy {
    display: grid;
    gap: 14px;
}

.rr-cta-copy p:last-child {
    color: rgba(255,255,255,.82);
    line-height: 1.8;
}

.rr-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

/* FLOAT */

.rr-call-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: var(--rr-radius-pill);
    background: linear-gradient(135deg, var(--rr-orange), var(--rr-orange-strong));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
    transition: .2s ease;
}

.rr-call-float:hover {
    transform: translateY(-2px);
}

.rr-call-float .material-icons {
    font-size: 1.2rem;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .rr-reassure-strip-grid,
    .rr-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rr-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rr-service,
    .rr-service-large {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .rr-hero-grid,
    .rr-method-grid,
    .rr-local-grid,
    .rr-map-box,
    .rr-cta-box {
        grid-template-columns: 1fr;
    }

    .rr-hero-copy h1 {
        max-width: none;
    }

    .rr-hero-media,
    .rr-hero-image {
        min-height: 460px;
    }
}

@media (max-width: 680px) {
    .rr-shell {
        width: min(94vw, 94vw);
    }

    .rr-hero {
        padding: 18px 0 46px;
    }

    .rr-hero-copy h1,
    .rr-heading h2,
    .rr-method-copy h2,
    .rr-local-copy h2,
    .rr-map-copy h2,
    .rr-cta-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.02;
    }

    .rr-hero-actions,
    .rr-cta-actions {
        flex-direction: column;
    }

    .rr-btn {
        width: 100%;
    }

    .rr-hero-points,
    .rr-reassure-strip-grid,
    .rr-trust-grid,
    .rr-services-grid {
        grid-template-columns: 1fr;
    }

    .rr-hero-media,
    .rr-hero-image {
        min-height: 360px;
    }

    .rr-hero-card {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .rr-local-copy,
    .rr-map-box,
    .rr-cta-box {
        padding: 22px;
    }

    .rr-mini-card,
    .rr-trust-card,
    .rr-service-body,
    .rr-step {
        padding: 18px;
    }

    .rr-call-float {
        right: 12px;
        left: 12px;
        bottom: 12px;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rr-btn,
    .rr-call-float {
        transition: none !important;
    }
}

