﻿/* ============================================================
   ROOMZY PMS β€” Shared Stylesheet
   Version: 2.0
   Last updated: March 2026
   ============================================================ */

/* ====== CSS VARIABLES ====== */
:root {
    --rz-primary: #2563EB;
    --rz-primary-dark: #1E40AF;
    --rz-primary-darker: #1E3A8A;
    --rz-primary-light: #3B82F6;
    --rz-primary-50: #EFF6FF;
    --rz-primary-100: #DBEAFE;
    --rz-secondary: #0F172A;
    --rz-accent: #10B981;
    --rz-accent-light: #D1FAE5;
    --rz-warning: #F59E0B;
    --rz-text: #1E293B;
    --rz-text-muted: #64748B;
    --rz-text-light: #94A3B8;
    --rz-border: #E2E8F0;
    --rz-border: #E2E8F0;
    --rz-border-dark: #CBD5E1;
    --rz-border-darker: #94A3B8;
    --rz-border-darkest: #64748B;
    --rz-bg: #FFFFFF;
    --rz-bg-subtle: #F8FAFC;
    --rz-bg-section: #F1F5F9;
    --rz-radius: 12px;
    --rz-radius-lg: 20px;
    --rz-radius-xl: 28px;
    --rz-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --rz-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --rz-shadow-lg: 0 20px 40px -12px rgba(37,99,235,0.15);
    --rz-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --rz-font: 'Plus Jakarta Sans', sans-serif;
    --rz-font-body: 'Plus Jakarta Sans', sans-serif;
}
html[lang="el"] {
    --rz-font: 'Manrope', sans-serif;
    --rz-font-body: 'Manrope', sans-serif;
}

/* ====== RESET & BASE ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--rz-font-body);
    color: var(--rz-text);
    background: var(--rz-bg);
    -webkit-font-smoothing: antialiased;
}


h1, h2, h3, h4, h5, h6,
.nav-link, .btn {
    font-family: var(--rz-font);
}

.main-wrapper {
    overflow-x: clip;
}

/* ====== NAVBAR ====== */
.rz-navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rz-border);
    padding: 0.6rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.3s ease;
}
.rz-navbar.scrolled {
    box-shadow: var(--rz-shadow);
}
.rz-navbar .navbar-brand img {
    height: 34px;
}
@media (max-width: 991.98px) {
    .rz-navbar .navbar-brand img {
        height: 26px;
    }
}
.rz-navbar .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rz-text);
    padding: 0.5rem 1rem !important;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}
.rz-navbar .nav-link:hover {
    color: var(--rz-primary);
}
.rz-navbar .dropdown-menu {
    border-top: 2px solid var(--rz-primary) !important;
    border-left: 1px solid var(--rz-border) !important;
    border-right: 1px solid var(--rz-border) !important;
    border-bottom: 1px solid var(--rz-border) !important;
    border-radius: var(--rz-radius);
    box-shadow: var(--rz-shadow-lg);
    padding: 0.5rem;
    min-width: 260px;
    margin-top: 1.25rem;
}
.rz-navbar .dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.15s;
}
.rz-navbar .dropdown-item:hover {
    background: var(--rz-primary-50);
    color: var(--rz-primary);
}
.rz-navbar .dropdown-item i {
    width: 20px;
    color: var(--rz-primary);
    margin-right: 8px;
}

