:root {
    --rrz-color-ink: #14153F;
    --rrz-color-magenta: #972763;
    --rrz-color-gold: #DA9121;
    --rrz-color-amber: #F4B73D;
    --rrz-color-cyan: #54B3CD;
    --rrz-color-sky: #AAC2DB;
    --rrz-color-black: #000000;
    --rrz-color-white: #ffffff;
    --rrz-color-charcoal: #232329;
    --rrz-navy: #001B36;
    --rrz-navy-2: #00142A;
    --rrz-cream: #FBF6EE;
    --rrz-soft: #F7F8FA;
    --rrz-line: #E5E9F0;
    --rrz-muted: #5D6675;
    --rrz-shadow: 0 20px 60px rgba(0, 27, 54, 0.12);
    --rrz-radius: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Lora, serif !important;
}

body, p, a, span, li, div, button {
    font-family: Nunito, sans-serif !important;
}

.curvy-font,
.handwritten-word {
    font-family: Caveat, cursive !important;
}

a {
    color: var(--rrz-color-amber);
}
a:hover {
    color: var(--rrz-color-gold);
}


/* =========================================================
   RRZ CUSTOM HEADER
========================================================= */


.rrz-navbar__logo {
    display: block;
    width: auto;
    max-height: 54px;
    object-fit: contain;
}

.rrz-navbar__brand {
    max-width: 220px;
}

@media (max-width: 767.98px) {
    .rrz-navbar__logo {
        max-height: 46px;
    }

    .rrz-navbar__brand {
        max-width: 180px;
    }
}

.rrz-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(0, 27, 54, 0.86);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(0, 27, 54, 0.16);
}

.rrz-navbar {
    min-height: 86px;
    padding: 14px 0;
}

.rrz-navbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--rrz-color-white);
    text-decoration: none;
    font-weight: 900;
}

.rrz-navbar__brand:hover {
    color: var(--rrz-color-white);
}

.rrz-navbar__brand img,
.rrz-navbar__brand .custom-logo {
    width: auto;
    max-height: 35px;
}

.rrz-navbar__logo-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: #06101D;
    background: linear-gradient(135deg, var(--rrz-color-amber), var(--rrz-color-gold));
    box-shadow: 0 14px 30px rgba(244, 183, 61, 0.22);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.rrz-navbar__logo-text {
    color: var(--rrz-color-white);
    font-size: 18px;
    font-weight: 600;
}

.rrz-navbar__menu {
    gap: 4px;
}

.rrz-navbar__menu .nav-link {
    position: relative;
    padding: 12px 14px !important;
    color: rgba(255,255,255,0.76) !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition:
        color 220ms ease,
        transform 220ms ease;
}

.rrz-navbar__menu .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 3px;
    border-radius: 999px;
    background: var(--rrz-color-amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.rrz-navbar__menu .nav-link:hover,
.rrz-navbar__menu .current-menu-item > .nav-link,
.rrz-navbar__menu .current_page_item > .nav-link {
    color: var(--rrz-color-white) !important;
    transform: translateY(-1px);
}

.rrz-navbar__menu .nav-link:hover::after,
.rrz-navbar__menu .current-menu-item > .nav-link::after,
.rrz-navbar__menu .current_page_item > .nav-link::after {
    transform: scaleX(1);
}

.rrz-navbar__cta {
    min-height: 48px;
    padding-inline: 20px;
    border-radius: 14px;
}

.rrz-navbar__toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    box-shadow: none !important;
}

.rrz-navbar__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--rrz-color-white);
}

/* Dropdowns */

.rrz-navbar .dropdown-menu {
    padding: 10px;
    border: 1px solid rgba(229, 233, 240, 0.9);
    border-radius: 18px;
    background: var(--rrz-color-white);
    box-shadow: 0 20px 50px rgba(0, 27, 54, 0.16);
}

.rrz-navbar .dropdown-item {
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--rrz-color-ink);
    font-size: 14px;
    font-weight: 800;
}

.rrz-navbar .dropdown-item:hover,
.rrz-navbar .dropdown-item:focus,
.rrz-navbar .dropdown-item.active {
    color: var(--rrz-color-ink);
    background: rgba(244, 183, 61, 0.16);
}

/* Mobile */

