:root {
    --rr-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, system-ui, sans-serif;
    --rr-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --primary-color: #111827;
    --primary-color-soft: #1f2937;
    --ink-soft: #4b5563;
    --ink-muted: #6b7280;
    --accent-color: #1d4ed8;
    --accent-color-soft: #dbeafe;
    --accent-color-strong: #0b3b91;
    --accent-gold: #c59b3b;
    --page-bg: #f3f4f6;
    --surface-color: #fff;
    --surface-alt-color: #f9fafb;
    --secondary-color: #e5e7eb;
    --border-subtle: #e5e7eb;
    --border-strong: #cbd5e1;
    --background-color: #020617;
    --background-color-2: #0b1120;
    --link-color: #1d4ed8;
    --link-hover-color: #0b3b91;
    --focus-ring: 0 0 0 3px rgba(37, 99, 235, .35);
    --success-color: #15803d;
    --warning-color: #b45309;
    --danger-color: #b91c1c;
    --rr-radius-xs: 6px;
    --rr-radius-sm: 10px;
    --rr-radius-md: 14px;
    --rr-radius-lg: 20px;
    --rr-shadow-soft: 0 14px 35px rgba(15, 23, 42, .12);
    --rr-shadow-strong: 0 22px 60px rgba(15, 23, 42, .18);
    --rr-container-width: 1200px;
    --rr-gutter: 20px;
    --rr-btn-pattern: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-width='.6' d='M0 11 11 0M1 12 12 1' opacity='.14'/%3E%3C/svg%3E");
    --rr-ink-strong: var(--primary-color);
    --rr-ink-soft: var(--ink-soft);
    --rr-surface: var(--surface-color);
    --rr-border-subtle: var(--border-subtle);
    --rr-ink: var(--ink-soft)
}

@media (min-width:768px) {
    :root {
        --rr-gutter: 32px
    }
}

.rgz-fade-in-element,
.rgz-slide-in-element,
.rgz-zoom-in-element { 
    transform-origin: 50% 100%;
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1), filter .7s ease-out;
    transition-delay: var(--rr-anim-delay, 0s);
    will-change: opacity, transform, filter
}

.rgz-fade-in-element {
    transform: translateY(24px);
    transition-delay: var(--rr-anim-delay, 0s)
}

.rgz-slide-in-element {
    transform: translateY(40px)
}

.rgz-zoom-in-element {
    transform: scale(.94) translateY(18px)
}

.rgz-fade-in-element.rgz-visible,
.rgz-slide-in-element.rgz-visible,
.rgz-zoom-in-element.rgz-visible {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1)
}

*,
:after,
:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    background-color: var(--page-bg);
    color: var(--ink-soft);
    font-family: var(--rr-font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

.rgz-container {
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding: 0 var(--rr-gutter)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--rr-ink-strong);
    font-family: var(--rr-font-heading);
    letter-spacing: -.02em
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15
}

h2 {
    font-size: clamp(1.8rem, 3.1vw, 2.4rem);
    line-height: 1.2
}

h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.7rem)
}

p {
    color: var(--rr-ink-soft)
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease
}

a:hover {
    color: var(--accent-color)
}

img,
picture {
    display: block;
    max-width: 100%
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem
}

button:disabled {
    cursor: not-allowed;
    opacity: .6
}

input,
select,
textarea {
    color: var(--rr-ink);
    font-family: inherit;
    font-size: 1rem
}

.rr-card {
    background: var(--rr-surface);
    border: 1px solid var(--rr-border-subtle);
    border-radius: var(--rr-radius-lg);
    box-shadow: var(--rr-shadow-soft)
}

.rr-eyebrow {
    align-items: center;
    background: #f0fdf4;
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: 999px;
    color: var(--accent-color);
    display: inline-flex;
    font-size: .7rem;
    font-weight: 700;
    gap: .4rem;
    letter-spacing: .18em;
    padding: .35rem .9rem;
    text-transform: uppercase
}

header {
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
    position: sticky;
    top: -10px;
    z-index: 50
}

header:before {
    background: linear-gradient(90deg, hsla(46, 45%, 94%, .2), rgba(245, 158, 11, .9), hsla(46, 45%, 94%, .2));
    border-radius: 999px;
    bottom: -1px;
    height: 3px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .95;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    z-index: 0
}

header:after,
header:before {
    content: "";
    position: absolute
}

header:after {
    background-color: hsla(0, 0%, 100%, .97);
    filter: blur(1px);
    inset: 0;
    pointer-events: none;
    z-index: -1
}

.rgz-header-container {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding: 14px var(--rr-gutter)
}

.rgz-logo {
    align-items: center;
    display: inline-flex
}

.rgz-logo-img {
    display: block;
    height: 46px;
    width: auto
}

.rgz-desktop-nav {
    display: none;
    flex: 1 1 auto
}

.rgz-nav-menu {
    display: flex;
    gap: 28px;
    justify-content: center;
    list-style: none
}

.rgz-nav-menu a {
    color: var(--ink-muted);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 6px 0;
    position: relative;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease
}

.rgz-nav-menu a:after {
    background: var(--accent-color);
    border-radius: 999px;
    bottom: -6px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: width .2s ease;
    width: 0
}

.rgz-nav-menu a:hover {
    color: var(--primary-color)
}

.rgz-nav-menu a.is-active:after,
.rgz-nav-menu a.nav-link--active:after,
.rgz-nav-menu a:hover:after {
    width: 100%
}

.rgz-nav-menu a.is-active,
.rgz-nav-menu a.nav-link--active {
    color: var(--primary-color)
}

.rgz-burger-container {
    align-items: center;
    display: flex;
    gap: 12px
}

.rgz-cta-button,
.rgz-cta-button:link,
.rgz-cta-button:visited {
    align-items: center;
    background-color: var(--accent-color-strong);
    border: 1px solid rgba(15, 23, 42, .48);
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .3);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--rr-font-sans);
    font-size: .95rem;
    font-weight: 600;
    gap: .45rem;
    isolation: isolate;
    justify-content: center;
    line-height: 1.2;
    overflow: hidden;
    padding: .75rem 1.6rem;
    position: relative;
    text-decoration: none;
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1) var(--rr-anim-delay, 0s), transform .7s cubic-bezier(.22, .61, .36, 1) var(--rr-anim-delay, 0s), filter .7s ease-out var(--rr-anim-delay, 0s), background-color .22s ease-out 0s, color .22s ease-out 0s, box-shadow .22s ease-out 0s, border-color .22s ease-out 0s;
    white-space: nowrap
}

.rgz-cta-button .rgz-btn-text {
    position: relative;
    z-index: 3
}

.rgz-cta-button:after {
    background-image: repeating-linear-gradient(135deg, hsla(0, 0%, 100%, .18) 0 1px, transparent 1px 4px);
    inset: -20%;
    mix-blend-mode: soft-light;
    opacity: .45;
    z-index: 1
}

.rgz-cta-button:after,
.rgz-cta-button:before {
    content: "";
    pointer-events: none;
    position: absolute
}

.rgz-cta-button:before {
    background: #fff;
    border-radius: 999px;
    height: 0;
    left: 50%;
    
    top: 50%;
    transform: translate(-50%, -50%);
    transition: width .45s cubic-bezier(.22, .61, .36, 1), height .45s cubic-bezier(.22, .61, .36, 1), opacity .45s ease-out;
    width: 0;
    z-index: 2
}

.rgz-cta-button:focus-visible,
.rgz-cta-button:hover {
    border-color: rgba(191, 219, 254, .85);
    box-shadow: 0 20px 46px rgba(15, 23, 42, .45);
    transform: translateY(-1px)
}

.rgz-cta-button:focus-visible:before,
.rgz-cta-button:hover:before {
    height: 260%;
    opacity: 1;
    width: 260%
}

.rgz-cta-button:focus-visible .rgz-btn-text,
.rgz-cta-button:hover .rgz-btn-text {
    color: var(--accent-color-strong)
}

.rgz-cta-button:active {
    box-shadow: 0 8px 20px rgba(15, 23, 42, .28);
    transform: translateY(0)
}

.rgz-cta-button:focus-visible {
    box-shadow: 0 0 0 1px #020617, var(--focus-ring);
    outline: none
}

@media (min-width:768px) {

    .rgz-cta-button,
    .rgz-cta-button:link,
    .rgz-cta-button:visited {
        font-size: 1rem;
        padding: .9rem 1.9rem
    }
}

.rgz-header-cta-button {
    display: none !important
}

@media (min-width:768px) {
    .rgz-header-cta-button {
        display: inline-flex !important
    }
}

.rgz-hero .rgz-cta-button,
.rgz-hero .rgz-cta-button:link,
.rgz-hero .rgz-cta-button:visited {
    background-color: #020617;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .6);
    padding-inline: 26px
}

.rgz-hero .rgz-cta-button:focus-visible,
.rgz-hero .rgz-cta-button:hover {
    box-shadow: 0 22px 50px rgba(15, 23, 42, .75)
}

.rgz-burger-btn {
    align-items: center;
    background-color: var(--surface-alt-color);
    border: none;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .1);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    height: 40px;
    justify-content: center;
    transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
    width: 40px
}

.rgz-burger-btn span {
    background-color: var(--primary-color);
    border-radius: 999px;
    display: block;
    height: 2.3px;
    transition: transform .2s ease, opacity .2s ease;
    width: 23px
}

.rgz-burger-btn:hover {
    background-color: #e5e7eb;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .14);
    transform: translateY(-1px)
}

.rgz-sidebar-overlay {
    background: rgba(15, 23, 42, .35);
    inset: 0;
    
    position: fixed;
    transition: opacity .2s ease-out, visibility .2s ease-out;
    visibility: hidden;
    z-index: 840
}

.rgz-sidebar-overlay.active {
    opacity: 1;
    visibility: visible
}

.rgz-contact-sidebar,
.rgz-mobile-sidebar {
    background-color: #fff;
    box-shadow: -22px 0 50px rgba(15, 23, 42, .18);
    inset: 0 0 0 auto;
    
    position: fixed;
    transform: translateX(100%);
    transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
    visibility: hidden;
    width: min(360px, 100%);
    z-index: 950
}

.rgz-contact-sidebar.is-open,
.rgz-mobile-sidebar.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible
}

.rgz-mobile-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    padding: 72px 24px 24px
}

.rgz-mobile-sidebar.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible
}

.rgz-mobile-sidebar h2 {
    color: var(--primary-color);
    font-family: var(--rr-font-heading);
    font-size: 1.4rem;
    font-weight: 700
}

.rgz-mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none
}

.rgz-mobile-nav-menu a {
    border-bottom: 1px solid var(--border-subtle);
    color: var(--ink-soft);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    text-decoration: none;
    transition: color .18s ease, border-color .18s ease
}

.rgz-mobile-nav-menu a:hover {
    border-color: rgba(37, 99, 235, .45);
    color: var(--accent-color)
}

.rgz-contact-sidebar .rgz-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding: 72px 28px 28px
}

.rgz-contact-sidebar h2 {
    color: var(--primary-color);
    font-family: var(--rr-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px
}

.rgz-contact-sidebar p {
    color: var(--ink-soft);
    font-size: .95rem
}

.rgz-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px
}

.rgz-contact-item {
    align-items: flex-start;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    gap: 12px;
    padding: 10px 0
}

.rgz-contact-icon {
    align-items: center;
    background-color: rgba(37, 99, 235, .1);
    border-radius: 999px;
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px
}

.rgz-contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.rgz-contact-label {
    color: var(--ink-muted);
    letter-spacing: .08em
}

.rgz-contact-value {
    color: var(--primary-color-soft)
}

.rgz-sidebar-close {
    align-items: center;
    background-color: var(--surface-alt-color);
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .14);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    height: 34px;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 16px;
    transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
    width: 34px
}

.rgz-sidebar-close span {
    background-color: var(--primary-color);
    border-radius: 999px;
    height: 2px;
    position: absolute;
    width: 16px
}

.rgz-sidebar-close span:first-child {
    transform: rotate(45deg)
}

.rgz-sidebar-close span:last-child {
    transform: rotate(-45deg)
}

.rgz-sidebar-close:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px)
}

@media (max-width:1023.98px) {
    .rgz-contact-sidebar {
        display: none
    }
}

@media (min-width:1024px) {
    .rgz-mobile-sidebar {
        display: none
    }

    .rgz-desktop-nav {
        display: block
    }

    .rgz-header-cta-button {
        display: inline-flex
    }

    .rgz-burger-btn {
        display: none
    }
}

.rgz-hero {
    background-color: var(--background-color);
    color: #fff;
    min-height: 91dvh;
    overflow: hidden;
    position: relative
}

.rgz-hero-background {
    inset: 0;
    position: absolute;
    z-index: 0
}

.rgz-hero-background img,
.rgz-hero-background picture {
    display: block;
    height: 100%;
    width: 100%
}

.rgz-hero-background img {
    -o-object-fit: cover;
    object-fit: cover
}

.rgz-hero-background:after {
    background: linear-gradient(90deg, rgba(15, 23, 42, .88), rgba(15, 23, 42, .8) 38%, rgba(15, 23, 42, .55) 65%, rgba(15, 23, 42, .2));
    content: "";
    inset: 0;
    position: absolute
}

.rgz-hero-container {
    align-items: center;
    display: flex;
    margin: 0 auto;
    max-width: var(--rr-container-width);
    min-height: min(92vh, 860px);
    padding: 96px var(--rr-gutter) 72px;
    position: relative;
    z-index: 1
}

.rgz-hero-content {
    max-width: 620px
}

.rgz-hero-badge {
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: radial-gradient(circle at 0 0, rgba(59, 130, 246, .28), transparent 55%), linear-gradient(120deg, rgba(15, 23, 42, .97), rgba(15, 23, 42, .82));
    border: 1px solid rgba(148, 163, 184, .7);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .68), 0 0 0 1px rgba(15, 23, 42, .9);
    color: rgba(226, 232, 240, .98);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 600;
    gap: .8rem;
    letter-spacing: .18em;
    margin-bottom: 18px;
    overflow: hidden;
    padding: .55rem 1.9rem .6rem;
    position: relative;
    text-transform: uppercase
}

.rgz-hero-badge:before {
    background: radial-gradient(circle at 30% 30%, #fef3c7 0, #fde68a 30%, #facc6b 52%, #c59b3b 76%, #1d4ed8 100%);
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .9), 0 8px 20px rgba(15, 23, 42, .9);
    content: "";
    flex: 0 0 22px;
    height: 22px;
    transform: rotate(45deg)
}

.rgz-hero-badge:after {
    background: linear-gradient(120deg, transparent, hsla(0, 0%, 100%, .16) 40%, hsla(0, 0%, 100%, .33) 50%, transparent 70%);
    content: "";
    inset: 0;
    
    pointer-events: none;
    position: absolute;
    transform: translateX(-120%);
    transition: transform .65s cubic-bezier(.25, .8, .25, 1), opacity .4s ease-out
}

.rgz-hero-badge:focus-visible,
.rgz-hero-badge:hover {
    border-color: rgba(191, 219, 254, .95);
    box-shadow: 0 22px 48px rgba(15, 23, 42, .82), 0 0 0 1px #0f172a
}

.rgz-hero-badge:focus-visible:after,
.rgz-hero-badge:hover:after {
    opacity: 1;
    transform: translateX(120%)
}

@media (min-width:768px) {
    .rgz-hero-badge {
        font-size: .8rem;
        margin-bottom: 20px;
        padding: .6rem 2.1rem .65rem
    }

    .rgz-hero-badge:before {
        flex-basis: 24px;
        height: 24px
    }
}