/* ====== HAMBURGER TOGGLE ====== */
.rz-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}
.rz-hamburger:focus,
.rz-hamburger:active {
    outline: none;
    box-shadow: none;
}
.rz-hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rz-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.rz-hamburger[aria-expanded="true"] .rz-hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.rz-hamburger[aria-expanded="true"] .rz-hamburger-bar:nth-child(2) {
    opacity: 0;
}
.rz-hamburger[aria-expanded="true"] .rz-hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ====== BUTTONS ====== */
.btn-rz-primary {
    background: var(--rz-primary);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.8rem;
    border-radius: 10px;
    letter-spacing: -0.01em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.btn-rz-primary:hover {
    background: var(--rz-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.35);
}
.btn-rz-primary.btn-sm {
    font-size: 0.8rem;
    padding: 0.45rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.btn-rz-outline {
    background: transparent;
    color: var(--rz-primary);
    border: 2px solid var(--rz-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.8rem;
    border-radius: 10px;
    letter-spacing: -0.01em;
    transition: all 0.25s ease;
}
.btn-rz-outline:hover {
    background: var(--rz-primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-rz-white {
    background: #fff;
    color: var(--rz-primary);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: var(--rz-shadow);
}
    .btn-rz-white:hover {
        transform: translateY(-2px);
        box-shadow: var(--rz-shadow-lg);
        color: white;
        border: 1px solid rgba(255,255,255,0.8);
    }

/* ====== SECTIONS ====== */
.rz-section {
    padding: 6rem 0;
}
.rz-section-alt {
    background: var(--rz-bg-section);
}
.rz-section-dark {
    background: var(--rz-secondary);
    color: #fff;
}
.rz-section-dark h2,
.rz-section-dark h3 {
    color: #fff;
}
.rz-section-dark p {
    color: rgba(255,255,255,0.7);
}
.rz-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rz-primary);
    margin-bottom: 0.75rem;
}
.rz-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--rz-secondary);
}
.section-desc {
    font-size: 1.1rem;
    color: var(--rz-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ====== HERO (Homepage) ====== */
.rz-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(160deg, #F0F5FF 0%, #E8F0FE 30%, #DBEAFE 60%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}
.rz-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.rz-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}
.rz-hero .badge-pill {
    background: var(--rz-primary-50);
    color: var(--rz-primary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--rz-primary-100);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.5rem;
}
.rz-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--rz-secondary);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.rz-hero h1 span {
    background: linear-gradient(135deg, var(--rz-primary), var(--rz-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rz-hero .lead {
    font-size: 1.2rem;
    color: var(--rz-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}
.rz-hero-img {
    position: relative;
    z-index: 2;
}
.rz-hero-img .mock-dashboard {
    background: #fff;
    border-radius: var(--rz-radius-xl);
    box-shadow: var(--rz-shadow-xl);
    padding: 1rem;
    border: 1px solid var(--rz-border);
}
.rz-hero-img .mock-dashboard img {
    border-radius: var(--rz-radius-lg);
    width: 100%;
}
.rz-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(37,99,235,0.12);
}
.rz-hero-stats .stat-item .stat-num {
    font-family: var(--rz-font);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--rz-primary);
}
.rz-hero-stats .stat-item .stat-label {
    font-size: 0.82rem;
    color: var(--rz-text-muted);
    font-weight: 500;
}

/* ====== HERO VIDEO variant (Homepage) ====== */
.rz-hero-vid {
    padding: 6rem 5rem 0 2.5rem;
    background: #fff;
}
.rz-hero-vid-wrap {
    position: relative;
    border-radius: var(--rz-radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    height: 500px;
}
.rz-hero-vid-wrap video,
.rz-hero-vid-wrap img {
    width: 100%;
    height: 100%;
    object-fit: var(--rz-fit, cover);
    object-position: var(--rz-fit-pos, center);
    display: block;
}
.rz-hero-vid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6rem 4rem 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
}
.rz-hero-vid-caption h1 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    -webkit-text-fill-color: #fff;
    letter-spacing: -0.03em;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.rz-hero-vid-caption h1 span {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
}
.rz-hero-vid-caption .hero-vid-logo {
    display: block;
    height: 60px;
    width: auto;
    margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) {
    .rz-hero-vid {
        padding: 5rem 0 2rem;
    }
    .rz-hero-vid-caption {
        padding: 3rem 1.25rem 1.5rem;
    }
    .rz-hero-vid-caption h1 {
        font-size: 1.2rem;
    }
    .rz-hero-vid-caption .hero-vid-logo {
        height: 32px;
        margin-bottom: 0.75rem;
    }
}

/* ====== PRODUCT HERO (Feature pages) ====== */
.rz-product-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 40%, #E0EDFF 100%);
    position: relative;
    overflow: hidden;
}
.rz-product-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    top: -150px;
    right: -50px;
}
.rz-product-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.1);
    color: var(--rz-primary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(37,99,235,0.2);
    margin-bottom: 1.5rem;
}
.rz-product-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--rz-secondary);
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}
.rz-product-hero h1 span {
    background: linear-gradient(135deg, var(--rz-primary), var(--rz-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rz-product-hero .lead {
    font-size: 1.15rem;
    color: var(--rz-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

/* ====== BENEFIT PILLS ====== */
.benefit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}
.benefit-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: 12px;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--rz-shadow-sm);
}
.benefit-pill i {
    color: var(--rz-primary);
    font-size: 1.1rem;
}

/* ====== OTA CAROUSEL ====== */
.rz-trust-bar {
    padding: 3rem 0;
    background: var(--rz-bg);
    border-bottom: 1px solid var(--rz-border);
    overflow: hidden;
}
.rz-trust-bar .trust-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--rz-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.ota-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.ota-carousel-wrapper::before,
.ota-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.ota-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--rz-bg), transparent);
}
.ota-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--rz-bg), transparent);
}
.ota-carousel-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    animation: ota-scroll 30s linear infinite;
    width: max-content;
}
.ota-carousel-track:hover {
    animation-play-state: paused;
}
.ota-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 40px;
}
.ota-item .ota-text-logo {
    font-family: var(--rz-font);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--rz-text);
    opacity: 0.3;
    transition: opacity 0.3s;
    white-space: nowrap;
    user-select: none;
}
.ota-item:hover .ota-text-logo {
    opacity: 0.6;
}
.ota-item img {
    height: 28px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.ota-item:hover img,
.ota-item:active img {
    opacity: 0.8;
    filter: grayscale(0%);
}
@keyframes ota-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== PRODUCT CARDS ====== */
.rz-product-card {
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.rz-product-card:hover {
    border-color: var(--rz-primary);
    box-shadow: var(--rz-shadow-lg);
    transform: translateY(-4px);
}
.rz-product-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.rz-product-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.rz-product-card p {
    font-size: 0.9rem;
    color: var(--rz-text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.rz-product-card .card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rz-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.rz-product-card:hover .card-link {
    gap: 8px;
}

/* Card icon color variants */
.card-icon-blue   { background: var(--rz-primary-50); color: var(--rz-primary); }
.card-icon-green  { background: var(--rz-accent-light); color: var(--rz-accent); }
.card-icon-amber  { background: #FEF3C7; color: var(--rz-warning); }
.card-icon-purple { background: #EDE9FE; color: #7C3AED; }
.card-icon-rose   { background: #FFE4E6; color: #E11D48; }
.card-icon-cyan   { background: #CFFAFE; color: #0891B2; }

/* ====== VALUE PROPOSITION CARDS (Feature pages) ====== */
.rz-value-card {
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
}
.rz-value-card:hover {
    border-color: var(--rz-primary);
    box-shadow: var(--rz-shadow-lg);
    transform: translateY(-4px);
}
.rz-value-card .val-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--rz-primary-50);
    color: var(--rz-primary);
}
.rz-value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.rz-value-card .val-subtitle {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rz-text-muted);
    margin-bottom: 0.8rem;
}
.rz-value-card p {
    font-size: 0.9rem;
    color: var(--rz-text-muted);
    line-height: 1.65;
}

/* ====== FEATURE ROWS (alternating layout) ====== */
.rz-feature-row {
    padding: 4rem 0;
}
.rz-feature-row + .rz-feature-row {
    border-top: 1px solid var(--rz-border);
}
.rz-feature-row .feature-tag,
.feature-tag {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rz-primary);
    margin-bottom: 0.6rem;
}
.rz-feature-row h3 {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--rz-secondary);
}
.rz-feature-row p.feature-desc,
.feature-desc {
    font-size: 1rem;
    color: var(--rz-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.45rem 0;
    font-size: 0.92rem;
    color: var(--rz-text);
}
.feature-list li i {
    color: var(--rz-accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.feature-mock {
    background: var(--rz-bg-section);
    border-radius: var(--rz-radius-xl);
    padding: 1rem;
    border: 1px solid var(--rz-border);
}
.feature-mock img {
    border-radius: var(--rz-radius);
    width: 100%;
    box-shadow: var(--rz-shadow);
}

/* ====== NUMBERS / BENEFITS ====== */
.rz-numbers {
    text-align: center;
}
.rz-numbers .number-card {
    padding: 2rem 1rem;
}
.rz-numbers .number-card .num {
    font-family: var(--rz-font);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--rz-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}
.rz-numbers .number-card .num-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rz-text);
    margin-top: 0.5rem;
}
.rz-numbers .number-card .num-desc {
    font-size: 0.82rem;
    color: var(--rz-text-muted);
    margin-top: 0.3rem;
}

/* ====== AUDIENCE TABS ====== */
.rz-audience .nav-pills .nav-link {
    background: var(--rz-bg-section);
    color: var(--rz-text);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 10px;
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--rz-border);
    margin: 0 0.3rem 0.5rem;
    transition: all 0.2s;
}
.rz-audience .nav-pills .nav-link.active {
    background: var(--rz-primary);
    color: #fff;
    border-color: var(--rz-primary);
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}
.rz-audience .tab-pane {
    padding: 2.5rem 0;
}
.rz-audience .audience-card {
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-lg);
    padding: 2.5rem;
}

/* ====== WHY ROOMZY CARDS ====== */
.rz-why-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.rz-why-card .why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
    background: var(--rz-primary-50);
    color: var(--rz-primary);
}
.rz-why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.rz-why-card p {
    font-size: 0.88rem;
    color: var(--rz-text-muted);
    line-height: 1.6;
}

/* ====== HOW IT WORKS STEPS ====== */
.rz-step {
    text-align: center;
    padding: 1rem;
    position: relative;
}
.rz-step .step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rz-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rz-font);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1.2rem;
}
.rz-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.rz-step p {
    font-size: 0.88rem;
    color: var(--rz-text-muted);
    line-height: 1.6;
}
.step-connector {
    position: absolute;
    top: 48px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--rz-primary-100) 0px, var(--rz-primary-100) 8px, transparent 8px, transparent 16px);
}