@media (max-width: 991.98px) {
    .rrz-navbar {
        min-height: 76px;
    }

    .rrz-navbar__collapse {
        margin-top: 16px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(0, 20, 42, 0.96);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 20px 50px rgba(0,0,0,0.22);
    }

    .rrz-navbar__menu {
        gap: 2px;
    }

    .rrz-navbar__menu .nav-link {
        padding: 13px 12px !important;
        border-radius: 14px;
    }

    .rrz-navbar__menu .nav-link::after {
        display: none;
    }

    .rrz-navbar__menu .nav-link:hover,
    .rrz-navbar__menu .current-menu-item > .nav-link,
    .rrz-navbar__menu .current_page_item > .nav-link {
        background: rgba(255,255,255,0.08);
    }

    .rrz-navbar__actions {
        margin-top: 16px;
    }

    .rrz-navbar__cta {
        width: 100%;
    }

    .rrz-navbar .dropdown-menu {
        margin-top: 6px;
        background: rgba(255,255,255,0.96);
    }
}










/* HERO */

.rrz-hero {
    position: relative;
    overflow: hidden;
    min-height: 82vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 82% 18%, rgba(84, 179, 205, 0.18), transparent 28%),
        radial-gradient(circle at 12% 20%, rgba(244, 183, 61, 0.13), transparent 26%),
        linear-gradient(135deg, var(--rrz-navy) 0%, var(--rrz-navy-2) 52%, #020A16 100%);
    color: var(--rrz-color-white);
    padding: 80px 0 66px;
}

.rrz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 88%);
    pointer-events: none;
}

.rrz-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 140px;
    background: linear-gradient(to top, rgba(0, 20, 42, 0.95), transparent);
    pointer-events: none;
}

.rrz-hero__bg-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.75;
    pointer-events: none;
}

.rrz-hero__bg-glow--one {
    width: 320px;
    height: 320px;
    left: -120px;
    top: 18%;
    background: rgba(151, 39, 99, 0.22);
}

.rrz-hero__bg-glow--two {
    width: 420px;
    height: 420px;
    right: -180px;
    top: 12%;
    background: rgba(84, 179, 205, 0.2);
}

.rrz-hero__content {
    position: relative;
    z-index: 2;
}

.rrz-hero__eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.rrz-hero__eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rrz-color-amber);
    box-shadow: 0 0 0 6px rgba(244, 183, 61, 0.13);
}

.rrz-hero__title {
    margin: 0;
    color: var(--rrz-color-white);
    font-size: clamp(46px, 5.4vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 800;
}

.rrz-hero__highlight-wrap {
    position: relative;
    display: inline-block;
    padding-inline: 4px;
}

.rrz-hero__highlight {
    position: relative;
    z-index: 2;
    color: var(--rrz-color-amber);
    font-size: 1.08em;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: 0 12px 30px rgba(244, 183, 61, 0.12);
}

.rrz-hero__underline {
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: -18px;
    width: 106%;
    height: 30px;
    z-index: 1;
    overflow: visible;
}

.rrz-hero__underline path {
    fill: none;
    stroke: var(--rrz-color-amber);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    filter: drop-shadow(0 8px 16px rgba(244, 183, 61, 0.18));
}

.rrz-hero.is-visible .rrz-hero__underline path {
    animation: rrzDrawUnderline 1s ease 0.85s forwards;
}

.rrz-hero__lead {
    margin: 32px 0 0;
    color: rgba(255,255,255,0.78);
    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.65;
    font-weight: 500;
}

.rrz-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.rrz-btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.rrz-btn span {
    transition: transform 220ms ease;
}

.rrz-btn:hover {
    transform: translateY(-3px);
}

.rrz-btn:hover span {
    transform: translateX(4px);
}

.rrz-btn--primary {
    color: #06101D;
    background: linear-gradient(135deg, var(--rrz-color-amber), var(--rrz-color-gold));
    box-shadow: 0 18px 40px rgba(244, 183, 61, 0.22);
}

.rrz-btn--primary:hover {
    color: #06101D;
    box-shadow: 0 22px 54px rgba(244, 183, 61, 0.32);
}

.rrz-btn--ghost {
    color: var(--rrz-color-white);
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
}

.rrz-btn--ghost:hover {
    color: var(--rrz-color-white);
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
}

.rrz-hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 34px;
}

.rrz-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.76);
    font-size: 14px;
    font-weight: 800;
}

.rrz-hero__trust-item span {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: var(--rrz-color-amber);
    border: 1px solid rgba(244, 183, 61, 0.55);
    background: rgba(244, 183, 61, 0.08);
    font-size: 13px;
}

/* VISUAL */

