/* =============================================
   RESERVIZE - Premium Design System
   ============================================= */

/* ---- Tokens ---- */
:root {
    --font: 'Inter', system-ui, -apple-system, sans-serif;

    /* Core palette */
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --amber-400: #fbbf24;
    --amber-500: #f59e0b;

    /* Semantic */
    --text-primary: var(--slate-900);
    --text-secondary: var(--slate-500);
    --text-tertiary: var(--slate-400);
    --bg-body: #ffffff;
    --bg-subtle: var(--slate-50);
    --border-light: var(--slate-200);
    --border-subtle: var(--slate-100);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadow */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -2px rgba(0, 0, 0, .05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .08), 0 4px 6px -4px rgba(0, 0, 0, .05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .08), 0 8px 10px -6px rgba(0, 0, 0, .04);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, .2);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

picture {
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---- Layout ---- */
.rz-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ---- Buttons ---- */
.rz-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius-full);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 14px rgba(16, 185, 129, .3);
}

.rz-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, .4);
    background: linear-gradient(135deg, var(--emerald-400), var(--emerald-500));
}

.rz-btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.rz-btn-sm {
    padding: .55rem 1.25rem;
    font-size: .85rem;
}

.rz-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    font-size: .95rem;
    border-radius: var(--radius-full);
    transition: all .25s;
    backdrop-filter: blur(4px);
}

.rz-btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .45);
    transform: translateY(-1px);
}

.rz-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.1rem;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    font-size: .9rem;
    border-radius: var(--radius-sm);
    transition: all .2s;
}

.rz-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.rz-btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

/* ---- Back To Top ---- */
.rz-back-to-top {
    position: fixed;
    right: clamp(.9rem, 2vw, 1.5rem);
    bottom: clamp(1rem, 2vw, 1.5rem);
    z-index: 1300;
    display: inline-flex;
    align-items: center;
    gap: .46rem;
    height: 42px;
    padding: 0 .95rem 0 .72rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(110, 231, 183, .45);
    background: rgba(2, 26, 35, .86);
    color: #dff8ec;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 10px 24px -16px rgba(2, 6, 23, .9);
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, border-color .2s ease, background .2s ease;
}

.rz-back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.rz-back-to-top:hover {
    background: rgba(2, 37, 50, .95);
    border-color: rgba(110, 231, 183, .72);
}

.rz-back-to-top:focus-visible {
    outline: 2px solid rgba(110, 231, 183, .88);
    outline-offset: 2px;
}

.rz-back-to-top-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff;
    font-size: .88rem;
    line-height: 1;
}

.rz-back-to-top-text {
    white-space: nowrap;
}

/* ---- Cookie Consent ---- */
.rz-cookie-consent {
    position: fixed;
    left: clamp(.9rem, 2vw, 1.5rem);
    bottom: clamp(.9rem, 2vw, 1.5rem);
    z-index: 1350;
    width: min(430px, calc(100% - 1.8rem));
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
}

.rz-cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.rz-cookie-consent-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, .4);
    background: rgba(2, 26, 35, .94);
    box-shadow: 0 24px 38px -28px rgba(2, 6, 23, .95), 0 10px 22px -18px rgba(2, 6, 23, .8);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    padding: .95rem;
}

.rz-cookie-consent-title {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 800;
    color: #f8fafc;
}

.rz-cookie-consent-text {
    margin-top: .42rem;
    font-size: .86rem;
    line-height: 1.55;
    color: #c7d7ec;
}

.rz-cookie-consent-actions {
    margin-top: .85rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .42rem;
}

.rz-cookie-btn {
    min-height: 36px;
    border-radius: 11px;
    border: 1px solid transparent;
    font-size: .78rem;
    line-height: 1.1;
    font-weight: 700;
    padding: .52rem .55rem;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, color .2s ease, box-shadow .2s ease;
}

.rz-cookie-btn:hover {
    transform: translateY(-1px);
}

.rz-cookie-btn--ghost {
    border-color: rgba(148, 163, 184, .45);
    background: rgba(15, 23, 42, .42);
    color: #e2e8f0;
}

.rz-cookie-btn--ghost:hover {
    border-color: rgba(148, 163, 184, .72);
    background: rgba(15, 23, 42, .62);
}

.rz-cookie-btn--outline {
    border-color: rgba(110, 231, 183, .58);
    background: rgba(4, 120, 87, .1);
    color: #bbf7d0;
}

.rz-cookie-btn--outline:hover {
    border-color: rgba(110, 231, 183, .8);
    background: rgba(4, 120, 87, .24);
}

.rz-cookie-btn--primary {
    border-color: rgba(16, 185, 129, .88);
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #fff;
    box-shadow: 0 10px 16px -14px rgba(16, 185, 129, .95);
}

.rz-cookie-btn--primary:hover {
    background: linear-gradient(135deg, #6ee7b7, #22c55e);
    border-color: #22c55e;
}

.rz-cookie-btn:focus-visible {
    outline: 2px solid rgba(110, 231, 183, .9);
    outline-offset: 2px;
}

.rz-cookie-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rz-cookie-consent-custom {
    display: none;
    margin-top: .78rem;
    padding-top: .74rem;
    border-top: 1px solid rgba(148, 163, 184, .32);
    gap: .48rem;
}

.rz-cookie-consent.is-customizing .rz-cookie-consent-custom {
    display: grid;
}

.rz-cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .72rem;
    border: 1px solid rgba(148, 163, 184, .3);
    border-radius: 12px;
    background: rgba(15, 23, 42, .36);
    padding: .52rem .62rem;
}

.rz-cookie-toggle-copy {
    display: grid;
    gap: .08rem;
}

.rz-cookie-toggle-copy strong {
    font-size: .82rem;
    color: #f1f5f9;
    font-weight: 700;
    line-height: 1.2;
}

.rz-cookie-toggle-copy small {
    font-size: .73rem;
    color: #9ab0cc;
    line-height: 1.35;
}

.rz-cookie-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #10b981;
    flex-shrink: 0;
}

.rz-cookie-toggle input[type="checkbox"]:disabled {
    opacity: .9;
    cursor: default;
}

.rz-cookie-consent-custom-actions {
    margin-top: .2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .42rem;
}

.rz-cookie-consent-link {
    display: inline-flex;
    align-items: center;
    margin-top: .66rem;
    font-size: .77rem;
    font-weight: 700;
    color: #6ee7b7;
    transition: color .2s ease;
}

.rz-cookie-consent-link:hover {
    color: #a7f3d0;
}

.rz-cookie-manage {
    position: fixed;
    left: clamp(.9rem, 2vw, 1.5rem);
    bottom: clamp(.9rem, 2vw, 1.5rem);
    z-index: 1330;
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    height: 40px;
    padding: 0 .78rem 0 .62rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(110, 231, 183, .42);
    background: rgba(2, 26, 35, .88);
    color: #dff8ec;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 10px 20px -16px rgba(2, 6, 23, .9);
    backdrop-filter: blur(10px) saturate(1.15);
    -webkit-backdrop-filter: blur(10px) saturate(1.15);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, border-color .2s ease, background .2s ease;
}

.rz-cookie-manage.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.rz-cookie-manage:hover {
    background: rgba(2, 37, 50, .95);
    border-color: rgba(110, 231, 183, .68);
}

.rz-cookie-manage:focus-visible {
    outline: 2px solid rgba(110, 231, 183, .88);
    outline-offset: 2px;
}

.rz-cookie-manage-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff;
    font-size: .72rem;
    line-height: 1;
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(16, 185, 129, .3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(16, 185, 129, .55), 0 0 60px rgba(16, 185, 129, .15);
    }
}

/* =============================================
   HEADER
   ============================================= */
.rz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.rz-header::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(1, 10, 28, .26) 0%, rgba(1, 10, 28, .06) 56%, rgba(1, 10, 28, 0) 100%);
}

.rz-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 2.5rem));
    height: 1px;
    background: linear-gradient(90deg, rgba(110, 231, 183, 0), rgba(110, 231, 183, .48), rgba(110, 231, 183, 0));
    opacity: .28;
    transition: opacity .35s ease;
}

.rz-header.is-scrolled {
    background: rgba(2, 26, 35, .72);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    padding: .62rem 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 14px 36px -22px rgba(2, 6, 23, .9);
}

.rz-header.is-scrolled::after {
    opacity: .62;
}

.rz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    padding: .44rem .58rem;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(2, 37, 50, .54), rgba(2, 37, 50, .28));
    border: 1px solid rgba(110, 231, 183, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 30px -24px rgba(2, 6, 23, .95);
}

.rz-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    padding: .3rem .45rem .3rem .3rem;
    border-radius: 12px;
    transition: background .25s ease, transform .25s ease;
}

.rz-logo:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateY(-1px);
}

.rz-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.01em;
}

.rz-menu {
    display: flex;
    gap: .25rem;
    padding: .24rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(148, 163, 184, .2);
    background: rgba(2, 16, 29, .42);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.rz-menu-link {
    padding: .56rem .95rem;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(226, 232, 240, .76);
    border-radius: 999px;
    letter-spacing: .01em;
    transition: all .24s cubic-bezier(.4, 0, .2, 1);
}

.rz-menu-link:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(52, 211, 153, .22), rgba(16, 185, 129, .14));
    box-shadow: inset 0 0 0 1px rgba(167, 243, 208, .24);
}

.rz-menu-link:focus-visible {
    outline: 2px solid rgba(110, 231, 183, .8);
    outline-offset: 2px;
}

.rz-header-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding-right: .12rem;
}

.rz-header-actions .rz-btn-ghost {
    padding: .56rem .94rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(148, 163, 184, .24);
    color: rgba(241, 245, 249, .86);
    background: rgba(15, 23, 42, .26);
}

.rz-header-actions .rz-btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(167, 243, 208, .32);
    transform: translateY(-1px);
}

.rz-header-actions .rz-btn-primary.rz-btn-sm {
    padding: .68rem 1.28rem;
    box-shadow: 0 10px 22px -14px rgba(16, 185, 129, .9);
}

.rz-header-actions .rz-btn-primary.rz-btn-sm:hover {
    box-shadow: 0 14px 28px -16px rgba(16, 185, 129, .95);
}

.rz-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .24);
    background: rgba(2, 16, 29, .5);
}

.rz-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

@media (min-width: 1100px) {
    .rz-nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        gap: 1rem;
    }

    .rz-logo {
        justify-self: center;
    }

    .rz-menu {
        justify-self: center;
    }

    .rz-header-actions {
        justify-self: center;
        justify-content: center;
        padding-right: 0;
    }
}

/* =============================================
   HERO
   ============================================= */
.rz-hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: var(--emerald-950);
    color: #fff;
}

.rz-hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.rz-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
}

.rz-hero-orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, .4), transparent 70%);
    top: -15%;
    right: -5%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.rz-hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 78, 59, .5), transparent 70%);
    bottom: 10%;
    left: -10%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.rz-hero-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 211, 153, .25), transparent 70%);
    top: 40%;
    left: 50%;
    animation: orbFloat3 8s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 20px) scale(1.05);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.08);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -15px) scale(1.03);
    }
}

.rz-hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}

.rz-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.rz-hero-copy {
    max-width: 580px;
}

/* Badge */
.rz-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem .45rem .65rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 600;
    color: var(--emerald-200);
    backdrop-filter: blur(6px);
    margin-bottom: 1.75rem;
}

.rz-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-400);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(52, 211, 153, .5);
    }

    50% {
        opacity: .7;
        box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
    }
}

.rz-hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.025em;
    margin-bottom: 1.5rem;
}

.rz-gradient-text {
    background: linear-gradient(135deg, var(--emerald-400), var(--amber-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rz-hero-desc {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .6);
    max-width: 44ch;
    margin-bottom: 2.25rem;
}

.rz-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Social Proof */
.rz-social-proof {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.rz-avatars {
    display: flex;
}

.rz-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    border: 2.5px solid var(--emerald-950);
    margin-left: -8px;
}

.rz-avatar:first-child {
    margin-left: 0;
}

.rz-social-proof p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}

.rz-social-proof strong {
    color: var(--emerald-300);
}

/* =============================================
   HERO VISUAL - 3D Browser Mockup
   ============================================= */
.rz-hero-visual {
    position: relative;
    perspective: 1200px;
}

.rz-mockup-3d {
    position: relative;
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
    animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {

    0%,
    100% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(0);
    }

    50% {
        transform: rotateY(-7deg) rotateX(3deg) translateY(-10px);
    }
}

.rz-browser-frame {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 60px 100px -20px rgba(0, 0, 0, .5),
        0 30px 60px -15px rgba(0, 0, 0, .3),
        0 0 0 1px rgba(255, 255, 255, .1),
        0 0 80px rgba(16, 185, 129, .08);
}

/* Phone mockup to pair with the desktop frame */
.rz-phone-mockup {
    position: absolute;
    right: -9%;
    bottom: -14%;
    width: clamp(155px, 20vw, 205px);
    z-index: 12;
    pointer-events: none;
    transform: rotateY(-14deg) rotateX(3deg) rotateZ(8deg) translateZ(90px);
    transform-origin: bottom right;
    animation: phoneFloat 5.8s ease-in-out infinite .35s;
}

.rz-phone-mockup::before {
    content: '';
    position: absolute;
    inset: -12px -14px -16px;
    border-radius: 36px;
    background: radial-gradient(circle at 35% 30%, rgba(52, 211, 153, .25), rgba(17, 24, 39, .06) 65%, transparent 100%);
    filter: blur(18px);
    z-index: -1;
}

.rz-phone-shell {
    border-radius: 34px;
    padding: 8px;
    background: linear-gradient(160deg, #111827, #1f2937 45%, #0f172a);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow:
        0 22px 46px rgba(2, 6, 23, .45),
        0 8px 24px rgba(2, 6, 23, .35),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

.rz-phone-screen {
    position: relative;
    min-height: 360px;
    border-radius: 27px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .24);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 45%, #f1f5f9 100%);
    padding: 34px 14px 16px;
}

.rz-phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 74px;
    height: 16px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: #0b1220;
}

.rz-phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.rz-phone-time {
    font-size: .62rem;
    font-weight: 700;
    color: #475569;
}

.rz-phone-status {
    display: flex;
    gap: 3px;
}

.rz-phone-status span {
    width: 4px;
    border-radius: 999px;
    background: #64748b;
}

.rz-phone-status span:nth-child(1) {
    height: 5px;
}

.rz-phone-status span:nth-child(2) {
    height: 7px;
}

.rz-phone-status span:nth-child(3) {
    height: 9px;
    background: #10b981;
}

.rz-phone-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rz-phone-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .65rem;
    font-weight: 800;
}

.rz-phone-user-title {
    font-size: .62rem;
    font-weight: 700;
    color: #1e293b;
}

.rz-phone-user-sub {
    margin-top: 1px;
    font-size: .55rem;
    color: #64748b;
}

.rz-phone-balance {
    margin-bottom: 10px;
    border-radius: 12px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #065f46, #059669);
    color: #fff;
    box-shadow: 0 8px 18px rgba(5, 150, 105, .25);
}

.rz-phone-balance p {
    font-size: .56rem;
    letter-spacing: .02em;
    opacity: .8;
}