/* ====== COMPARISON TABLES ====== */
.rz-compare-table {
    background: #fff;
    border-radius: var(--rz-radius-lg);
    border: 1px solid var(--rz-border);
    overflow: hidden;
}
.rz-compare-table table {
    width: 100%;
    margin: 0;
}
.rz-compare-table thead th {
    background: var(--rz-secondary);
    color: #fff;
    font-family: var(--rz-font);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 1rem 1.2rem;
    border: none;
}
.rz-compare-table thead th:first-child { text-align: left; }
.rz-compare-table thead th:not(:first-child) { text-align: left; }
.rz-compare-table tbody td {
    padding: 0.75rem 1.2rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--rz-border);
    vertical-align: middle;
}
.rz-compare-table tbody td:not(:first-child) { text-align: left; }
.rz-compare-table tbody tr:nth-child(even) { background: var(--rz-bg-subtle); }
.rz-compare-table tbody tr:last-child td { border-bottom: none; }
.rz-compare-table .check { color: var(--rz-accent); font-size: 1.2rem; }
.rz-compare-table .cross { color: var(--rz-text-light); font-size: 1.2rem; }
.rz-compare-table .highlight-col { background: rgba(37,99,235,0.04) !important; }
.rz-compare-table thead .highlight-col { background: var(--rz-primary) !important; }