.rrz-hero__floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 285px;
    padding: 15px 17px;
    border-radius: 18px;
    color: var(--rrz-color-white);
    background: rgba(0, 27, 54, 0.78);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 18px 44px rgba(0,0,0,0.26);
    backdrop-filter: blur(16px);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.rrz-hero__floating-card--top {
    top: 30px;
    left: 28px;
}

.rrz-hero__floating-card--bottom {
    right: 28px;
    bottom: 30px;
}
/* =========================================================
   RRZ FULL WIDTH SERVICES MEGA MENU
========================================================= */

.rrz-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.rrz-navbar,
.rrz-navbar .container,
.rrz-navbar__menu .rrz-services-dropdown {
    position: static;
}

/* Main services dropdown panel */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu {
    display: none;
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    top: 100%;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 38px max(24px, calc((100vw - 1320px) / 2));
    border: 0;
    border-radius: 0 0 36px 36px;
    overflow: visible;
    transform: none !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 183, 61, 0.2), transparent 28%),
        radial-gradient(circle at 78% 18%, rgba(84, 179, 205, 0.22), transparent 26%),
        radial-gradient(circle at 10% 90%, rgba(151, 39, 99, 0.34), transparent 30%),
        linear-gradient(135deg, rgba(151, 39, 99, 0.98) 0%, rgba(20, 21, 63, 0.98) 52%, rgba(0, 27, 54, 0.98) 100%);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

/* Background grid */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 95%);
}

/* Invisible hover bridge to stop the menu closing on desktop */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -26px;
    height: 26px;
    background: transparent;
}

/* Desktop hover/focus open */
@media (min-width: 992px) {
    .rrz-navbar__menu .rrz-services-dropdown:hover > .dropdown-menu,
    .rrz-navbar__menu .rrz-services-dropdown:focus-within > .dropdown-menu {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px;
        animation: rrzMegaFadeDownFull 240ms ease forwards;
    }
}

/* First-level submenu items become columns */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li {
    position: relative;
    z-index: 2;
    display: block;
    min-width: 0;
}

/* Column heading links */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0;
    color: var(--rrz-color-white);
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    white-space: normal;
}



/* Nested submenu wrapper */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu {
    position: static !important;
    display: grid;
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none !important;
}

/* Nested service links */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu .dropdown-item,
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu a {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 11px;
    min-height: 54px;
    padding: 10px 12px;
    border-radius: 17px;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    white-space: normal;
    text-decoration: none;
    transition:
        background 220ms ease,
        color 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}