.rgz-hero-title {
    color: #fff;
    font-family: var(--rr-font-heading);
    font-size: clamp(2.3rem, 3vw + 1.7rem, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px
}

.rgz-hero-title .rgz-highlight {
    color: var(--accent-gold)
}

.rgz-hero-description {
    color: rgba(249, 250, 251, .92);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 600px
}

@media (max-width:1023.98px) {
    .rgz-hero-container {
        align-items: flex-end;
        min-height: 80vh;
        padding-bottom: 56px;
        padding-top: 88px
    }

    .rgz-hero-content {
        max-width: 100%
    }

    .rgz-hero-title {
        font-size: clamp(2rem, 1.7rem + 2vw, 2.4rem)
    }

    .rgz-hero-description {
        font-size: .98rem
    }

    .rgz-hero .rgz-cta-button {
        justify-content: center;
        width: 100%
    }

    .rgz-logo-img {
        height: 40px
    }
}

@media (max-width:600px) {
    .rgz-hero-title {
        margin-bottom: 16px
    }

    .rgz-hero-description {
        margin-bottom: 24px
    }
}

.rgz-about-section {
    background-color: var(--page-bg, #f3f4f6);
    overflow: hidden;
    padding: 96px 0 112px;
    position: relative
}

.rgz-about-section:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath fill='%23e5e7eb' d='M19 8h2v24h-2zM8 19h24v2H8z'/%3E%3C/svg%3E");
    background-repeat: repeat;
    bottom: 40px;
    left: -40px;
    opacity: .55;
    top: 40px
}

.rgz-about-section:after,
.rgz-about-section:before {
    content: "";
    pointer-events: none;
    position: absolute;
    width: 260px
}

.rgz-about-section:after {
    background-image: linear-gradient(90deg, rgba(209, 213, 219, .8) 1px, transparent 0), linear-gradient(180deg, rgba(209, 213, 219, .8) 1px, transparent 0);
    background-size: 52px 52px;
    border-radius: 32px;
    box-shadow: 0 26px 70px rgba(148, 163, 184, .35);
    height: 260px;
    opacity: .3;
    right: -60px;
    top: 80px
}

.rgz-about-container {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding: 0 var(--rr-gutter);
    z-index: 1
}

.rgz-about-container,
.rgz-about-images {
    position: relative
}

.rgz-about-main-image {
    background: linear-gradient(145deg, #f8fafc, #f1f5f9 40%, #e5e7eb);
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .13), 0 0 0 1px rgba(209, 213, 219, .8);
    margin: 0 auto;
    max-width: 540px;
    overflow: visible;
    padding: 18px;
    position: relative
}

.rgz-about-main-image img,
.rgz-about-main-image picture {
    display: block;
    height: 100%;
    width: 100%
}

.rgz-about-main-image img {
    border-radius: 26px;
    filter: saturate(1.05) contrast(1.02);
    min-height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: 50% 50%;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1), filter .4s ease-out
}

.rgz-about-main-image:before {
    background: linear-gradient(135deg, hsla(0, 0%, 100%, .75), hsla(0, 0%, 100%, .1));
    inset: 18px;
    mix-blend-mode: soft-light;
    opacity: .5
}

.rgz-about-main-image:after,
.rgz-about-main-image:before {
    border-radius: 26px;
    content: "";
    pointer-events: none;
    position: absolute
}

.rgz-about-main-image:after {
    background: linear-gradient(120deg, transparent, hsla(0, 0%, 100%, .45) 45%, hsla(0, 0%, 100%, .75) 52%, transparent 72%);
    inset: 10px;
    
    transform: translateX(-120%);
    transition: transform .9s cubic-bezier(.15, .7, .3, 1), opacity .5s ease-out
}

.rgz-about-section:hover .rgz-about-main-image:after {
    opacity: 1;
    transform: translateX(120%)
}

.rgz-about-section:hover .rgz-about-main-image img {
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.03)
}

.rgz-experience-badge {
    align-items: center;
    background-color: #020617;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .4), 0 0 0 1px rgba(15, 23, 42, .9);
    color: #f9fafb;
    display: inline-flex;
    flex-direction: column;
    gap: .05rem;
    justify-content: center;
    left: 50%;
    min-width: 120px;
    padding: 10px 18px;
    position: absolute;
    top: -22px;
    transform: translateX(-50%)
}

.rgz-experience-number {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .08em
}

.rgz-experience-text {
    color: rgba(209, 213, 219, .96);
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase
}

.rgz-about-secondary-image {
    background-color: #fff;
    border-radius: 26px;
    bottom: -70px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .18), 0 0 0 1px rgba(226, 232, 240, .9);
    left: 52%;
    max-width: 260px;
    padding: 10px;
    position: absolute;
    width: 52%
}