/* ====== FAQ ACCORDION ====== */
.rz-faq .accordion-item {
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.rz-faq .accordion-button {
    font-family: var(--rz-font);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--rz-text);
    background: #fff;
    box-shadow: none !important;
    padding: 1.1rem 1.3rem;
}
.rz-faq .accordion-button:not(.collapsed) {
    color: var(--rz-primary);
    background: var(--rz-primary-50);
}
.rz-faq .accordion-body {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--rz-text-muted);
    line-height: 1.7;
    padding: 0 1.3rem 1.1rem;
}

/* ====== CTA SECTION ====== */
.rz-cta {
    background: linear-gradient(135deg, var(--rz-primary-dark) 0%, var(--rz-primary) 50%, var(--rz-primary-light) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rz-cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px;
    right: -100px;
}
.rz-cta h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.rz-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ====== FOOTER ====== */
.rz-footer {
    background: var(--rz-secondary);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}
.rz-footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}
.rz-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: block;
    padding: 0.25rem 0;
}
.rz-footer a:hover {
    color: #fff;
}
.rz-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
}
.rz-footer .footer-bottom a {
    display: inline;
}

/* ====== PRICING HERO ====== */
.rz-pricing-hero {
    padding: 10rem 0 3rem;
    background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 50%, #E0EDFF 100%);
    text-align: center;
}
.rz-pricing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--rz-secondary);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.rz-pricing-hero p {
    font-size: 1.15rem;
    color: var(--rz-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====== PRICING TOGGLE ====== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0 0;
}
.pricing-toggle .toggle-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rz-text-muted);
    cursor: pointer;
}
.pricing-toggle .toggle-label.active {
    color: var(--rz-text);
}
.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--rz-primary);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}
.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
}
.toggle-switch.hotels::after {
    transform: translateX(24px);
}