/* Nested service hover */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu .dropdown-item:hover,
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu .dropdown-item:focus,
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu a:hover,
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu a:focus {
    color: var(--rrz-color-white);
    background: rgba(255, 255, 255, 0.09);
    transform: translateX(4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
}

.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu .dropdown-item:hover::before,
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu a:hover::before {
    background: var(--rrz-color-amber);
    transform: rotate(-5deg) scale(1.06);
}

.dropdown-toggle::after {
    border-top: 0em solid !important;
}

/* Remove Bootstrap nested arrows inside mega menu */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu .dropdown-toggle::after {
    display: none;
}

/* Desktop animation */
@keyframes rrzMegaFadeDownFull {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   MOBILE SERVICES MENU FIXED SCROLL
========================================================= */

@media (max-width: 991.98px) {
    .rrz-site-header {
        max-height: 100vh;
    }

    .rrz-navbar {
        position: relative;
    }

    .rrz-navbar .container {
        position: relative;
    }

    .rrz-navbar__collapse {
        max-height: calc(100vh - 92px);
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding-bottom: 18px;
    }

    .rrz-navbar__menu {
        padding-bottom: 24px;
    }

    .rrz-navbar__menu .rrz-services-dropdown {
        position: relative;
    }

    .rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin: 8px 0 0;
        padding: 16px;
        border-radius: 22px;
        box-shadow: none;
        overflow: visible;
        transform: none !important;
        background:
            linear-gradient(135deg, rgba(151, 39, 99, 0.96), rgba(0, 27, 54, 0.96));
    }

    .rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu::after {
        display: none;
    }

    .rrz-navbar__menu .rrz-services-dropdown.show > .dropdown-menu,
    .rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu.show {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        z-index: 99999 !important;
        position: relative !important;
    }

    .rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > a {
        margin-bottom: 10px;
    }

    .rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu {
        display: grid;
        gap: 6px;
        padding-left: 10px;
    }

    .rrz-navbar__actions {
        position: sticky;
        bottom: 0;
        z-index: 3;
        margin-top: 8px;
        padding-top: 14px;
        padding-bottom: 6px;
        background: rgba(0, 20, 42, 0.96);
    }
}

/* =========================================================
   RRZ SERVICE MENU ITEM ICONS - BOOTSTRAP ICONS
========================================================= */

/* Default fallback icon */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu a::before,
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu .dropdown-item::before {
    content: "\F4FE";
    font-family: "bootstrap-icons";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #06101D;
    background: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    transition:
        background 220ms ease,
        transform 220ms ease;
}

/* Build & Development */
.rrz-service-icon-websites > a::before {
    content: "\F3EE" !important; /* globe */
}

.rrz-service-icon-software > a::before {
    content: "\F3E5" !important; /* gear */
}

.rrz-service-icon-mobile > a::before {
    content: "\F4E7" !important; /* phone */
}

.rrz-service-icon-webapp > a::before {
    content: "\F1C8" !important; /* display */
}

/* Design & Digital */
.rrz-service-icon-design > a::before {
    content: "\F4CA" !important; /* palette */
}

.rrz-service-icon-marketing > a::before {
    content: "\F201" !important; /* bar chart */
}

.rrz-service-icon-strategy > a::before {
    content: "\F14E" !important; /* compass */
}

.rrz-service-icon-comms > a::before {
    content: "\F268" !important; /* chat */
}

/* Infrastructure & Security */
.rrz-service-icon-hosting > a::before {
    content: "\F2C2" !important; /* cloud */
}

.rrz-service-icon-security > a::before {
    content: "\F47A" !important; /* shield lock */
}

.rrz-service-icon-support > a::before {
    content: "\F5DB" !important; /* tools */
}

.rrz-service-icon-api > a::before {
    content: "\F1C6" !important; /* code slash */
}

/* Specialist Solutions */
.rrz-service-icon-geo > a::before {
    content: "\F3E8" !important; /* geo alt */
}

.rrz-service-icon-surveying > a::before {
    content: "\F545" !important; /* rulers */
}

.rrz-service-icon-automation > a::before {
    content: "\F3E2" !important; /* cpu */
}

.rrz-service-icon-consulting > a::before {
    content: "\F4B6" !important; /* people */
}

/* Hover animation */
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu a:hover::before,
.rrz-navbar__menu .rrz-services-dropdown > .dropdown-menu > li > .dropdown-menu .dropdown-item:hover::before {
    background: var(--rrz-color-amber);
    transform: rotate(-5deg) scale(1.06);
}







/* ENTRANCE STATES */

[data-hero-animate],
[data-hero-visual] {
    opacity: 0;
    transform: translateY(26px);
}

.rrz-hero.is-visible [data-hero-animate] {
    animation: rrzFadeUp 700ms ease forwards;
}

.rrz-hero.is-visible [data-hero-visual] {
    animation: rrzFadeUp 800ms ease 180ms forwards;
}

.rrz-hero.is-visible .rrz-hero__floating-card--top {
    animation: rrzFloat 5.4s ease-in-out 1.1s infinite;
}

.rrz-hero.is-visible .rrz-hero__floating-card--bottom {
    animation: rrzFloat 5.8s ease-in-out 1.35s infinite reverse;
}

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

@keyframes rrzDrawUnderline {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes rrzFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rrzShine {
    0% {
        transform: translateX(-35%) rotate(8deg);
    }

    45%, 100% {
        transform: translateX(35%) rotate(8deg);
    }
}

/* RESPONSIVE */

@media (max-width: 991.98px) {
    .rrz-hero {
        min-height: auto;
        padding: 96px 0 88px;
        text-align: center;
    }

    .rrz-hero__content {
        margin-inline: auto;
    }

    .rrz-hero__eyebrow,
    .rrz-hero__actions,
    .rrz-hero__trust-row {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 767.98px) {
    .rrz-hero {
        padding: 86px 0 76px;
    }

    .rrz-hero__title {
        font-size: clamp(42px, 14vw, 62px);
    }

    .rrz-hero__lead {
        margin-top: 26px;
    }

    .rrz-hero__actions {
        flex-direction: column;
    }

    .rrz-btn {
        width: 100%;
    }

    .rrz-hero__image-card {
        min-height: 420px;
        border-radius: 26px;
    }

    .rrz-hero__floating-card {
        max-width: 245px;
        font-size: 13px;
    }

    .rrz-hero__floating-card--top {
        top: 18px;
        left: 18px;
    }

    .rrz-hero__floating-card--bottom {
        right: 18px;
        bottom: 18px;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }

    [data-hero-animate],
    [data-hero-visual] {
        opacity: 1;
        transform: none;
    }

    .rrz-hero__underline path {
        stroke-dashoffset: 0;
    }
}




/* =========================================================
   RRZ HOME PAGE CHARACTER / PERSONALITY LAYER
   Add below existing CSS
========================================================= */

/* GENERAL SECTION PERSONALITY */

.rrz-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
}

.rrz-section--cream {
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 183, 61, 0.16), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(84, 179, 205, 0.16), transparent 25%),
        var(--rrz-cream);
}