.rgz-about-secondary-image img {
    border-radius: 20px;
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.rgz-about-content {
    position: relative
}

.rgz-about-badge {
    align-items: center;
    background-color: #fefce8;
    border: 1px solid rgba(234, 179, 8, .55);
    border-radius: 999px;
    color: var(--accent-gold);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 600;
    gap: .35rem;
    letter-spacing: .18em;
    padding: .35rem .85rem;
    text-transform: uppercase
}

.rgz-about-badge:before {
    background: radial-gradient(circle, #fbbf24 0, #92400e 100%);
    border-radius: 999px;
    content: "";
    height: 7px;
    width: 7px
}

.rgz-about-title {
    color: var(--primary-color, #111827);
    font-size: clamp(2rem, 1.8rem + .8vw, 2.4rem);
    line-height: 1.18;
    margin-top: 18px
}

.rgz-about-subtitle,
.rgz-about-title {
    margin-bottom: 14px
}

.rgz-about-subtitle .rgz-subtitle-label {
    color: var(--ink-muted, #6b7280);
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .18em;
    margin-bottom: 4px;
    text-transform: uppercase
}

.rgz-about-subtitle h3 {
    color: var(--primary-color-soft, #1f2937);
    font-size: 1.1rem;
    font-weight: 600
}

.rgz-about-description {
    color: var(--ink-soft, #4b5563);
    font-size: .98rem;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 640px
}

.rgz-about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.rgz-feature-item {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    padding: 9px 0
}

.rgz-feature-icon {
    align-items: center;
    background: radial-gradient(circle at 30% 30%, #fef9c3 0, #facc15 35%, #eab308 70%, #92400e 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, .6), 0 10px 20px rgba(250, 204, 21, .35);
    color: #1f2937;
    display: inline-flex;
    flex: 0 0 28px;
    font-size: .85rem;
    font-weight: 700;
    height: 28px;
    justify-content: center
}

.rgz-feature-text {
    color: var(--ink-soft, #4b5563);
    flex: 1;
    font-size: .95rem
}

@media (max-width:1023.98px) {
    .rgz-about-container {
        gap: 52px;
        grid-template-columns: minmax(0, 1fr)
    }

    .rgz-about-section:after {
        bottom: -60px;
        right: -40px;
        top: auto
    }

    .rgz-about-images {
        margin: 0 auto;
        max-width: 520px
    }

    .rgz-about-secondary-image {
        bottom: -60px;
        left: auto;
        right: 24px;
        width: 52%
    }
}

@media (max-width:640px) {
    .rgz-about-section {
        padding: 72px 0 88px
    }

    .rgz-about-main-image {
        padding: 14px
    }

    .rgz-about-main-image img {
        min-height: 260px
    }

    .rgz-experience-badge {
        min-width: 110px;
        top: -18px
    }

    .rgz-about-secondary-image {
        bottom: -54px;
        max-width: none;
        position: absolute;
        right: 12px;
        width: 54%
    }

    .rgz-about-section:before {
        left: -80px;
        width: 220px
    }

    .rgz-about-section:after {
        display: none
    }
}

.rgz-success-section {
    background: #fff;
    overflow: hidden;
    padding: 88px 0 96px;
    position: relative
}

.rgz-success-section:after,
.rgz-success-section:before {
    background-image: linear-gradient(180deg, rgba(209, 213, 219, .45) 1px, transparent 0), linear-gradient(90deg, rgba(209, 213, 219, .45) 1px, transparent 0);
    background-size: 32px 32px;
    content: "";
    inset-block: 42px 36px;
    mask-image: radial-gradient(circle at 0 0, #000 0, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 0 0, #000 0, transparent 70%);
    mix-blend-mode: multiply;
    opacity: .82;
    pointer-events: none;
    position: absolute;
    width: 580px
}

.rgz-success-section:before {
    left: max(0px, (100vw - var(--rr-container-width))/2 - 70px);
    transform: rotate(-35deg)
}

.rgz-success-section:after {
    right: max(0px, (100vw - var(--rr-container-width))/2 - 70px);
    transform: scaleX(-1) rotate(35deg)
}

.rgz-success-container {
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter);
    position: relative;
    z-index: 1
}

.rgz-success-header {
    margin: 0 0 40px;
    max-width: 720px
}

.rgz-success-badge {
    align-items: center;
    background: #fefce8;
    border: 1px solid rgba(234, 179, 8, .3);
    border-radius: 999px;
    color: var(--accent-gold);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    gap: .4rem;
    letter-spacing: .18em;
    padding: .35rem 1.2rem;
    text-transform: uppercase
}

.rgz-success-badge:before {
    background: radial-gradient(circle, #fbbf24 0, #b45309 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px #f9fafb, 0 0 8px rgba(251, 191, 36, .7);
    content: "";
    height: 7px;
    width: 7px
}

.rgz-success-title {
    color: var(--primary-color);
    font-size: clamp(2rem, 1.3rem + 1.7vw, 2.6rem);
    line-height: 1.18;
    margin-top: 16px
}

.rgz-success-description {
    color: var(--ink-muted);
    font-size: .98rem;
    margin-top: 10px
}

.rgz-success-stats {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px
}

.rgz-stat-card {
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(209, 213, 219, .8);
    border-radius: 26px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, .08), 0 0 0 1px hsla(0, 0%, 100%, .9);
    display: flex;
    flex-direction: column;
    gap: 10px;
    isolation: isolate;
    overflow: hidden;
    padding: 26px 26px 24px;
    position: relative;
    transform-origin: 50% 100%;
    transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out, background-color .22s ease-out
}

.rgz-stat-card:before {
    background: linear-gradient(90deg, rgba(245, 158, 11, .1), rgba(245, 158, 11, .9), rgba(245, 158, 11, .1));
    border-radius: 999px;
    content: "";
    height: 3px;
    inset-inline: 22px;
    opacity: .85;
    position: absolute;
    top: 0
}

.rgz-stat-card:after {
    background: radial-gradient(ellipse at 50% 0, rgba(15, 23, 42, .08), transparent 70%);
    content: "";
    inset-inline: 0;
    bottom: -28px;
    height: 56px
}

.rgz-stat-card-decor,
.rgz-stat-card:after {
    pointer-events: none;
    position: absolute;
    z-index: -1
}

.rgz-stat-card-decor {
    background: url(../img/stat-card-decor--green.svg) repeat 50%/15px;
    height: 100%;
    left: 50%;
    opacity: .05;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%
}

.rgz-stat-card:nth-child(2) .rgz-stat-card-decor {
    background-image: url(../img/stat-card-decor--yellow.svg);
    opacity: .09
}

.rgz-stat-card:nth-child(3) .rgz-stat-card-decor {
    background-image: url(../img/stat-card-decor--red.svg)
}

.rgz-stat-card:hover {
    background-color: #fff;
    border-color: rgba(191, 219, 254, .8);
    box-shadow: 0 24px 50px rgba(15, 23, 42, .16), 0 0 0 1px rgba(191, 219, 254, .75);
    transform: translateY(-6px)
}

.rgz-stat-icon {
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .18);
    display: inline-flex;
    height: 72px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 72px
}

.rgz-stat-icon:after {
    background: radial-gradient(circle at 30% 10%, hsla(0, 0%, 100%, .55), transparent 70%);
    content: "";
    inset: -30%;
    opacity: .8;
    pointer-events: none;
    position: absolute
}

.rgz-stat-icon:before {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 40px;
    position: relative;
    width: 40px;
    z-index: 1
}

.rgz-stat-icon-1:before {
    background-image: url(../assets/images/fun-facts/01.svg)
}

.rgz-stat-icon-2:before {
    background-image: url(../assets/images/fun-facts/02.svg)
}

.rgz-stat-icon-3:before {
    background-image: url(../assets/images/fun-facts/03.svg)
}

.rgz-stat-number {
    color: var(--primary-color);
    font-family: var(--rr-font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-top: 10px
}

.rgz-stat-label {
    color: var(--ink-muted);
    font-size: .92rem;
    margin-top: 4px
}

@media (max-width:1023.98px) {
    .rgz-success-section {
        padding: 72px 0 80px
    }

    .rgz-success-header {
        margin-bottom: 28px
    }

    .rgz-success-stats {
        gap: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .rgz-stat-card {
        border-radius: 22px;
        padding: 22px 20px 20px
    }

    .rgz-stat-number {
        font-size: 1.8rem
    }
}

@media (max-width:640px) {

    .rgz-success-section:after,
    .rgz-success-section:before {
        inset-block: 26px 24px;
        opacity: .46;
        width: 120px
    }

    .rgz-success-stats {
        gap: 16px;
        grid-template-columns: 1fr
    }

    .rgz-success-header {
        text-align: left
    }
}

.rgz-services-section {
    background: radial-gradient(circle at 0 0, rgba(15, 23, 42, .06), transparent 55%), radial-gradient(circle at 100% 100%, rgba(15, 23, 42, .06), transparent 55%), linear-gradient(180deg, #f9fafb, #f3f4f6 52%, #e5e7eb);
    isolation: isolate;
    overflow: hidden;
    padding: 96px 0 120px;
    position: relative
}

.rgz-services-section:before {
    background: linear-gradient(90deg, hsla(46, 45%, 94%, .2), rgba(245, 158, 11, .9), hsla(46, 45%, 94%, .2));
    border-radius: 999px;
    content: "";
    height: 3px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .95;
    position: absolute;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    top: 0;
    z-index: 0
}

.rgz-services-section:after {
    background: radial-gradient(circle at 15% 20%, rgba(209, 213, 219, .35), transparent 60%), radial-gradient(circle at 85% 80%, rgba(148, 163, 184, .35), transparent 60%);
    content: "";
    inset: 0;
    mix-blend-mode: soft-light;
    opacity: .7;
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.rgz-services-container {
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter);
    position: relative;
    z-index: 1
}

.rgz-services-header {
    margin: 0 auto 52px;
    max-width: 780px;
    text-align: center
}

.rgz-services-badge {
    align-items: center;
    background-color: #fefce8;
    border: 1px solid rgba(234, 179, 8, .45);
    border-radius: 999px;
    color: var(--accent-gold);
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    gap: .4rem;
    letter-spacing: .18em;
    padding: .35rem 1.35rem;
    text-transform: uppercase
}

.rgz-services-badge:before {
    background: radial-gradient(circle, #facc15 0, #92400e 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(250, 204, 21, .65);
    content: "";
    height: 8px;
    width: 8px
}

.rgz-services-title {
    color: var(--primary-color);
    font-size: clamp(2.05rem, 1.5rem + 1.8vw, 2.7rem);
    line-height: 1.18;
    margin-top: 18px
}

.rgz-services-intro {
    color: var(--ink-soft);
    font-size: 1rem;
    margin-top: 12px
}

.rgz-services-description {
    color: var(--ink-muted);
    font-size: .96rem;
    margin-top: 6px
}

.rgz-services-header:after {
    background: linear-gradient(90deg, rgba(31, 41, 55, 0), rgba(31, 41, 55, .6), rgba(31, 41, 55, 0));
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    margin: 22px auto 0;
    width: 80px
}

.rgz-services-grid {
    align-items: stretch;
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px
}

.rgz-service-card {
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, .95), rgba(241, 245, 249, .98)), #fff;
    border-radius: 30px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, .12), 0 0 0 1px rgba(209, 213, 219, .8);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    isolation: isolate;
    overflow: hidden;
    padding: 26px 26px 24px;
    position: relative;
    transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out, background-color .22s ease-out
}

.rgz-service-card:before {
    background: linear-gradient(145deg, rgba(248, 250, 252, .9), rgba(191, 219, 254, .9), hsla(240, 5%, 84%, .7));
    border-radius: inherit;
    inset: 0;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .9;
    padding: 1px
}

.rgz-service-card:after,
.rgz-service-card:before {
    content: "";
    pointer-events: none;
    position: absolute
}

.rgz-service-card:after {
    background: radial-gradient(ellipse at 50% 0, rgba(15, 23, 42, .18), transparent 70%);
    bottom: -32px;
    height: 48px;
    left: 10%;
    opacity: .75;
    right: 10%;
    z-index: -1
}

.rgz-service-card:hover {
    background-color: #fff;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .22), 0 0 0 1px rgba(191, 219, 254, .9);
    transform: translateY(-8px)
}

.rgz-service-card:hover .rgz-service-image img {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.04) translateY(-2px)
}

.rgz-service-content {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.rgz-service-icon {
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 60%;
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .23);
    color: #f9fafb;
    display: inline-flex;
    flex: 0 0 auto;
    height: 56px;
    justify-content: center;
    margin-bottom: 10px;
    opacity: .7;
    overflow: hidden;
    position: relative;
    width: 56px
}

.rgz-service-icon:after {
    background: radial-gradient(circle at 20% 0, hsla(0, 0%, 100%, .7), transparent 55%);
    content: "";
    inset: -20%;
    opacity: .7;
    pointer-events: none;
    position: absolute
}

.rgz-icon-broker {
    background-image: url(../assets/icons/broker.webp)
}

.rgz-icon-broker,
.rgz-icon-crypto {
    filter: invert(1) brightness(.05)
}

.rgz-icon-crypto {
    background-image: url(../assets/icons/crypto.webp)
}

.rgz-icon-investment {
    background-image: url(../assets/icons/investment.webp);
    filter: invert(1) brightness(.05)
}

.rgz-icon-international {
    background-image: url(../assets/icons/international.webp);
    filter: invert(1) brightness(.05)
}

.rgz-service-title {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-top: 4px
}

.rgz-service-description {
    color: var(--ink-soft);
    font-size: .96rem;
    line-height: 1.75;
    margin-top: 4px
}

.rgz-service-link {
    align-items: center;
    color: var(--accent-color-strong);
    display: inline-flex;
    font-size: .94rem;
    font-weight: 600;
    gap: .4rem;
    letter-spacing: .04em;
    margin-top: 12px;
    padding-bottom: 4px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase
}

.rgz-service-link:after {
    background: linear-gradient(90deg, rgba(37, 99, 235, .15), rgba(37, 99, 235, .9));
    border-radius: 999px;
    bottom: 0;
    content: "";
    height: 1.5px;
    left: 0;
    position: absolute;
    transition: width .22s ease-out;
    width: 0
}

.rgz-service-link .rgz-link-arrow {
    display: inline-flex;
    transform: translateX(0);
    transition: transform .22s ease-out
}

.rgz-service-link:hover:after {
    width: 100%
}

.rgz-service-link:hover .rgz-link-arrow {
    transform: translateX(2px)
}

.rgz-service-card:hover .rgz-service-link:after {
    width: 100%
}

.rgz-service-image {
    align-self: stretch;
    background: radial-gradient(circle at 10% 0, rgba(15, 23, 42, .1), transparent 60%);
    border-radius: 24px;
    min-height: 180px;
    overflow: hidden;
    position: relative
}

.rgz-service-image img {
    border-radius: inherit;
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: 50% 50%;
    transition: transform .45s cubic-bezier(.19, .7, .3, 1), filter .35s ease-out;
    width: 100%
}

.rgz-service-image:after {
    background: linear-gradient(0deg, rgba(15, 23, 42, .55), transparent);
    content: "";
    inset-inline: 0;
    bottom: 0;
    height: 40%;
    opacity: .55;
    pointer-events: none;
    position: absolute
}

.rgz-service-image:before {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(15, 23, 42, .76);
    border: 1px solid rgba(148, 163, 184, .7);
    border-radius: 999px;
    color: #e5e7eb;
    content: "Case Study";
    font-size: .7rem;
    font-weight: 600;
    left: 14px;
    letter-spacing: .16em;
    padding: 4px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 14px
}

@media (max-width:1023.98px) {
    .rgz-services-section {
        padding: 80px 0 90px
    }

    .rgz-services-grid {
        gap: 22px
    }

    .rgz-service-card,
    .rgz-services-grid {
        grid-template-columns: minmax(0, 1fr)
    }

    .rgz-service-card {
        border-radius: 26px;
        padding: 22px 20px 20px
    }

    .rgz-service-image {
        min-height: 200px;
        order: -1
    }

    .rgz-services-header {
        margin-bottom: 38px
    }
}

@media (max-width:640px) {
    .rgz-services-section:before {
        left: 24px;
        right: 24px
    }

    .rgz-services-header:after {
        margin-top: 18px
    }

    .rgz-service-card {
        border-radius: 22px;
        padding: 20px 18px 18px
    }

    .rgz-service-icon {
        border-radius: 18px;
        height: 52px;
        margin-bottom: 8px;
        width: 52px
    }

    .rgz-service-title {
        font-size: 1.05rem
    }

    .rgz-service-description {
        font-size: .94rem
    }

    .rgz-service-image {
        border-radius: 20px;
        min-height: 180px
    }

    .rgz-service-image:before {
        font-size: .65rem;
        padding-inline: 8px
    }
}

.rgz-process-section {
    background: radial-gradient(circle at 0 0, rgba(191, 219, 254, .45), transparent 60%), radial-gradient(circle at 100% 100%, rgba(221, 214, 254, .5), transparent 55%), linear-gradient(180deg, #f9fafb, #eef2ff 45%, #e5e7eb);
    color: #0f172a;
    isolation: isolate;
    overflow: hidden;
    padding: 96px 0 112px;
    position: relative
}

.rgz-process-section:before {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(234, 179, 8, .9), rgba(148, 163, 184, 0));
    border-radius: 999px;
    height: 2.5px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .92;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    top: 0
}

.rgz-process-section:after,
.rgz-process-section:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.rgz-process-section:after {
    background: radial-gradient(circle at 20% 30%, rgba(148, 163, 184, .18), transparent 60%), radial-gradient(circle at 80% 80%, rgba(209, 213, 219, .18), transparent 55%);
    inset: 0;
    mix-blend-mode: soft-light;
    opacity: .65
}

.rgz-process-container {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter);
    position: relative;
    z-index: 1
}

.rgz-process-content {
    position: relative
}

.rgz-process-header {
    margin-bottom: 36px;
    max-width: 540px
}

.rgz-process-badge {
    align-items: center;
    background: radial-gradient(circle at 0 0, rgba(191, 219, 254, .9), rgba(219, 234, 254, .3)), linear-gradient(120deg, #f9fafb, #e5edff);
    border: 1px solid rgba(148, 163, 184, .7);
    border-radius: 999px;
    color: #1f2937;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    gap: .45rem;
    letter-spacing: .18em;
    padding: .42rem 1.6rem;
    text-transform: uppercase
}

.rgz-process-badge:before {
    background: radial-gradient(circle, #facc15 0, #92400e 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(248, 250, 252, .95), 0 0 12px rgba(250, 204, 21, .9);
    content: "";
    height: 8px;
    width: 8px
}

.rgz-process-title {
    color: #020617;
    font-family: var(--rr-font-heading);
    font-size: clamp(2rem, 1.4rem + 1.6vw, 2.6rem);
    letter-spacing: -.02em;
    line-height: 1.18;
    margin-top: 18px
}

.rgz-process-description {
    color: #4b5563;
    font-size: .98rem;
    margin-top: 12px;
    max-width: 540px
}

.rgz-process-header:after {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(37, 99, 235, .95), rgba(148, 163, 184, 0));
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    margin-top: 22px;
    width: 96px
}

.rgz-process-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 32px;
    position: relative
}

.rgz-process-steps:before {
    background: linear-gradient(180deg, rgba(209, 213, 219, .1), rgba(156, 163, 175, .8), rgba(209, 213, 219, .08));
    border-radius: 999px;
    bottom: 4px;
    content: "";
    left: 28px;
    opacity: .85;
    position: absolute;
    top: 4px;
    width: 2px
}

.rgz-process-step {
    background: radial-gradient(circle at 0 0, rgba(219, 234, 254, .9), hsla(0, 0%, 100%, .6)), linear-gradient(145deg, #fff, #f9fafb);
    border: 1px solid rgba(209, 213, 219, .9);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, .06), 0 0 0 1px rgba(243, 244, 246, .9);
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px 20px 18px 18px;
    position: relative;
    transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out, background .3s ease-out
}

.rgz-process-step:after {
    background: radial-gradient(ellipse at 50% 0, rgba(148, 163, 184, .45), transparent 70%);
    bottom: -26px;
    content: "";
    height: 40px;
    left: 18%;
    opacity: .5;
    pointer-events: none;
    position: absolute;
    right: 10%;
    z-index: -1
}

.rgz-process-step:hover {
    background: radial-gradient(circle at 0 0, #bfdbfe, rgba(239, 246, 255, .9)), linear-gradient(145deg, #fff, #eef2ff);
    border-color: rgba(191, 219, 254, .9);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .14), 0 0 0 1px rgba(191, 219, 254, .9);
    transform: translateY(-4px)
}

.rgz-step-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 60px;
    z-index: 1
}

.rgz-step-icon,
.rgz-step-visual {
    align-items: center;
    position: relative
}

.rgz-step-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 60%;
    border-radius: 16px;
    color: #1f2937;
    display: inline-flex;
    filter: invert(1) brightness(.05);
    flex: 0 0 auto;
    height: 44px;
    justify-content: center;
    opacity: .8;
    overflow: hidden;
    width: 44px
}

.rgz-step-icon:after {
    background: radial-gradient(circle at 15% 0, rgba(0, 0, 0, .2), transparent 55%);
    content: "";
    inset: -20%;
    opacity: .9;
    pointer-events: none;
    position: absolute
}

.rgz-process-step:hover .rgz-step-icon {
    box-shadow: 0 0 0 1px rgba(59, 130, 246, .3)
}

.rgz-step-connector {
    background: linear-gradient(180deg, rgba(209, 213, 219, .3), rgba(156, 163, 175, .9), rgba(209, 213, 219, .3));
    border-radius: 999px;
    flex: 1 1 auto;
    opacity: .9;
    width: 2px
}

.rgz-process-step:last-child .rgz-step-connector {
    flex-grow: 0;
    height: 10px
}

.rgz-step-number {
    align-items: center;
    background: radial-gradient(circle at 0 0, rgba(249, 250, 251, .9), rgba(239, 246, 255, .6)), linear-gradient(135deg, #fff, #e5edff);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 999px;
    color: #111827;
    display: inline-flex;
    font-family: var(--rr-font-heading);
    font-size: .78rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .18em;
    min-width: 38px;
    padding: 4px 11px 5px;
    text-transform: uppercase
}

.rgz-step-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative
}

.rgz-step-title {
    color: #020617;
    font-family: var(--rr-font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -.01em
}

.rgz-step-description {
    color: #4b5563;
    font-size: .95rem;
    line-height: 1.8
}

.rgz-step-content:before {
    background: linear-gradient(180deg, rgba(250, 204, 21, .1), rgba(250, 204, 21, .95), rgba(250, 204, 21, .1));
    border-radius: 999px;
    content: "";
    height: 32px;
    left: 74px;
    opacity: .85;
    position: absolute;
    top: 14px;
    width: 3px
}

.rgz-process-step:hover .rgz-step-content:before {
    height: 40px
}

.rgz-icon-search {
    background-image: url(../assets/icons/search.webp)
}

.rgz-icon-legal {
    background-image: url(../assets/icons/legal.webp)
}

.rgz-icon-recovery {
    background-image: url(../assets/icons/recovery.webp)
}

.rgz-process-image {
    background: radial-gradient(circle at 0 0, rgba(191, 219, 254, .75), transparent 65%), linear-gradient(145deg, #fff, #f3f4f6);
    border-radius: 32px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, .12), 0 0 0 1px rgba(229, 231, 235, .9);
    justify-self: end;
    max-width: 480px;
    overflow: hidden;
    padding: 16px;
    position: relative
}

.rgz-process-image img {
    border-radius: 26px;
    display: block;
    filter: saturate(1.03) contrast(1.02);
    height: 100%;
    min-height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: 50% 50%;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1), filter .4s ease-out;
    width: 100%
}

.rgz-process-image:after {
    background: linear-gradient(120deg, transparent, hsla(0, 0%, 100%, .7) 40%, hsla(0, 0%, 100%, .3) 60%, transparent 80%);
    border-radius: 26px;
    content: "";
    inset: 10px;
    
    pointer-events: none;
    position: absolute;
    transform: translateX(-120%);
    transition: transform .9s cubic-bezier(.15, .7, .3, 1), opacity .5s ease-out
}

.rgz-process-section:hover .rgz-process-image:after {
    opacity: 1;
    transform: translateX(120%)
}

.rgz-process-section:hover .rgz-process-image img {
    filter: saturate(1.08) contrast(1.05);
    transform: scale(1.04)
}

.rgz-process-image figcaption,
.rgz-process-image-caption {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(249, 250, 251, .9);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 999px;
    bottom: 22px;
    color: #111827;
    font-size: .7rem;
    font-weight: 600;
    left: 24px;
    letter-spacing: .16em;
    padding: 4px 11px 5px;
    position: absolute;
    text-transform: uppercase
}

@media (max-width:1023.98px) {
    .rgz-process-section {
        padding: 80px 0 96px
    }

    .rgz-process-container {
        gap: 40px;
        grid-template-columns: minmax(0, 1fr)
    }

    .rgz-process-image {
        justify-self: stretch;
        max-width: 520px
    }
}

@media (max-width:640px) {
    .rgz-process-section {
        padding: 64px 0 80px
    }

    .rgz-process-header {
        margin-bottom: 28px
    }

    .rgz-process-title {
        font-size: clamp(1.8rem, 1.5rem + 1vw, 2.1rem)
    }

    .rgz-process-description {
        font-size: .95rem
    }

    .rgz-process-steps:before {
        left: 24px
    }

    .rgz-process-step {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 14px 16px 16px
    }

    .rgz-step-icon {
        border-radius: 14px;
        height: 40px;
        width: 40px
    }

    .rgz-step-number {
        font-size: .76rem;
        min-width: 34px
    }

    .rgz-step-content:before {
        height: 30px;
        left: 68px;
        top: 12px
    }

    .rgz-process-image {
        border-radius: 26px;
        padding: 12px
    }

    .rgz-process-image img {
        border-radius: 22px;
        min-height: 220px
    }

    .rgz-process-image:after {
        border-radius: 22px;
        inset: 8px
    }
}

.rgz-faq-section {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, .2), transparent 55%), radial-gradient(circle at 100% 100%, rgba(191, 219, 254, .18), transparent 55%), #f5f7fb;
    color: #0f172a;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 88px;
    position: relative
}

.rgz-faq-section:before {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, .6), rgba(148, 163, 184, 0));
    border-radius: 999px;
    height: 2px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .9;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    top: 0
}

.rgz-faq-section:after,
.rgz-faq-section:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.rgz-faq-section:after {
    background: radial-gradient(circle at 20% 25%, rgba(148, 163, 184, .18), transparent 60%), radial-gradient(circle at 80% 70%, rgba(209, 213, 219, .18), transparent 60%);
    inset: -20%;
    mix-blend-mode: normal;
    opacity: .6
}

.rgz-faq-container {
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter);
    position: relative;
    z-index: 1
}

.rgz-faq-header {
    margin: 0 auto 28px;
    max-width: 640px;
    text-align: center
}

.rgz-faq-badge {
    align-items: center;
    background: linear-gradient(135deg, #fff, #f3f4f6);
    border: 1px solid rgba(148, 163, 184, .6);
    border-radius: 999px;
    color: #4b5563;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    gap: .4rem;
    letter-spacing: .18em;
    padding: .4rem 1.6rem;
    text-transform: uppercase
}

.rgz-faq-badge:before {
    background: radial-gradient(circle, #fbbf24 0, #b45309 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px #f9fafb, 0 0 8px rgba(251, 191, 36, .8);
    content: "";
    height: 7px;
    width: 7px
}

.rgz-faq-title {
    color: #111827;
    font-family: var(--rr-font-heading);
    font-size: clamp(1.8rem, 1.4rem + 1.1vw, 2.2rem);
    letter-spacing: -.02em;
    line-height: 1.18;
    margin-top: 16px
}

.rgz-faq-description {
    color: #4b5563;
    font-size: .98rem;
    margin: 12px auto 0;
    max-width: 540px
}

.rgz-faq-header:after {
    background: linear-gradient(90deg, rgba(156, 163, 175, 0), rgba(156, 163, 175, .9), rgba(156, 163, 175, 0));
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    margin: 22px auto 0;
    width: 84px
}

.rgz-faq-content {
    align-items: stretch;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 32px
}

.rgz-faq-image {
    background: linear-gradient(145deg, #fff, #f3f4f6);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08), 0 0 0 1px rgba(15, 23, 42, .03);
    margin: 0 auto;
    max-width: 520px;
    min-height: 220px;
    overflow: hidden;
    padding: 10px;
    position: relative
}

.rgz-faq-image img,
.rgz-faq-image picture {
    display: block;
    height: 100%;
    width: 100%
}

.rgz-faq-image img {
    border-radius: 18px;
    filter: saturate(1.02) contrast(1.01);
    -o-object-fit: cover;
    object-fit: cover;
    transform-origin: 50% 50%;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1), filter .35s ease-out
}

.rgz-faq-image:after {
    background: linear-gradient(120deg, transparent, hsla(0, 0%, 100%, .45) 45%, hsla(0, 0%, 100%, .8) 55%, transparent 80%);
    border-radius: 18px;
    content: "";
    inset: 8px;
    
    pointer-events: none;
    position: absolute;
    transform: translateX(-120%);
    transition: transform .85s cubic-bezier(.16, .75, .3, 1), opacity .5s ease-out
}

.rgz-faq-image-label {
 
    background: rgba(243, 244, 246, .9);
    border: 1px solid rgba(209, 213, 219, .9);
    border-radius: 999px;
    bottom: 18px;
    color: #111827;
    font-size: .7rem;
    font-weight: 600;
    left: 20px;
    letter-spacing: .14em;
    padding: 4px 11px 5px;
    position: absolute;
    text-transform: uppercase
}

.rgz-faq-section:hover .rgz-faq-image:after {
    opacity: 1;
    transform: translateX(120%)
}

.rgz-faq-section:hover .rgz-faq-image img {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.03)
}

.rgz-faq-accordion {
    background: #fff;
    border: 1px solid rgba(209, 213, 219, .8);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .08), 0 0 0 1px rgba(15, 23, 42, .02);
    overflow: hidden;
    padding: 14px 14px 16px;
    position: relative
}