/* ====== PRICING CARDS ====== */
.rz-pricing-section {
    padding: 3rem 0 6rem;
    background: linear-gradient(180deg, #DBEAFE 0%, var(--rz-bg) 15%);
}
.rz-pricing-card {
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-xl);
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}
.rz-pricing-card:hover {
    box-shadow: var(--rz-shadow-xl);
    transform: translateY(-6px);
}
.rz-pricing-card.featured {
    border: 2px solid var(--rz-primary);
    box-shadow: var(--rz-shadow-lg);
}
.rz-pricing-card.featured .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rz-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.rz-pricing-card .plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rz-text-muted);
    margin-bottom: 0.5rem;
}
.rz-pricing-card .plan-price {
    font-family: var(--rz-font);
    font-weight: 800;
    font-size: 3rem;
    color: var(--rz-secondary);
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
}
.rz-pricing-card .plan-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}
.rz-pricing-card .plan-period {
    font-size: 0.85rem;
    color: var(--rz-text-muted);
    margin-bottom: 0.3rem;
}
.rz-pricing-card .plan-extra {
    font-size: 0.82rem;
    color: var(--rz-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.rz-pricing-card .plan-desc {
    font-size: 0.9rem;
    color: var(--rz-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--rz-border);
}
.rz-pricing-card .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0.4rem 0;
    font-size: 0.88rem;
}
.rz-pricing-card .feature-item i {
    flex-shrink: 0;
    margin-top: 2px;
}
.rz-pricing-card .feature-item .bi-check-circle-fill { color: var(--rz-accent); }
.rz-pricing-card .feature-item .bi-x-circle { color: var(--rz-text-light); }
.rz-pricing-card .feature-item.disabled {
    color: var(--rz-text-light);
}
.rz-pricing-card .plan-cta {
    margin-top: 2rem;
}
.rz-pricing-card .plan-cta .btn {
    width: 100%;
    padding: 0.8rem;
}

/* ====== HOTEL PRICING TABLE ====== */
.rz-hotel-pricing {
    display: none;
}
.rz-hotel-pricing.active {
    display: block;
}
.rz-vr-pricing.hidden {
    display: none;
}
.hotel-tier-table {
    background: #fff;
    border-radius: var(--rz-radius-lg);
    border: 1px solid var(--rz-border);
    overflow: hidden;
    margin-top: 1rem;
}
.hotel-tier-table table {
    width: 100%;
    margin: 0;
}
.hotel-tier-table thead th {
    background: var(--rz-secondary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.9rem 1.2rem;
    border: none;
    text-align: center;
}
.hotel-tier-table thead th:first-child { text-align: left; }
.hotel-tier-table tbody td {
    padding: 0.8rem 1.2rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--rz-border);
    text-align: center;
}
.hotel-tier-table tbody td:first-child { text-align: left; font-weight: 600; }
.hotel-tier-table tbody tr:nth-child(even) { background: var(--rz-bg-subtle); }
.hotel-tier-table .highlight-col { background: rgba(37,99,235,0.04) !important; }
.hotel-tier-table thead .highlight-col { background: var(--rz-primary) !important; }

/* ====== PLACEHOLDER IMAGES (dev only β€” remove in production) ====== */
.placeholder-img {
    background: linear-gradient(135deg, var(--rz-primary-50) 0%, var(--rz-primary-100) 100%);
    border-radius: var(--rz-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rz-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
    min-height: 300px;
    border: 2px dashed var(--rz-primary-100);
}

/* ====== AUTO-SCROLL IMAGE PREVIEW ====== */
.rz-scroll-img-wrap {
    height: 380px;
    overflow: hidden;
    border-radius: var(--rz-radius-lg);
    box-shadow: var(--rz-shadow-xl);
    position: relative;
    cursor: pointer;
}
.rz-scroll-img-wrap img {
    width: 100%;
    display: block;
    animation: rz-img-scroll 10s ease-in-out 1s infinite alternate;
    will-change: transform;
}
.rz-scroll-img-wrap:hover img {
    animation-play-state: paused;
}
@keyframes rz-img-scroll {
    0%, 10%   { transform: translateY(0); }
    100%      { transform: translateY(calc(-100% + 380px)); }
}

/* ====== DEVICE FRAME MOCKUP ====== */
/*
 * How it works:
 *   1. .rz-device-wrap  — relative container sized by the frame image
 *   2. .rz-device-frame — transparent-screen PNG (laptop / browser / iPad)
 *                         sits on top (z-index 2), pointer-events: none
 *   3. .rz-device-screen — absolutely positioned to fill the transparent
 *                          hole in the frame; holds the scrolling screenshot
 *
 * Calibration: adjust the top/left/right/bottom % values in .rz-device-screen
 * to match the exact screen area of whichever frame PNG you use.
 * Tip: open the frame PNG in a browser devtools overlay and measure the %.
 */
.rz-device-wrap {
    position: relative;
    width: 100%;
    display: block;
}
.rz-device-frame {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}
.rz-device-screen {
    position: absolute;
    /* Default — no device type set (fallback, same as --browser) */
    top: 8%; left: 1%; right: 1%; bottom: 2%;
    z-index: 1;
    overflow: hidden;
    border-radius: 2px;
    container-type: size;
}

/* ── Device-type modifiers ───────────────────────────────────────────────
   Add one of these classes to .rz-device-wrap to match your frame PNG.
   Usage: <div class="rz-device-wrap rz-device-wrap--ipad">

   After placing your frame, calibrate by inspecting .rz-device-screen
   in DevTools and dragging the % values until the screenshot fits the hole.
   ──────────────────────────────────────────────────────────────────────── */

/* Standalone browser window (just the chrome bar, no device body) */
.rz-device-wrap--browser .rz-device-screen {
    top: 8%; left: 1%; right: 1%; bottom: 2%;
    border-radius: 0 0 4px 4px;
}

/* Laptop — wide body, screen is inset left/right/bottom */
.rz-device-wrap--laptop .rz-device-screen {
    top: 6%; left: 13%; right: 13%; bottom: 10%;
    border-radius: 2px;
}

/* iPad portrait — equal side padding, rounded screen corners */
.rz-device-wrap--ipad .rz-device-screen {
    top: 9%; left: 7%; right: 7%; bottom: 9%;
    border-radius: 4px;
}

/* iPhone — narrow, tall screen, larger top/bottom bezels */
.rz-device-wrap--phone .rz-device-screen {
    top: 12%; left: 6%; right: 6%; bottom: 4%;
    border-radius: 8px;
}
/* When the scroll wrapper is inside a device frame, fill the screen area */
.rz-device-screen .rz-scroll-img-wrap {
    height: 100%;
    border-radius: 0;
    box-shadow: none;
}
.rz-device-screen .rz-scroll-img-wrap img {
    animation-name: rz-img-scroll-device;
    animation-duration: 14s;
}
@keyframes rz-img-scroll-device {
    0%, 18%   { transform: translateY(0); }
    100%      { transform: translateY(calc(-100% + 100cqh)); }
}

/* ====== COMING SOON BADGE ====== */
.badge-soon {
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ====== ANIMATIONS ====== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
    .rz-hero h1 { font-size: 2.5rem; }
    .rz-hero .lead { font-size: 1.05rem; }
    .rz-product-hero h1 { font-size: 2.3rem; }
    .rz-pricing-hero h1 { font-size: 2.3rem; }
    .rz-section h2 { font-size: 2rem; }
    .rz-feature-row h3 { font-size: 1.5rem; }
    .rz-hero-stats { gap: 1.5rem; }
    .step-connector { display: none; }
}
@media (max-width: 767px) {
    .rz-hero { padding: 7rem 0 3rem; }
    .rz-hero h1 { font-size: 2rem; }
    .rz-product-hero { padding: 7rem 0 3rem; }
    .rz-product-hero h1 { font-size: 1.9rem; }
    .rz-pricing-hero { padding: 7rem 0 2rem; }
    .rz-pricing-hero h1 { font-size: 1.9rem; }
    .rz-section { padding: 4rem 0; }
    .rz-hero-stats { flex-wrap: wrap; gap: 1rem; }
    .rz-cta h2 { font-size: 1.8rem; }
    .benefit-pills { gap: 0.6rem; }
    .rz-pricing-card .plan-price { font-size: 2.5rem; }
}

/* ============================================================
   ROOMZY β€” Custom Pill Navigation (Bootstrap 5.3 compatible)
   
   Copy this entire block into roomzy.css, replacing the
   existing .rz-audience section.
   
   Usage in HTML:
   <div class="rz-audience">
     <ul class="nav rz-nav-pills" role="tablist">
       <li class="nav-item" role="presentation">
         <button class="nav-link active" data-bs-toggle="pill" 
                 data-bs-target="#tab-hotels" type="button"
                 role="tab">Hotels</button>
       </li>
       ...
     </ul>
     <div class="tab-content">
       <div class="tab-pane fade show active" id="tab-hotels" 
            role="tabpanel">...</div>
       ...
     </div>
   </div>
   
   NOTE: We use .rz-nav-pills instead of .nav-pills to avoid
   conflicts with Bootstrap 5.3's internal CSS variable system.
   ============================================================ */

/* ====== PILL NAVIGATION ====== */
.rz-audience .rz-nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rz-audience .rz-nav-pills .nav-item {
    flex-shrink: 0;
}

.rz-audience .rz-nav-pills .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rz-bg-section);
    color: var(--rz-text);
    font-family: var(--rz-font);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 10px;
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--rz-border);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
    /* Reset Bootstrap defaults */
    --bs-nav-link-color: var(--rz-text);
    --bs-nav-link-hover-color: var(--rz-primary);
    --bs-nav-pills-link-active-bg: var(--rz-primary);
    --bs-nav-pills-link-active-color: #fff;
}