.rrz-section--white {
    background:
        radial-gradient(circle at 8% 85%, rgba(151, 39, 99, 0.08), transparent 26%),
        var(--rrz-color-white);
}

.rrz-section--navy {
    color: var(--rrz-color-white);
    background:
        radial-gradient(circle at 15% 20%, rgba(244, 183, 61, 0.16), transparent 27%),
        radial-gradient(circle at 88% 18%, rgba(84, 179, 205, 0.2), transparent 28%),
        linear-gradient(135deg, var(--rrz-navy) 0%, var(--rrz-navy-2) 56%, #020A16 100%);
}

.rrz-section--navy .text-muted,
.rrz-section--navy p {
    color: rgba(255, 255, 255, 0.72) !important;
}

.rrz-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--rrz-color-ink);
    background: rgba(244, 183, 61, 0.18);
    border: 1px solid rgba(244, 183, 61, 0.35);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rrz-section--navy .rrz-section__eyebrow {
    color: var(--rrz-color-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.rrz-section__eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rrz-color-amber);
    box-shadow: 0 0 0 6px rgba(244, 183, 61, 0.16);
}

.rrz-section__title {
    color: var(--rrz-color-ink);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.rrz-section--navy .rrz-section__title {
    color: var(--rrz-color-white);
}

.rrz-section__title .handwritten-word {
    color: var(--rrz-color-magenta);
    font-size: 1.15em;
}

.rrz-section--navy .rrz-section__title .handwritten-word {
    color: var(--rrz-color-amber);
}

.rrz-section__lead {
    max-width: 760px;
    color: var(--rrz-muted);
    font-size: 19px;
    line-height: 1.7;
    font-weight: 600;
}

/* PLAYFUL BACKGROUND DOODLES */

.rrz-doodle {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.rrz-doodle--circle {
    width: 110px;
    height: 110px;
    border: 10px solid rgba(84, 179, 205, 0.25);
    border-radius: 50%;
}

.rrz-doodle--circle-one {
    top: 80px;
    right: 6%;
    animation: rrzSoftSpin 18s linear infinite;
}

.rrz-doodle--squiggle {
    width: 190px;
    height: 38px;
    border-top: 8px solid rgba(151, 39, 99, 0.2);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.rrz-doodle--squiggle-one {
    left: 5%;
    bottom: 70px;
    animation: rrzFloat 6s ease-in-out infinite;
}

.rrz-doodle--spark {
    width: 18px;
    height: 18px;
    background: var(--rrz-color-amber);
    clip-path: polygon(50% 0%, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0% 50%, 38% 36%);
    filter: drop-shadow(0 12px 20px rgba(244, 183, 61, 0.3));
}

.rrz-doodle--spark-one {
    top: 24%;
    left: 9%;
    animation: rrzSparkle 2.6s ease-in-out infinite;
}

.rrz-doodle--spark-two {
    right: 12%;
    bottom: 18%;
    animation: rrzSparkle 3.1s ease-in-out infinite 0.4s;
}

/* PARTNERS */


.rrz-partner-logo {
    padding: 10px;
}

.rrz-partner-logo__image {
    display: block;
    width: 100%;
    max-width: 120px;
    max-height: 42px;
    object-fit: contain;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.72;
    transition:
        filter 220ms ease,
        opacity 220ms ease,
        transform 220ms ease;
}

.rrz-partner-logo:hover .rrz-partner-logo__image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

.rrz-partners {
    position: relative;
    z-index: 2;
    background: #ebebeb;
}

.rrz-partners__wrap {
    padding: 22px;
}

.rrz-partner-logo {
    position: relative;
    overflow: hidden;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--rrz-color-ink);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,248,250,0.96));
    border: 1px solid var(--rrz-line);
    font-weight: 700;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.rrz-partner-logo::after {
    content: "";
    position: absolute;
    inset: -80% -40%;
    background: linear-gradient(90deg, transparent, rgba(244, 183, 61, 0.26), transparent);
    transform: translateX(-80%) rotate(12deg);
    transition: transform 680ms ease;
}

.rrz-partner-logo:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 183, 61, 0.55);
    box-shadow: 0 18px 42px rgba(0, 27, 54, 0.12);
}