.rgz-faq-accordion:before {
    background: linear-gradient(180deg, rgba(209, 213, 219, .1), rgba(156, 163, 175, .9), rgba(209, 213, 219, .1));
    border-radius: 999px;
    bottom: 18px;
    content: "";
    display: none;
    left: 18px;
    opacity: .85;
    position: absolute;
    top: 18px;
    width: 1px
}

.rgz-faq-item {
    background: linear-gradient(135deg, #fff, #f9fafb);
    border: 1px solid rgba(209, 213, 219, .9);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
    overflow: hidden;
    position: relative;
    transition: border-color .2s ease-out, box-shadow .2s ease-out, background .22s ease-out, transform .16s ease-out
}

.rgz-faq-item+.rgz-faq-item {
    margin-top: 10px
}

.rgz-faq-item.active,
.rgz-faq-item.is-open,
.rgz-faq-item[data-open=true] {
    background: linear-gradient(135deg, #fefce8, #f9fafb);
    border-color: rgba(251, 191, 36, .75);
    box-shadow: 0 16px 32px rgba(15, 23, 42, .06);
    transform: translateY(-1px)
}

.rgz-faq-question {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: grid;
    font: inherit;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    outline: none;
    padding: 14px 14px 12px 18px;
    position: relative;
    text-align: left;
    transition: background .18s ease-out, color .18s ease-out;
    width: 100%;
    z-index: 1
}

.rgz-faq-question:hover {
    background: linear-gradient(90deg, rgba(243, 244, 246, .9), #f9fafb)
}

.rgz-faq-question:focus-visible {
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, .9), 0 0 0 4px rgba(191, 219, 254, .9)
}

.rgz-question-number {
    align-self: center;
    color: #9ca3af;
    font-size: .74rem;
    letter-spacing: .2em;
    text-transform: uppercase
}

.rgz-question-number,
.rgz-question-text {
    font-family: var(--rr-font-heading)
}

.rgz-question-text {
    color: #111827;
    font-size: .96rem;
    font-weight: 500;
    letter-spacing: -.01em
}

.rgz-question-icon {
    align-items: center;
    background: radial-gradient(circle at 30% 0, #fff, #e5e7eb);
    border: 1px solid rgba(209, 213, 219, .9);
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, .06);
    color: #4b5563;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    transition: transform .22s ease-out, box-shadow .22s ease-out, border-color .22s ease-out, background .22s ease-out;
    width: 30px
}

.rgz-question-icon svg {
    display: block
}

.rgz-faq-question:hover .rgz-question-icon {
    border-color: #9ca3af;
    box-shadow: 0 6px 14px rgba(15, 23, 42, .08)
}

.rgz-faq-item.active .rgz-question-icon,
.rgz-faq-item.is-open .rgz-question-icon,
.rgz-faq-question[aria-expanded=true] .rgz-question-icon {
    transform: rotate(180deg)
}

.rgz-faq-item.active .rgz-question-text,
.rgz-faq-item.is-open .rgz-question-text {
    color: #111827
}

.rgz-faq-item.active .rgz-question-number,
.rgz-faq-item.is-open .rgz-question-number {
    color: #b45309
}

.rgz-faq-answer {
    max-height: 0;
    
    overflow: hidden;
    padding: 0 18px;
    pointer-events: none;
    transition: max-height .28s ease-out, opacity .24s ease-out, padding-top .26s ease-out, padding-bottom .28s ease-out
}

.rgz-faq-answer p {
    color: #4b5563;
    font-size: .94rem;
    line-height: 1.8
}

.rgz-faq-item.active .rgz-faq-answer,
.rgz-faq-item.is-open .rgz-faq-answer,
.rgz-faq-item[data-open=true] .rgz-faq-answer,
.rgz-faq-question[aria-expanded=true]+.rgz-faq-answer {
    max-height: 260px;
    opacity: 1;
    padding-bottom: 14px;
    padding-top: 2px;
    pointer-events: auto
}

@media (min-width:640px) {
    .rgz-faq-header {
        margin-bottom: 34px
    }

    .rgz-faq-content {
        gap: 28px;
        margin-top: 34px
    }

    .rgz-faq-accordion {
        border-radius: 24px;
        padding: 16px 16px 18px
    }

    .rgz-faq-accordion:before {
        display: block;
        left: 16px
    }

    .rgz-faq-answer {
        padding-inline: 24px
    }

    .rgz-faq-image {
        border-radius: 24px;
        min-height: 240px;
        padding: 12px
    }

    .rgz-faq-image img {
        border-radius: 20px
    }
}

@media (min-width:1024px) {
    .rgz-faq-section {
        padding: 88px 0 104px
    }

    .rgz-faq-header {
        margin-bottom: 40px
    }

    .rgz-faq-title {
        font-size: clamp(2rem, 1.4rem + 1.2vw, 2.5rem)
    }

    .rgz-faq-content {
        align-items: stretch;
        gap: 40px;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        margin-top: 40px
    }

    .rgz-faq-image {
        min-height: 320px;
        order: 0
    }

    .rgz-faq-accordion {
        border-radius: 26px;
        padding: 18px 18px 20px
    }

    .rgz-faq-accordion:before {
        bottom: 18px;
        left: 18px;
        top: 18px
    }
}

.rgz-testimonials-section {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, .22), transparent 58%), radial-gradient(circle at 100% 100%, rgba(191, 219, 254, .18), transparent 60%), #f4f5f8;
    color: #0f172a;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 88px;
    position: relative
}

.rgz-testimonials-section-background {
    background: url(../assets/images/testimonials/testimonials-bg2.webp) no-repeat 50%;
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    inset: 0;
    opacity: .24;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 0
}

.rgz-testimonials-section:before {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, .65), rgba(148, 163, 184, 0));
    border-radius: 999px;
    height: 2px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .95;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    top: 0
}

.rgz-testimonials-section:after,
.rgz-testimonials-section:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.rgz-testimonials-section:after {
    background: radial-gradient(circle at 20% 25%, rgba(209, 213, 219, .22), transparent 60%), radial-gradient(circle at 80% 75%, rgba(226, 232, 240, .2), transparent 60%);
    inset: -20%;
    mix-blend-mode: normal;
    opacity: .65
}

.rgz-testimonials-container {
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter);
    position: relative;
    z-index: 1
}

.rgz-testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px
}

.rgz-header-left {
    max-width: 640px
}

.rgz-testimonials-badge {
    align-items: center;
    background: linear-gradient(135deg, #fff, #f3f4f6);
    border: 1px solid rgba(156, 163, 175, .7);
    border-radius: 999px;
    color: #4b5563;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    gap: .4rem;
    letter-spacing: .18em;
    padding: .4rem 1.5rem;
    text-transform: uppercase
}

.rgz-testimonials-badge:before {
    background: radial-gradient(circle, #fbbf24 0, #b45309 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px #f9fafb, 0 0 8px rgba(251, 191, 36, .7);
    content: "";
    height: 7px;
    width: 7px
}

.rgz-testimonials-title {
    color: #111827;
    font-family: var(--rr-font-heading);
    font-size: clamp(1.8rem, 1.4rem + 1.1vw, 2.2rem);
    letter-spacing: -.02em;
    line-height: 1.18;
    margin-top: 14px
}

.rgz-testimonials-description {
    color: #4b5563;
    font-size: .98rem;
    margin-top: 10px;
    max-width: 520px
}

.rgz-header-left:after {
    background: linear-gradient(90deg, rgba(156, 163, 175, 0), rgba(156, 163, 175, .9), rgba(156, 163, 175, 0));
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    margin-top: 20px;
    width: 84px
}

.rgz-header-right {
    display: flex;
    justify-content: flex-start
}

.rgz-slider-controls {
    align-items: center;
    background: rgba(248, 250, 252, .8);
    border: 1px solid rgba(209, 213, 219, .9);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04), 0 0 0 1px rgba(15, 23, 42, .02);
    display: inline-flex;
    gap: 16px;
    padding: 8px 10px
}

.rgz-slider-pagination {
    align-items: baseline;
    display: inline-flex;
    font-family: var(--rr-font-heading);
    gap: 4px
}

.rgz-current-slide {
    color: #111827;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase
}

.rgz-separator {
    color: #9ca3af;
    font-size: .72rem
}

.rgz-total-slides {
    color: #6b7280;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase
}

.rgz-slider-buttons {
    gap: 8px;
    margin-left: 4px
}

.rgz-slider-btn,
.rgz-slider-buttons {
    align-items: center;
    display: inline-flex
}

.rgz-slider-btn {
    background: radial-gradient(circle at 30% 0, #fff, #e5e7eb);
    border: 1px solid rgba(209, 213, 219, .95);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(15, 23, 42, .06);
    color: #4b5563;
    cursor: pointer;
    height: 30px;
    justify-content: center;
    padding: 0;
    transition: background .18s ease-out, border-color .18s ease-out, box-shadow .18s ease-out, transform .14s ease-out;
    width: 30px
}

.rgz-slider-btn svg {
    display: block
}

.rgz-slider-btn:hover {
    background: radial-gradient(circle at 30% 0, #f9fafb, #e5e7eb);
    border-color: #9ca3af;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .09);
    transform: translateY(-1px)
}

.rgz-slider-btn:active {
    box-shadow: 0 4px 10px rgba(15, 23, 42, .06);
    transform: translateY(0)
}

.rgz-slider-btn:focus-visible {
    box-shadow: 0 0 0 1px rgba(37, 99, 235, .95), 0 0 0 4px rgba(191, 219, 254, .9);
    outline: none
}

.rgz-testimonials-slider-wrapper {
    background: #fff;
    border: 1px solid rgba(209, 213, 219, .9);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08), 0 0 0 1px rgba(15, 23, 42, .03);
    margin-top: 30px;
    margin-inline: auto;
    max-width: 560px;
    padding: 14px;
    position: relative
}

.rgz-testimonials-slider-wrapper:before {
    background: radial-gradient(ellipse at 0 50%, rgba(15, 23, 42, .12), transparent 60%), radial-gradient(ellipse at 100% 50%, rgba(15, 23, 42, .12), transparent 60%), linear-gradient(180deg, rgba(156, 163, 175, .12), rgba(156, 163, 175, .02), transparent 80%);
    bottom: 18px;
    left: -40px;
    right: -40px;
    top: 12px
}

.rgz-testimonials-slider-wrapper:after,
.rgz-testimonials-slider-wrapper:before {
    border-radius: 999px;
    content: "";
    
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.rgz-testimonials-slider-wrapper:after {
    background: radial-gradient(ellipse at 50% 0, rgba(15, 23, 42, .16), transparent 70%);
    bottom: -24px;
    height: 52px;
    left: 12%;
    right: 12%
}

.rgz-testimonials-slider {
    align-items: stretch;
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    transform: translateX(0);
    transition: transform .4s ease-out;
    z-index: 1
}

.rgz-testimonial-slide {
    align-items: stretch;
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    max-width: 100%;
    padding: 0
}

.rgz-testimonial-card {
    background: linear-gradient(135deg, #fff, #f9fafb);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
    overflow: hidden;
    padding: 22px 18px 20px;
    position: relative;
    width: 100%
}

.rgz-testimonial-card:before {
    background: linear-gradient(180deg, rgba(156, 163, 175, .2), rgba(55, 65, 81, .9), rgba(156, 163, 175, .2));
    border-radius: 999px;
    bottom: 16px;
    content: "";
    left: 0;
    opacity: .7;
    position: absolute;
    top: 16px;
    width: 3px
}

.rgz-testimonial-card:after {
    color: rgba(209, 213, 219, .75);
    content: "“";
    font-family: var(--rr-font-heading);
    font-size: 3.4rem;
    line-height: 1;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 10px
}

.rgz-testimonial-text {
    color: #374151;
    font-size: .96rem;
    line-height: 1.8;
    padding-right: 34px
}

.rgz-testimonial-author {
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
    padding-top: 10px
}

.rgz-author-name {
    color: #111827;
    font-family: var(--rr-font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -.01em
}

.rgz-author-info {
    color: #6b7280;
    font-size: .9rem
}

.rgz-author-info strong {
    color: #374151;
    font-weight: 600
}

@media (hover:hover) {
    .rgz-testimonial-card:hover {
        border-color: rgba(209, 213, 219, .9);
        box-shadow: 0 20px 44px rgba(15, 23, 42, .09);
        transform: translateY(-1px);
        transition: box-shadow .2s ease-out, transform .18s ease-out, border-color .2s ease-out
    }
}

.rgz-testimonial-slide.active .rgz-testimonial-card,
.rgz-testimonial-slide.is-active .rgz-testimonial-card,
.rgz-testimonial-slide[data-active=true] .rgz-testimonial-card {
    border-color: rgba(250, 204, 21, .75);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12), 0 0 0 1px rgba(250, 204, 21, .5)
}

@media (min-width:640px) {
    .rgz-testimonials-section {
        padding: 80px 0 96px
    }

    .rgz-testimonials-header {
        margin-bottom: 32px
    }

    .rgz-testimonials-slider-wrapper {
        border-radius: 26px;
        margin-top: 34px;
        padding: 18px
    }

    .rgz-testimonial-card {
        border-radius: 22px;
        padding: 24px 22px 20px
    }

    .rgz-testimonial-card:before {
        bottom: 18px;
        top: 18px
    }

    .rgz-testimonial-text {
        font-size: 1rem;
        padding-right: 44px
    }
}

@media (min-width:1024px) {
    .rgz-testimonials-section {
        padding: 88px 0 104px
    }

    .rgz-testimonials-header {
        align-items: flex-end;
        flex-direction: row;
        gap: 24px;
        justify-content: space-between;
        margin-bottom: 40px
    }

    .rgz-header-right {
        justify-content: flex-end
    }

    .rgz-slider-controls {
        padding: 8px 14px
    }

    .rgz-testimonials-title {
        font-size: clamp(2rem, 1.5rem + 1.2vw, 2.4rem)
    }

    .rgz-testimonials-slider-wrapper {
        border-radius: 28px;
        margin-top: 40px;
        overflow: visible;
        padding: 20px
    }

    .rgz-testimonials-slider-wrapper:after,
    .rgz-testimonials-slider-wrapper:before {
        opacity: 1
    }

    .rgz-testimonial-card {
        padding: 26px 26px 22px
    }

    .rgz-testimonial-card:after {
        font-size: 3.6rem;
        right: 22px;
        top: 6px
    }

    .rgz-testimonial-text {
        padding-right: 52px
    }
}

@media (max-width:640px) {
    .rgz-testimonials-header {
        gap: 14px;
        margin-bottom: 28px
    }

    .rgz-testimonials-title {
        font-size: clamp(1.8rem, 1.4rem + 1vw, 2.1rem)
    }

    .rgz-testimonials-description {
        font-size: .94rem
    }

    .rgz-slider-controls {
        border-radius: 18px;
        justify-content: space-between;
        padding-inline: 14px;
        width: 100%
    }

    .rgz-testimonials-slider-wrapper {
        border-radius: 24px;
        padding: 14px
    }

    .rgz-testimonial-card {
        border-radius: 20px
    }
}

.rgz-testimonials-slider-wrapper {
    overflow: hidden
}

@media (min-width:1024px) {
    .rgz-testimonials-slider-wrapper:before {
        bottom: 18px;
        left: 0;
        opacity: .9;
        right: 0;
        top: 10px
    }

    .rgz-testimonials-slider-wrapper:after {
        bottom: -18px;
        left: 18%;
        opacity: .9;
        right: 18%
    }
}

.rgz-testimonial-slide {
    padding: 0 10px
}

@media (min-width:1024px) {
    .rgz-testimonials-container {
        position: relative;
        z-index: 1
    }

    .rgz-testimonials-container:after,
    .rgz-testimonials-container:before {
        background: radial-gradient(circle at 20% 15%, rgba(148, 163, 184, .2), transparent 65%), radial-gradient(circle at 80% 85%, rgba(148, 163, 184, .14), transparent 65%);
        border-radius: 999px;
        box-shadow: 0 0 0 1px rgba(148, 163, 184, .15), 0 26px 60px rgba(15, 23, 42, .16);
        content: "";
        height: 420px;
        opacity: .35;
        pointer-events: none;
        position: absolute;
        top: 60%;
        transform: translateY(-50%);
        width: 240px;
        z-index: 0
    }

    .rgz-testimonials-container:before {
        left: 6%
    }

    .rgz-testimonials-container:after {
        right: 6%
    }

    .rgz-testimonials-slider-wrapper {
        position: relative;
        z-index: 1
    }
}

.rgz-consultation-section {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, .22), transparent 60%), radial-gradient(circle at 100% 100%, rgba(209, 213, 219, .16), transparent 60%), #f5f6f9;
    color: #0f172a;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 88px;
    position: relative
}

.rgz-consultation-section:before {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, .75), rgba(148, 163, 184, 0));
    height: 2px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .9;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    top: 0
}