.rz-audience .rz-nav-pills .nav-link:hover:not(.active) {
    background: var(--rz-primary-50);
    border-color: var(--rz-primary-100);
    color: var(--rz-primary);
}

/* ============================================================
   ROOMZY β€” Extended Layout Patterns v2.1
   Alternating sections, feature boxes, sub-page hero,
   mid-page CTA band, sticky page TOC
   ============================================================ */

/* ====== FEATURE BOXES (Porto-style inline points) ====== */
.rz-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
}
.rz-feature-box:last-child { margin-bottom: 0; }
.rz-feature-box .fb-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--rz-primary-50);
    color: var(--rz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.rz-feature-box .fb-icon-green  { background: var(--rz-accent-light);  color: var(--rz-accent); }
.rz-feature-box .fb-icon-amber  { background: #FEF3C7;                  color: var(--rz-warning); }
.rz-feature-box .fb-icon-purple { background: #EDE9FE;                  color: #7C3AED; }
.rz-feature-box .fb-icon-rose   { background: #FFE4E6;                  color: #E11D48; }
.rz-feature-box .fb-icon-cyan   { background: #CFFAFE;                  color: #0891B2; }
.rz-feature-box .fb-body {}
.rz-feature-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--rz-secondary);
    line-height: 1.3;
}
.rz-feature-box p {
    font-size: 0.9rem;
    color: var(--rz-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ====== CENTERED SUB-PAGE HERO ====== */
.rz-hero-sub {
    padding: 9rem 0 5rem;
    background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 55%, #E0EDFF 100%);
    text-align: center;
    position: relative;
    overflow-x: clip;
}
.rz-hero-sub::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.rz-hero-sub .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.1);
    color: var(--rz-primary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(37,99,235,0.2);
    margin-bottom: 1.5rem;
}
.rz-hero-sub h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--rz-secondary);
    letter-spacing: -0.03em;
    margin: 0 auto 1.2rem;
    max-width: 720px;
}
.rz-hero-sub h1 span {
    background: linear-gradient(135deg, var(--rz-primary), var(--rz-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rz-hero-sub .lead {
    font-size: 1.15rem;
    color: var(--rz-text-muted);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.rz-hero-sub .benefit-pills { justify-content: center; }
.rz-hero-sub .hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
@media (max-width: 991px) { .rz-hero-sub h1 { font-size: 2.3rem; } }
@media (max-width: 767px) {
    .rz-hero-sub { padding: 7rem 0 3rem; }
    .rz-hero-sub h1 { font-size: 1.9rem; }
}

/* Hero visual β€” product screenshot below centered hero copy */
.hero-visual {
    margin: 3.5rem auto 0;
    max-width: 1060px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(15,23,42,0.18), 0 0 0 1px rgba(37,99,235,0.1);
    position: relative;
    z-index: 2;
}
.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-visual .placeholder-img {
    border-radius: 0;
    min-height: 420px;
    border: none;
    background: linear-gradient(145deg, #e8f0fe 0%, #d1e3fd 100%);
}
@media (max-width: 767px) {
    .hero-visual { border-radius: 10px; margin-top: 2.5rem; }
    .hero-visual .placeholder-img { min-height: 220px; }
}

/* ====== ALTERNATING SECTIONS WITH DIVIDERS ====== */
.rz-alt-section {
    padding: 5rem 0;
}
.rz-alt-section + .rz-alt-section {
    border-top: 1px solid var(--rz-border);
}
.rz-alt-section.bg-subtle { background: var(--rz-bg-section); }
.rz-alt-section .section-sub {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rz-primary);
    margin-bottom: 0.7rem;
    display: block;
}
.rz-alt-section h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--rz-secondary);
    margin-bottom: 0.9rem;
    line-height: 1.15;
}
.rz-alt-section .section-lead {
    font-size: 1.05rem;
    color: var(--rz-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}
.rz-alt-section .section-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.rz-alt-section .img-col {
    border-radius: var(--rz-radius-xl);
    overflow: hidden;
    box-shadow: var(--rz-shadow-xl);
    background: var(--rz-bg-section);
    border: 1px solid var(--rz-border);
}
.rz-alt-section .img-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--rz-radius-xl);
}
@media (max-width: 767px) {
    .rz-alt-section { padding: 3.5rem 0; }
    .rz-alt-section h2 { font-size: 1.7rem; }
}

/* ====== MID-PAGE CTA BAND ====== */
.rz-band-cta {
    background: var(--rz-secondary);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rz-band-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 400px;
    border-radius: 50%;
    background: rgba(37,99,235,0.12);
    top: -200px;
    right: -150px;
    pointer-events: none;
}
.rz-band-cta h3 {
    font-family: var(--rz-font);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    letter-spacing: -0.025em;
    position: relative;
}
.rz-band-cta p {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.65;
    position: relative;
}
.rz-band-cta .band-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}
@media (max-width: 767px) { .rz-band-cta h3 { font-size: 1.6rem; } }

/* ====== STICKY PAGE TOC SIDEBAR ====== */
.rz-toc {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-lg);
    box-shadow: var(--rz-shadow-sm);
}
.rz-toc .toc-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rz-text-light);
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--rz-border);
}
.rz-toc nav {}
.rz-toc nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rz-text-muted);
    text-decoration: none;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: all 0.2s;
    margin-bottom: 2px;
}
.rz-toc nav a i { font-size: 0.95rem; width: 18px; flex-shrink: 0; }
.rz-toc nav a:hover,
.rz-toc nav a.active {
    color: var(--rz-primary);
    background: var(--rz-primary-50);
    border-left-color: var(--rz-primary);
}
/* ============================================================
   ROOMZY β€” Start / Free Trial Page
   ============================================================ */