.rrz-partner-logo:hover::after {
    transform: translateX(80%) rotate(12deg);
}

/* WHY RRZ CARDS */

.rrz-why-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(229, 233, 240, 0.9);
    box-shadow: 0 18px 50px rgba(0, 27, 54, 0.08);
    transition:
        transform 260ms ease,
        box-shadow 260ms ease,
        border-color 260ms ease;
}

.rrz-why-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(84, 179, 205, 0.12);
    transition: transform 320ms ease;
}

.rrz-why-card:nth-child(2)::before {
    background: rgba(244, 183, 61, 0.16);
}

.rrz-why-card:nth-child(3)::before {
    background: rgba(151, 39, 99, 0.12);
}

.rrz-why-card:hover {
    transform: translateY(-10px) rotate(-0.6deg);
    border-color: rgba(84, 179, 205, 0.42);
    box-shadow: 0 28px 70px rgba(0, 27, 54, 0.14);
}

.rrz-why-card:hover::before {
    transform: scale(1.2);
}

.rrz-icon-bubble {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
    border-radius: 22px;
    color: var(--rrz-color-ink);
    background:
        linear-gradient(135deg, rgba(244, 183, 61, 0.95), rgba(218, 145, 33, 0.95));
    box-shadow: 0 16px 30px rgba(244, 183, 61, 0.22);
    font-size: 28px;
    transform: rotate(-4deg);
}

.rrz-why-card:nth-child(2) .rrz-icon-bubble {
    background:
        linear-gradient(135deg, rgba(84, 179, 205, 0.95), rgba(170, 194, 219, 0.95));
    box-shadow: 0 16px 30px rgba(84, 179, 205, 0.22);
    transform: rotate(4deg);
}

.rrz-why-card:nth-child(3) .rrz-icon-bubble {
    color: var(--rrz-color-white);
    background:
        linear-gradient(135deg, rgba(151, 39, 99, 0.95), rgba(20, 21, 63, 0.95));
    box-shadow: 0 16px 30px rgba(151, 39, 99, 0.22);
}

/* SERVICE CARDS */

.rrz-service-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    padding: 28px;
    border-radius: 28px;
    color: var(--rrz-color-ink);
    background: var(--rrz-color-white);
    border: 1px solid rgba(229, 233, 240, 0.92);
    box-shadow: 0 14px 36px rgba(0, 27, 54, 0.08);
    transition:
        transform 260ms ease,
        box-shadow 260ms ease,
        background 260ms ease;
}

.rrz-service-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(244, 183, 61, 0.16);
    transition: transform 260ms ease;
}

.rrz-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 62px rgba(0, 27, 54, 0.14);
}

.rrz-service-card:hover::before {
    transform: scale(1.25);
}

.rrz-service-card__icon {
    display: inline-grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    border-radius: 18px;
    color: var(--rrz-color-white);
    background: var(--rrz-color-magenta);
    font-size: 20px;
}

/* BESPOKE FEATURE BLOCK */

.rrz-bespoke-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    color: var(--rrz-color-white);
    background:
        radial-gradient(circle at 88% 12%, rgba(244, 183, 61, 0.24), transparent 28%),
        linear-gradient(145deg, var(--rrz-color-ink), var(--rrz-navy));
    box-shadow: 0 28px 80px rgba(0, 27, 54, 0.22);
}

.rrz-bespoke-panel::before {
    content: "</>";
    position: absolute;
    right: 26px;
    top: 18px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 120px;
    font-weight: 600;
    line-height: 1;
}

.rrz-bespoke-panel img {
    position: relative;
    z-index: 2;
    max-height: 280px;
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.25));
}

.rrz-bespoke-list {
    display: grid;
    gap: 14px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.rrz-bespoke-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.rrz-bespoke-list li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--rrz-color-ink);
    background: var(--rrz-color-amber);
    font-size: 13px;
    font-weight: 600;
}

/* PROJECTS */

.rrz-project-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 30px;
    background: var(--rrz-color-white);
    border: 1px solid rgba(229, 233, 240, 0.9);
    box-shadow: 0 16px 44px rgba(0, 27, 54, 0.09);
    transition:
        transform 260ms ease,
        box-shadow 260ms ease;
}