.rgz-consultation-section:after,
.rgz-consultation-section:before {
    border-radius: 999px;
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.rgz-consultation-section:after {
    background: radial-gradient(ellipse at 50% 0, rgba(15, 23, 42, .18), transparent 70%);
    bottom: -48px;
    height: 82px;
    left: 10%;
    opacity: .55;
    right: 10%
}

.rgz-consultation-container {
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter);
    position: relative;
    z-index: 1
}

.rgz-consultation-header {
    margin: 0 auto 30px;
    max-width: 640px;
    text-align: left
}

.rgz-consultation-badge {
    align-items: center;
    background: linear-gradient(135deg, #fff, #f3f4f6);
    border: 1px solid rgba(156, 163, 175, .8);
    border-radius: 999px;
    color: #4b5563;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    gap: .4rem;
    letter-spacing: .18em;
    padding: .45rem 1.5rem;
    text-transform: uppercase
}

.rgz-consultation-badge:before {
    background: radial-gradient(circle, #fbbf24 0, #b45309 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px #f9fafb, 0 0 8px rgba(251, 191, 36, .7);
    content: "";
    height: 7px;
    width: 7px
}

.rgz-consultation-title {
    color: #111827;
    font-family: var(--rr-font-heading);
    font-size: clamp(1.9rem, 1.5rem + 1.2vw, 2.4rem);
    letter-spacing: -.02em;
    line-height: 1.18;
    margin-top: 16px
}

.rgz-consultation-subtitle {
    color: #4b5563;
    font-size: .98rem;
    margin-top: 10px;
    max-width: 540px
}

.rgz-consultation-header:after {
    background: linear-gradient(90deg, rgba(156, 163, 175, 0), rgba(156, 163, 175, .9), rgba(156, 163, 175, 0));
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    margin-top: 22px;
    width: 110px
}

.rgz-consultation-grid {
    display: flex;
    flex-direction: column
}

.rgz-consultation-image {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, .2), transparent 60%), #e5e7eb;
    border-radius: 22px 0 0 22px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .2), 0 0 0 1px rgba(148, 163, 184, .45);
    margin: 0;
    overflow: hidden;
    position: relative
}

.rgz-consultation-image img {
    display: block;
    filter: saturate(1.02) contrast(1.02);
    height: 100%;
    max-height: 260px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.rgz-consultation-image:after {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, .82);
    border: 1px solid rgba(209, 213, 219, .9);
    border-radius: 999px;
    color: #e5e7eb;
    content: "Vertraulich • Erstberatung";
    font-size: .7rem;
    font-weight: 500;
    left: 18px;
    letter-spacing: .16em;
    padding: 4px 12px 5px;
    position: absolute;
    text-transform: uppercase;
    top: 16px
}

.rgz-consultation-card {
    background: linear-gradient(135deg, #fff, #f9fafb);
    border: 1px solid rgba(209, 213, 219, .95);
    border-radius: 0 22px 22px 0;
    box-shadow: 0 22px 52px rgba(15, 23, 42, .18), 0 0 0 1px rgba(15, 23, 42, .03);
    padding: 20px 18px 22px;
    position: relative
}

.rgz-consultation-card:before {
    background: linear-gradient(180deg, rgba(156, 163, 175, .25), rgba(55, 65, 81, .9), rgba(156, 163, 175, .25));
    bottom: 18px;
    left: 0;
    opacity: .85;
    width: 3px
}

.rgz-consultation-card:after,
.rgz-consultation-card:before {
    border-radius: 999px;
    content: "";
    position: absolute;
    top: 18px
}

.rgz-consultation-card:after {
    background: linear-gradient(90deg, rgba(209, 213, 219, 0), rgba(209, 213, 219, .85), rgba(209, 213, 219, 0));
    height: 1px;
    left: 24px;
    pointer-events: none;
    right: 24px
}

.rgz-form-heading {
    color: #111827;
    font-family: var(--rr-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 0 0 18px;
    padding-left: 2px
}

.rgz-contact-form {
    gap: 14px;
    position: relative
}

.rgz-contact-form,
.rgz-form-row.rgz-two {
    display: flex;
    flex-direction: column
}

.rgz-form-row.rgz-two {
    gap: 12px
}

.rgz-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.rgz-input-group label {
    color: #4b5563;
    font-size: .84rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase
}

.rgz-contact-form input[type=email],
.rgz-contact-form input[type=number],
.rgz-contact-form input[type=tel],
.rgz-contact-form input[type=text],
.rgz-contact-form select,
.rgz-contact-form textarea {
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    color: #111827;
    font: inherit;
    font-size: .94rem;
    padding: 10px 12px;
    transition: border-color .18s ease-out, box-shadow .18s ease-out, background-color .18s ease-out;
    width: 100%
}

@media (hover:hover) {

    .rgz-contact-form input[type=email]:hover,
    .rgz-contact-form input[type=number]:hover,
    .rgz-contact-form input[type=tel]:hover,
    .rgz-contact-form input[type=text]:hover,
    .rgz-contact-form select:hover,
    .rgz-contact-form textarea:hover {
        background-color: #fefefe
    }
}

.rgz-contact-form input[type=email]:focus-visible,
.rgz-contact-form input[type=number]:focus-visible,
.rgz-contact-form input[type=tel]:focus-visible,
.rgz-contact-form input[type=text]:focus-visible,
.rgz-contact-form select:focus-visible,
.rgz-contact-form textarea:focus-visible {
    background-color: #fff;
    border-color: rgba(37, 99, 235, .95);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, .9), 0 0 0 4px rgba(191, 219, 254, .9);
    outline: none
}

.rgz-contact-form input::-moz-placeholder,
.rgz-contact-form textarea::-moz-placeholder {
    color: #9ca3af
}

.rgz-contact-form input::placeholder,
.rgz-contact-form textarea::placeholder {
    color: #9ca3af
}

.rgz-contact-form input[type=number]::-webkit-inner-spin-button,
.rgz-contact-form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.rgz-contact-form input[type=number] {
    -moz-appearance: textfield
}

.rgz-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #6b7280 0), linear-gradient(135deg, #6b7280 50%, transparent 0);
    background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
    padding-right: 34px
}

.rgz-contact-form textarea {
    line-height: 1.5;
    min-height: 120px;
    resize: vertical
}

.rgz-checkbox-line {
    align-items: flex-start;
    color: #4b5563;
    display: flex;
    font-size: .86rem;
    gap: 10px;
    margin-top: 2px
}

.rgz-checkbox-line input[type=checkbox] {
    accent-color: #111827;
    border: 1px solid #94a3b8;
    border-radius: 4px;
    cursor: pointer;
    height: 16px;
    margin-top: 2px;
    width: 16px
}

.rgz-checkbox-line a {
    border-bottom: 1px solid rgba(59, 130, 246, .35);
    color: #1d4ed8;
    text-decoration: none
}

.rgz-checkbox-line a:hover {
    border-bottom-color: rgba(59, 130, 246, .85)
}

.rgz-submit-btn {
    background: linear-gradient(135deg, #111827, #111827);
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .5);
    color: #f9fafb;
    font-size: .95rem;
    font-weight: 600;
    justify-content: center;
    letter-spacing: .06em;
    margin-top: 10px;
    min-height: 46px;
    padding-inline: 18px;
    text-transform: uppercase;
    width: 100%
}

.rgz-submit-btn .rgz-btn-ripple {
    background: radial-gradient(circle at var(--btn-halo-x, 50%) var(--btn-halo-y, 50%), rgba(245, 158, 11, .32), transparent 55%)
}

@media (hover:hover) {
    .rgz-submit-btn:hover {
        background: linear-gradient(135deg, #020617, #111827);
        box-shadow: 0 18px 40px rgba(15, 23, 42, .62);
        transform: translateY(-1px)
    }

    .rgz-submit-btn:active {
        box-shadow: 0 10px 22px rgba(15, 23, 42, .45);
        transform: translateY(0)
    }
}

.rgz-form-message {
    color: #374151;
    font-size: .86rem;
    margin-top: 10px;
    min-height: 1.1em
}

.rgz-form-message.error {
    color: #b91c1c
}

.rgz-form-message.success {
    color: #166534
}

.field-error {
    font-size: .82rem;
    line-height: 1.4;
    margin-top: 4px
}

.field-error,
.rgz-input-group.has-error label {
    color: #b91c1c
}

.rgz-input-group.has-error input,
.rgz-input-group.has-error select,
.rgz-input-group.has-error textarea {
    background-color: #fef2f2;
    border-color: #b91c1c
}

.rgz-input-group.has-error input:focus-visible,
.rgz-input-group.has-error select:focus-visible,
.rgz-input-group.has-error textarea:focus-visible {
    box-shadow: 0 0 0 1px #b91c1c, 0 0 0 4px hsla(0, 96%, 89%, .85)
}

.rgz-checkbox-line.has-error span {
    color: #b91c1c
}

@media (min-width:640px) {
    .rgz-consultation-section {
        padding: 80px 0 100px
    }

    .rgz-consultation-header {
        margin-bottom: 34px
    }

    .rgz-form-row.rgz-two {
        flex-direction: row
    }

    .rgz-form-row.rgz-two .rgz-input-group {
        flex: 1 1 0
    }

    .rgz-consultation-card {
        padding: 22px 22px 24px
    }

    .rgz-consultation-card:after {
        left: 28px;
        right: 28px
    }

    .rgz-consultation-image img {
        max-height: 320px
    }
}

@media (min-width:1024px) {
    .rgz-consultation-section {
        padding: 96px 0 112px
    }

    .rgz-consultation-header {
        margin-bottom: 40px;
        text-align: left
    }

    .rgz-consultation-grid {
        align-items: stretch;
        display: grid;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr)
    }

    .rgz-consultation-image {
        max-height: 100%
    }

    .rgz-consultation-image img {
        height: 100%;
        max-height: none
    }

    .rgz-consultation-card {
        padding: 24px 26px 26px
    }

    .rgz-submit-btn {
        align-self: flex-start;
        padding-inline: 26px;
        width: auto
    }
}

@media (min-width:1280px) {
    .rgz-consultation-card {
        padding: 28px 30px
    }

    .rgz-form-heading {
        font-size: 1.15rem
    }

    .rgz-consultation-subtitle {
        font-size: 1rem
    }
}

.rgz-blog-section {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, .22), transparent 60%), radial-gradient(circle at 100% 100%, rgba(209, 213, 219, .18), transparent 60%), #f4f5f8;
    color: #0f172a;
    isolation: isolate;
    overflow: hidden;
    padding: 80px 0 96px;
    position: relative
}

.rgz-blog-section:before {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, .7), rgba(148, 163, 184, 0));
    height: 2px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .95;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    top: 0
}

.rgz-blog-section:after,
.rgz-blog-section:before {
    border-radius: 999px;
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.rgz-blog-section:after {
    background: radial-gradient(ellipse at 50% 0, rgba(15, 23, 42, .18), transparent 70%);
    bottom: -52px;
    height: 82px;
    left: 8%;
    opacity: .55;
    right: 8%
}

.rgz-blog-container {
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter);
    position: relative;
    z-index: 1
}

.rgz-blog-header {
    margin: 0 auto 40px;
    max-width: 760px;
    text-align: left
}

.rgz-blog-badge {
    align-items: center;
    background: linear-gradient(135deg, #fff, #f3f4f6);
    border: 1px solid rgba(156, 163, 175, .85);
    border-radius: 999px;
    color: #4b5563;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    gap: .4rem;
    letter-spacing: .18em;
    padding: .45rem 1.5rem;
    text-transform: uppercase
}

.rgz-blog-badge:before {
    background: radial-gradient(circle, #f59e0b 0, #b45309 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px #f9fafb, 0 0 6px rgba(251, 191, 36, .75);
    content: "";
    height: 6px;
    width: 6px
}

.rgz-blog-title {
    color: #111827;
    font-family: var(--rr-font-heading);
    font-size: clamp(1.9rem, 1.5rem + 1.3vw, 2.5rem);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-top: 16px
}

.rgz-blog-description {
    color: #4b5563;
    font-size: .98rem;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 640px
}

.rgz-blog-header:after {
    background: linear-gradient(90deg, rgba(156, 163, 175, 0), rgba(156, 163, 175, .9), rgba(156, 163, 175, 0));
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    margin-top: 24px;
    width: 120px
}

.rgz-blog-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 10px
}

.rgz-blog-grid:after {
    content: "";
    display: block
}

.rgz-blog-card {
    background: linear-gradient(135deg, #fff, #f9fafb);
    border: 1px solid rgba(209, 213, 219, .9);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .12), 0 0 0 1px rgba(15, 23, 42, .02);
    display: flex;
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    overflow: hidden;
    position: relative;
    transition: transform .18s ease-out, box-shadow .2s ease-out, border-color .18s ease-out, background .18s ease-out
}

.rgz-blog-card:before {
    background: linear-gradient(180deg, rgba(156, 163, 175, .25), rgba(55, 65, 81, .9), rgba(156, 163, 175, .25));
    bottom: 18px;
    left: 0;
    opacity: .85;
    top: 18px;
    width: 3px
}

.rgz-blog-card:after,
.rgz-blog-card:before {
    border-radius: 999px;
    content: "";
    position: absolute
}

.rgz-blog-card:after {
    background: linear-gradient(90deg, rgba(209, 213, 219, 0), rgba(209, 213, 219, .85), rgba(209, 213, 219, 0));
    height: 1px;
    left: 18px;
    pointer-events: none;
    right: 18px;
    top: 16px
}

.rgz-blog-image {
    background: #e5e7eb;
    border-radius: 18px 18px 0 0;
    display: block;
    overflow: hidden;
    position: relative
}

.rgz-blog-image:before {
    border: 1px solid rgba(209, 213, 219, .85);
    border-radius: inherit;
    content: "";
    inset: 0;
    mix-blend-mode: soft-light
}

.rgz-blog-image:after,
.rgz-blog-image:before {
    pointer-events: none;
    position: absolute
}

.rgz-blog-image:after {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(15, 23, 42, .82);
    border: 1px solid rgba(148, 163, 184, .7);
    border-radius: 999px;
    color: #e5e7eb;
    content: "Analyse • Fachbeitrag";
    font-size: .68rem;
    font-weight: 500;
    left: 14px;
    letter-spacing: .16em;
    padding: 3px 10px 4px;
    text-transform: uppercase;
    top: 12px
}

.rgz-blog-image img {
    display: block;
    filter: saturate(1.02) contrast(1.02);
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s ease-out, filter .4s ease-out;
    width: 100%
}

.rgz-blog-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 18px 16px;
    position: relative
}

.rgz-post-title {
    color: #111827;
    font-family: var(--rr-font-heading);
    font-size: 1rem;
    letter-spacing: -.01em;
    line-height: 1.45;
    margin: 0
}

.rgz-post-title a {
    color: inherit;
    text-decoration: none;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s ease-out, text-decoration-color .18s ease-out
}

.rgz-post-meta {
    align-items: center;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    font-size: .86rem;
    gap: 4px;
    margin: 0
}

.rgz-post-meta .rgz-dot {
    color: #9ca3af;
    font-size: .86rem;
    line-height: 0
}

.rgz-post-meta strong {
    color: #374151;
    font-weight: 600
}

@media (hover:hover) {
    .rgz-blog-card:hover {
        background: linear-gradient(135deg, #fff, #fefefe);
        border-color: rgba(37, 99, 235, .7);
        box-shadow: 0 22px 56px rgba(15, 23, 42, .22), 0 0 0 1px rgba(37, 99, 235, .08);
        transform: translateY(-3px)
    }

    .rgz-blog-card:hover .rgz-blog-image img {
        filter: saturate(1.05) contrast(1.05);
        transform: scale(1.04)
    }

    .rgz-blog-card:hover .rgz-post-title a {
        color: #111827;
        text-decoration-color: rgba(37, 99, 235, .85)
    }
}

.rgz-blog-card:focus-within {
    border-color: rgba(37, 99, 235, .9);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, .9), 0 0 0 4px rgba(191, 219, 254, .9);
    outline: none
}