.rz-phone-balance strong {
    display: block;
    margin-top: 3px;
    font-size: .95rem;
    line-height: 1.1;
}

.rz-phone-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.rz-phone-card {
    border-radius: 10px;
    padding: 9px 8px;
    border: 1px solid rgba(148, 163, 184, .24);
    background: rgba(255, 255, 255, .74);
}

.rz-phone-card span {
    display: block;
    font-size: .5rem;
    color: #64748b;
}

.rz-phone-card strong {
    display: block;
    margin-top: 4px;
    font-size: .62rem;
    color: #1e293b;
}

.rz-phone-card--income strong {
    color: #059669;
}

.rz-phone-card--expense strong {
    color: #dc2626;
}

.rz-phone-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 6px;
    height: 52px;
    border-radius: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(148, 163, 184, .24);
}

.rz-phone-bars span {
    display: block;
    height: var(--h, 60%);
    border-radius: 5px 5px 3px 3px;
    background: linear-gradient(180deg, #34d399, #0f766e);
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: rotateY(-14deg) rotateX(3deg) rotateZ(8deg) translateZ(90px) translateY(0);
    }

    50% {
        transform: rotateY(-13deg) rotateX(2deg) rotateZ(7deg) translateZ(90px) translateY(-10px);
    }
}

/* Browser chrome bar */
.rz-browser-bar {
    height: 36px;
    background: linear-gradient(180deg, #2d333b, #22272e);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.rz-browser-dots {
    display: flex;
    gap: 6px;
}

.rz-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.rz-browser-url {
    flex: 1;
    height: 22px;
    background: rgba(255, 255, 255, .08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    font-size: .65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
}

.rz-browser-url svg {
    flex-shrink: 0;
    color: var(--emerald-400);
    display: inline-block;
}

/* App layout inside browser */
.rz-app-layout {
    display: flex;
    min-height: 340px;
    background: var(--slate-50);
}

/* Sidebar */
.rz-app-sidebar {
    width: 52px;
    background: linear-gradient(180deg, var(--emerald-900), var(--emerald-950));
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.rz-sidebar-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: .8rem;
    margin-bottom: 16px;
}

.rz-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rz-sidebar-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .35);
    transition: all .2s;
    cursor: pointer;
}

.rz-sidebar-item.active {
    background: rgba(255, 255, 255, .12);
    color: var(--emerald-400);
}

.rz-sidebar-item:hover {
    color: rgba(255, 255, 255, .7);
}

/* Main area */
.rz-app-main {
    flex: 1;
    padding: 16px;
    overflow: hidden;
}

.rz-app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.rz-app-greeting {
    font-size: .85rem;
    font-weight: 700;
    color: var(--slate-800);
}

.rz-app-subgreeting {
    font-size: .65rem;
    color: var(--slate-400);
    margin-top: 2px;
}

.rz-app-new-btn {
    height: 28px;
    padding: 0 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, .25);
    transition: transform .2s;
}

.rz-app-new-btn:hover {
    transform: translateY(-1px);
}

/* Stat cards */
/* Stat cards */
.rz-app-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}


.rz-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 90px;
    min-width: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    /* Fallback border */
    border-left-width: 4px;
}

.rz-stat-card--green {
    border-left-color: var(--emerald-400);
}

.rz-stat-card--blue {
    border-left-color: #6366f1;
}

.rz-stat-card--red {
    border-left-color: #ef4444;
}

.rz-stat-card--amber {
    border-left-color: var(--amber-400);
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-left-width: 0;
    position: relative;
}

/* Special styling for alert card */
.rz-stat-card--amber::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--amber-400);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}


.rz-stat-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rz-stat-label {
    font-size: .55rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.4;
    max-width: 70px;
}



.rz-stat-value {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.rz-stat-value small {
    font-size: 0.6em;
    font-weight: 700;
    margin-right: 2px;
    vertical-align: middle;
}

.rz-stat-green {
    color: var(--emerald-600);
}

.rz-stat-red {
    color: #ef4444;
}

.rz-stat-amber {
    color: var(--amber-600);
}



/* Special Amber Card Internal Layout */
.rz-stat-status {
    font-size: .75rem;
    font-weight: 700;
    color: #92400e;
    line-height: 1.2;
    margin-bottom: 4px;
}

/* Bottom panels */
.rz-app-panels {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8px;
}

.rz-app-panel {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px;
}

.rz-panel-head {
    margin-bottom: 10px;
}

.rz-panel-label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--slate-700);
}

/* Category items */
.rz-category-item {
    margin-bottom: 8px;
}

.rz-category-item:last-child {
    margin-bottom: 0;
}

.rz-cat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.rz-cat-row span {
    font-size: .6rem;
    font-weight: 500;
    color: var(--slate-500);
}

.rz-cat-row strong {
    font-size: .6rem;
    font-weight: 700;
    color: var(--slate-700);
}

.rz-cat-bar {
    height: 6px;
    background: var(--slate-100);
    border-radius: 99px;
    overflow: hidden;
}

.rz-cat-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    transition: width .3s;
}

/* Mini chart */
.rz-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 90px;
    padding-top: 8px;
}

.rz-chart-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}

.rz-chart-col span {
    width: 100%;
    border-radius: 4px 4px 2px 2px;
    height: var(--h, 50%);
    transition: height .3s;
}

.rz-chart-col:nth-child(1) span {
    animation-delay: 0s;
}

.rz-chart-col:nth-child(2) span {
    animation-delay: .12s;
}

.rz-chart-col:nth-child(3) span {
    animation-delay: .24s;
}

.rz-chart-col:nth-child(4) span {
    animation-delay: .36s;
}

.rz-chart-col:nth-child(5) span {
    animation-delay: .48s;
}

.rz-chart-col small {
    font-size: .5rem;
    font-weight: 600;
    color: var(--slate-400);
}

/* Floating notification cards */
.rz-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12), 0 2px 6px rgba(0, 0, 0, .06);
    z-index: 8;
}

.rz-float-card--1 {
    bottom: 10%;
    left: -12%;
    animation: floatCard1 4s ease-in-out infinite;
}

.rz-float-card--2 {
    top: 5%;
    right: -8%;
    z-index: 20;
    transform: translateZ(140px) translateY(0) rotate(1deg);
    animation: floatCard2 5s ease-in-out infinite .5s;
    animation-fill-mode: both;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-8px) rotate(0deg);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateZ(140px) translateY(0) rotate(1deg);
    }

    50% {
        transform: translateZ(140px) translateY(-6px) rotate(0deg);
    }
}

.rz-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.rz-float-title {
    font-size: .72rem;
    font-weight: 700;
    color: var(--slate-800);
}

.rz-float-sub {
    font-size: .6rem;
    color: var(--slate-400);
    margin-top: 1px;
}

/* Hero fade to white */
.rz-hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 3;
    pointer-events: none;
}

/* Animations */
@keyframes rzBars {

    0%,
    100% {
        transform: scaleY(.85);
        opacity: .9;
    }

    50% {
        transform: scaleY(1.06);
        opacity: 1;
    }
}

/* =============================================
   SECTIONS - Shared
   ============================================= */
.rz-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.rz-section>.rz-container {
    position: relative;
}

.rz-section--fade-dark,
.rz-section--fade-light {
    --section-break-size: clamp(78px, 9vw, 130px);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% var(--section-break-size);
}

.rz-section--fade-dark {
    background-image: none;
}

.rz-section--fade-light {
    background-image: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .46) 55%,
            rgba(255, 255, 255, .86) 82%,
            #ffffff 100%);
}

.rz-section--dark {
    background-color: var(--slate-950);
    color: #fff;
}

#features.rz-section {
    --section-break-size: clamp(78px, 9.5vw, 132px);
    padding-bottom: clamp(3.4rem, 6vw, 5rem);
    background-image: none;
}

#how-it-works.rz-section {
    --section-break-size: clamp(72px, 9vw, 116px);
    padding-bottom: clamp(1.2rem, 2.4vw, 2rem);
}

.rz-cta-section.rz-section {
    --section-break-size: clamp(112px, 13vw, 188px);
    padding-bottom: clamp(6.75rem, 11vw, 9.25rem);
    padding-top: clamp(.75rem, 1.8vw, 1.35rem);
}

#how-it-works.rz-section {
    padding-top: clamp(5rem, 8vw, 6.75rem);
}

#how-it-works .rz-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 3.5vw, 2.75rem);
}

#how-it-works .rz-section-header,
#how-it-works .rz-steps {
    width: 100%;
}

#how-it-works .rz-section-header {
    margin: 0 auto;
}

#how-it-works .rz-steps {
    max-width: 980px;
    margin: 0 auto;
    justify-content: center;
    padding-bottom: clamp(.8rem, 1.4vw, 1.35rem);
}

#how-it-works .rz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rz-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.rz-section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--emerald-600);
    margin-bottom: .75rem;
}

.rz-section-eyebrow--light {
    color: var(--emerald-400);
}

.rz-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.rz-section-title--light {
    color: #fff;
}

.rz-section-header--features .rz-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.rz-section-header--features .rz-title-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #10b981 0%, #84cc16 45%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rz-section-header--features .rz-title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.12em;
    width: 100%;
    height: 4px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #10b981 0%, #f59e0b 100%);
    box-shadow: 0 6px 14px rgba(16, 185, 129, .28);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease-out;
}

.rz-section-header--features.is-visible .rz-title-highlight::after {
    opacity: 1;
    transform: scaleX(1);
}

.rz-section-header--features .rz-section-desc {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.rz-section-header--community .rz-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.rz-section-header--community .rz-title-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #10b981 0%, #84cc16 45%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rz-section-header--community .rz-title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.15em;
    width: 100%;
    height: 3px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #10b981 0%, #34d399 25%, #f59e0b 50%, #34d399 75%, #10b981 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    opacity: 0;
    transform: scaleX(.72);
    transform-origin: center;
    transition: transform .75s cubic-bezier(.22, 1, .36, 1), opacity .35s ease-out;
}

.rz-section-header--community.is-visible .rz-title-highlight::after {
    opacity: 1;
    transform: scaleX(1);
    animation: rzCommunityUnderlineFlow 3.2s linear infinite;
}

@keyframes rzCommunityUnderlineFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: -200% 0%;
    }
}

.rz-section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.rz-section-desc--light {
    color: var(--slate-400);
}

/* =============================================
   PLANS PREVIEW
   ============================================= */
.rz-pricing-preview-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% -4%, rgba(16, 185, 129, .15), rgba(16, 185, 129, 0) 42%),
        radial-gradient(circle at 92% 8%, rgba(56, 189, 248, .14), rgba(56, 189, 248, 0) 42%),
        linear-gradient(180deg, #f8fafc 0%, #f2f7fb 56%, #edf3fa 100%);
}

#pricing-preview.rz-section {
    padding-top: clamp(3.1rem, 5.7vw, 4.4rem);
    padding-bottom: clamp(4.2rem, 7.8vw, 5.8rem);
}

.rz-section-header--pricing {
    max-width: 860px;
    margin-bottom: clamp(2rem, 3.2vw, 2.8rem);
}

.rz-section-header--pricing .rz-section-eyebrow {
    display: block;
    color: #059669;
    margin-bottom: .65rem;
}

.rz-section-header--pricing .rz-section-title {
    position: relative;
    display: inline-block;
    margin-bottom: .95rem;
}

.rz-section-header--pricing .rz-section-title::after {
    content: '';
    display: block;
    width: 82px;
    height: 4px;
    margin: .7rem auto 0;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #10b981, #34d399);
}

.rz-section-header--pricing .rz-section-desc {
    color: #5f7492;
    font-size: clamp(1rem, 1.38vw, 1.18rem);
}

.rz-pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.9rem, 1.65vw, 1.3rem);
    max-width: 1160px;
    margin: clamp(3.6rem, 5vw, 4.6rem) auto 0;
    align-items: stretch;
}

.rz-plan-preview-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid #d2dcea;
    border-top: 3px solid #c2d1e3;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 34px -26px rgba(15, 23, 42, .46);
    padding: clamp(1.6rem, 2vw, 1.9rem) clamp(1.2rem, 1.75vw, 1.45rem) clamp(1.3rem, 1.85vw, 1.55rem);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.rz-plan-preview-card:hover {
    transform: translateY(-4px);
    border-color: #bdccdf;
    box-shadow: 0 24px 42px -24px rgba(15, 23, 42, .54);
}

.rz-plan-preview-card--popular {
    transform: translateY(-30px);
    border-color: #86efac;
    border-top-color: #10b981;
    box-shadow: 0 32px 52px -28px rgba(16, 185, 129, .46);
    z-index: 2;
}

.rz-plan-preview-card--popular:hover {
    transform: translateY(-34px);
    border-color: #4ade80;
    box-shadow: 0 36px 58px -28px rgba(16, 185, 129, .56);
}

.rz-plan-preview-card--featured {
    border-color: rgba(16, 185, 129, .54);
    border-top-color: #10b981;
    box-shadow: 0 26px 44px -28px rgba(5, 150, 105, .52);
}

.rz-plan-preview-badge {
    position: absolute;
    top: -13px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 .9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #10b981;
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .01em;
    text-transform: none;
    box-shadow: 0 12px 20px -14px rgba(15, 23, 42, .66);
}

.rz-plan-preview-badge--popular {
    background: #059669;
}

.rz-plan-preview-badge--featured {
    background: #10b981;
}

.rz-plan-preview-head h3 {
    margin: 0 0 .2rem;
    font-size: clamp(1.95rem, 2.2vw, 2.45rem);
    line-height: 1.06;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.02em;
    text-align: center;
}

.rz-plan-preview-price {
    margin: .36rem 0 .28rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: .1rem;
    font-size: clamp(2.35rem, 3.05vw, 3.1rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
    color: #059669;
}

.rz-plan-preview-price small {
    font-size: .58em;
    font-weight: 700;
    margin-right: .14em;
}

.rz-plan-preview-price span {
    font-size: .36em;
    font-weight: 700;
    color: #64748b;
    margin-bottom: .18em;
}

.rz-plan-preview-sub {
    margin: 0;
    color: #5a6f8a;
    font-size: 1rem;
    line-height: 1.45;
    text-align: center;
}

.rz-plan-preview-total {
    margin: .22rem 0 0;
    color: #64748b;
    font-size: .98rem;
    font-weight: 700;
    text-align: center;
}

.rz-plan-preview-discount {
    width: max-content;
    margin: .72rem auto 0;
    padding: .34rem .84rem;
    border-radius: 999px;
    border: 1px solid #a7f3d0;
    background: #dcfce7;
    color: #059669;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.rz-plan-preview-divider {
    margin: 1.2rem 0 1.15rem;
    height: 1px;
    background: #dbe4ef;
}

.rz-plan-preview-list {
    margin: 0 0 1.45rem;
    display: grid;
    gap: .72rem;
}

.rz-plan-preview-list li {
    position: relative;
    padding-left: 1.45rem;
    font-size: 1.01rem;
    color: #334155;
    line-height: 1.4;
    font-weight: 600;
}

.rz-plan-preview-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: .02em;
    color: #16a34a;
    font-size: 1rem;
    line-height: 1;
    font-weight: 900;
}