/* ====== SECTION WRAPPER ====== */
.rz-start-form-section {
    padding: 3rem 0 6rem;
    background: var(--rz-bg);
}

/* ====== PROPERTY TYPE TOGGLE ====== */
.rz-prop-toggle {
    display: flex;
    gap: 0.5rem;
}
.rz-prop-btn {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 2px solid var(--rz-border);
    background: #fff;
    font-family: var(--rz-font);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--rz-text-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.rz-prop-btn:hover {
    border-color: var(--rz-primary);
    color: var(--rz-primary);
}
.rz-prop-btn.active {
    border-color: var(--rz-primary);
    background: var(--rz-primary-50);
    color: var(--rz-primary);
}

/* ====== PLAN SELECTOR ====== */
.rz-plan-selector {
    display: flex;
    gap: 0.75rem;
}
.rz-plan-option {
    flex: 1;
    position: relative;
}
.rz-plan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.rz-plan-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.75rem;
    border: 2px solid var(--rz-border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
    user-select: none;
}
.rz-plan-option label:hover {
    border-color: var(--rz-primary);
}
.rz-plan-option input:checked + label {
    border-color: var(--rz-primary);
    background: var(--rz-primary-50);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.rz-plan-option.disabled label {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.rz-plan-option .plan-pill-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--rz-secondary);
}
.rz-plan-option .plan-pill-price {
    font-family: var(--rz-font);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--rz-primary);
    letter-spacing: -0.02em;
    margin: 0.25rem 0;
    line-height: 1;
}
.rz-plan-option .plan-pill-price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--rz-text-muted);
}
.rz-plan-option .plan-pill-feature {
    font-size: 0.75rem;
    color: var(--rz-text-muted);
    line-height: 1.3;
}
.rz-plan-option .plan-popular {
    background: var(--rz-primary);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}

/* Hotel pricing note */
.rz-hotel-pricing-note {
    display: none;
    background: var(--rz-primary-50);
    border: 1px solid var(--rz-primary-100);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    color: var(--rz-text);
    line-height: 1.5;
}
.rz-hotel-pricing-note.visible {
    display: block;
}