.rrz-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(0, 27, 54, 0.16);
}

.rrz-project-card__visual {
    position: relative;
    height: 190px;
    overflow: hidden;
    background:
        radial-gradient(circle at 24% 26%, rgba(244, 183, 61, 0.35), transparent 22%),
        radial-gradient(circle at 80% 20%, rgba(84, 179, 205, 0.32), transparent 24%),
        linear-gradient(135deg, var(--rrz-color-ink), var(--rrz-navy));
}

.rrz-project-card__visual::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

.rrz-project-card__visual span {
    position: absolute;
    left: 26px;
    bottom: 24px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rrz-project-card__body {
    padding: 26px;
}

.rrz-project-card__tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--rrz-color-magenta);
    background: rgba(151, 39, 99, 0.08);
    font-size: 12px;
    font-weight: 600;
}

/* TEAM */

.rrz-team-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 15% 20%, rgba(244, 183, 61, 0.18), transparent 24%),
        radial-gradient(circle at 90% 16%, rgba(84, 179, 205, 0.16), transparent 24%),
        var(--rrz-cream);
    border: 1px solid rgba(229, 233, 240, 0.85);
    box-shadow: var(--rrz-shadow);
}

.rrz-team-panel img {
    max-height: 360px;
    filter: drop-shadow(0 22px 36px rgba(0, 27, 54, 0.16));
}

.rrz-value-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 13px 16px;
    border-radius: 18px;
    background: var(--rrz-color-white);
    border: 1px solid rgba(229, 233, 240, 0.9);
    box-shadow: 0 12px 28px rgba(0, 27, 54, 0.07);
    font-weight: 500;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.rrz-value-pill:hover {
    transform: translateX(6px);
    border-color: rgba(244, 183, 61, 0.55);
    box-shadow: 0 18px 40px rgba(0, 27, 54, 0.12);
}

.rrz-value-pill__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, var(--rrz-color-amber), var(--rrz-color-gold));
    box-shadow: 0 8px 18px rgba(244, 183, 61, 0.24);
}

/* CTA */

.rrz-cta {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    color: var(--rrz-color-white);
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 183, 61, 0.22), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(84, 179, 205, 0.22), transparent 30%),
        linear-gradient(135deg, var(--rrz-navy), var(--rrz-color-ink));
    box-shadow: 0 32px 90px rgba(0, 27, 54, 0.24);
}

.rrz-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.82), transparent 92%);
}

.rrz-cta__inner {
    position: relative;
    z-index: 2;
    padding: 54px;
}

.rrz-cta h2,
.rrz-cta h3 {
    color: var(--rrz-color-white);
}

.rrz-cta p,
.rrz-cta a:not(.rrz-btn) {
    color: rgba(255, 255, 255, 0.74);
}

.rrz-cta-bubble {
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    margin-inline: auto;
    margin-bottom: 16px;
    border-radius: 34px;
    color: var(--rrz-color-ink);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255,255,255,0.24);
    font-size: 34px;
    transform: rotate(-4deg);
    transition:
        transform 260ms ease,
        box-shadow 260ms ease;
}

.rrz-cta-bubble:hover {
    transform: translateY(-8px) rotate(4deg);
    box-shadow: 0 22px 48px rgba(0,0,0,0.22);
}

/* REVEAL ANIMATIONS */

[data-rrz-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 720ms ease,
        transform 720ms ease;
}

[data-rrz-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* KEYFRAMES */

@keyframes rrzSoftSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rrzSparkle {
    0%, 100% {
        transform: scale(0.75) rotate(0deg);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.15) rotate(18deg);
        opacity: 0.95;
    }
}

/* RESPONSIVE */

@media (min-width: 1400px) {
.rrz-bespoke-panel img {
    position: absolute !important;
    display: block;
    right: -15px;
    bottom: -15px;
}
}

@media (max-width: 991.98px) {
    .rrz-section {
        padding: 72px 0;
    }

    .rrz-cta__inner {
        padding: 38px;
    }

    .rrz-bespoke-panel,
    .rrz-team-panel {
        padding: 32px;
    }
}