.rz-plan-preview-btn {
    margin-top: auto;
    height: 46px;
    border-radius: 999px;
    border: 1.6px solid rgba(16, 185, 129, .72);
    background: #fff;
    color: #059669;
    font-size: 1.04rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.rz-plan-preview-btn:hover {
    background: #ecfdf5;
    border-color: #10b981;
    color: #047857;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px -14px rgba(16, 185, 129, .7);
}

.rz-plan-preview-btn--solid,
.rz-plan-preview-btn--featured {
    border-color: #10b981;
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #fff;
    box-shadow: 0 16px 24px -14px rgba(16, 185, 129, .95);
}

.rz-plan-preview-btn--solid:hover,
.rz-plan-preview-btn--featured:hover {
    background: linear-gradient(135deg, #6ee7b7, #22c55e);
    border-color: #16a34a;
    color: #fff;
    box-shadow: 0 18px 30px -14px rgba(16, 185, 129, .95);
}

.rz-plan-preview-card--featured .rz-plan-preview-btn {
    border-color: rgba(16, 185, 129, .72);
    color: #059669;
}

.rz-plan-preview-card--featured .rz-plan-preview-btn:hover {
    background: #ecfdf5;
    border-color: #10b981;
    color: #047857;
    box-shadow: 0 10px 18px -14px rgba(16, 185, 129, .85);
}

/* =============================================
   FEATURES
   ============================================= */
.rz-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 2.5vw, 2rem);
    max-width: 1140px;
    margin: 0 auto;
    align-items: stretch;
}

.rz-feature-card {
    padding: 1.15rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid var(--border-light);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
    align-items: center;
    gap: clamp(1rem, 2vw, 1.8rem);
    min-height: clamp(390px, 38vw, 500px);
}

.rz-feature-card--dashboard {
    padding: 0;
    border: 0;
    background: transparent;
    min-height: 0;
    gap: clamp(1rem, 2vw, 1.35rem);
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    align-items: start;
}

.rz-feature-card:nth-child(even) .rz-feature-media {
    order: 2;
}

.rz-feature-card:nth-child(even) .rz-feature-content {
    order: 1;
}

.rz-feature-card:nth-child(even) {
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
}

.rz-feature-card--dashboard::before {
    display: none;
}

.rz-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .3s;
    background: linear-gradient(135deg, rgba(16, 185, 129, .04), rgba(99, 102, 241, .04));
}

.rz-feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-light);
}

.rz-feature-card--dashboard:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.rz-feature-card:hover::before {
    opacity: 0;
}

.rz-feature-media {
    --feature-tint: rgba(16, 185, 129, .3);
    --media-scale: 1.08;
    --media-hover-scale: 1.12;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .26);
    aspect-ratio: 16 / 9;
    background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
    padding: clamp(.16rem, .35vw, .32rem);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 12px 28px rgba(15, 23, 42, .09);
}

.rz-feature-card--dashboard .rz-feature-media {
    border: 0;
    border-radius: var(--radius-lg);
    padding: 0;
    background: transparent;
    box-shadow: none;
    width: min(100%, 1100px);
    aspect-ratio: auto;
}

.rz-feature-card--dashboard .rz-feature-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(1rem, 1.55vw, 1.32rem) clamp(1rem, 1.9vw, 1.45rem) clamp(1.05rem, 1.6vw, 1.45rem);
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid #d4dce7;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 16px 30px -24px rgba(15, 23, 42, .5);
}

.rz-feature-card--dashboard .rz-feature-name {
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    margin-bottom: .45rem;
}

.rz-feature-card--dashboard .rz-feature-desc {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.55;
}

.rz-feature-card--control .rz-feature-content {
    position: relative;
    align-self: center;
    border-radius: var(--radius-lg);
    border: 1px solid #d4dce7;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 16px 30px -24px rgba(15, 23, 42, .5);
    padding: clamp(1.05rem, 1.55vw, 1.35rem) clamp(.95rem, 1.5vw, 1.3rem);
}

.rz-feature-card--control .rz-feature-name {
    margin-bottom: .65rem;
}

.rz-feature-card--control .rz-feature-desc {
    max-width: 34ch;
}

.rz-feature-card--control .rz-feature-content::before {
    content: none;
}

.rz-feature-card--control .rz-feature-content::after {
    content: none;
}

.rz-feature-card--dashboard .rz-feature-content::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    width: 2px;
    height: 18px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(16, 185, 129, .72), rgba(16, 185, 129, .14));
}

.rz-feature-card--dashboard .rz-feature-content::after {
    content: '';
    position: absolute;
    top: -27px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .17);
}

.rz-feature-card--control:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-light);
}

.rz-feature-card--control:hover::before {
    opacity: 0;
}

.rz-feature-link-hint {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .45rem;
    padding: .26rem .62rem;
    border-radius: var(--radius-full);
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    font-size: .73rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .01em;
}

.rz-feature-link-hint::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #10b981;
}

.rz-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 34%;
    border-radius: 11px;
    transform: scale(var(--media-scale));
    filter: saturate(1.1) contrast(1.08) brightness(1.05);
    transition: transform .45s cubic-bezier(.4, 0, .2, 1), filter .45s cubic-bezier(.4, 0, .2, 1);
}

.rz-feature-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, var(--feature-tint), transparent 66%);
    opacity: .22;
    z-index: 1;
    pointer-events: none;
}

.rz-feature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, .02));
    z-index: 1;
    pointer-events: none;
}

.rz-feature-card--dashboard .rz-feature-media::before,
.rz-feature-card--dashboard .rz-feature-media::after {
    display: none;
}

.rz-feature-media--dashboard {
    --feature-tint: rgba(59, 130, 246, .08);
    --media-scale: 1;
    --media-hover-scale: 1;
    background: transparent;
}

.rz-feature-media--dashboard::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, .01));
}

.rz-feature-media--dashboard img {
    object-fit: contain;
    object-position: center;
    filter: none;
    image-rendering: auto;
    background: #f8fafc;
}

/* Interactive SaaS demo (first feature card) */
.rz-saas-demo {
    width: 100%;
    background: #eef1f5;
    border: 1px solid #dce2ea;
    border-radius: 24px;
    padding: clamp(1rem, 1.9vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: clamp(.9rem, 1.3vw, 1.2rem);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), 0 16px 32px rgba(15, 23, 42, .08);
    transition: opacity .18s ease, transform .18s ease;
}

.rz-saas-demo.is-switching {
    opacity: .9;
    transform: translateY(1px);
}

.rz-saas-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
}

.rz-saas-context {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
}

.rz-saas-periods {
    display: inline-flex;
    align-items: center;
    gap: .22rem;
    padding: .22rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #d7dee8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.rz-saas-period {
    padding: .42rem .68rem;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    color: #475569;
    transition: all .2s ease;
}

.rz-saas-period:hover {
    background: rgba(15, 23, 42, .04);
}

.rz-saas-period.is-active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 5px 12px rgba(22, 163, 74, .24);
}

.rz-saas-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(.62rem, 1vw, .95rem);
}

.rz-saas-kpi {
    background: #f9fafb;
    border: 1px solid #d6dde7;
    border-radius: 16px;
    padding: clamp(.8rem, 1.2vw, 1.05rem);
    min-height: 168px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.rz-saas-kpi--saldo {
    border-top: 3px solid #f59e0b;
}

.rz-saas-kpi--income {
    border-top: 3px solid #22c55e;
}

.rz-saas-kpi--expense {
    border-top: 3px solid #ef4444;
}

.rz-saas-kpi--health {
    border-top: 3px solid #94a3b8;
}

.rz-saas-kpi-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .65rem;
}

.rz-saas-kpi-label {
    font-size: clamp(.86rem, 1vw, .96rem);
    font-weight: 600;
    color: #475569;
    line-height: 1.28;
}

.rz-saas-kpi-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, .32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
    flex-shrink: 0;
}

.rz-saas-kpi-icon svg {
    display: block;
}

.rz-saas-kpi-icon--saldo {
    background: #fff9e8;
    border-color: rgba(245, 158, 11, .35);
    color: #c28a0b;
}

.rz-saas-kpi-icon--income {
    background: #eafbf0;
    border-color: rgba(34, 197, 94, .35);
    color: #16a34a;
}

.rz-saas-kpi-icon--expense {
    background: #ffeef0;
    border-color: rgba(239, 68, 68, .34);
    color: #ef4444;
}

.rz-saas-kpi-icon--health {
    background: #f1f5f9;
    border-color: rgba(148, 163, 184, .4);
    color: #475569;
}

.rz-saas-kpi-value {
    display: block;
    margin-top: clamp(.95rem, 1.8vw, 1.4rem);
    max-width: 100%;
    font-size: clamp(1.25rem, 1.2vw, 1.7rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0f172a;
}

.rz-saas-kpi-value.is-compact {
    font-size: clamp(1.05rem, .98vw, 1.35rem);
}

.rz-saas-kpi--saldo .rz-saas-kpi-value {
    color: #16a34a;
}

.rz-saas-kpi--income .rz-saas-kpi-value {
    color: #16a34a;
}

.rz-saas-kpi--expense .rz-saas-kpi-value {
    color: #dc2626;
}

.rz-saas-kpi-note {
    margin-top: .52rem;
    font-size: clamp(.84rem, .95vw, .98rem);
    color: #334155;
}

.rz-saas-health-card {
    margin-top: clamp(.85rem, 1.3vw, 1.2rem);
    border-radius: 14px;
    border: 1px solid #f5ca93;
    background: #fdf3e3;
    padding: .72rem .68rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .16rem;
    min-height: 86px;
}

.rz-saas-health-emoji {
    font-size: 1.9rem;
    line-height: 1;
}

.rz-saas-health-card strong {
    font-size: clamp(.9rem, 1.08vw, 1.04rem);
    font-weight: 800;
    color: #9a3412;
    line-height: 1.22;
}

.rz-saas-health-card span {
    font-size: clamp(.74rem, .84vw, .82rem);
    font-weight: 700;
    color: #64748b;
}

.rz-saas-health-card.is-good {
    border-color: #86efac;
    background: #ecfdf5;
}

.rz-saas-health-card.is-good strong {
    color: #15803d;
}

.rz-saas-health-card.is-warning {
    border-color: #facc15;
    background: #fffbeb;
}

.rz-saas-health-card.is-warning strong {
    color: #a16207;
}

.rz-saas-health-card.is-risk {
    border-color: #f5ca93;
    background: #fdf3e3;
}

.rz-saas-health-card.is-risk strong {
    color: #9a3412;
}

.rz-saas-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(.7rem, 1vw, .95rem);
}

.rz-saas-panel {
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #d6dde7;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.rz-saas-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .55rem;
    padding: .98rem 1.1rem;
    border-bottom: 1px solid #dce3ec;
}

.rz-saas-panel-head h4 {
    font-size: clamp(1.15rem, 1.35vw, 1.32rem);
    font-weight: 800;
    letter-spacing: -.01em;
    color: #0f172a;
}

.rz-saas-panel-head span {
    font-size: .88rem;
    font-weight: 600;
    color: #8a95a6;
    white-space: nowrap;
}

.rz-saas-cats-toggle {
    display: none;
    align-items: center;
    gap: .34rem;
    padding: .16rem .2rem;
    color: #64748b;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.2;
}

.rz-saas-cats-toggle-icon {
    font-size: .72em;
    transition: transform .2s ease;
}

.rz-saas-cats-toggle.is-expanded .rz-saas-cats-toggle-icon {
    transform: rotate(180deg);
}

.rz-saas-cats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: .95rem 1.05rem 1.1rem;
}