/* ====== FORM CARD ====== */
.rz-form-card {
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--rz-shadow);
}
.rz-form-card .form-section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rz-text-muted);
    margin-bottom: 0.75rem;
}
.rz-form-card .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rz-text);
    margin-bottom: 0.4rem;
}
.rz-form-card .form-control,
.rz-form-card .form-select {
    border: 1.5px solid var(--rz-border);
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    color: var(--rz-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.rz-form-card .form-control:focus,
.rz-form-card .form-select:focus {
    border-color: var(--rz-primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    outline: none;
}
.rz-form-card .form-control.is-invalid,
.rz-form-card .form-select.is-invalid {
    border-color: #EF4444;
}
.rz-form-card textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

/* ====== WHAT HAPPENS NEXT CARD ====== */
.rz-next-steps-card {
    background: var(--rz-bg-subtle);
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-xl);
    padding: 2rem;
}
.rz-next-steps-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--rz-secondary);
    display: flex;
    align-items: center;
}
.rz-next-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.rz-next-step:last-child {
    margin-bottom: 0;
}
.rz-next-step .step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--rz-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rz-font);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.rz-next-step .step-num.accent {
    background: var(--rz-accent);
}
.rz-next-step .step-body h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--rz-secondary);
}
.rz-next-step .step-body p {
    font-size: 0.82rem;
    color: var(--rz-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ====== TRUST LIST ====== */
.rz-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rz-trust-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--rz-text-muted);
    padding: 0.32rem 0;
    font-weight: 500;
}
.rz-trust-list li i {
    color: var(--rz-accent);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ====== FORM SUCCESS STATE ====== */
.rz-form-success {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
}
.rz-form-success .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--rz-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--rz-accent);
    margin: 0 auto 1.5rem;
}
.rz-form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rz-secondary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.rz-form-success p {
    font-size: 0.95rem;
    color: var(--rz-text-muted);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 767px) {
    .rz-form-card { padding: 1.5rem; }
    .rz-plan-selector { gap: 0.5rem; }
    .rz-plan-option .plan-pill-price { font-size: 1.1rem; }
    .rz-prop-toggle { gap: 0.5rem; }
}

/* ====== TOC CTA (preserved below) ====== */
.rz-toc .toc-cta {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--rz-border);
}
.rz-toc .toc-cta .btn { width: 100%; font-size: 0.82rem; padding: 0.6rem 1rem; }

/* TOC scroll-spy JS activation */
.rz-content-col section[id],
.main section[id],
.main [id] { scroll-margin-top: 100px; }

.rz-audience .rz-nav-pills .nav-link.active,
.rz-audience .rz-nav-pills .show > .nav-link {
    background: var(--rz-primary) !important;
    color: #fff !important;
    border-color: var(--rz-primary) !important;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

/* Tab content area */
.rz-audience .tab-content {
    margin-top: 0.5rem;
}

.rz-audience .tab-pane {
    padding: 2.5rem 0;
}

/* Audience info cards inside tabs */
.rz-audience .audience-card {
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-lg);
    padding: 2.5rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 575px) {
    .rz-audience .rz-nav-pills {
        gap: 0.4rem;
    }
    .rz-audience .rz-nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 0.55rem 1rem;
    }
    .rz-audience .tab-pane {
        padding: 1.5rem 0;
    }
    .rz-audience .audience-card {
        padding: 1.5rem;
    }
}

/* ====== CONTACT PAGE ====== */
.rz-contact-card {
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: var(--rz-radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.rz-contact-card:hover {
    border-color: var(--rz-primary);
    box-shadow: var(--rz-shadow-lg);
    transform: translateY(-6px);
}
.rz-contact-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.rz-contact-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--rz-text);
}
.rz-contact-card p {
    font-size: 0.92rem;
    color: var(--rz-text-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.rz-contact-card .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--rz-primary);
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border: 2px solid var(--rz-primary);
    border-radius: 10px;
    transition: all 0.25s ease;
    align-self: flex-start;
}
.rz-contact-card .btn-contact:hover {
    background: var(--rz-primary);
    color: #fff;
    transform: translateY(-2px);
}
.rz-contact-card .btn-contact i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}
.rz-contact-card:hover .btn-contact i {
    transform: translateX(3px);
}
.rz-contact-channels {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.rz-contact-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--rz-border);
    border-radius: 14px;
    padding: 1rem 1.6rem;
    transition: all 0.25s ease;
}
.rz-contact-pill:hover {
    border-color: var(--rz-primary);
    box-shadow: var(--rz-shadow);
    transform: translateY(-2px);
}
.rz-contact-pill .pill-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.rz-contact-pill .pill-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rz-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 2px;
}
.rz-contact-pill .pill-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rz-text);
}
.rz-contact-pill a {
    color: var(--rz-text);
    text-decoration: none;
    transition: color 0.2s;
}
.rz-contact-pill a:hover {
    color: var(--rz-primary);
}
.rz-contact-address {
    text-align: center;
    margin-top: 2rem;
}
.rz-contact-address .addr-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.rz-contact-address p {
    font-size: 0.95rem;
    color: var(--rz-text-muted);
    line-height: 1.7;
    margin: 0;
}
.rz-contact-address strong {
    color: var(--rz-text);
}
@media (max-width: 767px) {
    .rz-contact-channels { gap: 0.75rem; }
    .rz-contact-pill { padding: 0.75rem 1.2rem; width: 100%; }
}

/* ── TOC sidebar links ── */
.toc-link {
    color: var(--rz-text-muted);
    text-decoration: none;
    font-size: 0.87rem;
    padding: 0.3rem 0;
    border-left: 2px solid var(--rz-border);
    padding-left: 0.75rem;
    transition: color 0.2s, border-color 0.2s;
}
.toc-link:hover {
    color: var(--rz-primary);
    border-left-color: var(--rz-primary);
}
.toc-link.active {
    color: var(--rz-primary);
    font-weight: 600;
    border-left-color: var(--rz-primary);
}