@media (max-width: 767.98px) {
    .rrz-section {
        padding: 62px 0;
    }

    .rrz-section__title {
        font-size: clamp(34px, 11vw, 48px);
    }

    .rrz-section__lead {
        font-size: 17px;
    }

    .rrz-partners {
        margin-top: 0;
    }

    .rrz-cta {
        border-radius: 28px;
    }

    .rrz-cta__inner {
        padding: 30px 22px;
    }

    .rrz-bespoke-panel,
    .rrz-team-panel {
        padding: 26px;
        border-radius: 28px;
    }
}


/* =========================================================
   RRZ CUSTOM FOOTER
========================================================= */

.rrz-site-footer {
    position: relative;
    overflow: hidden;
    color: var(--rrz-color-white);
    background:
        radial-gradient(circle at 12% 15%, rgba(244, 183, 61, 0.16), transparent 26%),
        radial-gradient(circle at 86% 10%, rgba(84, 179, 205, 0.18), transparent 28%),
        linear-gradient(135deg, var(--rrz-navy) 0%, var(--rrz-navy-2) 54%, #020A16 100%);
    padding: 86px 0 28px;
}

.rrz-site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.84), transparent 94%);
}

.rrz-site-footer__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(16px);
    pointer-events: none;
}

.rrz-site-footer__glow--one {
    width: 280px;
    height: 280px;
    left: -130px;
    top: 18%;
    background: rgba(151, 39, 99, 0.26);
}

.rrz-site-footer__glow--two {
    width: 360px;
    height: 360px;
    right: -160px;
    top: 6%;
    background: rgba(84, 179, 205, 0.2);
}

.rrz-footer-cta {
    position: relative;
    z-index: 2;
    margin-bottom: 58px;
    padding: 38px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 28px 80px rgba(0,0,0,0.22);
    backdrop-filter: blur(16px);
}

.rrz-footer-cta__eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #06101D;
    background: var(--rrz-color-amber);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rrz-footer-cta__title {
    margin: 0 0 12px;
    color: var(--rrz-color-white);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.03;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.rrz-footer-cta__title .handwritten-word {
    color: var(--rrz-color-amber);
}

.rrz-footer-cta__text {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
}

.rrz-footer-main {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
}

.rrz-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--rrz-color-white);
    text-decoration: none;
}

.rrz-footer-brand:hover {
    color: var(--rrz-color-white);
}

.rrz-footer-brand__logo {
    display: block;
    width: auto;
    max-height: 64px;
    object-fit: contain;
}

.rrz-footer-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #06101D;
    background: linear-gradient(135deg, var(--rrz-color-amber), var(--rrz-color-gold));
    box-shadow: 0 14px 30px rgba(244, 183, 61, 0.2);
    font-size: 19px;
    font-weight: 600;
}

.rrz-footer-brand__text {
    color: var(--rrz-color-white);
    font-size: 19px;
    font-weight: 600;
}

.rrz-footer-about {
    max-width: 390px;
    margin: 0 0 24px;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.rrz-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rrz-footer-socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--rrz-color-white);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.13);
    text-decoration: none;
    transition:
        transform 220ms ease,
        background 220ms ease,
        color 220ms ease;
}

.rrz-footer-socials a:hover {
    color: #06101D;
    background: var(--rrz-color-amber);
    transform: translateY(-4px) rotate(-4deg);
}

.rrz-footer-heading {
    margin: 0 0 20px;
    color: var(--rrz-color-white);
    font-size: 17px;
    font-weight: 600;
}

.rrz-footer-links,
.rrz-footer-contact {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rrz-footer-links a,
.rrz-footer-contact a,
.rrz-footer-contact span {
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition:
        color 220ms ease,
        transform 220ms ease;
}

.rrz-footer-links a:hover,
.rrz-footer-contact a:hover {
    color: var(--rrz-color-amber);
}

.rrz-footer-contact li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
}

.rrz-footer-contact i {
    color: var(--rrz-color-amber);
    line-height: 1.3;
}

.rrz-footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.rrz-footer-bottom p {
    color: rgba(255,255,255,0.56);
    font-size: 14px;
    font-weight: 700;
}

.rrz-footer-legal {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.rrz-footer-legal a {
    color: rgba(255,255,255,0.56);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.rrz-footer-legal a:hover {
    color: var(--rrz-color-amber);
}

@media (max-width: 991.98px) {
    .rrz-site-footer {
        padding-top: 68px;
    }

    .rrz-footer-cta {
        padding: 30px;
        border-radius: 28px;
    }

    .rrz-footer-legal {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .rrz-footer-cta {
        padding: 26px;
    }

    .rrz-footer-brand__logo {
        max-height: 52px;
    }
}