.rz-saas-cat-item {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.rz-saas-cat-item:not(:last-child) {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.rz-saas-cat-item.is-mobile-hidden {
    display: none;
}

.rz-saas-cat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.rz-saas-cat-main {
    display: flex;
    align-items: center;
    gap: .68rem;
    min-width: 0;
}

.rz-saas-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    line-height: 1;
    border: 1px solid rgba(148, 163, 184, .22);
    flex-shrink: 0;
}

.rz-saas-cat-name {
    font-size: clamp(.95rem, 1.16vw, 1.08rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.rz-saas-cat-sub {
    margin-top: 2px;
    font-size: clamp(.8rem, .86vw, .92rem);
    color: #64748b;
}

.rz-saas-cat-end {
    text-align: right;
    flex-shrink: 0;
}

.rz-saas-cat-amount {
    font-size: clamp(1rem, 1.24vw, 1.28rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.01em;
}

.rz-saas-cat-pct {
    margin-top: 2px;
    font-size: clamp(.8rem, .88vw, .93rem);
    font-weight: 700;
    color: #64748b;
}

.rz-saas-cat-bar {
    margin-top: .55rem;
    height: 11px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.rz-saas-cat-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    transition: width .3s ease;
}

.rz-saas-chart-wrap {
    display: grid;
    grid-template-columns: minmax(86px, 112px) 1fr;
    gap: .7rem;
    padding: .98rem 1.05rem .82rem;
}

.rz-saas-y-axis {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: .3rem;
}

.rz-saas-y-axis span {
    font-size: .75rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1;
    white-space: nowrap;
}

.rz-saas-chart {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: clamp(.72rem, 1vw, 1.2rem);
    min-height: 220px;
    padding: .35rem .35rem .2rem;
    border-left: 2px solid #c7d0dd;
    border-bottom: 2px solid #c7d0dd;
    background-image: linear-gradient(to top, rgba(148, 163, 184, .24) 1px, transparent 1px);
    background-size: 100% 25%;
}

.rz-saas-chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: .6rem;
    height: 100%;
}

.rz-saas-chart-bar {
    width: clamp(28px, 4vw, 56px);
    height: var(--h, 45%);
    border-radius: 14px 14px 3px 3px;
    transition: height .35s ease;
}

.rz-saas-chart-bar--blue {
    background: #4f7cff;
}

.rz-saas-chart-bar--green {
    background: #16a34a;
}

.rz-saas-chart-bar--red {
    background: #ef4444;
}

.rz-saas-chart-col small {
    min-height: 1.8em;
    font-size: .74rem;
    font-weight: 600;
    line-height: 1.2;
    color: #7b8596;
    text-align: center;
}

.rz-saas-summary-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .6rem;
    padding: .2rem 1.05rem .95rem;
}

.rz-saas-summary-pill {
    border: 1px solid #d6dde7;
    border-radius: 14px;
    background: #f8fafc;
    padding: .62rem .55rem .66rem;
    min-width: 0;
    text-align: center;
}

.rz-saas-summary-pill span {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: #64748b;
}

.rz-saas-summary-pill strong {
    display: block;
    margin-top: .22rem;
    max-width: 100%;
    font-size: clamp(.98rem, 1.12vw, 1.28rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.015em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0f172a;
}

.rz-saas-summary-pill strong.is-compact {
    font-size: clamp(.86rem, .9vw, 1.05rem);
}

.rz-saas-summary-pill--balance strong {
    color: #2563eb;
}

.rz-saas-summary-pill--income strong {
    color: #16a34a;
}

.rz-saas-summary-pill--expense strong {
    color: #ef4444;
}

/* Transactions HTML mockup (control card) */
.rz-trans-demo {
    width: 100%;
    border-radius: 16px;
    padding: clamp(.62rem, .95vw, .95rem);
    background: linear-gradient(160deg, #f1f5f9 0%, #e7edf3 55%, #dde6ef 100%);
    border: 1px solid #cfd8e3;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 10px 24px rgba(15, 23, 42, .1);
}

.rz-trans-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(.58rem, .9vw, .8rem);
    align-items: start;
}

.rz-trans-right-col {
    display: grid;
    gap: clamp(.55rem, .8vw, .75rem);
}

.rz-trans-panel {
    background: rgba(248, 250, 252, .9);
    border: 1px solid #cdd7e3;
    border-radius: 14px;
    padding: .6rem;
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, .5);
    min-width: 0;
}

.rz-trans-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    margin-bottom: .45rem;
}

.rz-trans-head h4 {
    font-size: clamp(.9rem, .98vw, 1.06rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
}

.rz-trans-head span {
    font-size: .72rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

.rz-trans-list {
    display: flex;
    flex-direction: column;
    gap: .42rem;
    margin-bottom: .45rem;
}

.rz-trans-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .7rem;
    min-width: 0;
    padding: .5rem .58rem;
    background: #ffffff;
    border: 1px solid #d9e1eb;
    border-radius: 12px;
    box-shadow: 0 12px 18px -16px rgba(15, 23, 42, .7);
}

.rz-trans-item-main {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.rz-trans-item-main>div {
    min-width: 0;
}

.rz-trans-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.02rem;
    border: 1px solid rgba(148, 163, 184, .2);
    flex-shrink: 0;
}

.rz-trans-item-icon--edu {
    background: #fce7f3;
}

.rz-trans-item-icon--net {
    background: #dbeafe;
}

.rz-trans-item-icon--market {
    background: #fee2e2;
}

.rz-trans-item-icon--home {
    background: #fef3c7;
}

.rz-trans-item-icon--health {
    background: #fee2e2;
}

.rz-trans-item-icon--income {
    background: #dcfce7;
}

.rz-trans-item-name {
    font-size: clamp(.88rem, .94vw, .98rem);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rz-trans-item-date {
    margin-top: 1px;
    font-size: .75rem;
    color: #64748b;
}

.rz-trans-item-value {
    font-size: clamp(.95rem, 1.03vw, 1.12rem);
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

.rz-trans-item.is-hidden {
    display: none;
}

.rz-trans-more {
    height: 30px;
    padding: 0 .76rem;
    border-radius: 10px;
    border: 1px solid #ccd6e3;
    background: #f8fafc;
    color: #1f2937;
    font-size: .8rem;
    font-weight: 700;
    transition: all .2s ease;
}

.rz-trans-more:hover {
    background: #ffffff;
    border-color: #94a3b8;
}

.rz-trans-more:disabled {
    opacity: .65;
    cursor: default;
}

.rz-trans-subtitle {
    margin-bottom: .4rem;
    font-size: .78rem;
    font-weight: 700;
    color: #0f172a;
}

.rz-future-list {
    display: flex;
    flex-direction: column;
    gap: .42rem;
}

.rz-future-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .62rem;
    min-width: 0;
    padding: .48rem .56rem;
    border-radius: 12px;
    border: 1px solid #d9e1eb;
    background: #ffffff;
}

.rz-future-main {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 0;
}

.rz-future-name {
    font-size: clamp(.84rem, .9vw, .95rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rz-future-date {
    margin-top: 1px;
    font-size: .72rem;
    color: #64748b;
    white-space: nowrap;
}

.rz-future-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    flex-shrink: 0;
}

.rz-future-sign {
    font-size: .9rem;
    line-height: 1;
    color: #334155;
}

.rz-future-value {
    font-size: clamp(.9rem, .98vw, 1.06rem);
    font-weight: 800;
    white-space: nowrap;
    color: #111827;
}

.rz-future-occurrences {
    font-size: .72rem;
    color: #64748b;
    white-space: nowrap;
}

.rz-future-delete {
    margin-top: 2px;
    height: 24px;
    padding: 0 .5rem;
    border-radius: 999px;
    border: 1px solid #fca5a5;
    color: #ef4444;
    font-size: .74rem;
    font-weight: 700;
    background: #fff1f2;
}

.rz-scheduled-income {
    margin-top: .42rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .62rem;
    padding: .52rem .56rem;
    border-radius: 12px;
    border: 1px solid #d9e1eb;
    background: #ffffff;
}

.rz-scheduled-income .rz-future-main {
    flex: 1;
}

.rz-future-date--scheduled {
    display: flex;
    align-items: center;
    gap: .28rem;
    flex-wrap: wrap;
    white-space: normal;
}

.rz-badge-mini {
    display: inline-block;
    padding: .08rem .42rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #2563eb;
    font-size: .64rem;
    font-weight: 700;
    line-height: 1.35;
}

.rz-future-value--income {
    color: #111827;
}

.rz-trans-panel--installments h5 {
    font-size: clamp(.9rem, .98vw, 1.04rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: .52rem;
}

.rz-installment-row {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: .55rem;
    padding: .44rem .52rem;
    border-radius: 10px;
    border: 1px solid #d9e1eb;
    background: #f8fafc;
}

.rz-installment-label {
    font-size: .82rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.rz-installment-meta {
    font-size: .72rem;
    color: #64748b;
    font-weight: 600;
    white-space: nowrap;
}

.rz-installment-track {
    height: 7px;
    width: 100%;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.rz-installment-track span {
    display: block;
    height: 100%;
    width: 14%;
    border-radius: inherit;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* Reports HTML mockup (third feature card) */
.rz-feature-media--reports {
    --feature-tint: rgba(59, 130, 246, .12);
    aspect-ratio: auto;
    align-items: stretch;
    justify-content: stretch;
    padding: clamp(.52rem, .9vw, .78rem);
    background: linear-gradient(180deg, #edf2f8 0%, #e5ecf5 100%);
    border-color: #cfd9e5;
}

.rz-feature-media--reports::before,
.rz-feature-media--reports::after {
    display: none;
}

.rz-reports-demo {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(.58rem, .9vw, .82rem);
}

.rz-reports-panel {
    min-width: 0;
    border: 1px solid #ced8e4;
    border-radius: 14px;
    background: rgba(248, 250, 252, .94);
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, .48);
    overflow: hidden;
}

.rz-reports-head {
    padding: .82rem .9rem;
    border-bottom: 1px solid #dde5ee;
}

.rz-reports-head h4 {
    font-size: clamp(1rem, 1.08vw, 1.16rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.01em;
}

.rz-reports-list {
    padding: .72rem .82rem .84rem;
    display: flex;
    flex-direction: column;
    gap: .72rem;
}

.rz-reports-item {
    display: flex;
    flex-direction: column;
    gap: .38rem;
}

.rz-reports-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .72rem;
}

.rz-reports-item-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .54rem;
}

.rz-reports-item-main>div {
    min-width: 0;
}

.rz-reports-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 1.12rem;
    border: 1px solid rgba(148, 163, 184, .2);
    flex-shrink: 0;
}

.rz-reports-icon--shirt {
    background: #ecfdf5;
}

.rz-reports-icon--market {
    background: #eff6ff;
}

.rz-reports-icon--home {
    background: #fef3c7;
}

.rz-reports-icon--transport {
    background: #e0e7ff;
}

.rz-reports-icon--net {
    background: #dbeafe;
}

.rz-reports-icon--income {
    background: #dcfce7;
}

.rz-reports-item-name {
    font-size: clamp(.9rem, .98vw, 1.02rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rz-reports-item-sub {
    margin-top: 1px;
    font-size: .75rem;
    color: #64748b;
}

.rz-reports-item-end {
    text-align: right;
    flex-shrink: 0;
}

.rz-reports-item-end strong {
    font-size: clamp(.94rem, 1.03vw, 1.1rem);
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.rz-reports-item-end span {
    display: block;
    margin-top: 1px;
    font-size: .74rem;
    color: #64748b;
    font-weight: 700;
}

.rz-reports-track {
    height: 9px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.rz-reports-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
}

.rz-reports-panel--next {
    display: flex;
    flex-direction: column;
}

.rz-reports-kpis {
    padding: .72rem .82rem .34rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .52rem;
}

.rz-reports-kpi {
    border: 1px solid #d9e1eb;
    border-radius: 11px;
    padding: .54rem .6rem;
    background: #fff;
}

.rz-reports-kpi span {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: #64748b;
}

.rz-reports-kpi-value {
    display: block;
    margin-top: .1rem;
    font-size: clamp(1.04rem, 1.1vw, 1.28rem);
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.rz-reports-kpi-value.is-up {
    color: #16a34a;
}

.rz-reports-kpi-value.is-down {
    color: #ef4444;
}

.rz-reports-events {
    padding: .34rem .82rem .82rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.rz-reports-event {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .64rem;
    min-width: 0;
    border: 1px solid #d9e1eb;
    border-radius: 12px;
    background: #fff;
    padding: .5rem .56rem;
}

.rz-reports-event-main {
    display: flex;
    align-items: center;
    gap: .54rem;
    min-width: 0;
}

.rz-reports-event-main>div {
    min-width: 0;
}

.rz-reports-event-name {
    font-size: clamp(.87rem, .95vw, 1.02rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rz-reports-event-date {
    margin-top: 1px;
    font-size: .74rem;
    color: #64748b;
}

.rz-reports-event-value {
    font-size: clamp(.9rem, .96vw, 1.08rem);
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    color: #111827;
}

.rz-reports-event-value.is-up {
    color: #16a34a;
}

.rz-reports-event-value.is-down {
    color: #ef4444;
}

.rz-feature-card--reports .rz-feature-name {
    font-size: clamp(1.18rem, 1.45vw, 1.46rem);
    margin-bottom: .58rem;
}

.rz-feature-card--reports .rz-feature-desc {
    font-size: .98rem;
    max-width: 40ch;
}

.rz-feature-card--reports .rz-feature-content {
    position: relative;
    align-self: center;
    border-radius: var(--radius-lg);
    border: 1px solid #d4dce7;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 16px 30px -24px rgba(15, 23, 42, .5);
    padding: clamp(1.05rem, 1.55vw, 1.35rem) clamp(.95rem, 1.5vw, 1.3rem);
}

.rz-feature-card--reports .rz-feature-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(-1 * clamp(1rem, 2vw, 1.8rem));
    width: clamp(1rem, 2vw, 1.8rem);
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(16, 185, 129, .72), rgba(16, 185, 129, .14));
    z-index: 2;
}

.rz-feature-card--reports .rz-feature-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(-1 * (clamp(1rem, 2vw, 1.8rem) + 5px));
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .17);
    z-index: 3;
}

.rz-feature-card--categories .rz-feature-name {
    font-size: clamp(1.18rem, 1.45vw, 1.46rem);
    margin-bottom: .58rem;
}

.rz-feature-card--categories .rz-feature-desc {
    font-size: .98rem;
    max-width: 40ch;
}

.rz-feature-card--categories .rz-feature-content {
    position: relative;
    align-self: center;
    border-radius: var(--radius-lg);
    border: 1px solid #d4dce7;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 16px 30px -24px rgba(15, 23, 42, .5);
    padding: clamp(1.05rem, 1.55vw, 1.35rem) clamp(.95rem, 1.5vw, 1.3rem);
}

.rz-feature-media--categories {
    --feature-tint: rgba(16, 185, 129, .1);
    aspect-ratio: auto;
    align-items: stretch;
    justify-content: stretch;
    padding: clamp(.52rem, .9vw, .78rem);
    background: linear-gradient(180deg, #edf2f8 0%, #e5ecf5 100%);
    border-color: #cfd9e5;
}

.rz-feature-card--categories .rz-feature-media--categories {
    position: relative;
    overflow: visible;
}

.rz-feature-card--categories .rz-feature-media--categories::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: clamp(1rem, 2vw, 1.8rem);
    height: 2px;
    transform: translate(-100%, -50%);
    background: linear-gradient(90deg, rgba(16, 185, 129, .16), rgba(16, 185, 129, .72));
    z-index: 2;
    pointer-events: none;
}

.rz-feature-card--categories .rz-feature-media--categories::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .17);
    z-index: 3;
    pointer-events: none;
}

.rz-categories-demo {
    width: 100%;
    border: 1px solid #ced8e4;
    border-radius: 14px;
    background: rgba(248, 250, 252, .94);
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, .48);
    overflow: hidden;
}

.rz-categories-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .78rem .9rem;
    border-bottom: 1px solid #dde5ee;
}

.rz-categories-head h4 {
    font-size: clamp(.95rem, 1.02vw, 1.12rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.01em;
}

.rz-categories-add {
    height: 26px;
    padding: 0 .66rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
}

.rz-categories-grid {
    padding: .72rem .82rem .84rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .52rem;
}

.rz-category-mini {
    --accent: #10b981;
    --icon-bg: #dcfce7;
    position: relative;
    border: 1px solid #d9e1eb;
    border-radius: 12px;
    background: #fff;
    padding: .5rem .56rem .54rem;
    min-width: 0;
    overflow: hidden;
}

.rz-category-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px;
    background: var(--accent);
}

.rz-category-mini-top {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 0;
}

.rz-category-mini-top>div {
    min-width: 0;
}

.rz-category-mini-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: .98rem;
    border: 1px solid rgba(148, 163, 184, .2);
    background: var(--icon-bg);
    flex-shrink: 0;
}

.rz-category-mini-name {
    font-size: .84rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rz-category-mini-tag {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    padding: 0 .36rem;
    height: 18px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    font-size: .64rem;
    font-weight: 700;
    line-height: 1;
}

.rz-category-mini-meta {
    margin-top: .46rem;
    font-size: .74rem;
    color: #64748b;
    font-weight: 600;
}

.rz-category-mini--market {
    --accent: #16a34a;
    --icon-bg: #dcfce7;
}

.rz-category-mini--home {
    --accent: #8b5cf6;
    --icon-bg: #ede9fe;
}

.rz-category-mini--transport {
    --accent: #2563eb;
    --icon-bg: #dbeafe;
}

.rz-category-mini--edu {
    --accent: #0d9488;
    --icon-bg: #ccfbf1;
}

.rz-category-mini--health {
    --accent: #ef4444;
    --icon-bg: #fee2e2;
}

.rz-category-mini--leisure {
    --accent: #db2777;
    --icon-bg: #fce7f3;
}

.rz-feature-card--reserve .rz-feature-name {
    font-size: clamp(1.18rem, 1.45vw, 1.46rem);
    margin-bottom: .58rem;
}

.rz-feature-card--reserve .rz-feature-desc {
    font-size: .98rem;
    max-width: 40ch;
}

.rz-feature-card--reserve .rz-feature-content {
    position: relative;
    align-self: center;
    border-radius: var(--radius-lg);
    border: 1px solid #d4dce7;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 16px 30px -24px rgba(15, 23, 42, .5);
    padding: clamp(1.05rem, 1.55vw, 1.35rem) clamp(.95rem, 1.5vw, 1.3rem);
}

.rz-feature-card--reserve .rz-feature-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(-1 * clamp(1rem, 2vw, 1.8rem));
    width: clamp(1rem, 2vw, 1.8rem);
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(16, 185, 129, .72), rgba(16, 185, 129, .14));
    z-index: 2;
}

.rz-feature-card--reserve .rz-feature-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(-1 * (clamp(1rem, 2vw, 1.8rem) + 5px));
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .17);
    z-index: 3;
}

.rz-feature-media--reserve {
    --feature-tint: rgba(16, 185, 129, .12);
    aspect-ratio: auto;
    align-items: stretch;
    justify-content: stretch;
    padding: clamp(.52rem, .9vw, .78rem);
    background: linear-gradient(180deg, #edf2f8 0%, #e5ecf5 100%);
    border-color: #cfd9e5;
}

.rz-feature-media--reserve::before,
.rz-feature-media--reserve::after {
    display: none;
}

.rz-reserve-demo {
    width: 100%;
    border: 1px solid #ced8e4;
    border-radius: 14px;
    background: rgba(248, 250, 252, .94);
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, .48);
    overflow: hidden;
    padding: .78rem .84rem .86rem;
}

.rz-reserve-head {
    padding: .15rem .15rem .72rem;
    border-bottom: 1px solid #dde5ee;
}

.rz-reserve-head h4 {
    font-size: clamp(1rem, 1.08vw, 1.16rem);
    font-weight: 800;
    color: #111827;
    letter-spacing: -.01em;
}

.rz-reserve-fields {
    margin-top: .78rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .52rem;
}

.rz-reserve-field {
    border: 1px solid #d9e1eb;
    border-radius: 12px;
    background: #ffffff;
    padding: .62rem .65rem;
}

.rz-reserve-field span {
    display: block;
    margin-bottom: .36rem;
    font-size: .67rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
    color: #475569;
}

.rz-reserve-field p {
    font-size: clamp(.95rem, 1vw, 1.05rem);
    line-height: 1.25;
    color: #0f172a;
    font-weight: 600;
}

.rz-reserve-field .rz-reserve-field-hint {
    font-weight: 500;
    color: #64748b;
}

.rz-reserve-note {
    margin-top: .72rem;
    border: 1px solid #d9e1eb;
    border-radius: 12px;
    background: #f1f5f9;
    padding: .62rem .72rem;
}

.rz-reserve-note p {
    font-size: .88rem;
    line-height: 1.48;
    color: #334155;
}

.rz-reserve-note strong {
    color: #0f172a;
}

.rz-reserve-btn {
    margin-top: .72rem;
    width: 100%;
    height: 42px;
    border-radius: 12px;
    border: 0;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 8px 18px -12px rgba(22, 163, 74, .9);
}

.rz-reserve-stats {
    margin-top: .72rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .52rem;
}

.rz-reserve-stat {
    border: 1px solid #d9e1eb;
    border-radius: 12px;
    background: #ffffff;
    padding: .58rem .5rem .6rem;
    text-align: center;
}

.rz-reserve-stat span {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: #64748b;
}

.rz-reserve-stat strong {
    display: block;
    margin-top: .16rem;
    font-size: clamp(1.12rem, 1.4vw, 1.7rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.015em;
    color: #0f172a;
}

.rz-feature-media--control {
    --feature-tint: rgba(16, 185, 129, .34);
    --media-scale: 1;
    --media-hover-scale: 1;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.rz-feature-media.rz-feature-media--control {
    aspect-ratio: auto;
    align-items: stretch;
    justify-content: stretch;
}

.rz-feature-card--control .rz-feature-media--control {
    position: relative;
    overflow: visible;
}

.rz-feature-card--control .rz-feature-media--control::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: clamp(1rem, 2vw, 1.8rem);
    height: 2px;
    transform: translate(-100%, -50%);
    background: linear-gradient(90deg, rgba(16, 185, 129, .16), rgba(16, 185, 129, .72));
    z-index: 2;
    pointer-events: none;
}

.rz-feature-card--control .rz-feature-media--control::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: #10b981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .17);
    z-index: 3;
    pointer-events: none;
}

.rz-feature-media--goals {
    --feature-tint: rgba(219, 39, 119, .28);
}

.rz-feature-media--security {
    --feature-tint: rgba(217, 119, 6, .28);
}

.rz-feature-card:hover .rz-feature-media img {
    transform: scale(var(--media-scale));
    filter: saturate(1.1) contrast(1.08) brightness(1.05);
}

.rz-feature-card:hover .rz-feature-media--dashboard img {
    filter: none;
}

.rz-feature-icon {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .22);
}