.rgz-blog-card:first-child .rgz-blog-image:after {
    content: "Broker • Leitfaden"
}

.rgz-blog-card:nth-child(2) .rgz-blog-image:after {
    content: "Krypto • Analyse"
}

.rgz-blog-card:nth-child(3) .rgz-blog-image:after {
    content: "International • Recht"
}

.rgz-blog-card:nth-child(4) .rgz-blog-image:after {
    content: "Investment • Schutz"
}

@media (min-width:640px) {
    .rgz-blog-section {
        padding: 88px 0 108px
    }

    .rgz-blog-header {
        margin-bottom: 44px
    }

    .rgz-blog-description {
        font-size: 1rem
    }

    .rgz-blog-grid {
        gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .rgz-blog-image img {
        height: 210px
    }

    .rgz-blog-content {
        padding: 18px 20px
    }

    .rgz-post-title {
        font-size: 1.02rem
    }
}

@media (min-width:1024px) {
    .rgz-blog-section {
        padding: 96px 0 116px
    }

    .rgz-blog-header {
        margin-bottom: 48px;
        max-width: 840px
    }

    .rgz-blog-grid {
        gap: 22px;
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .rgz-blog-card {
        border-radius: 20px
    }

    .rgz-blog-image {
        border-radius: 20px 20px 0 0
    }

    .rgz-blog-image img {
        height: 190px
    }

    .rgz-blog-content {
        padding: 18px 22px 20px
    }

    .rgz-post-title {
        font-size: 1.04rem
    }
}

@media (min-width:1280px) {
    .rgz-blog-section {
        padding: 104px 0 124px
    }

    .rgz-blog-header {
        margin-bottom: 54px
    }

    .rgz-blog-grid {
        gap: 26px
    }

    .rgz-blog-card {
        border-radius: 22px;
        box-shadow: 0 20px 50px rgba(15, 23, 42, .2), 0 0 0 1px rgba(15, 23, 42, .03)
    }

    .rgz-blog-image {
        border-radius: 22px 22px 0 0
    }

    .rgz-blog-image img {
        height: 210px
    }

    .rgz-blog-content {
        gap: 10px;
        padding: 20px 22px 22px
    }

    .rgz-post-title {
        font-size: 1.06rem
    }

    .rgz-post-meta {
        font-size: .88rem
    }
}

@media (max-width:480px) {
    .rgz-blog-header {
        margin-bottom: 32px
    }

    .rgz-blog-title {
        font-size: clamp(1.7rem, 1.5rem + 1vw, 2.1rem)
    }

    .rgz-blog-description {
        font-size: .94rem
    }

    .rgz-blog-card {
        border-radius: 18px
    }

    .rgz-blog-image img {
        height: 190px
    }
}

.rgz-site-footer {
    --footer-bg-start: #020617;
    --footer-bg-end: #0b1120;
    --footer-panel: rgba(15, 23, 42, .94);
    --footer-border: rgba(30, 64, 175, .32);
    --footer-soft: rgba(148, 163, 184, .25);
    --footer-soft-2: rgba(148, 163, 184, .12);
    --footer-text: #e5e7eb;
    --footer-muted: #9ca3af;
    --footer-heading: #f9fafb;
    --footer-accent: #fbbf24;
    --footer-accent-soft: rgba(251, 191, 36, .65);
    --footer-link: #cbd5f5;
    --footer-link-hover: #e5e7ff;
    --footer-radius-lg: 28px;
    --footer-radius-md: 20px;
    --footer-gap: 22px;
    --footer-shadow-panel: 0 24px 70px rgba(0, 0, 0, .75), 0 0 0 1px rgba(15, 23, 42, .8);
    background: radial-gradient(circle at 0 -10%, rgba(37, 99, 235, .24), transparent 55%), radial-gradient(circle at 100% 110%, rgba(30, 64, 175, .22), transparent 60%), linear-gradient(180deg, var(--footer-bg-start), var(--footer-bg-end));
    color: var(--footer-text);
    isolation: isolate;
    overflow: hidden;
    padding-top: 64px;
    position: relative
}

.rgz-site-footer:before {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, .75), rgba(148, 163, 184, 0));
    height: 1px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .9;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    top: 0
}

.rgz-site-footer:after,
.rgz-site-footer:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0
}

.rgz-site-footer:after {
    background: radial-gradient(circle at 10% 0, rgba(30, 64, 175, .16), transparent 60%), radial-gradient(circle at 90% 100%, rgba(15, 23, 42, .9), transparent 65%);
    inset: -20%;
    mix-blend-mode: screen;
    opacity: .4
}

.rgz-footer-container-bg {
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter);
    padding-bottom: 32px;
    position: relative;
    z-index: 1
}

.rgz-footer-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(15, 23, 42, .98));
    border-radius: var(--footer-radius-lg);
    box-shadow: var(--footer-shadow-panel);
    display: grid;
    gap: var(--footer-gap);
    grid-template-columns: minmax(0, 1.4fr);
    padding: 26px 22px 24px;
    position: relative
}

.rgz-footer-container:after,
.rgz-footer-container:before {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(148, 163, 184, .5), rgba(148, 163, 184, 0));
    border-radius: 999px;
    content: "";
    height: 1px;
    left: 24px;
    opacity: .6;
    pointer-events: none;
    position: absolute;
    right: 24px
}

.rgz-footer-container:before {
    top: 20px
}

.rgz-footer-container:after {
    bottom: 18px;
    opacity: .35
}

.rgz-footer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 4px;
    position: relative
}

.rgz-footer-cta:before {
    background: linear-gradient(180deg, rgba(251, 191, 36, .05), rgba(251, 191, 36, .75), rgba(251, 191, 36, .05));
    border-radius: 999px;
    bottom: 4px;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .9), 0 0 14px rgba(251, 191, 36, .55);
    content: "";
    left: -10px;
    opacity: .9;
    position: absolute;
    top: 4px;
    width: 2px
}

.rgz-footer-eyebrow {
    align-items: center;
    background: radial-gradient(circle at 0 0, rgba(15, 23, 42, .9), rgba(15, 23, 42, .98));
    border: 1px solid rgba(148, 163, 184, .7);
    border-radius: 999px;
    color: var(--footer-muted);
    display: inline-flex;
    font-size: .7rem;
    font-weight: 600;
    gap: .4rem;
    letter-spacing: .16em;
    padding: .22rem .9rem;
    text-transform: uppercase
}