.rz-feature-icon--blue {
    background: rgba(237, 233, 254, .95);
    color: #7c3aed;
}

.rz-feature-icon--green {
    background: rgba(209, 250, 229, .94);
    color: var(--emerald-600);
}

.rz-feature-icon--purple {
    background: rgba(252, 231, 243, .94);
    color: #db2777;
}

.rz-feature-icon--amber {
    background: rgba(254, 243, 199, .94);
    color: #d97706;
}

.rz-feature-content {
    padding: .25rem .2rem .3rem;
}

.rz-feature-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .55rem;
    line-height: 1.3;
}

.rz-feature-desc {
    font-size: .93rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.rz-feature-emphasis {
    position: relative;
    z-index: 0;
    font-weight: 700;
    color: var(--emerald-700);
}

.rz-feature-emphasis::after {
    content: '';
    position: absolute;
    left: -.08em;
    right: -.08em;
    bottom: .08em;
    height: .45em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(16, 185, 129, .26), rgba(16, 185, 129, .1));
    z-index: -1;
    transition: opacity .25s ease;
}

.rz-feature-card:hover .rz-feature-emphasis::after {
    opacity: 1;
}

/* =============================================
   UPDATES & SUGGESTIONS
   ============================================= */
.rz-community-section {
    position: relative;
    overflow: visible;
    isolation: isolate;
}

#updates-community.rz-section {
    --section-break-size: clamp(70px, 8.5vw, 120px);
    --community-top-fade-height: clamp(100px, 9vw, 140px);
    --community-bottom-fade-height: clamp(220px, 20vw, 300px);
    padding-top: clamp(2.7rem, 5vw, 4.2rem);
    padding-bottom: clamp(5rem, 7.6vw, 6.7rem);
    margin-top: 0;
}

.rz-community-section:not(.rz-section--dark) {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 62%);
}

.rz-community-section.rz-section--dark {
    background-color: #010923;
    background-image: none;
}

.rz-community-section::before,
.rz-community-section::after {
    content: none;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.rz-community-section::before {
    top: 0;
    height: var(--community-top-fade-height);
    transform: translateY(-100%);
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, .56) 0%,
            rgba(255, 255, 255, .28) 38%,
            rgba(255, 255, 255, .08) 72%,
            rgba(255, 255, 255, 0) 100%);
    filter: none;
    opacity: 1;
}

.rz-community-section::after {
    bottom: -1px;
    height: var(--community-bottom-fade-height);
    transform: none;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .01) 14%,
            rgba(255, 255, 255, .05) 30%,
            rgba(255, 255, 255, .14) 48%,
            rgba(255, 255, 255, .3) 64%,
            rgba(255, 255, 255, .5) 78%,
            rgba(255, 255, 255, .72) 90%,
            rgba(255, 255, 255, .9) 97%,
            #ffffff 100%);
    filter: none;
    opacity: 1;
}

.rz-community-section>.rz-container {
    position: relative;
    z-index: 1;
}

.rz-section-header--community {
    position: relative;
    max-width: 760px;
    margin-top: clamp(-0.8rem, -1.3vw, -0.45rem);
    margin-bottom: clamp(2rem, 3vw, 2.6rem);
}

.rz-section-header--community .rz-section-title {
    text-shadow: 0 6px 18px rgba(2, 6, 23, .45);
}

.rz-section-header--community .rz-section-desc--light {
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.05rem, 1.35vw, 1.18rem);
    line-height: 1.7;
    color: #d2def0;
    font-weight: 500;
    text-shadow: 0 1px 0 rgba(2, 6, 23, .42);
}

.rz-section-header--community .rz-feature-emphasis {
    color: #34d399;
}

.rz-section-header--community .rz-feature-emphasis::after {
    opacity: .95;
    background: linear-gradient(90deg, rgba(52, 211, 153, .34), rgba(52, 211, 153, .12));
}

.rz-section-header--community::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(-1 * clamp(1.85rem, 2.8vw, 2.45rem));
    width: 2px;
    height: clamp(2.1rem, 3.4vw, 2.8rem);
    transform: translateX(-50%);
    z-index: 2;
    background: linear-gradient(180deg,
            rgba(110, 243, 196, .95) 0%,
            rgba(52, 211, 153, .78) 46%,
            rgba(16, 185, 129, .18) 100%);
    box-shadow: 0 0 12px rgba(16, 185, 129, .42);
}

.rz-community-grid {
    --community-grid-pad-top: clamp(1.25rem, 1.9vw, 1.7rem);
    --community-connector-offset: 13px;
    --community-connector-stroke: 2px;
    --community-connector-y: calc(var(--community-grid-pad-top) - var(--community-connector-offset));
    --community-connector-size: 16px;
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding-top: var(--community-grid-pad-top);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.35rem);
}

.rz-community-grid::before {
    content: '';
    position: absolute;
    top: var(--community-connector-y);
    left: 9%;
    right: 9%;
    height: var(--community-connector-stroke);
    background: linear-gradient(90deg,
            rgba(52, 211, 153, .2) 0%,
            rgba(52, 211, 153, .82) 18%,
            rgba(110, 243, 196, .98) 50%,
            rgba(52, 211, 153, .82) 82%,
            rgba(52, 211, 153, .2) 100%);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, .18), 0 0 24px rgba(16, 185, 129, .48);
}

.rz-community-grid::after {
    content: '';
    position: absolute;
    top: calc(var(--community-connector-y) - ((var(--community-connector-size) - var(--community-connector-stroke)) / 2));
    left: 50%;
    width: var(--community-connector-size);
    height: var(--community-connector-size);
    border-radius: 999px;
    transform: translateX(-50%);
    background: radial-gradient(circle at 35% 35%, #86efac, #10b981 72%);
    border: 1px solid rgba(16, 185, 129, .55);
    box-shadow: 0 0 0 7px rgba(16, 185, 129, .2), 0 0 24px rgba(16, 185, 129, .46);
}

.rz-community-card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid #cfdaea;
    border-top: 4px solid #38bdf8;
    background: linear-gradient(170deg, #ffffff 0%, #f8fbff 58%, #eef6ff 100%);
    box-shadow: 0 28px 44px -34px rgba(2, 6, 23, .95), 0 12px 24px -18px rgba(15, 23, 42, .45);
    padding: clamp(1rem, 1.5vw, 1.3rem);
}

.rz-community-card:nth-child(2) {
    border-top-color: #f59e0b;
    background: linear-gradient(170deg, #ffffff 0%, #fffcf3 58%, #fff8e7 100%);
}

.rz-community-card::before {
    display: none;
}

.rz-community-card::after {
    content: '';
    position: absolute;
    top: calc(-1 * var(--community-connector-offset) - 2px);
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #34d399;
    transform: translateX(-50%);
    filter: drop-shadow(0 3px 4px rgba(16, 185, 129, .35));
    z-index: 3;
}

.rz-community-card-head {
    display: flex;
    align-items: flex-start;
    gap: .78rem;
    margin-bottom: .8rem;
}

.rz-community-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(148, 163, 184, .22);
    font-size: 1.1rem;
}

.rz-community-icon--updates {
    background: #e0f2fe;
    color: #0369a1;
}

.rz-community-icon--ideas {
    background: #fef3c7;
    color: #b45309;
}

.rz-community-card h3 {
    font-size: clamp(1.06rem, 1.24vw, 1.26rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -.01em;
}

.rz-community-card p {
    margin-top: .24rem;
    font-size: clamp(.99rem, 1vw, 1.08rem);
    color: #31465f;
    line-height: 1.58;
    font-weight: 500;
}

.rz-community-list {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.rz-community-list li {
    position: relative;
    padding-left: .95rem;
    font-size: clamp(.95rem, .96vw, 1.03rem);
    color: #2f4259;
    line-height: 1.48;
    font-weight: 500;
}

.rz-community-list li::before {
    content: '';
    position: absolute;
    top: .56em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .16);
}

.rz-community-shortcuts {
    margin-top: clamp(1.15rem, 2vw, 1.55rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .62rem;
}

.rz-community-shortcut {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    padding: .36rem .76rem;
    border-radius: 999px;
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #047857;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1;
}

#how-it-works.rz-section:not(.rz-section--dark) .rz-step-title {
    color: var(--text-primary);
}

#how-it-works.rz-section:not(.rz-section--dark) .rz-step-desc {
    color: var(--text-secondary);
}

#how-it-works.rz-section:not(.rz-section--dark) .rz-step-divider {
    opacity: .5;
    background: linear-gradient(90deg, #a7f3d0, #10b981, #a7f3d0);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.rz-testimonials-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

#testimonials.rz-section {
    padding-bottom: clamp(3rem, 6vw, 4.4rem);
}

.rz-section-header--testimonials {
    max-width: 720px;
}

.rz-section-header--testimonials .rz-section-desc {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

.rz-faq-section {
    --faq-top-fade-height: clamp(78px, 9vw, 126px);
    --faq-bottom-fade-height: clamp(168px, 18vw, 250px);
    position: relative;
    overflow: visible;
    isolation: isolate;
    background-color: #010923;
    background-image: none;
    padding-top: clamp(2.6rem, 4.5vw, 3.8rem);
    padding-bottom: clamp(2.8rem, 5vw, 4rem);
}

.rz-faq-section::before,
.rz-faq-section::after {
    content: none;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.rz-faq-section::before {
    top: -1px;
    height: var(--faq-top-fade-height);
    transform: none;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            rgba(255, 255, 255, .92) 12%,
            rgba(255, 255, 255, .72) 28%,
            rgba(255, 255, 255, .46) 48%,
            rgba(255, 255, 255, .24) 66%,
            rgba(255, 255, 255, .08) 82%,
            rgba(255, 255, 255, 0) 100%);
}

.rz-faq-section::after {
    bottom: -1px;
    height: var(--faq-bottom-fade-height);
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .04) 24%,
            rgba(255, 255, 255, .14) 45%,
            rgba(255, 255, 255, .34) 63%,
            rgba(255, 255, 255, .58) 79%,
            rgba(255, 255, 255, .82) 92%,
            #ffffff 100%);
}

.rz-faq-section>.rz-container {
    position: relative;
    z-index: 1;
}

.rz-section-header--faq {
    max-width: 760px;
    margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
}

.rz-section-header--faq .rz-section-title {
    position: relative;
    display: inline-block;
    text-shadow: 0 6px 18px rgba(2, 6, 23, .45);
}

.rz-section-header--faq .rz-title-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #22c55e 0%, #84cc16 48%, #eab308 82%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.rz-section-header--faq .rz-title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.12em;
    width: 100%;
    height: 3px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, rgba(34, 197, 94, .96), rgba(245, 158, 11, .96));
    box-shadow: 0 6px 14px rgba(16, 185, 129, .26);
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left center;
    transition: none;
}

.rz-section-header--faq.is-visible .rz-title-highlight::after {
    opacity: 1;
    transform: scaleX(1);
}

.rz-section-header--faq .rz-section-desc--light {
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
    color: #d2def0;
    font-weight: 500;
}

.rz-testimonials-faq-block {
    max-width: 1080px;
    margin: 0 auto clamp(1.15rem, 2vw, 1.65rem);
    --faq-card-border: #cae8dd;
    --faq-card-top-border: #22c55e;
    --faq-card-bg: linear-gradient(170deg, #f0fdfa 0%, #eff6ff 58%, #eef2ff 100%);
    --faq-item-border: #d8e3ef;
    --faq-item-bg: rgba(255, 255, 255, .92);
    --faq-item-open-border: #86efac;
    --faq-item-open-bg: #f0fdf4;
    --faq-answer-divider: #dbe6f2;
    --faq-answer-divider-open: #c5ead3;
}

.rz-faq-section .rz-testimonials-faq-block {
    margin: 0 auto;
    --faq-card-border: #9ac2e4;
    --faq-card-top-border: #34d399;
    --faq-card-bg: linear-gradient(166deg, rgba(235, 245, 255, .97) 0%, rgba(224, 237, 252, .97) 56%, rgba(212, 228, 247, .98) 100%);
    --faq-item-border: #abc3dd;
    --faq-item-bg: rgba(246, 251, 255, .93);
    --faq-item-open-border: #86efac;
    --faq-item-open-bg: #ecfdf5;
    --faq-answer-divider: #bccfe4;
    --faq-answer-divider-open: #b7dec6;
}

.rz-testimonials-faq-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--faq-card-border);
    border-top: 4px solid var(--faq-card-top-border);
    background: var(--faq-card-bg);
    box-shadow: 0 18px 30px -24px rgba(15, 23, 42, .45);
    padding: clamp(.95rem, 1.5vw, 1.25rem);
}

.rz-faq-section .rz-testimonials-faq-card {
    box-shadow: 0 28px 44px -34px rgba(2, 6, 23, .95), 0 12px 26px -20px rgba(56, 189, 248, .38);
}

.rz-testimonials-faq-head {
    display: flex;
    align-items: flex-start;
    gap: .72rem;
}

.rz-testimonials-faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, .22);
    background: #e0f2fe;
    color: #0369a1;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.rz-testimonials-faq-head h3 {
    font-size: clamp(1.06rem, 1.2vw, 1.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.rz-testimonials-faq-head p {
    margin-top: .24rem;
    font-size: clamp(.9rem, .95vw, 1rem);
    line-height: 1.55;
    color: #475569;
}

.rz-testimonials-faq-list {
    margin-top: .82rem;
    display: flex;
    flex-direction: column;
    gap: .58rem;
}

.rz-testimonials-faq-item {
    min-width: 0;
}

.rz-testimonials-faq-toggle {
    border: 1px solid var(--faq-item-border);
    border-radius: 12px;
    background: var(--faq-item-bg);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.rz-testimonials-faq-toggle[open] {
    border-color: var(--faq-item-open-border);
    background: var(--faq-item-open-bg);
    box-shadow: 0 12px 24px -22px rgba(22, 163, 74, .95);
}

.rz-testimonials-faq-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    cursor: pointer;
    padding: .72rem .78rem;
    transition: background-color .2s ease;
}

.rz-testimonials-faq-summary::-webkit-details-marker {
    display: none;
}

.rz-testimonials-faq-summary:hover {
    background: rgba(241, 245, 249, .72);
}

.rz-testimonials-faq-toggle[open] .rz-testimonials-faq-summary:hover {
    background: rgba(220, 252, 231, .55);
}

.rz-testimonials-faq-question {
    display: block;
    font-size: .98rem;
    line-height: 1.35;
    font-weight: 800;
    color: #0f172a;
}

.rz-testimonials-faq-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: 55% 55%;
    flex-shrink: 0;
    transition: transform .2s ease, border-color .2s ease;
}

.rz-testimonials-faq-toggle[open] .rz-testimonials-faq-chevron {
    transform: rotate(-135deg) translate(-1px, -1px);
    border-color: #047857;
}

.rz-testimonials-faq-answer {
    border-top: 1px solid var(--faq-answer-divider);
    margin: 0 .78rem;
    padding: .58rem 0 .72rem;
    font-size: .9rem;
    line-height: 1.55;
    color: #475569;
}

.rz-testimonials-faq-toggle[open] .rz-testimonials-faq-answer {
    border-top-color: var(--faq-answer-divider-open);
}

.rz-faq-shortcuts {
    margin-top: clamp(.78rem, 1.4vw, 1.05rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.rz-faq-shortcut {
    display: inline-flex;
    align-items: center;
    padding: .36rem .78rem;
    border-radius: 999px;
    border: 1px solid #93e3bc;
    background: #e8f9ef;
    color: #067a58;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1;
}

.rz-testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: .25rem 0 .45rem;
    max-width: 1140px;
}

.rz-testimonials-carousel::before,
.rz-testimonials-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 86px;
    pointer-events: none;
    z-index: 2;
}

.rz-testimonials-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.rz-testimonials-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.rz-testimonials-grid {
    display: flex;
    align-items: stretch;
    gap: clamp(1rem, 1.8vw, 1.4rem);
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.rz-testimonial-card {
    border: 1px solid #d5deea;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 16px 30px -24px rgba(15, 23, 42, .45);
    padding: clamp(1rem, 1.5vw, 1.25rem);
    display: flex;
    flex-direction: column;
    gap: .9rem;
    width: clamp(290px, 29vw, 360px);
    flex: 0 0 clamp(290px, 29vw, 360px);
}

.rz-testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .65rem;
}

.rz-testimonial-user {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    min-width: 0;
}

.rz-testimonial-user-meta {
    min-width: 0;
}

.rz-testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border: 1px solid #c6d7ea;
    background: #e2e8f0;
    box-shadow: 0 8px 20px -14px rgba(15, 23, 42, .75);
}

.rz-testimonial-user h3 {
    font-size: 1.02rem;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
}

.rz-testimonial-user p {
    margin-top: 2px;
    font-size: .8rem;
    color: #64748b;
    font-weight: 600;
}

.rz-testimonial-verified {
    margin-top: .32rem;
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    width: max-content;
    padding: .16rem .48rem;
    border-radius: 999px;
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #047857;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
}

.rz-testimonial-verified svg {
    display: block;
    flex-shrink: 0;
}

.rz-testimonial-rating {
    font-size: .82rem;
    letter-spacing: .08em;
    color: #f59e0b;
    font-weight: 800;
    flex-shrink: 0;
    white-space: nowrap;
}

.rz-testimonial-quote {
    font-size: .96rem;
    color: #334155;
    line-height: 1.65;
    font-weight: 500;
}

.rz-testimonial-proof {
    margin-top: auto;
    border: 1px solid #c7f9de;
    border-radius: 12px;
    background: #ecfdf5;
    padding: .58rem .68rem;
}

.rz-testimonial-proof span {
    display: block;
    font-size: .72rem;
    color: #047857;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rz-testimonial-proof strong {
    display: block;
    margin-top: .18rem;
    font-size: .9rem;
    color: #065f46;
    font-weight: 800;
    line-height: 1.35;
}

.rz-testimonials-foot {
    margin-top: clamp(1.2rem, 2.1vw, 1.8rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .62rem;
}

.rz-testimonials-pill {
    display: inline-flex;
    align-items: center;
    padding: .38rem .78rem;
    border-radius: 999px;
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #047857;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.rz-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.rz-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 1.5rem;
}

.rz-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(16, 185, 129, .25);
}

.rz-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .6rem;
}

.rz-step-desc {
    font-size: .93rem;
    color: var(--slate-400);
    line-height: 1.6;
}

.rz-step-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-800), var(--emerald-600), var(--emerald-800));
    margin-top: 26px;
    border-radius: 2px;
    opacity: .4;
    flex-shrink: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.rz-cta-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.rz-cta-section.rz-section--fade-dark {
    background-image: none;
}

.rz-cta-box {
    background: linear-gradient(135deg, var(--emerald-950), var(--emerald-900), #0a3d2e);
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 5vw, 4.5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 211, 153, .15);
}

.rz-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 211, 153, .15), transparent 60%);
    pointer-events: none;
}

.rz-cta-content {
    position: relative;
    z-index: 1;
}

.rz-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.rz-cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .55);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

/* =============================================
   FOOTER
   ============================================= */
.rz-footer {
    position: relative;
    overflow: hidden;
    background: #031447;
    color: #c9d5e8;
    padding: clamp(3.2rem, 6vw, 4.4rem) 0 0;
    border-top: 0;
}

.rz-footer::before {
    display: none;
}

.rz-footer::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    border-radius: 0;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(56, 189, 248, .95) 0%,
            rgba(16, 185, 129, .96) 25%,
            rgba(103, 232, 249, 1) 50%,
            rgba(16, 185, 129, .96) 75%,
            rgba(56, 189, 248, .95) 100%);
    background-size: 260% 100%;
    opacity: 1;
    box-shadow: none;
    animation: rzFooterBreakLine 6.4s linear infinite;
    z-index: 3;
}

.rz-footer .rz-container {
    position: relative;
    z-index: 2;
}

@keyframes rzFooterBreakLine {
    0% {
        background-position: 220% 0;
    }

    100% {
        background-position: -220% 0;
    }
}

.rz-footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(0, 1.45fr);
    gap: clamp(1.8rem, 4vw, 3.5rem);
    padding-bottom: clamp(1.6rem, 3vw, 2.5rem);
    border-bottom: 1px solid rgba(148, 163, 184, .18);
}

.rz-footer-brand {
    min-width: 0;
}

.rz-logo--footer {
    color: #e2e8f0;
}

.rz-logo--footer .rz-logo-mark {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
}

.rz-footer-tagline {
    font-size: .97rem;
    color: #9eb0ca;
    margin-top: .6rem;
    max-width: 40ch;
    line-height: 1.6;
}

.rz-footer-contact {
    margin-top: .95rem;
    display: grid;
    gap: .44rem;
}

.rz-footer-contact li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .3rem;
    font-size: .86rem;
    color: #8ea4c2;
    line-height: 1.45;
}

.rz-footer-contact span {
    color: #a7bad4;
    font-weight: 700;
}

.rz-footer-contact a,
.rz-footer-contact strong {
    color: #dbe9fb;
    font-weight: 600;
}

.rz-footer-contact a {
    transition: color .2s ease;
}

.rz-footer-contact a:hover {
    color: #6ee7b7;
}

.rz-footer-badges {
    margin-top: .95rem;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.rz-footer-badge {
    display: inline-flex;
    align-items: center;
    padding: .3rem .58rem;
    border-radius: 999px;
    border: 1px solid rgba(110, 231, 183, .42);
    background: rgba(16, 185, 129, .12);
    color: #9cf2c9;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
}

.rz-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(128px, 1fr));
    gap: clamp(1.2rem, 2vw, 2.1rem);
}

.rz-footer-col {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-width: 0;
}

.rz-footer-col h4 {
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #e2e8f0;
    margin-bottom: .5rem;
}

.rz-footer-col a {
    font-size: .92rem;
    color: #95a8c3;
    line-height: 1.4;
    transition: color .2s ease, transform .2s ease;
}

.rz-footer-col a:hover {
    color: #dbe9fb;
    transform: translateX(1px);
}

.rz-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 0 1.4rem;
}

.rz-footer-bottom p {
    font-size: .8rem;
    color: #7083a1;
}

.rz-footer-disclaimer {
    max-width: 72ch;
    text-align: right;
}

/* =============================================
   ANIMATE ON SCROLL
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keep the middle pricing card elevated after scroll animation applies */
.rz-plan-preview-card--popular[data-animate].is-visible {
    transform: translateY(-30px);
}

.rz-plan-preview-card--popular[data-animate].is-visible:hover {
    transform: translateY(-34px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .rz-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rz-hero-copy {
        max-width: 640px;
        margin: 0 auto;
    }

    .rz-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .rz-hero-actions {
        justify-content: center;
    }

    .rz-social-proof {
        justify-content: center;
    }

    .rz-hero-visual {
        display: none;
    }

    .rz-hero {
        min-height: auto;
        padding: 8rem 0 5rem;
    }

    .rz-saas-head {
        justify-content: flex-end;
    }

    .rz-saas-context {
        display: none;
    }

    .rz-saas-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rz-saas-panels {
        grid-template-columns: 1fr;
    }

    .rz-saas-chart-wrap {
        grid-template-columns: minmax(78px, 102px) 1fr;
    }

    .rz-trans-grid {
        grid-template-columns: 1fr;
    }

    .rz-reports-demo {
        grid-template-columns: 1fr;
    }

    .rz-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rz-pricing-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 860px;
        margin-top: 0;
    }

    .rz-plan-preview-card--popular,
    .rz-plan-preview-card--popular:hover,
    .rz-plan-preview-card--popular[data-animate].is-visible,
    .rz-plan-preview-card--popular[data-animate].is-visible:hover {
        transform: none;
    }

    .rz-plan-preview-card--featured {
        grid-column: 1 / -1;
        max-width: 430px;
        width: 100%;
        justify-self: center;
    }

    .rz-testimonials-faq-list {
        gap: .56rem;
    }

    .rz-testimonial-card {
        width: clamp(280px, 40vw, 332px);
        flex-basis: clamp(280px, 40vw, 332px);
    }
}