.rgz-footer-eyebrow:before {
    background: radial-gradient(circle, var(--footer-accent) 0, #b45309 100%);
    border-radius: 999px;
    box-shadow: 0 0 0 1px #0f172a, 0 0 8px var(--footer-accent-soft);
    content: "";
    height: 6px;
    width: 6px
}

.rgz-footer-title {
    color: var(--footer-heading);
    font-family: var(--rr-font-heading);
    font-size: clamp(1.7rem, 1.45rem + .9vw, 2.1rem);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-top: 10px
}

.rgz-footer-text {
    color: var(--footer-muted);
    font-size: .95rem;
    line-height: 1.8;
    margin-top: 10px;
    max-width: 540px
}

.rgz-footer-btn {
    align-items: center;
    background: radial-gradient(circle at 0 0, #fefce8, #facc15);
    border: 1px solid rgba(250, 204, 21, .9);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .7), 0 0 0 1px rgba(15, 23, 42, .85);
    color: #111827;
    cursor: pointer;
    display: inline-flex;
    font-size: .92rem;
    font-weight: 600;
    justify-content: center;
    letter-spacing: .04em;
    margin-top: 18px;
    overflow: hidden;
    padding: .7rem 1.9rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .18s ease-out, transform .14s ease-out, box-shadow .18s ease-out, color .16s ease-out
}

.rgz-footer-btn-ripple {
    background: radial-gradient(circle at 30% 0, hsla(0, 0%, 100%, .9), transparent 60%);
    border-radius: inherit;
    inset: 0;
    mix-blend-mode: soft-light;
    opacity: .65;
    pointer-events: none;
    position: absolute
}

@media (hover:hover) {
    .rgz-footer-btn:hover {
        background: radial-gradient(circle at 0 0, #fefce8, #eab308);
        box-shadow: 0 22px 48px rgba(15, 23, 42, .82), 0 0 0 1px rgba(15, 23, 42, .9);
        color: #020617;
        transform: translateY(-1px)
    }
}

.rgz-footer-btn:focus-visible {
    box-shadow: 0 0 0 1px #0f172a, 0 0 0 3px hsla(60, 9%, 98%, .9);
    outline: none
}

.rgz-footer-contacts,
.rgz-footer-links {
    padding-top: 6px;
    position: relative
}

.rgz-footer-contacts:before,
.rgz-footer-links:before {
    background: linear-gradient(180deg, rgba(148, 163, 184, .05), rgba(148, 163, 184, .5), rgba(148, 163, 184, .05));
    border-radius: 999px;
    bottom: 4px;
    content: "";
    left: -12px;
    opacity: .7;
    position: absolute;
    top: 4px;
    width: 1px
}

.rgz-footer-heading {
    color: var(--footer-heading);
    font-family: var(--rr-font-heading);
    font-size: .95rem;
    letter-spacing: .16em;
    margin: 0 0 10px;
    text-transform: uppercase
}

.rgz-footer-list {
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(0, 1fr);
    list-style: none;
    margin: 0;
    padding: 0
}

.rgz-footer-list li {
    position: relative
}

.rgz-footer-list li:before {
    background: radial-gradient(circle, rgba(148, 163, 184, .9), transparent 60%);
    border-radius: 999px;
    content: "";
    height: 4px;
    left: -10px;
    opacity: .8;
    position: absolute;
    top: .75em;
    transform: translateY(-50%);
    width: 4px
}

.rgz-footer-list a {
    align-items: center;
    color: var(--footer-link);
    display: inline-flex;
    font-size: .9rem;
    text-decoration: none;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .16s ease-out, text-decoration-color .16s ease-out, transform .12s ease-out
}

@media (hover:hover) {
    .rgz-footer-list a:hover {
        color: var(--footer-link-hover);
        text-decoration-color: rgba(191, 219, 254, .9);
        transform: translateX(1px)
    }
}

.rgz-footer-list a:focus-visible {
    outline: none;
    text-decoration-color: rgba(191, 219, 254, .95)
}

.rgz-contacts-list {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
    list-style: none;
    margin: 0;
    padding: 0
}

.rgz-contact-item {
    padding-left: 40px;
    position: relative
}

.rgz-contact-item-icon {
    background: radial-gradient(circle at 30% 0, #020617, #0b1120);
    border: 1px solid rgba(148, 163, 184, .9);
    border-radius: 999px;
    box-shadow: 0 0 0 1px #0f172a, 0 0 8px rgba(15, 23, 42, .8);
    content: "";
    height: 33px;
    left: 0;
    position: absolute;
    top: 1.95em;
    transform: translateY(-50%);
    width: 33px
}

.rgz-contact-item-icon:after {
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transform: translateY(-50%) rotate(0deg)
}

.rgz-contact-item-icon:after {
    background-repeat: no-repeat;
    background-size: contain;
    height: 22px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px
}

.rgz-contact-phone .rgz-contact-item-icon:after {
    background-image: url(../assets/icons/phone.svg)
}

.rgz-contact-mail .rgz-contact-item-icon:after {
    background-image: url(../assets/icons/email.svg)
}

.rgz-contact-map .rgz-contact-item-icon:after {
    background-image: url(../assets/icons/location.svg)
}

.rgz-contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.rgz-contact-label {
    color: rgba(148, 163, 184, .9);
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase
}

.rgz-contact-value {
    color: #f9fafb;
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .16s ease-out, text-decoration-color .16s ease-out;
    word-break: break-word
}

.rgz-contact-value[href^="tel:"] {
    font-family: var(--rr-font-heading);
    letter-spacing: .04em
}

@media (hover:hover) {
    .rgz-contact-value:hover {
        color: #e5e7ff;
        text-decoration: underline;
        text-decoration-color: rgba(191, 219, 254, .9);
        text-underline-offset: 3px
    }
}

.rgz-footer-bottom {
    background: radial-gradient(circle at 50% -80%, rgba(30, 64, 175, .55), transparent 65%);
    border-top: 1px solid rgba(15, 23, 42, .85);
    margin-top: 26px;
    padding: 14px 0 22px;
    position: relative;
    z-index: 1
}

.rgz-footer-bottom-inner {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: var(--rr-container-width);
    padding-inline: var(--rr-gutter)
}

.rgz-copyright {
    color: var(--footer-muted);
    font-size: .8rem;
    margin: 0
}

.rgz-copyright time {
    color: #e5e7eb
}

.rgz-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0
}

.rgz-legal-links li {
    padding-left: 12px;
    position: relative
}

.rgz-legal-links li:before {
    background: rgba(148, 163, 184, .9);
    border-radius: 999px;
    content: "";
    height: 3px;
    left: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px
}

.rgz-legal-links li:first-child:before {
    display: none;
    padding-left: 0
}

.rgz-legal-links a {
    color: var(--footer-link);
    font-size: .8rem;
    text-decoration: none;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .16s ease-out, text-decoration-color .16s ease-out
}

@media (hover:hover) {
    .rgz-legal-links a:hover {
        color: var(--footer-link-hover);
        text-decoration-color: rgba(191, 219, 254, .9)
    }
}

.rgz-legal-links a:focus-visible {
    outline: none;
    text-decoration-color: rgba(191, 219, 254, .95)
}

@media (min-width:768px) {
    .rgz-footer-container {
        -moz-column-gap: 28px;
        column-gap: 28px;
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1.1fr);
        padding: 26px 26px 24px
    }

    .rgz-footer-cta {
        padding-right: 16px
    }

    .rgz-footer-text {
        font-size: .98rem
    }

    .rgz-footer-contacts:before,
    .rgz-footer-links:before {
        left: -18px
    }

    .rgz-footer-bottom-inner {
        align-items: center;
        flex-direction: row
    }
}

@media (min-width:1024px) {
    .rgz-site-footer {
        padding-top: 72px
    }

    .rgz-footer-container-bg {
        padding-bottom: 40px
    }

    .rgz-footer-container {
        border-radius: 30px;
        padding: 30px 32px 26px
    }

    .rgz-footer-container:before {
        left: 30px;
        right: 30px;
        top: 22px
    }

    .rgz-footer-container:after {
        bottom: 20px;
        left: 30px;
        right: 30px
    }

    .rgz-footer-title {
        font-size: clamp(1.9rem, 1.6rem + .9vw, 2.3rem)
    }

    .rgz-footer-text {
        max-width: 600px
    }

    .rgz-footer-btn {
        margin-top: 20px
    }
}

@media (max-width:639.98px) {
    .rgz-footer-container {
        border-radius: 22px;
        padding: 22px 18px 20px
    }

    .rgz-footer-cta:before {
        left: -6px
    }

    .rgz-footer-contacts:before,
    .rgz-footer-links:before {
        display: none
    }

    .rgz-contacts-list {
        margin-top: 4px
    }

    .rgz-footer-bottom {
        margin-top: 20px
    }
}

.rgz-cookie-backdrop {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: radial-gradient(circle at 50% 0, rgba(15, 23, 42, .55), rgba(15, 23, 42, .9));
    inset: 0;
    
    position: fixed;
    transition: opacity .2s ease-out, visibility .2s ease-out;
    visibility: hidden;
    z-index: 70
}

.rgz-cookie-backdrop.is-visible {
    opacity: 1;
    visibility: visible
}

.rgz-cookie-banner {
    inset-inline: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 16px;
    pointer-events: none;
    position: fixed;
    z-index: 80
}

.rgz-cookie-banner-inner {
    background: radial-gradient(circle at 0 0, rgba(59, 130, 246, .24), transparent 55%), radial-gradient(circle at 100% 100%, rgba(30, 64, 175, .26), transparent 60%), linear-gradient(135deg, #020617, #020617 40%, #020617);
    border: 1px solid rgba(148, 163, 184, .6);
    border-radius: 18px;
    box-shadow: 0 -18px 52px rgba(15, 23, 42, .95), 0 0 0 1px rgba(15, 23, 42, .95);
    color: #e5e7eb;
    display: grid;
    font-size: .92rem;
    gap: 16px;
    grid-template-columns: minmax(0, 1.8fr);
    margin-inline: auto;
    max-width: min(980px, 100%);
    padding: 18px 18px 14px;
    pointer-events: auto;
    width: 100%
}

.rgz-cookie-main {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.4fr)
}

.rgz-cookie-header {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.rgz-cookie-title {
    color: #f9fafb;
    font-family: var(--rr-font-heading);
    font-size: 1.1rem;
    letter-spacing: .16em;
    margin: 0;
    text-transform: uppercase
}

.rgz-cookie-text {
    color: #cbd5f5;
    font-size: .9rem;
    line-height: 1.7;
    margin: 0
}

.rgz-cookie-text-small {
    color: #9ca3af;
    font-size: .78rem;
    margin: 2px 0 0
}

.rgz-cookie-text-small a {
    color: #e5e7ff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

.rgz-cookie-options {
    background: radial-gradient(circle at 0 0, rgba(15, 23, 42, .9), rgba(15, 23, 42, .96));
    border: 1px solid rgba(31, 41, 55, .9);
    border-radius: 12px;
    display: grid;
    gap: 8px;
    margin-top: 6px;
    max-height: 0;
    
    overflow: hidden;
    padding: 10px 10px 6px;
    transition: max-height .22s ease-out, opacity .22s ease-out
}

.rgz-cookie-options.is-open {
    max-height: 360px;
    opacity: 1
}

.rgz-cookie-option {
    background: linear-gradient(135deg, rgba(15, 23, 42, .95), rgba(15, 23, 42, .98));
    border: 1px solid rgba(55, 65, 81, .9);
    border-radius: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 10px 9px
}

.rgz-cookie-option.rgz-is-locked {
    border-color: rgba(148, 163, 184, .9);
    border-style: solid
}

.rgz-cookie-option-main {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.rgz-cookie-option-title-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.rgz-cookie-option-title {
    color: #f9fafb;
    font-family: var(--rr-font-heading);
    font-size: .9rem
}

.rgz-cookie-option-chip {
    border: 1px solid rgba(148, 163, 184, .9);
    border-radius: 999px;
    color: #e5e7eb;
    font-size: .68rem;
    letter-spacing: .12em;
    padding: 2px 8px;
    text-transform: uppercase
}

.rgz-cookie-option-text {
    color: #9ca3af;
    font-size: .8rem;
    line-height: 1.6;
    margin: 0
}

.rgz-cookie-option-toggle {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

.rgz-cookie-switch {
    align-items: center;
    display: inline-flex;
    height: 22px;
    position: relative;
    width: 42px
}

.rgz-cookie-switch input {
    
    pointer-events: none;
    position: absolute
}

.rgz-cookie-slider {
    background: radial-gradient(circle at 0 50%, #020617, #020617);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, .75), 0 0 0 1px #0f172a;
    flex: 1 1 auto;
    height: 100%;
    position: relative;
    transition: background .16s ease-out, box-shadow .16s ease-out
}

.rgz-cookie-slider:before {
    background: radial-gradient(circle at 30% 0, #f9fafb, #d1d5db);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .9), 0 0 0 1px #0f172a;
    content: "";
    height: 18px;
    left: 3px;
    position: absolute;
    top: 2px;
    transition: transform .16s ease-out, box-shadow .16s ease-out, background .16s ease-out;
    width: 18px
}

.rgz-cookie-switch input:checked+.rgz-cookie-slider {
    background: radial-gradient(circle at 0 50%, #22c55e, #16a34a);
    box-shadow: inset 0 0 0 1px rgba(34, 197, 94, .7), 0 0 0 1px #0f172a
}

.rgz-cookie-switch input:checked+.rgz-cookie-slider:before {
    background: radial-gradient(circle at 30% 0, #fefce8, #facc15);
    transform: translateX(16px)
}

.rgz-cookie-switch.rgz-is-disabled .rgz-cookie-slider {
    background: radial-gradient(circle at 0 50%, #020617, #020617);
    opacity: .7
}

.rgz-cookie-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 4px
}

.rgz-cookie-actions-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px
}

.rgz-cookie-btn {
    align-items: center;
    border-radius: 999px;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    display: inline-flex;
    font-size: .82rem;
    font-weight: 600;
    justify-content: center;
    letter-spacing: .08em;
    padding: .45rem 1.3rem;
    position: relative;
    text-transform: uppercase;
    transition: background .16s ease-out, border-color .16s ease-out, color .16s ease-out, transform .12s ease-out, box-shadow .16s ease-out;
    white-space: nowrap
}

.rgz-cookie-btn-primary {
    background: radial-gradient(circle at 0 0, #fefce8, #facc15);
    border-color: rgba(250, 204, 21, .9);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .9), 0 0 0 1px #0f172a;
    color: #111827
}

.rgz-cookie-btn-secondary {
    background: radial-gradient(circle at 0 0, #020617, #020617);
    border-color: rgba(148, 163, 184, .9);
    color: #e5e7eb
}

.rgz-cookie-btn-ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, .35);
    color: #cbd5f5
}

.rgz-cookie-btn-outline {
    background: transparent;
    border-color: rgba(148, 163, 184, .9);
    color: #e5e7eb
}

@media (hover:hover) {
    .rgz-cookie-btn-primary:hover {
        background: radial-gradient(circle at 0 0, #fefce8, #eab308);
        box-shadow: 0 16px 32px rgba(15, 23, 42, .95), 0 0 0 1px #0f172a;
        transform: translateY(-1px)
    }

    .rgz-cookie-btn-secondary:hover {
        background: radial-gradient(circle at 0 0, #020617, #020617);
        border-color: rgba(191, 219, 254, .9);
        color: #f9fafb;
        transform: translateY(-1px)
    }

    .rgz-cookie-btn-ghost:hover,
    .rgz-cookie-btn-outline:hover {
        border-color: rgba(191, 219, 254, .9);
        color: #e5e7ff
    }
}

.rgz-cookie-btn:focus-visible {
    box-shadow: 0 0 0 1px rgba(248, 250, 252, .98), 0 0 0 4px rgba(59, 130, 246, .65);
    outline: none
}

@media (min-width:768px) {
    .rgz-cookie-banner-inner {
        align-items: flex-start;
        grid-template-columns: minmax(0, 2.2fr) auto
    }

    .rgz-cookie-main {
        grid-template-columns: minmax(0, 1.6fr)
    }

    .rgz-cookie-actions {
        align-items: flex-end;
        flex-direction: column;
        justify-content: flex-start;
        margin-left: 18px
    }

    .rgz-cookie-actions .rgz-cookie-btn {
        justify-content: center;
        width: 100%
    }
}

@media (max-width:639.98px) {
    .rgz-cookie-banner-inner {
        border-radius: 16px;
        padding: 14px 12px 10px
    }

    .rgz-cookie-actions {
        justify-content: flex-start
    }

    .rgz-cookie-actions .rgz-cookie-btn {
        flex: 1 1 auto;
        justify-content: center
    }
}

.rgz-back-to-top,
.rgz-cookie-manage-link {
    cursor: pointer
}

.rgz-back-to-top {
    --btn-bg: #020617;
    --btn-border: rgba(148, 163, 184, .4);
    --btn-glow: rgba(250, 204, 21, .55);
    --btn-icon: #e5e7eb;
    --btn-size: 52px;
    --progress: 0%;
    align-items: center;
    background: radial-gradient(circle at 30% 0, rgba(248, 250, 252, .22), transparent 55%), linear-gradient(145deg, #020617, #020617);
    border: 1px solid var(--btn-border);
    border-radius: 999px;
    bottom: clamp(16px, 4vw, 28px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .45), 0 0 0 1px rgba(15, 23, 42, .9);
    color: var(--btn-icon);
    display: inline-flex;
    height: var(--btn-size);
    justify-content: center;
    
    padding: 0;
    pointer-events: none;
    position: fixed;
    right: clamp(16px, 4vw, 28px);
    transform: translateY(10px) scale(.9);
    transition: opacity .2s ease-out, transform .2s ease-out, box-shadow .2s ease-out, border-color .2s ease-out, background .2s ease-out;
    width: var(--btn-size);
    z-index: 80
}

.rgz-back-to-top[data-visible=true] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1)
}

.rgz-back-to-top:before {
    background: conic-gradient(from -90deg, var(--btn-glow) var(--progress), rgba(31, 41, 55, .55) 0);
    border-radius: inherit;
    content: "";
    inset: 1px;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
    opacity: .95;
    pointer-events: none;
    position: absolute
}

.rgz-back-to-top-inner {
    align-items: center;
    background: radial-gradient(circle at 30% 0, #111827, #020617);
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, .25), 0 0 0 1px rgba(15, 23, 42, .8);
    display: flex;
    height: calc(var(--btn-size) - 12px);
    justify-content: center;
    position: relative;
    width: calc(var(--btn-size) - 12px);
    z-index: 1
}

.rgz-back-to-top svg {
    display: block;
    height: 18px;
    stroke-width: 1.9;
    transform: translateY(1px);
    transition: transform .16s ease-out;
    width: 18px
}

.rgz-back-to-top:focus-visible,
.rgz-back-to-top:hover {
    border-color: var(--btn-glow);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .65), 0 0 0 1px rgba(234, 179, 8, .8);
    outline: none
}

.rgz-back-to-top:focus-visible svg,
.rgz-back-to-top:hover svg {
    transform: translateY(-1px)
}

.rgz-back-to-top:active {
    box-shadow: 0 10px 26px rgba(15, 23, 42, .55), 0 0 0 1px rgba(15, 23, 42, .95);
    transform: translateY(1px) scale(.97)
}

@media (max-width:640px) {
    .rgz-back-to-top {
        --btn-size: 46px;
        bottom: 14px;
        right: 14px
    }
}

@media (prefers-reduced-motion:reduce) {

    .rgz-back-to-top,
    .rgz-back-to-top svg {
        transition: none
    }
}

.rgz-article-hero__bg-title {
    color: rgba(26, 26, 46, .03);
    font-family: var(--font-primary, system-ui);
    font-size: 68px;
    letter-spacing: .02em;
    line-height: 1.05;
    max-width: 100dvw;
    text-align: center;
    top: 12px;
    transform-origin: center center
}

.rgz-article-hero h1,
.rgz-article-hero p,
.rgz-article-hero__inner {
    position: relative;
    z-index: 1
}

@media (min-width:768px) {
    .rgz-article-hero__bg-title {
        font-size: clamp(60px, 10vw, 120px);
        top: 20px
    }
}

@media (min-width:992px) {
    .rgz-article-hero__bg-title {
        font-size: clamp(80px, 8.3vw, 160px);
        top: 24px
    }
}

.rgz-article-hero {
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, .18), transparent 55%), radial-gradient(circle at 100% 100%, rgba(15, 23, 42, .18), transparent 55%), #f5f7fb;
    border-bottom: 1px solid rgba(148, 163, 184, .25);
    color: #020617;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 56px;
    position: relative
}

.rgz-article-hero:before {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(30, 64, 175, .55), rgba(148, 163, 184, 0));
    border-radius: 999px;
    height: 2px;
    left: max(0px, (100vw - var(--rr-container-width))/2);
    opacity: .9;
    right: max(0px, (100vw - var(--rr-container-width))/2);
    top: 0
}

.rgz-article-hero:after,
.rgz-article-hero:before {
    content: "";
    pointer-events: none;
    position: absolute
}

.rgz-article-hero:after {
    background: radial-gradient(ellipse at 50% 0, rgba(15, 23, 42, .14), transparent 70%);
    height: 160px;
    inset: auto -20% -40%;
    opacity: .7;
    z-index: 0
}

.rgz-article-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0 auto;
    max-width: var(--rr-container-width, 1160px);
    padding-inline: var(--rr-gutter, 1.5rem);
    position: relative;
    z-index: 1
}

.rgz-article-hero__bg-title {
    color: rgba(15, 23, 42, .03);
    font-size: 64px;
    inset: 0 auto auto 50%;
    letter-spacing: .14em;
    line-height: 1.04;
    pointer-events: none;
    position: absolute;
    text-transform: uppercase;
    top: 14px;
    transform: translateX(-50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0
}

.rgz-article-hero__bg-title,
.rgz-article-hero__title {
    font-family: var(--rr-font-heading, system-ui);
    font-weight: 800
}

.rgz-article-hero__title {
    color: #020617;
    font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.4rem);
    letter-spacing: -.02em;
    line-height: 1.15;
    margin: 0;
    max-width: 720px;
    position: relative
}

.rgz-article-hero__title:after {
    background: linear-gradient(90deg, rgba(30, 64, 175, .05), rgba(30, 64, 175, .7), rgba(30, 64, 175, .05));
    border-radius: 999px;
    bottom: -16px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 86px
}

.rgz-article-hero__eyebrow {
    color: #4b5563;
    font-size: .98rem;
    line-height: 1.7;
    margin-top: 26px;
    max-width: 720px;
    position: relative
}

.rgz-article-hero__meta {
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    font-size: .84rem;
    gap: 10px 20px;
    margin-top: 18px
}

.rgz-article-hero__meta-tag {
    align-items: center;
    background: hsla(0, 0%, 100%, .9);
    border: 1px solid rgba(148, 163, 184, .6);
    border-radius: 999px;
    color: #374151;
    display: inline-flex;
    font-size: .78rem;
    gap: 6px;
    letter-spacing: .08em;
    padding: 4px 10px;
    text-transform: uppercase
}

@media (min-width:640px) {
    .rgz-article-hero {
        padding: 90px 0 70px
    }

    .rgz-article-hero__inner {
        gap: 22px
    }

    .rgz-article-hero__bg-title {
        font-size: 110px;
        letter-spacing: .16em;
        top: 18px
    }

    .rgz-article-hero__eyebrow {
        font-size: 1rem;
        max-width: 760px
    }
}

@media (min-width:1024px) {
    .rgz-article-hero {
        padding: 110px 0 84px
    }

    .rgz-article-hero__inner {
        padding-inline: var(--rr-gutter, 2rem)
    }

    .rgz-article-hero__bg-title {
        font-size: 150px;
        top: 24px
    }

    .rgz-article-hero__title {
        font-size: clamp(2.2rem, 1.4rem + 1.9vw, 2.8rem);
        max-width: 780px
    }

    .rgz-article-hero__eyebrow {
        max-width: 800px
    }
}

@media (max-width:480px) {
    .rgz-article-hero {
        padding: 64px 0 48px
    }

    .rgz-article-hero__bg-title {
        font-size: 44px;
        letter-spacing: .12em;
        top: 10px
    }

    .rgz-article-hero__title:after {
        bottom: -14px;
        width: 68px
    }

    .rgz-article-hero__eyebrow {
        font-size: .94rem
    }
}

.rgz-privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.rgz-privacy-content h2 {
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.rgz-privacy-content h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
}

.rgz-privacy-content .rgz-section {
    margin-bottom: 40px;
}

.rgz-privacy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.rgz-privacy-content li {
    margin-bottom: 10px;
}

.rgz-privacy-content .rgz-contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #007bff;
}

.rgz-page-title-inner h1.rgz-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.rgz-page-title-inner p.rgz-disc {
    font-size: 18px;
    color: #666;
}

.rgz-rts-page-title-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.rgz-rts-page-title-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.rgz-page-title-inner {
    position: relative;
    z-index: 2;
}

.rgz-page-title-inner h1.rgz-title,
.rgz-page-title-inner p.rgz-disc {
    color: white;
}



.rgz-legal-hero {
    position: relative;
    padding: 80px 0 72px;
    background:
        radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.18), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(191, 219, 254, 0.18), transparent 55%),
        #f9fafb;
    color: #020617;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.rgz-legal-hero::before {

    content: "";
    position: absolute;
    top: 0;
    left: max(0px, (100vw - var(--rr-container-width, 1160px)) / 2);
    right: max(0px, (100vw - var(--rr-container-width, 1160px)) / 2);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(148, 163, 184, 0),
            rgba(148, 163, 184, 0.7),
            rgba(148, 163, 184, 0));
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.rgz-legal-hero__container {
    position: relative;
    max-width: var(--rr-container-width, 1160px);
    margin: 0 auto;
    padding-inline: var(--rr-gutter, 1.5rem);
    text-align: left;
    z-index: 1;

    display: flex;
    flex-direction: column;
    gap: 16px;
}