@media (max-width: 768px) {
    .rz-header {
        padding-inline: .6rem;
    }

    .rz-back-to-top {
        height: 40px;
        padding: 0 .78rem 0 .62rem;
    }

    .rz-cookie-consent {
        left: .72rem;
        right: .72rem;
        width: auto;
        bottom: .78rem;
    }

    .rz-cookie-consent-actions {
        grid-template-columns: 1fr;
    }

    .rz-cookie-consent-custom-actions {
        grid-template-columns: 1fr;
    }

    .rz-cookie-manage {
        left: .72rem;
        bottom: .78rem;
    }

    .rz-section--fade-dark,
    .rz-section--fade-light {
        --section-break-size: clamp(72px, 18vw, 120px);
    }

    .rz-nav {
        gap: .75rem;
        padding: .34rem .42rem;
        border-radius: 14px;
        background: rgba(2, 16, 29, .62);
        border-color: rgba(148, 163, 184, .22);
    }

    .rz-menu {
        display: none;
    }

    .rz-menu.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: .8rem;
        background: rgba(2, 16, 29, .96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(148, 163, 184, .2);
        padding: 1.25rem;
        border-radius: 14px;
        z-index: 1000;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
    }

    .rz-menu-link {
        display: block;
        padding: .85rem 1rem;
        font-size: 1.05rem;
        text-align: center;
        border-radius: 12px;
    }

    .rz-menu-divider {
        display: block !important;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(148, 163, 184, .25), transparent);
        margin: .6rem 0;
    }

    .rz-menu-link.rz-menu-login-btn {
        display: block !important;
        background: rgba(16, 185, 129, .15);
        color: #6ee7b7;
        font-weight: 700;
        border: 1px solid rgba(16, 185, 129, .3);
        margin-top: .4rem;
    }

    .rz-header-actions .rz-btn-ghost {
        display: none;
    }

    .rz-mobile-toggle {
        display: flex;
    }

    .rz-mobile-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .rz-mobile-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .rz-mobile-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .rz-header-actions {
        gap: .42rem;
        padding-right: 0;
    }

    .rz-header-actions .rz-btn-primary.rz-btn-sm {
        padding: .62rem 1rem;
        font-size: .82rem;
    }

    .rz-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    #features.rz-section {
        --section-break-size: clamp(66px, 15vw, 102px);
        padding-bottom: clamp(3.2rem, 9vw, 4.8rem);
    }

    #how-it-works.rz-section {
        --section-break-size: clamp(64px, 15vw, 96px);
        padding-bottom: clamp(1.35rem, 4.8vw, 2.1rem);
    }

    .rz-cta-section.rz-section {
        --section-break-size: clamp(94px, 21vw, 148px);
        padding-bottom: clamp(5.5rem, 16vw, 7.25rem);
        padding-top: clamp(.75rem, 2.4vw, 1.25rem);
    }

    #how-it-works.rz-section {
        padding-top: clamp(3.9rem, 10vw, 5.25rem);
    }

    #how-it-works .rz-container {
        gap: 1.75rem;
    }

    #how-it-works .rz-steps {
        max-width: 100%;
    }

    .rz-features-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .rz-pricing-preview-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-top: 0;
    }

    .rz-plan-preview-card {
        padding: 1.18rem 1rem 1.05rem;
        transform: none;
    }

    .rz-plan-preview-card--featured {
        grid-column: auto;
        max-width: none;
    }

    .rz-plan-preview-head h3 {
        font-size: clamp(1.85rem, 7vw, 2.2rem);
    }

    .rz-plan-preview-badge {
        height: 27px;
        top: -11px;
        font-size: .74rem;
    }

    .rz-plan-preview-btn {
        height: 44px;
        font-size: .94rem;
    }

    .rz-plan-preview-sub,
    .rz-plan-preview-total,
    .rz-plan-preview-list li {
        font-size: .94rem;
    }

    .rz-plan-preview-discount {
        font-size: .8rem;
    }

    .rz-plan-preview-divider {
        margin: 1rem 0 .95rem;
    }

    .rz-plan-preview-card--featured,
    .rz-plan-preview-card--popular,
    .rz-plan-preview-card:hover,
    .rz-plan-preview-card--featured:hover,
    .rz-plan-preview-card--popular:hover,
    .rz-plan-preview-card--popular[data-animate].is-visible,
    .rz-plan-preview-card--popular[data-animate].is-visible:hover {
        transform: none;
    }

    .rz-feature-card {
        grid-template-columns: 1fr;
        padding: .9rem;
        gap: .95rem;
        min-height: 0;
    }

    /* On mobile, even cards must stop using the desktop split layout */
    .rz-feature-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .rz-feature-card--dashboard {
        padding: 0;
        gap: .95rem;
        justify-items: initial;
    }

    .rz-feature-card:nth-child(even) .rz-feature-media,
    .rz-feature-card:nth-child(even) .rz-feature-content {
        order: initial;
    }

    .rz-feature-media {
        aspect-ratio: 16 / 10;
    }

    .rz-feature-media--control,
    .rz-feature-media--reports,
    .rz-feature-media--categories,
    .rz-feature-media--reserve {
        aspect-ratio: auto;
    }

    .rz-feature-card--dashboard .rz-feature-media {
        width: 100%;
        aspect-ratio: auto;
    }

    .rz-feature-card--dashboard .rz-feature-content {
        max-width: 100%;
        text-align: center;
    }

    .rz-feature-card--dashboard .rz-feature-content {
        padding: .95rem .85rem 1rem;
    }

    .rz-feature-card--dashboard .rz-feature-content::before {
        top: -14px;
        height: 14px;
    }

    .rz-feature-card--dashboard .rz-feature-content::after {
        top: -21px;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(16, 185, 129, .16);
    }

    .rz-feature-card--control .rz-feature-content {
        max-width: 100%;
        text-align: center;
        padding: .95rem .85rem 1rem;
    }

    .rz-feature-card--control .rz-feature-content::before {
        content: '';
        position: absolute;
        top: -14px;
        left: 50%;
        width: 2px;
        height: 14px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(16, 185, 129, .72), rgba(16, 185, 129, .14));
    }

    .rz-feature-card--control .rz-feature-content::after {
        content: '';
        position: absolute;
        top: -21px;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        transform: translateX(-50%);
        background: #10b981;
        box-shadow: 0 0 0 5px rgba(16, 185, 129, .16);
    }

    .rz-feature-card--control .rz-feature-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .rz-feature-card--control .rz-feature-emphasis::after {
        display: none;
    }

    .rz-feature-card--control .rz-feature-media--control::before,
    .rz-feature-card--control .rz-feature-media--control::after {
        display: none;
    }

    .rz-feature-card--reports .rz-feature-content {
        max-width: 100%;
        text-align: center;
        padding: .95rem .85rem 1rem;
    }

    .rz-feature-card--reports .rz-feature-content::before {
        content: '';
        position: absolute;
        top: -14px;
        left: 50%;
        width: 2px;
        height: 14px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(16, 185, 129, .72), rgba(16, 185, 129, .14));
    }

    .rz-feature-card--reports .rz-feature-content::after {
        content: '';
        position: absolute;
        top: -21px;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        transform: translateX(-50%);
        background: #10b981;
        box-shadow: 0 0 0 5px rgba(16, 185, 129, .16);
    }

    .rz-feature-card--reports .rz-feature-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .rz-feature-card--reports .rz-feature-emphasis::after {
        display: none;
    }

    .rz-feature-card--categories .rz-feature-content {
        max-width: 100%;
        text-align: center;
        padding: .95rem .85rem 1rem;
    }

    .rz-feature-card--categories .rz-feature-content::before {
        content: '';
        position: absolute;
        top: -14px;
        left: 50%;
        width: 2px;
        height: 14px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(16, 185, 129, .72), rgba(16, 185, 129, .14));
    }

    .rz-feature-card--categories .rz-feature-content::after {
        content: '';
        position: absolute;
        top: -21px;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        transform: translateX(-50%);
        background: #10b981;
        box-shadow: 0 0 0 5px rgba(16, 185, 129, .16);
    }

    .rz-feature-card--categories .rz-feature-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .rz-feature-card--categories .rz-feature-emphasis::after {
        display: none;
    }

    .rz-feature-card--categories .rz-feature-media--categories::before,
    .rz-feature-card--categories .rz-feature-media--categories::after {
        display: none;
    }

    #updates-community.rz-section {
        --community-top-fade-height: clamp(78px, 13vw, 110px);
        --community-bottom-fade-height: clamp(164px, 22vw, 220px);
        padding-top: clamp(1.9rem, 6.4vw, 3rem);
        padding-bottom: clamp(4rem, 9.5vw, 5rem);
    }

    .rz-section-header--community {
        margin-top: clamp(-0.5rem, -1.5vw, -0.2rem);
    }

    .rz-community-grid {
        padding-top: .35rem;
        grid-template-columns: 1fr;
    }

    .rz-section-header--community::after {
        display: none;
    }

    .rz-community-grid::before,
    .rz-community-grid::after,
    .rz-community-card::before,
    .rz-community-card::after {
        display: none;
    }

    .rz-community-card {
        padding: .95rem .9rem 1rem;
    }

    .rz-community-card-head {
        margin-bottom: .65rem;
    }

    .rz-saas-demo {
        padding: .8rem;
    }

    .rz-saas-head {
        justify-content: center;
    }

    .rz-saas-periods {
        width: 100%;
    }

    .rz-saas-period {
        flex: 1;
        text-align: center;
    }

    .rz-saas-kpis {
        grid-template-columns: 1fr;
    }

    .rz-saas-panel-head {
        flex-wrap: wrap;
    }

    .rz-saas-panel-head h4 {
        font-size: 1.02rem;
    }

    .rz-saas-panel:first-child {
        border-radius: 20px;
        border-color: #d6dee8;
        background: #f4f6f9;
        box-shadow: 0 12px 26px -22px rgba(15, 23, 42, .62);
    }

    .rz-saas-panel:first-child .rz-saas-panel-head {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: .34rem;
        padding: 1.1rem .9rem .9rem;
    }

    .rz-saas-panel:first-child .rz-saas-panel-head h4 {
        font-size: clamp(1.45rem, 4.6vw, 1.85rem);
        line-height: 1.15;
    }

    .rz-saas-panel:first-child .rz-saas-cats-toggle {
        display: inline-flex;
        font-size: clamp(.9rem, 3vw, 1rem);
    }

    .rz-saas-panel:first-child .rz-saas-cats {
        padding: .95rem .95rem 1.05rem;
        gap: 1.38rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-item {
        display: grid;
        gap: .58rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-top {
        align-items: flex-start;
        justify-content: space-between;
        gap: .68rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-main {
        gap: .6rem;
        flex: 1;
    }

    .rz-saas-panel:first-child .rz-saas-cat-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.25rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-name {
        font-size: 1.06rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-sub {
        font-size: .94rem;
        margin-top: 1px;
    }

    .rz-saas-panel:first-child .rz-saas-cat-end {
        text-align: right;
    }

    .rz-saas-panel:first-child .rz-saas-cat-amount {
        font-size: 1.12rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-pct {
        font-size: .92rem;
        margin-top: 1px;
    }

    .rz-saas-panel:first-child .rz-saas-cat-bar {
        margin-top: 0;
        height: 10px;
        background: #e8edf3;
    }

    .rz-saas-panel:nth-child(2) .rz-saas-panel-head {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: .24rem;
    }

    .rz-saas-panel:nth-child(2) .rz-saas-panel-head span {
        white-space: normal;
        line-height: 1.35;
    }

    .rz-saas-chart-wrap {
        grid-template-columns: minmax(80px, 92px) 1fr;
        gap: .28rem;
        padding: .85rem .84rem .72rem;
    }

    .rz-saas-y-axis {
        min-height: 178px;
        padding-left: .16rem;
    }

    .rz-saas-y-axis span {
        font-size: .66rem;
        text-align: right;
    }

    .rz-saas-chart {
        min-height: 178px;
    }

    .rz-saas-summary-values {
        grid-template-columns: 1fr;
    }

    .rz-trans-demo {
        padding: .72rem;
    }

    .rz-feature-media--reports {
        padding: .62rem;
    }

    .rz-feature-media--categories {
        padding: .62rem;
    }

    .rz-feature-media--reserve {
        padding: .62rem;
    }

    .rz-feature-card--reserve .rz-feature-content {
        max-width: 100%;
        text-align: center;
        padding: .95rem .85rem 1rem;
    }

    .rz-feature-card--reserve .rz-feature-content::before {
        content: '';
        position: absolute;
        top: -14px;
        left: 50%;
        width: 2px;
        height: 14px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(16, 185, 129, .72), rgba(16, 185, 129, .14));
    }

    .rz-feature-card--reserve .rz-feature-content::after {
        content: '';
        position: absolute;
        top: -21px;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 999px;
        transform: translateX(-50%);
        background: #10b981;
        box-shadow: 0 0 0 5px rgba(16, 185, 129, .16);
    }

    .rz-feature-card--reserve .rz-feature-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .rz-feature-card--reserve .rz-feature-emphasis::after {
        display: none;
    }

    .rz-reserve-fields,
    .rz-reserve-stats {
        grid-template-columns: 1fr;
    }

    .rz-testimonials-faq-card {
        padding: .95rem .9rem 1rem;
    }

    .rz-faq-section {
        --faq-top-fade-height: clamp(64px, 13vw, 98px);
        --faq-bottom-fade-height: clamp(146px, 24vw, 204px);
        padding-top: clamp(2rem, 5.2vw, 3rem);
        padding-bottom: clamp(2.1rem, 6vw, 3.2rem);
    }

    .rz-section-header--faq {
        margin-bottom: clamp(1.4rem, 4vw, 1.9rem);
    }

    .rz-testimonials-faq-list {
        gap: .52rem;
    }

    .rz-testimonials-carousel {
        padding-inline: .2rem;
    }

    .rz-testimonials-carousel::before,
    .rz-testimonials-carousel::after {
        display: none;
    }

    .rz-testimonial-card {
        width: min(90vw, 340px);
        flex-basis: min(90vw, 340px);
    }

    .rz-testimonial-card {
        padding: .95rem .9rem 1rem;
    }

    .rz-testimonial-top {
        flex-direction: column;
        align-items: flex-start;
        gap: .45rem;
    }

    .rz-testimonial-rating {
        align-self: flex-start;
    }

    .rz-reports-head {
        padding: .74rem .76rem;
    }

    .rz-categories-head {
        flex-wrap: wrap;
        padding: .74rem .76rem;
    }

    .rz-reports-list,
    .rz-reports-kpis,
    .rz-reports-events {
        padding-left: .72rem;
        padding-right: .72rem;
    }

    .rz-categories-grid {
        grid-template-columns: 1fr 1fr;
        padding-left: .72rem;
        padding-right: .72rem;
    }

    .rz-reports-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .rz-reports-item-top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .rz-reports-item-end strong {
        font-size: .98rem;
    }

    .rz-trans-item,
    .rz-future-item {
        padding: .48rem .52rem;
    }

    .rz-trans-item {
        align-items: flex-start;
    }

    .rz-trans-item-value {
        align-self: flex-start;
        margin-top: .08rem;
    }

    .rz-trans-item-icon {
        width: 32px;
        height: 32px;
        font-size: .96rem;
    }

    .rz-trans-head h4 {
        font-size: .95rem;
    }

    .rz-trans-head span {
        font-size: .7rem;
    }

    .rz-trans-panel:not(.rz-trans-panel--future) .rz-trans-head {
        padding: .34rem .42rem .42rem;
        margin-bottom: .58rem;
    }

    .rz-trans-panel.rz-trans-panel--list {
        padding-top: 1.05rem;
    }

    .rz-trans-panel.rz-trans-panel--installments {
        padding-top: 1.05rem;
    }

    .rz-trans-panel--installments h5 {
        padding-left: .42rem;
    }

    .rz-future-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rz-future-side {
        width: 100%;
        align-items: flex-start;
    }

    .rz-scheduled-income {
        flex-direction: column;
        align-items: flex-start;
    }

    .rz-trans-panel--future .rz-trans-head {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .18rem;
        padding-top: .16rem;
        padding-bottom: .1rem;
        margin-bottom: .56rem;
        text-align: center;
    }

    .rz-trans-panel.rz-trans-panel--future {
        padding-top: 1.15rem;
    }

    .rz-section-header--community .rz-section-title {
        font-size: 1.55rem;
    }

    .rz-trans-panel--future .rz-trans-head h4 {
        width: 100%;
        font-size: 1.26rem;
        line-height: 1.2;
    }

    .rz-trans-panel--future .rz-trans-head span {
        font-size: .9rem;
        color: #64748b;
    }

    .rz-trans-panel--future .rz-trans-subtitle {
        margin-top: .08rem;
        margin-bottom: .8rem;
        text-align: center;
        font-size: .9rem;
        color: #334155;
    }

    .rz-trans-panel--future .rz-future-list {
        gap: .66rem;
    }

    .rz-trans-panel--future .rz-future-item {
        padding: .72rem .74rem .76rem;
        border-radius: 14px;
        border-color: #cdd8e5;
        background: #fff;
        gap: .56rem;
    }

    .rz-trans-panel--future .rz-future-main {
        width: 100%;
        align-items: flex-start;
        gap: .62rem;
    }

    .rz-trans-panel--future .rz-future-main>div {
        min-width: 0;
    }

    .rz-trans-panel--future .rz-future-name {
        font-size: 1.05rem;
        white-space: normal;
    }

    .rz-trans-panel--future .rz-future-date {
        font-size: .8rem;
        line-height: 1.3;
        white-space: normal;
    }

    .rz-trans-panel--future .rz-future-side {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "sign ."
            "value delete"
            "occ .";
        align-items: end;
        column-gap: .72rem;
        row-gap: .1rem;
    }

    .rz-trans-panel--future .rz-future-sign {
        grid-area: sign;
        font-size: .92rem;
        align-self: start;
    }

    .rz-trans-panel--future .rz-future-value {
        grid-area: value;
        font-size: 1.72rem;
        line-height: 1.06;
    }

    .rz-trans-panel--future .rz-future-occurrences {
        grid-area: occ;
        font-size: .84rem;
    }

    .rz-trans-panel--future .rz-future-delete {
        grid-area: delete;
        margin-top: 0;
        height: 30px;
        padding: 0 .7rem;
        font-size: .84rem;
        justify-self: end;
        align-self: center;
        transform: translateY(1px);
    }

    .rz-trans-panel--future .rz-scheduled-income {
        margin-top: .5rem;
        gap: .52rem;
        padding: .72rem .74rem;
        border-radius: 14px;
        border-color: #cdd8e5;
    }

    .rz-trans-panel--future .rz-scheduled-income .rz-future-main {
        width: 100%;
        align-items: center;
    }

    .rz-trans-panel--future .rz-scheduled-income .rz-future-value {
        font-size: 1.48rem;
        line-height: 1.05;
    }

    .rz-installment-row {
        grid-template-columns: 1fr;
        gap: .38rem;
    }

    .rz-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .rz-step-divider {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--emerald-800), var(--emerald-600), var(--emerald-800));
    }

    #how-it-works.rz-section:not(.rz-section--dark) .rz-step-divider {
        background: linear-gradient(180deg, #a7f3d0, #10b981, #a7f3d0);
    }

    .rz-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.9rem;
    }

    .rz-footer-links {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 1.6rem;
    }

    .rz-cta-box {
        padding: 2.5rem 1.5rem;
    }

    .rz-footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .rz-footer-bottom p {
        text-align: center;
    }

    .rz-footer-disclaimer {
        text-align: center;
    }

    .rz-footer {
        border-top: 0;
    }
}

@media (max-width: 480px) {
    .rz-back-to-top {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
    }

    .rz-cookie-consent {
        left: .62rem;
        right: .62rem;
        bottom: .66rem;
    }

    .rz-cookie-consent-card {
        border-radius: 15px;
        padding: .8rem;
    }

    .rz-cookie-consent-title {
        font-size: .95rem;
    }

    .rz-cookie-consent-text {
        font-size: .8rem;
    }

    .rz-cookie-btn {
        min-height: 35px;
        font-size: .75rem;
    }

    .rz-cookie-toggle-copy strong {
        font-size: .79rem;
    }

    .rz-cookie-toggle-copy small {
        font-size: .7rem;
    }

    .rz-cookie-manage {
        left: .62rem;
        bottom: .66rem;
        padding: 0 .7rem 0 .56rem;
        height: 38px;
    }

    .rz-back-to-top-text {
        display: none;
    }

    .rz-back-to-top-icon {
        width: 24px;
        height: 24px;
        font-size: .92rem;
    }

    .rz-section--fade-dark,
    .rz-section--fade-light {
        --section-break-size: clamp(68px, 22vw, 108px);
    }

    .rz-nav {
        padding: .28rem .34rem;
        gap: .5rem;
    }

    .rz-hero-actions {
        gap: .85rem;
    }

    .rz-hero-actions .rz-btn-primary.rz-btn-lg,
    .rz-hero-actions .rz-btn-outline {
        justify-content: center;
        line-height: 1.2;
        padding: .95rem 1.05rem;
    }

    .rz-hero-actions .rz-btn-primary.rz-btn-lg {
        font-size: 1rem;
    }

    .rz-hero-actions .rz-btn-outline {
        font-size: .98rem;
    }

    .rz-hero-actions .rz-btn-primary.rz-btn-lg svg {
        flex-shrink: 0;
    }

    .rz-header-actions .rz-btn-primary.rz-btn-sm {
        padding: .56rem .86rem;
        font-size: .78rem;
    }

    #features.rz-section {
        --section-break-size: clamp(58px, 17vw, 88px);
        padding-bottom: clamp(2.9rem, 11vw, 4.2rem);
    }

    #how-it-works.rz-section {
        --section-break-size: clamp(56px, 17vw, 86px);
        padding-bottom: clamp(1.7rem, 6vw, 2.5rem);
    }

    .rz-cta-section.rz-section {
        --section-break-size: clamp(86px, 24vw, 138px);
        padding-bottom: clamp(5.25rem, 19vw, 7.25rem);
        padding-top: clamp(1rem, 4vw, 1.6rem);
    }

    #how-it-works.rz-section {
        padding-top: clamp(3.5rem, 11vw, 4.75rem);
    }

    #how-it-works .rz-container {
        gap: 1.5rem;
    }

    #how-it-works .rz-steps {
        max-width: 100%;
    }

    .rz-feature-media {
        aspect-ratio: 4 / 3;
    }

    .rz-plan-preview-price {
        font-size: clamp(2rem, 11vw, 2.5rem);
    }

    .rz-plan-preview-head h3 {
        font-size: clamp(1.7rem, 9vw, 2rem);
    }

    .rz-plan-preview-badge {
        top: -10px;
        right: 12px;
        height: 24px;
        padding: 0 .68rem;
        font-size: .7rem;
    }

    .rz-plan-preview-btn {
        height: 42px;
        font-size: .9rem;
    }

    .rz-plan-preview-discount {
        font-size: .75rem;
        padding: .32rem .68rem;
    }

    .rz-plan-preview-sub,
    .rz-plan-preview-total,
    .rz-plan-preview-list li {
        font-size: .85rem;
    }

    .rz-feature-media--control,
    .rz-feature-media--reports,
    .rz-feature-media--categories,
    .rz-feature-media--reserve {
        aspect-ratio: auto;
    }

    .rz-saas-head {
        gap: .7rem;
    }

    #updates-community.rz-section {
        --community-top-fade-height: clamp(64px, 14vw, 92px);
        --community-bottom-fade-height: clamp(136px, 24vw, 186px);
        padding-top: clamp(1.4rem, 6vw, 2.4rem);
        padding-bottom: clamp(3.4rem, 10.5vw, 4.25rem);
    }

    .rz-section-header--community {
        margin-top: -0.2rem;
    }

    .rz-feature-link-hint {
        font-size: .68rem;
        padding: .24rem .54rem;
        margin-bottom: .38rem;
    }

    .rz-footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem 1rem;
    }

    .rz-footer-badge {
        font-size: .65rem;
        padding: .25rem .5rem;
    }

    .rz-footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: .8rem;
    }

    .rz-footer-bottom p {
        text-align: center;
    }

    .rz-footer-disclaimer {
        text-align: center;
        margin-top: .2rem;
    }

    .rz-footer-contact li {
        font-size: .82rem;
    }

    .rz-footer-col a {
        font-size: .86rem;
    }

    .rz-saas-kpi-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .rz-saas-panel:first-child .rz-saas-panel-head {
        padding: .98rem .8rem .84rem;
        gap: .28rem;
    }

    .rz-saas-panel:first-child .rz-saas-panel-head h4 {
        font-size: clamp(1.32rem, 6vw, 1.6rem);
    }

    .rz-saas-panel:first-child .rz-saas-cats-toggle {
        font-size: .92rem;
    }

    .rz-saas-panel:first-child .rz-saas-cats {
        padding: .9rem .78rem .98rem;
        gap: 1.2rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-item {
        gap: .52rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-top {
        flex-direction: row;
        align-items: flex-start;
    }

    .rz-saas-panel:first-child .rz-saas-cat-main {
        gap: .55rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1.1rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-name {
        font-size: .98rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-sub {
        font-size: .86rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-end {
        text-align: right;
    }

    .rz-saas-panel:first-child .rz-saas-cat-amount {
        font-size: 1.02rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-pct {
        font-size: .84rem;
    }

    .rz-saas-panel:first-child .rz-saas-cat-bar {
        height: 9px;
    }

    .rz-saas-summary-pill strong {
        font-size: 1rem;
    }

    .rz-saas-summary-pill strong.is-compact {
        font-size: .88rem;
    }

    .rz-saas-chart-wrap {
        grid-template-columns: minmax(74px, 84px) 1fr;
        gap: .24rem;
        padding: .72rem .72rem .65rem;
    }

    .rz-saas-y-axis {
        min-height: 150px;
        padding-left: .12rem;
    }

    .rz-saas-y-axis span {
        font-size: .61rem;
        text-align: right;
    }

    .rz-saas-chart {
        min-height: 150px;
    }

    .rz-trans-demo {
        padding: .62rem;
    }

    .rz-trans-panel--future .rz-trans-head h4 {
        font-size: 1.18rem;
    }

    .rz-trans-panel--future .rz-trans-head span {
        font-size: .86rem;
    }

    .rz-trans-panel--future .rz-trans-head {
        padding-top: .14rem;
        padding-bottom: .08rem;
        margin-bottom: .5rem;
    }

    .rz-trans-panel.rz-trans-panel--future {
        padding-top: 1.08rem;
    }

    .rz-trans-panel--future .rz-trans-subtitle {
        margin-top: .06rem;
        margin-bottom: .72rem;
        font-size: .86rem;
    }

    .rz-trans-panel--future .rz-future-item {
        padding: .68rem .7rem .72rem;
        gap: .48rem;
    }

    .rz-trans-panel--future .rz-future-name {
        font-size: .96rem;
    }

    .rz-trans-panel--future .rz-future-date {
        font-size: .78rem;
    }

    .rz-trans-panel--future .rz-future-value {
        font-size: 1.52rem;
    }

    .rz-trans-panel--future .rz-future-side {
        column-gap: .58rem;
    }

    .rz-trans-panel--future .rz-future-occurrences {
        font-size: .8rem;
    }

    .rz-trans-panel--future .rz-future-delete {
        height: 29px;
        font-size: .8rem;
    }

    .rz-trans-panel--future .rz-scheduled-income {
        padding: .68rem .7rem;
    }

    .rz-trans-panel--future .rz-scheduled-income .rz-future-value {
        font-size: 1.34rem;
    }

    .rz-feature-media--reports {
        padding: .56rem;
    }

    .rz-feature-media--categories {
        padding: .56rem;
    }

    .rz-feature-media--reserve {
        padding: .56rem;
    }

    .rz-reserve-demo {
        padding: .68rem .72rem .72rem;
    }

    .rz-reserve-head {
        padding: .12rem .1rem .62rem;
    }

    .rz-reserve-head h4 {
        font-size: 1.02rem;
    }

    .rz-reserve-field {
        padding: .56rem .58rem;
    }

    .rz-reserve-note {
        padding: .56rem .62rem;
    }

    .rz-reserve-note p {
        font-size: .84rem;
    }

    .rz-reserve-btn {
        height: 40px;
        font-size: .88rem;
    }

    .rz-reserve-stat strong {
        font-size: clamp(1.02rem, 6vw, 1.4rem);
    }

    .rz-testimonial-user h3 {
        font-size: .98rem;
    }

    .rz-testimonial-user p {
        font-size: .78rem;
    }

    .rz-testimonials-faq-head h3 {
        font-size: 1rem;
    }

    .rz-testimonials-faq-head p {
        font-size: .86rem;
    }

    .rz-testimonials-faq-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 1rem;
    }

    .rz-faq-section {
        --faq-top-fade-height: clamp(56px, 16vw, 86px);
        --faq-bottom-fade-height: clamp(128px, 27vw, 182px);
        padding-top: clamp(1.8rem, 6vw, 2.6rem);
        padding-bottom: clamp(1.9rem, 7vw, 2.8rem);
    }

    .rz-section-header--faq {
        margin-bottom: clamp(1.2rem, 4.2vw, 1.7rem);
    }

    .rz-testimonials-faq-summary {
        padding: .62rem .66rem;
    }

    .rz-testimonials-faq-question {
        font-size: .88rem;
    }

    .rz-testimonials-faq-answer {
        margin: 0 .66rem;
        padding: .5rem 0 .64rem;
        font-size: .82rem;
    }

    .rz-faq-shortcuts {
        margin-top: .75rem;
        gap: .42rem;
    }

    .rz-faq-shortcut {
        padding: .3rem .58rem;
        font-size: .69rem;
    }

    .rz-testimonial-avatar {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .rz-testimonial-verified {
        font-size: .64rem;
        padding: .12rem .42rem;
    }

    .rz-testimonial-quote {
        font-size: .9rem;
    }

    .rz-testimonial-proof strong {
        font-size: .84rem;
    }

    .rz-testimonials-pill {
        font-size: .72rem;
    }

    .rz-testimonial-card {
        width: min(92vw, 324px);
        flex-basis: min(92vw, 324px);
    }

    .rz-reports-kpis {
        grid-template-columns: 1fr;
    }

    .rz-categories-grid {
        grid-template-columns: 1fr;
    }

    .rz-categories-add {
        display: none;
    }

    .rz-community-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
        font-size: 1rem;
    }

    .rz-community-card h3 {
        font-size: 1rem;
    }

    .rz-community-card p,
    .rz-community-list li {
        font-size: .91rem;
    }

    .rz-community-shortcut {
        font-size: .74rem;
    }

    .rz-reports-event {
        flex-direction: column;
        align-items: flex-start;
        gap: .3rem;
        display: flex;
    }

    .rz-reports-item-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .32rem;
    }

    .rz-reports-item-end {
        text-align: left;
    }

    .rz-reports-list {
        gap: 1.25rem;
    }

    .rz-reports-item:not(:last-child) {
        padding-bottom: 1.25rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .rz-reports-item-name {
        white-space: normal;
    }

    .rz-category-mini-name {
        white-space: normal;
    }

    .rz-reports-event-value {
        align-self: flex-end;
    }

    .rz-trans-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .rz-trans-item-value {
        align-self: flex-start;
        margin-top: .08rem;
    }

    .rz-trans-item-icon {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        font-size: .9rem;
    }

    .rz-trans-panel {
        padding: .52rem;
    }

    .rz-trans-head {
        margin-bottom: .35rem;
    }

    .rz-trans-panel:not(.rz-trans-panel--future) .rz-trans-head {
        padding: .3rem .34rem .36rem;
        margin-bottom: .5rem;
    }

    .rz-trans-panel.rz-trans-panel--list {
        padding-top: .98rem;
    }

    .rz-trans-panel.rz-trans-panel--installments {
        padding-top: .98rem;
    }

    .rz-trans-panel--installments h5 {
        padding-left: .36rem;
    }

    .rz-feature-icon {
        width: 40px;
        height: 40px;
        top: 10px;
        left: 10px;
    }

    .rz-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .rz-btn-outline {
        justify-content: center;
    }
}

@media (max-width: 1280px) {
    .rz-phone-mockup {
        right: -6%;
        bottom: -11%;
        width: clamp(150px, 18vw, 186px);
    }
}