.rgz-legal-hero__bg-title {
    position: absolute;
    inset: 8px auto auto 50%;
    transform: translateX(-50%);
    margin: 0;

    font-family: var(--rr-font-heading, system-ui);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: rgba(15, 23, 42, 0.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}



.rgz-legal-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;

    margin: 0;
    padding: 0.35rem 1.4rem;

    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    background: linear-gradient(135deg, #ffffff, #e5e7eb);

    font-family: var(--rr-font-heading, system-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #374151;
}

.rgz-legal-hero__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle, #facc15 0%, #b45309 70%, #78350f 100%);
    box-shadow:
        0 0 0 1px #f9fafb,
        0 0 8px rgba(250, 204, 21, 0.8);
}



.rgz-legal-hero__title {
    margin: 10px 0 0;
    max-width: 720px;

    font-family: var(--rr-font-heading, system-ui);
    font-weight: 800;
    font-size: clamp(2rem, 1.6rem + 1.3vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #020617;
    position: relative;
}


.rgz-legal-hero__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 120px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(30, 64, 175, 0.05),
            rgba(30, 64, 175, 0.85),
            rgba(30, 64, 175, 0.05));
}



.rgz-legal-hero__meta {
    margin: 26px 0 0;
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 14px;

    font-size: 0.9rem;
    color: #4b5563;
}

.rgz-legal-hero__meta-label {
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #6b7280;
}

.rgz-legal-hero__date {
    font-weight: 600;
    color: #111827;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.6);
    border: 1px solid rgba(209, 213, 219, 0.9);
}



.rgz-legal-hero__intro {
    margin: 18px 0 0;
    max-width: 720px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #4b5563;
}




@media (min-width: 768px) {
    .rgz-legal-hero {
        padding: 96px 0 80px;
    }

    .rgz-legal-hero__container {
        padding-inline: var(--rr-gutter, 2rem);
        gap: 18px;
    }

    .rgz-legal-hero__bg-title {
        font-size: 90px;
        top: 10px;
    }

    .rgz-legal-hero__meta {
        margin-top: 30px;
        font-size: 0.95rem;
    }

    .rgz-legal-hero__intro {
        font-size: 1rem;
    }
}



@media (min-width: 1024px) {
    .rgz-legal-hero {
        padding: 110px 0 88px;
    }

    .rgz-legal-hero__bg-title {
        font-size: 132px;
        top: 18px;
        letter-spacing: 0.18em;
    }

    .rgz-legal-hero__title {
        font-size: clamp(2.3rem, 1.4rem + 1.8vw, 2.9rem);
        max-width: 780px;
    }

    .rgz-legal-hero__title::after {
        width: 140px;
        bottom: -18px;
    }

    .rgz-legal-hero__meta {
        margin-top: 34px;
    }
}



@media (max-width: 480px) {
    .rgz-legal-hero {
        padding: 70px 0 60px;
    }

    .rgz-legal-hero__container {
        padding-inline: 1.25rem;
    }

    .rgz-legal-hero__bg-title {
        font-size: 42px;
        top: 6px;
        opacity: 0.8;
        color: rgba(15, 23, 42, 0.02);
    }

    .rgz-legal-hero__eyebrow {
        padding-inline: 1.1rem;
        font-size: 0.7rem;
    }

    .rgz-legal-hero__intro {
        font-size: 0.94rem;
    }
}

.rgz-terms-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.rgz-terms-content h2 {
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.rgz-terms-content h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
}

.rgz-terms-content .rgz-section {
    margin-bottom: 40px;
}

.rgz-terms-content ul,
.rgz-terms-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.rgz-terms-content li {
    margin-bottom: 10px;
}

.rgz-terms-content .rgz-contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #007bff;
}

.rgz-cookies-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.rgz-cookies-content h2 {
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.rgz-cookies-content h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
}

.rgz-cookies-content .rgz-section {
    margin-bottom: 40px;
}

.rgz-cookies-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.rgz-cookies-content li {
    margin-bottom: 10px;
}

.rgz-cookies-content .rgz-contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid #007bff;
}

.rgz-cookie-table {
    margin: 30px 0;
    overflow-x: auto;
}

.rgz-cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rgz-cookie-table th {
    background: #007bff;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.rgz-cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.rgz-cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.rgz-cookie-table tr:hover {
    background: #e3f2fd;
}

.rgz-about-section,
.rgz-mission-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.rgz-about-section-decor-text {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}


.rgz-about-section-decor-text::before {
    content: "Über uns – Recht auf Rück";
}

.rgz-mission-section::before {

    content: "Jetzt unsere Mission entdecken";
}

.rgz-about-section-decor-text::before,
.rgz-mission-section::before {

    position: absolute;
    inset: 0 auto auto 50%;
    transform: translateX(-50%);
    top: 12px;
    font: 800 68px/1.05 var(--font-primary, system-ui);
    color: rgba(26, 26, 46, .03);
    letter-spacing: .02em;
    pointer-events: none;
    z-index: 999;
}

.rgz-mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.mission-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #8b97a6;
    margin-bottom: 10px;
}

.rgz-mission-title {
    font: 800 28px/1.25 var(--font-primary, system-ui);
    color: var(--primary-color);
    margin: 0 0 16px;
}

.rgz-mission-feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: flex-start;
    margin: 14px 0;
}

.rgz-m-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f6f7f9;
    box-shadow: inset 0 0 0 1px rgba(26, 26, 46, .08);
    position: relative;
}

.rgz-m-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) saturate(0) opacity(.9);
}

.rgz-m-icon-legal::before {
    background-image: url("../assets/icons/legal.webp");
}

.rgz-m-icon-support::before {
    background-image: url("../assets/icons/recovery.webp");
}

.rgz-m-head {
    font: 700 16px/1.2 var(--font-primary, system-ui);
    color: var(--primary-color);
    margin: 2px 0 6px;
}

.rgz-m-text {
    color: #4a5568;
    line-height: 1.7;
}

.rgz-mission-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 10px 18px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: transform .25s ease;
}

.rgz-mission-btn:hover {
    transform: translateY(-2px);
}


.rgz-mission-visual {
    position: relative;
}

.rgz-mv-main {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

.rgz-mv-main img {
    display: block;
    width: 100%;
    height: auto;
}

.rgz-mv-float {
    position: absolute;
    left: 16px;
    bottom: -26px;
    margin: 0;
    width: 62%;
    max-width: 340px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
}

.rgz-mv-float img {
    display: block;
    width: 100%;
    height: auto;
}


@media (min-width:768px) {
    .rgz-mission-section {
        padding: 110px 0;
    }

    .rgz-mission-container {
        padding: 0 40px;
        gap: 36px;
    }

    .rgz-mission-title {
        font-size: 36px;
    }

    .rgz-about-section-decor-text::before,
    .rgz-mission-section::before {
        font-size: 120px;
        top: 20px;
    }
}


@media (min-width:992px) {
    .rgz-mission-container {
        grid-template-columns: 1.05fr 1fr;
        align-items: center;
        gap: 80px;
    }

    .rgz-mission-title {
        font-size: 44px;
    }

    .rgz-mv-float {
        left: -70px;
        bottom: -42px;
        width: 60%;
    }

    .rgz-about-section-decor-text::before,
    .rgz-mission-section::before {
        font-size: 160px;
        top: 24px;
    }
}


@media (min-width:1200px) {
    .rgz-mission-title {
        font-size: 48px;
    }

    .rgz-mv-float {
        left: -90px;
    }
}

.rgz-mission-statement {
    margin-block: 60px;
}

.rgz-mission-statement h2 {
    color: #007bff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rgz-mission-statement .rgz-lead {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.rgz-value-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.rgz-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rgz-value-card .rgz-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.rgz-value-card h4 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.rgz-value-card p {
    color: #666;
    line-height: 1.6;
}

.rgz-mission-content h2 {
    color: #007bff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.rgz-mission-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.rgz-mission-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.rgz-stat-item {
    text-align: center;
    flex: 1;
}

.rgz-stat-item h3 {
    color: #007bff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.rgz-stat-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.rgz-approach-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.rgz-approach-card:hover {
    transform: translateY(-5px);
}

.rgz-approach-card .rgz-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
}

.rgz-approach-card h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.rgz-approach-card p {
    color: #666;
    line-height: 1.6;
}

.rgz-impact-story {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.rgz-story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.rgz-story-header h4 {
    color: #007bff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.rgz-location {
    background: #e3f2fd;
    color: #007bff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.rgz-impact-story p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rgz-story-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 14px;
}

.rgz-story-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rgz-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.rgz-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.rgz-cta-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.rgz-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.rgz-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.rgz-btn-outline:hover {
    background: white;
    color: #007bff;
}

.rgz-page-title-inner h1.rgz-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.rgz-page-title-inner p.rgz-disc {
    font-size: 18px;
    color: #666;
}

.rgz-rts-page-title-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.rgz-rts-page-title-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.rgz-page-title-inner {
    position: relative;
    z-index: 2;
}

.rgz-page-title-inner h1.rgz-title,
.rgz-page-title-inner p.rgz-disc {
    color: white;
}

@media (max-width: 768px) {
    .rgz-mission-stats {
        flex-direction: column;
        gap: 20px;
    }

    .rgz-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rgz-story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


.rgz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rgz-row {
    --gap: 20px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--gap);
}

.rgz-row.rgz-g-5 {
    --gap: 32px;
}

.rgz-row.rgz-align-items-center {
    align-items: center;
}

.rgz-text-center {
    text-align: center;
}

.rgz-row>* {
    grid-column: span 12;
}




@media (min-width:768px) {
    .rgz-row>.rgz-col-md-6 {
        grid-column: span 6;
    }
}


@media (min-width:992px) {
    .rgz-row>.rgz-col-lg-12 {
        grid-column: span 12;
    }

    .rgz-row>.rgz-col-lg-6 {
        grid-column: span 6;
    }

    .rgz-row>.rgz-col-lg-4 {
        grid-column: span 4;
    }

    .rgz-row>.rgz-col-lg-3 {
        grid-column: span 3;
    }
}


.rgz-img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}



.rgz-value-card .rgz-icon,
.rgz-approach-card .rgz-icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: var(--primary-color, #1a1a2e);
}

.rgz-value-card .rgz-icon i,
.rgz-approach-card .rgz-icon i {
    display: none;
}



.rgz-value-card .rgz-icon::before,
.rgz-approach-card .rgz-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0) invert(1);

}


.rgz-row.rgz-g-5 .rgz-col-lg-3:nth-child(1) .rgz-value-card .rgz-icon::before {
    background-image: url("../assets/icons/broker.webp");
}

.rgz-row.rgz-g-5 .rgz-col-lg-3:nth-child(2) .rgz-value-card .rgz-icon::before {
    background-image: url("../assets/icons/crypto.webp");
}

.rgz-row.rgz-g-5 .rgz-col-lg-3:nth-child(3) .rgz-value-card .rgz-icon::before {
    background-image: url("../assets/icons/investment.webp");
}

.rgz-row.rgz-g-5 .rgz-col-lg-3:nth-child(4) .rgz-value-card .rgz-icon::before {
    background-image: url("../assets/icons/international.webp");
}


.rgz-row.rgz-g-5 .rgz-col-lg-4:nth-child(1) .rgz-approach-card .rgz-icon::before {
    background-image: url("../assets/icons/search.webp");
}

.rgz-row.rgz-g-5 .rgz-col-lg-4:nth-child(2) .rgz-approach-card .rgz-icon::before {
    background-image: url("../assets/icons/legal.webp");
}

.rgz-row.rgz-g-5 .rgz-col-lg-4:nth-child(3) .rgz-approach-card .rgz-icon::before {
    background-image: url("../assets/icons/recovery.webp");
}

.rgz-rts-section-gap {
    padding-bottom: 50px;
}

.rgz-team-header {
    position: relative;
    max-width: var(--rr-container-width, 1160px);
    margin: 0 auto 52px;
    padding-inline: var(--rr-gutter, 1.5rem);
    padding-top: 10px;
    padding-bottom: 32px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.10), transparent 55%);
    z-index: 1;
}


.rgz-team-header::before {
    content: "";
    position: absolute;
    left: calc(var(--rr-gutter, 1.5rem) - 6px);
    top: 12px;
    bottom: 18px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.08),
            rgba(30, 64, 175, 0.7),
            rgba(15, 23, 42, 0.05));
    pointer-events: none;
}


.rgz-team-header .rgz-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1.5rem;

    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: linear-gradient(135deg, #ffffff, #e5e7eb);

    font-family: var(--rr-font-heading, system-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #374151;
}

.rgz-team-header .rgz-header-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle, #facc15 0%, #b45309 70%, #78350f 100%);
    box-shadow:
        0 0 0 1px #f9fafb,
        0 0 8px rgba(250, 204, 21, 0.8);
}


.rgz-team-title {
    margin: 6px 0 0;
    max-width: 820px;

    font-family: var(--rr-font-heading, system-ui);
    font-weight: 800;
    font-size: clamp(1.9rem, 1.5rem + 1.2vw, 2.4rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #020617;
    position: relative;
}


.rgz-team-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 96px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(30, 64, 175, 0.05),
            rgba(30, 64, 175, 0.75),
            rgba(30, 64, 175, 0.05));
}


.rgz-team-subtitle {
    margin-top: 24px;
    max-width: 780px;

    font-size: 0.98rem;
    line-height: 1.8;
    color: #4b5563;
}


.rgz-team-subtitle strong {
    font-weight: 600;
    color: #111827;
}


@media (min-width: 768px) {
    .rgz-team-header {
        padding-inline: var(--rr-gutter, 2rem);
        padding-top: 16px;
        padding-bottom: 36px;
        gap: 20px;
    }

    .rgz-team-header::before {
        left: calc(var(--rr-gutter, 2rem) - 8px);
        top: 16px;
        bottom: 22px;
    }

    .rgz-team-subtitle {
        font-size: 1rem;
        max-width: 820px;
    }
}

/* =========================
   RESPONSIVE ≥1024px
   ========================= */

@media (min-width: 1024px) {
    .rgz-team-header {
        margin-bottom: 60px;
        padding-top: 22px;
        padding-bottom: 40px;
    }

    .rgz-team-title {
        font-size: clamp(2.1rem, 1.4rem + 1.8vw, 2.7rem);
        max-width: 860px;
    }

    .rgz-team-title::after {
        width: 112px;
        bottom: -16px;
    }
}

/* =========================
   SMALL SCREENS ≤480px
   ========================= */

@media (max-width: 480px) {
    .rgz-team-header {
        padding-inline: 1.25rem;
        padding-bottom: 28px;
        margin-bottom: 40px;
    }

    .rgz-team-header::before {
        left: 0.75rem;
    }

    .rgz-team-subtitle {
        font-size: 0.94rem;
    }
}


.rgz-team-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.rgz-team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.rgz-team-header {
    max-width: 760px;
    margin: 0 0 24px
}

.team-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--link-color, #2d3748);
    opacity: .7;
    margin-bottom: 8px
}

.rgz-team-title {
    font: 800 28px/1.25 var(--font-primary, system-ui);
    color: var(--primary-color, #1a1a2e);
    margin: 0 0 10px
}

.rgz-team-subtitle {
    color: #5d6772;
    line-height: 1.7
}

.rgz-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 16px
}

.rgz-team-card {
    background: #fff;
    border: 1px solid rgba(45, 55, 72, .12);

    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.rgz-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .12);
    border-color: rgba(45, 55, 72, .18)
}

.rgz-team-photo {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden
}

.rgz-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform .6s cubic-bezier(.22, .61, .36, 1)
}

.rgz-team-card:hover .rgz-team-photo img {
    transform: scale(1.06)
}

.rgz-team-body {
    padding: 16px
}

.rgz-team-name {
    font: 700 18px/1.3 var(--font-primary, system-ui);
    color: var(--primary-color, #1a1a2e);
    margin: 6px 0 6px
}

.rgz-team-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
    background: rgba(59, 130, 246, .08);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px
}

.rgz-team-note {
    position: relative;
    padding: 12px 14px 12px 18px;
    background: #fff;
    border: 1px solid rgba(45, 55, 72, .12);
    border-radius: 12px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6
}

.rgz-team-note::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 3px;
    background: linear-gradient(180deg, #3b82f6, .35, #60a5fa)
}


.rgz-team-card.rgz-slide-in-element {
    
    transform: translateY(26px)
}

.rgz-team-card.rgz-slide-in-element.rgz-visible {
    opacity: 1;
    transform: none
}


@media (min-width:768px) {
    .rgz-team-section {
        padding: 120px 0
    }

    .rgz-team-container {
        padding: 0 40px
    }

    .rgz-team-title {
        font-size: 36px
    }

    .rgz-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px
    }

    .rgz-team-name {
        font-size: 19px
    }
}


@media (min-width:992px) {
    .rgz-team-title {
        font-size: 42px
    }

    .rgz-team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px
    }
}


@media (min-width:1200px) {
    .rgz-team-grid {
        gap: 36px
    }

    .rgz-team-name {
        font-size: 20px
    }
}