/* =====================================================
   RebusAI Public Website — Pixel-Perfect Design System
   Matches app.rebusai.com exactly
   ===================================================== */

/* --- Google Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300..900&display=swap");
/* T141: Playfair Display + Inter typography to match rebusai.com */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300..900&family=Playfair+Display:wght@400..900&display=swap");

/* =====================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ===================================================== */
:root {
    --cosmic-cobalt: #322675;
    --primary-blue-200: #5f4cd2;
    --primary-blue-600: #2417af;
    --primary-blue-50: #f0f0f7;
    --affair: #654597;
    --malibu: #7bb4fb;
    --neutral-0: #fff;
    --neutral-50: #fafafa;
    --neutral-100: #f4f4f5;
    --neutral-200: #e4e4e7;
    --neutral-300: #d4d4d8;
    --neutral-400: #a1a1aa;
    --neutral-500: #71717a;
    --neutral-600: #52525b;
    --neutral-700: #3f3f46;
    --neutral-900: #18181b;
    --success: #01a94d;
    --pale-yellow: #fffbac;
    --font-sans: 'Noto Sans', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* =====================================================
   GLOBAL RESET FOR REBUSAI PAGES
   ===================================================== */
.rebusai-page {
    font-family: var(--font-sans) !important;
    color: var(--neutral-700);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rebusai-page * {
    box-sizing: border-box;
}

/* Preserve FontAwesome font-family — the global override above clobbers it */
.rebusai-page .fa,
.rebusai-page .fab,
.rebusai-page .fas,
.rebusai-page .far,
.rebusai-page [class^="fa-"],
.rebusai-page [class*=" fa-"] {
    font-family: "FontAwesome" !important;
}

/* Hide Odoo default header/footer and skip-to-content on our pages */
.rebusai-page #wrapwrap > header,
.rebusai-page #wrapwrap > footer {
    display: none !important;
}

.rebusai-page a[href="#wrap"],
.rebusai-page .o_skip_to_content,
.o_skip_to_content {
    display: none !important;
}

/* =====================================================
   CONTAINER
   ===================================================== */
.rb-container {
    max-width: 1500px;
    margin-inline: auto;
    padding-inline: 1rem;
}

@media (min-width: 768px) {
    .rb-container { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
    .rb-container { padding-inline: 2rem; }
}

/* =====================================================
   NAVIGATION (Fixed Top)
   ===================================================== */
.rb-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.rb-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.rb-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    max-width: 1500px;
    margin: 0 auto;
}

@media (min-width: 640px) { .rb-nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .rb-nav-inner { padding: 0 2rem; } }

.rb-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--cosmic-cobalt);
}

.rb-nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.rb-nav-logo span {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0;
}

.rb-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1200px) {
    .rb-nav-links { display: flex; }
}

.rb-nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cosmic-cobalt);
    text-decoration: none;
    transition: color 0.2s;
}

.rb-nav-links a:hover {
    color: var(--primary-blue-200);
}

.rb-nav-links a.active {
    color: var(--primary-blue-200);
}

.rb-nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ── Header Language Selector ── */
.rb-lang-selector {
    display: flex;
    align-items: center;
    position: relative;
}

.rb-lang-selector.rb-lang-static {
    gap: 0.375rem;
    cursor: default;
}
.rb-lang-static .rb-lang-code {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cosmic-cobalt);
}
.rb-lang-static .rb-lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

/* On mobile: compact — hide text, just show flag */
@media (max-width: 1199px) {
    .rb-lang-trigger .rb-lang-code,
    .rb-lang-trigger .rb-lang-chevron { display: none; }
    .rb-lang-trigger {
        padding: 0.3rem 0.45rem;
        border-color: transparent;
        background: transparent;
    }
    .rb-lang-trigger .rb-lang-flag {
        width: 24px;
        height: 18px;
    }
    .rb-lang-dropdown {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        max-height: 60vh;
        border-radius: 16px 16px 0 0;
        margin: 0 !important;
        transform: none !important;
    }
}

.rb-lang-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid var(--neutral-200, #e5e7eb);
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--cosmic-cobalt, #1e293b);
    font-size: 0.8125rem;
    font-weight: 600;
}
.rb-lang-trigger:hover {
    border-color: var(--primary-blue-200, #7bb4fb);
    background: rgba(127, 180, 251, 0.06);
}
.rb-lang-trigger .rb-lang-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.rb-lang-trigger .rb-lang-code {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.rb-lang-chevron {
    opacity: 0.5;
    transition: transform 0.2s ease;
    margin-left: 0.1rem;
}
.rb-lang-selector.show .rb-lang-chevron {
    transform: rotate(180deg);
}

/* Dropdown menu — must be hidden until Bootstrap adds .show */
.rb-lang-dropdown {
    display: none;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem 0;
    border: 1px solid var(--neutral-200, #e5e7eb);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
    background: #fff;
    margin-top: 0.5rem !important;
}
.rb-lang-dropdown.show {
    display: block;
}
.rb-lang-item {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem;
    color: var(--neutral-700, #374151);
    transition: background 0.15s ease;
    text-decoration: none;
}
.rb-lang-item:hover {
    background: var(--neutral-50, #f9fafb);
    color: var(--cosmic-cobalt, #1e293b);
}
.rb-lang-item.active {
    background: rgba(95, 76, 210, 0.06);
    color: var(--cosmic-cobalt);
    font-weight: 600;
}
.rb-lang-item-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.rb-lang-item-name {
    flex: 1;
}
.rb-lang-item-code {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neutral-400, #9ca3af);
    letter-spacing: 0.03em;
}

/* ── Mobile Language Selector ── */
.rb-mobile-lang {
    padding: 1rem 0 0;
    border-top: 1px solid var(--neutral-200, #e5e7eb);
}
.rb-mobile-lang-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neutral-400, #9ca3af);
    margin-bottom: 0.75rem;
}
.rb-mobile-lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.rb-mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--neutral-600, #4b5563);
    text-decoration: none;
    transition: background 0.15s ease;
}
.rb-mobile-lang-item:hover {
    background: var(--neutral-50, #f9fafb);
}
.rb-mobile-lang-item.active {
    background: rgba(95, 76, 210, 0.08);
    color: var(--cosmic-cobalt);
    font-weight: 600;
}
.rb-mobile-lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

/* ── Footer Language Selector (dropup, light bg) ── */
.rb-footer-lang {
    position: relative;
}
.rb-footer-lang-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--neutral-50, #f9fafb);
    border: 1px solid var(--neutral-200, #e5e7eb);
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    color: var(--neutral-600, #4b5563);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.rb-footer-lang-trigger:hover {
    border-color: var(--primary-blue-200, #7bb4fb);
    background: rgba(127, 180, 251, 0.06);
    color: var(--cosmic-cobalt, #1e293b);
}
.rb-footer-lang-icon {
    opacity: 0.6;
    color: var(--neutral-500, #6b7280);
}
.rb-footer-lang-menu {
    display: none;
    min-width: 220px;
    max-height: 350px;
    overflow-y: auto;
    padding: 0.5rem 0;
    border-radius: 12px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.1), 0 -2px 6px rgba(0,0,0,0.05);
    background: #fff;
    border: 1px solid var(--neutral-200, #e5e7eb);
}
.rb-footer-lang-menu.show {
    display: block;
}
.rb-footer-lang-item {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
    font-size: 0.8125rem;
    color: var(--neutral-600, #4b5563) !important;
    text-decoration: none;
    transition: background 0.15s ease;
}
.rb-footer-lang-item:hover {
    background: var(--neutral-50, #f9fafb);
    color: var(--cosmic-cobalt, #1e293b) !important;
}
.rb-footer-lang-item.active {
    background: rgba(95, 76, 210, 0.06);
    color: var(--cosmic-cobalt, #1e293b) !important;
    font-weight: 600;
}
.rb-footer-lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.rb-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue-200);
    color: #fff !important;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: none;
}

.rb-btn-primary:hover {
    background: var(--primary-blue-600);
    box-shadow: 0 4px 12px rgba(95, 76, 210, 0.3);
    color: #fff !important;
}

.rb-btn-primary-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
}

.rb-btn-primary-lg {
    padding: 1.5rem 2.5rem;
    font-size: 1rem;
}

.rb-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    color: var(--cosmic-cobalt) !important;
    border: 1px solid rgba(50, 38, 117, 0.15);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s;
}

.rb-btn-secondary:hover {
    background: #fff;
    color: var(--cosmic-cobalt) !important;
}

.rb-btn-secondary-lg {
    padding: 1.5rem 2.5rem;
}

.rb-btn-nav {
    background: var(--primary-blue-200);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.rb-btn-nav:hover {
    background: var(--primary-blue-600);
    color: #fff !important;
}

/* =====================================================
   MOBILE NAV
   ===================================================== */
.rb-mobile-toggle {
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-500);
    background: none;
    border: none;
}

@media (min-width: 1200px) {
    .rb-mobile-toggle { display: none; }
}

.rb-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    background: #fff;
    padding: 2rem;
    flex-direction: column;
}

.rb-mobile-menu.active {
    display: flex;
}

.rb-mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-500);
    padding: 0.5rem;
}

.rb-mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cosmic-cobalt);
    text-decoration: none;
    border-bottom: 1px solid var(--neutral-200);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.rb-hero {
    position: relative;
    min-height: 100vh;
    background: var(--neutral-0);
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

@media (min-width: 1024px) {
    .rb-hero { padding-top: 10rem; padding-bottom: 10rem; }
}

.rb-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.rb-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5f5 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.7;
}

.rb-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(240, 240, 247, 0.5), rgba(95, 76, 210, 0.08));
}

.rb-hero-content {
    position: relative;
    z-index: 1;
}

.rb-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .rb-hero-grid {
        grid-template-columns: 55% 45%;
    }
}

.rb-hero h1 {
    font-size: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--cosmic-cobalt);
    text-wrap: balance;
    margin-bottom: 1rem;
}

.rb-hero-sub {
    font-size: 1.125rem;
    line-height: 1.375;
    color: var(--neutral-600);
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .rb-hero-sub { font-size: 1.25rem; }
}

.rb-hero-desc {
    font-size: 1rem;
    line-height: 1.625;
    color: var(--neutral-500);
    max-width: 65ch;
    margin-bottom: 2rem;
}

.rb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rb-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.rb-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(50, 38, 117, 0.1);
    background: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cosmic-cobalt);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.rb-hero-pill svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

.rb-hero-pill.highlight {
    background: var(--pale-yellow);
    border-color: rgba(50, 38, 117, 0.15);
}

/* =====================================================
   SECTION COMMON
   ===================================================== */
.rb-section {
    padding: 3.5rem 0;
}

@media (min-width: 640px) { .rb-section { padding: 4rem 0; } }
@media (min-width: 1024px) { .rb-section { padding: 5rem 0; } }

.rb-section-alt {
    background: linear-gradient(to bottom, rgba(240, 240, 247, 0.4), transparent);
}

.rb-section-alt2 {
    background: linear-gradient(to right, transparent, rgba(95, 76, 210, 0.06));
}

.rb-section-affair {
    background: rgba(101, 69, 151, 0.2);
}

.rb-section-dark {
    background: var(--cosmic-cobalt);
    color: #fff;
}

.rb-kicker {
    font-size: 0.875rem;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--affair);
    margin-bottom: 0.75rem;
}

.rb-heading {
    font-size: clamp(1.75rem, 1.3rem + 1.4vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    text-wrap: balance;
    margin-bottom: 1rem;
}

.rb-lead {
    font-size: 1rem;
    line-height: 1.625;
    color: var(--neutral-500);
    max-width: 65ch;
}

@media (min-width: 1024px) {
    .rb-lead { font-size: 1.125rem; }
}

.rb-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* =====================================================
   CREATOR CARDS (Homepage + Dedicated Page)
   ===================================================== */
.rb-creators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .rb-creators-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .rb-creators-grid { grid-template-columns: repeat(3, 1fr); }
}

.rb-creator-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    border: 1px solid var(--neutral-200);
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 4px 15px -1px rgba(12, 12, 13, 0.08);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .rb-creator-card { padding: 1.5rem; }
}

.rb-creator-card:hover {
    box-shadow: 0 12px 30px -3px rgba(12, 12, 13, 0.1);
    transform: translateY(-4px);
    border-color: var(--neutral-300);
}

.rb-creator-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.rb-creator-icon.dev { background: #f3e8ff; color: #7c3aed; }
.rb-creator-icon.content { background: #ffedd5; color: #ea580c; }
.rb-creator-icon.marketing { background: #d1fae5; color: #059669; }
.rb-creator-icon.business { background: #e0f2fe; color: #0284c7; }

.rb-creator-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.rb-creator-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 0.5rem;
    line-height: 1.375;
}

@media (min-width: 1024px) {
    .rb-creator-card h3 { font-size: 1.25rem; }
}

.rb-creator-card p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.625;
    margin-bottom: 1rem;
}

.rb-creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.rb-creator-tag {
    display: inline-block;
    border-radius: 9999px;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neutral-600);
}

.rb-creator-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.rb-creator-card-top {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rb-creator-learn-more {
    display: block;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--neutral-100);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neutral-500);
    text-decoration: none;
    transition: color 0.2s;
}

.rb-creator-learn-more:hover {
    color: var(--primary-blue-200);
}

.rb-badge-soon {
    display: inline-block;
    border-radius: 9999px;
    border: 1px solid rgba(50, 38, 117, 0.25);
    background: rgba(50, 38, 117, 0.1);
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cosmic-cobalt);
}

/* =====================================================
   WORKFLOW STEPS
   ===================================================== */
.rb-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .rb-steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.rb-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.rb-step-num {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary-blue-50);
    color: var(--primary-blue-200);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.rb-step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 0.5rem;
}

.rb-step-card p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.625;
}

/* =====================================================
   FEATURES GRID
   ===================================================== */
.rb-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .rb-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .rb-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.rb-feature-card {
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.rb-feature-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}

.rb-feature-card .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.625rem;
    background: var(--primary-blue-50);
    color: var(--primary-blue-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.rb-feature-card .icon i.fa {
    font-size: 1.25rem;
    color: var(--primary-blue-200);
    line-height: 1;
}

.rb-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 0.5rem;
}

.rb-feature-card p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.625;
}

/* =====================================================
   SOLUTIONS
   ===================================================== */
.rb-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .rb-solutions-grid { grid-template-columns: repeat(3, 1fr); }
}

.rb-solution-card {
    padding: 2rem;
}

.rb-solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 0.75rem;
}

.rb-solution-card p {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.625;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.rb-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rb-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .rb-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.rb-testimonial-card {
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.rb-testimonial-card .stars {
    color: #f59e0b;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.rb-testimonial-card blockquote {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 1.5rem;
    border: none;
    padding: 0;
    flex: 1;
}

.rb-testimonial-card .author {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
}

.rb-testimonial-card .role {
    font-size: 0.8125rem;
    color: var(--neutral-400);
    margin-top: 0.125rem;
}

/* =====================================================
   PRICING
   ===================================================== */
.rb-pricing-hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
    background: #FDF7FF;
    text-align: center;
    position: relative;
}

.rb-pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem auto;
}

.rb-pricing-toggle button {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    color: var(--neutral-500);
}

.rb-pricing-toggle button.active {
    background: var(--cosmic-cobalt);
    color: #fff;
    border-color: var(--cosmic-cobalt);
}

/* Pricing page toggle (different class from homepage) */
.rb-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
}

.rb-toggle-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    color: var(--neutral-500);
}

.rb-toggle-btn.active {
    background: var(--cosmic-cobalt);
    color: #fff;
    border-color: var(--cosmic-cobalt);
}

.rb-pricing-save {
    display: inline-flex;
    align-items: center;
    background: var(--malibu);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-left: 0.25rem;
}

.rb-pricing-cards,
.rb-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .rb-pricing-cards,
    .rb-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .rb-pricing-cards,
    .rb-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.rb-pricing-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .rb-pricing-card { padding: 2.5rem; }
}

.rb-pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.rb-pricing-card.popular {
    border: 2px solid var(--primary-blue-200);
    box-shadow: 0 8px 30px -5px rgba(95, 76, 210, 0.15);
}

.rb-popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: linear-gradient(to right, #E58CFC, #7161CF);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.rb-pricing-card .plan-name {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue-200);
    margin-bottom: 1rem;
}

.rb-pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cosmic-cobalt);
}

.rb-pricing-card .price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-400);
}

.rb-pricing-card .annual-note {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--success);
    margin-top: 0.375rem;
}

.rb-pricing-card .plan-desc {
    color: var(--neutral-500);
    margin: 1rem 0;
    line-height: 1.625;
    font-size: 0.9375rem;
}

.rb-pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex: 1;
}

.rb-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
}

.rb-pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.rb-pricing-card .rb-btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 0.5rem;
    margin-top: auto;
    font-size: 0.9375rem;
}

/* =====================================================
   COMPARISON TABLE
   ===================================================== */
.rb-comparison,
.rb-table-wrapper {
    overflow-x: auto;
}

.rb-comparison table,
.rb-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.rb-comparison thead th,
.rb-comparison-table thead th {
    padding: 1rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    text-align: center;
    border-bottom: 2px solid var(--neutral-200);
    background: #fff;
}

.rb-comparison thead th:first-child,
.rb-comparison-table thead th:first-child {
    text-align: left;
    width: 25%;
}

.rb-comparison tbody td,
.rb-comparison-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--neutral-100);
    text-align: center;
    color: var(--neutral-600);
}

.rb-comparison tbody td:first-child,
.rb-comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--cosmic-cobalt);
}

.rb-comparison tbody tr:hover,
.rb-comparison-table tbody tr:hover {
    background: rgba(240, 240, 247, 0.5);
}

.rb-comparison-section .rb-section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.rb-dash {
    color: var(--neutral-300);
    font-weight: 300;
}

.rb-total-row td {
    padding-top: 1rem !important;
    border-top: 2px solid var(--neutral-200);
    font-size: 0.9375rem;
}

.rb-savings-row td {
    color: var(--success) !important;
    font-weight: 700;
    font-size: 0.9375rem;
}

.rb-savings-banner {
    background: linear-gradient(135deg, var(--primary-blue-200), var(--affair));
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

.rb-savings-banner h2,
.rb-savings-banner h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.rb-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rb-faq-item {
    border-radius: 0.75rem;
    border: 2px solid transparent;
    background: #EEF6FF;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rb-faq-item:hover {
    background: #E5F0FF;
}

.rb-faq-item.active {
    background: #fff;
    border-color: #EEF6FF;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.05);
}

.rb-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
}

.rb-faq-arrow {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s;
}

.rb-faq-item.active .rb-faq-arrow {
    transform: rotate(180deg);
}

.rb-faq-item:not(.active) .rb-faq-question {
    color: rgba(50, 38, 117, 0.8);
}

.rb-faq-toggle {
    flex-shrink: 0;
    margin-left: 1rem;
    padding: 0.25rem;
    border-radius: 9999px;
    transition: transform 0.3s;
}

.rb-faq-item.active .rb-faq-toggle {
    background: #fff;
    transform: rotate(180deg);
}

.rb-faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--neutral-500);
    line-height: 1.625;
    font-size: 1rem;
}

.rb-faq-item.active .rb-faq-answer {
    display: block;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.rb-cta-banner {
    background: var(--cosmic-cobalt);
    padding: 2.5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .rb-cta-banner { padding: 5rem 0; }
}

@media (min-width: 1024px) {
    .rb-cta-banner { padding: 10rem 0; }
}

.rb-cta-banner h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.rb-cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.rb-cta-banner .rb-btn-primary {
    background: #fff;
    color: var(--cosmic-cobalt) !important;
}

.rb-cta-banner .rb-btn-primary:hover {
    background: var(--neutral-100);
}

.rb-cta-banner .rb-btn-cta {
    display: inline-block;
    width: auto;
    margin-top: 1.5rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.rb-footer {
    background: var(--neutral-0);
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--neutral-100);
}

.rb-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .rb-footer-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .rb-footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr) 1.5fr; }
}

.rb-footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .rb-footer-brand { grid-column: auto; margin-bottom: 0; }
}

.rb-footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--cosmic-cobalt);
}

.rb-footer-brand .logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.rb-footer-brand .logo span {
    font-weight: 700;
    font-size: 1.125rem;
}

.rb-footer-brand p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.625;
    max-width: 280px;
}

.rb-footer-col h4 {
    font-weight: 700;
    color: var(--cosmic-cobalt);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.rb-footer-col a {
    display: block;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--neutral-500);
    text-decoration: none;
    transition: color 0.2s;
}

.rb-footer-col a:hover {
    color: var(--primary-blue-200);
}

.rb-footer-newsletter {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .rb-footer-newsletter { grid-column: auto; }
}

.rb-footer-newsletter h4 {
    font-weight: 700;
    color: var(--cosmic-cobalt);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.rb-footer-newsletter form {
    display: flex;
    gap: 0.5rem;
}

.rb-footer-newsletter input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    outline: none;
}

.rb-footer-newsletter input:focus {
    border-color: var(--primary-blue-200);
    box-shadow: 0 0 0 3px rgba(95, 76, 210, 0.1);
}

.rb-footer-newsletter button {
    white-space: nowrap;
}

.rb-footer-bottom {
    border-top: 1px solid var(--neutral-100);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rb-footer-bottom p {
    font-size: 0.875rem;
    color: var(--neutral-400);
}

.rb-footer-bottom a {
    font-size: 0.875rem;
    color: var(--neutral-400);
    text-decoration: none;
}

.rb-footer-bottom a:hover {
    color: var(--primary-blue-200);
}

.rb-footer-social {
    display: flex;
    gap: 1rem;
}

.rb-footer-social a {
    color: var(--neutral-400);
    transition: color 0.2s;
}

.rb-footer-social a:hover {
    color: var(--primary-blue-200);
}

/* =====================================================
   RESOURCES / BLOG PAGE
   ===================================================== */
.rb-resources-hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, #654597 0%, #7b68c8 30%, #a78bfa 60%, #c084fc 100%);
    text-align: center;
    position: relative;
    color: #fff;
}

.rb-resources-hero h1,
.rb-resources-hero .rb-heading {
    color: #fff;
}

.rb-resources-hero .rb-lead {
    color: rgba(255, 255, 255, 0.85);
}

.rb-resources-hero .rb-kicker {
    color: rgba(255, 255, 255, 0.7);
}

.rb-resources-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.4;
}

.rb-resources-hero > * {
    position: relative;
    z-index: 1;
}

.rb-search-bar {
    display: flex;
    max-width: 500px;
    margin: 1.5rem auto 0;
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
}

.rb-search-bar input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 0.875rem;
}

.rb-search-bar button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue-200);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.rb-search-bar button:hover {
    background: var(--primary-blue-600);
}

.rb-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.rb-filter-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid var(--neutral-200);
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cosmic-cobalt);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rb-filter-tab:hover {
    background: var(--cosmic-cobalt);
    color: #fff;
    border-color: var(--cosmic-cobalt);
}

.rb-filter-tab.active {
    background: var(--cosmic-cobalt);
    color: #fff;
    border-color: var(--cosmic-cobalt);
}

.rb-filter-count {
    font-weight: 400;
    opacity: 0.7;
}

/* Featured article hero card */
.rb-featured-article {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    margin-bottom: 3rem;
}

@media (min-width: 640px) { .rb-featured-article { height: 400px; } }
@media (min-width: 1024px) { .rb-featured-article { height: 500px; } }

.rb-featured-article:hover {
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

.rb-featured-article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rb-featured-article .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cosmic-cobalt), rgba(50, 38, 117, 0.4) 50%, transparent);
}

.rb-featured-article .content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}

@media (min-width: 640px) { .rb-featured-article .content { padding: 2rem; } }
@media (min-width: 1024px) { .rb-featured-article .content { padding: 3rem; } }

.rb-featured-article .badge {
    display: inline-block;
    background: var(--malibu);
    color: var(--cosmic-cobalt);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.rb-featured-article h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 640px) { .rb-featured-article h2 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .rb-featured-article h2 { font-size: 2.25rem; } }

.rb-featured-article .author-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rb-featured-article .author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: var(--neutral-100);
}

/* Article grid cards */
.rb-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rb-articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .rb-articles-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.rb-article-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid var(--neutral-200);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.rb-article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rb-article-card .image {
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
    background: var(--neutral-100);
    flex-shrink: 0;
}

.rb-article-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.rb-article-card:hover .image img {
    transform: scale(1.05);
}

.rb-article-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    flex-grow: 1;
}

.rb-article-card .badge {
    display: inline-block;
    background: var(--primary-blue-50);
    color: var(--cosmic-cobalt);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    width: fit-content;
}

.rb-article-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--cosmic-cobalt);
    line-height: 1.375;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
    margin: 0;
}

@media (min-width: 1024px) {
    .rb-article-card h3 { font-size: 1.25rem; }
}

.rb-article-card:hover h3 {
    color: var(--primary-blue-200);
}

.rb-article-card .card-footer {
    border-top: 1px solid var(--neutral-100);
    padding-top: 1rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.rb-article-card .card-footer .author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rb-article-card .card-footer .avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid var(--neutral-200);
    background: var(--neutral-100);
}

.rb-article-card .card-footer .author-name {
    font-weight: 600;
    color: var(--cosmic-cobalt);
}

.rb-article-card .card-footer .date {
    color: var(--neutral-400);
}

/* =====================================================
   SUPPORT PAGE
   ===================================================== */
.rb-support-hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #654597 0%, #7b68c8 30%, #7bb4fb 100%);
    color: #fff;
}

.rb-support-hero h1 {
    color: #fff;
}

.rb-support-hero p {
    color: rgba(255, 255, 255, 0.85);
}

.rb-support-hero::before {
    display: none;
}

.rb-support-hero::after {
    display: none;
}

.rb-support-hero > * {
    position: relative;
    z-index: 1;
}

.rb-support-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cosmic-cobalt);
    margin-bottom: 1rem;
}

.rb-support-hero p {
    color: var(--neutral-500);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.625;
}

.rb-support-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rb-support-categories { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .rb-support-categories { grid-template-columns: repeat(4, 1fr); }
}

.rb-support-cat-card {
    padding: 1.5rem;
    border-radius: 0.375rem;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.rb-support-cat-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.rb-support-cat-card .emoji {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif !important;
    line-height: 1;
}

.rb-support-cat-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin: 0;
}

.rb-support-cat-card p {
    font-size: 0.875rem;
    color: var(--neutral-400);
    margin: 0;
}

.rb-support-cat-card .count {
    display: inline-block;
    background: var(--neutral-100);
    color: var(--malibu);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 auto;
}

/* Popular articles */
.rb-popular-articles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rb-popular-articles { grid-template-columns: repeat(2, 1fr); }
}

.rb-popular-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rb-popular-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.rb-popular-card .badge {
    display: inline-block;
    background: #E7F2FF;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.375rem;
    color: var(--neutral-500);
    width: fit-content;
}

.rb-popular-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cosmic-cobalt);
    margin: 0;
}

.rb-popular-card .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--neutral-400);
}

/* Contact cards */
.rb-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rb-contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.rb-contact-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.375rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.rb-contact-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.rb-contact-card .icon-wrap {
    background: var(--neutral-50);
    padding: 1rem;
    border-radius: 9999px;
    width: fit-content;
    margin: 0 auto 0.75rem;
}

.rb-contact-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 0.5rem;
}

.rb-contact-card p {
    font-size: 0.75rem;
    color: var(--cosmic-cobalt);
    max-width: 220px;
    margin: 0 auto;
}

.rb-contact-card .sub {
    font-size: 0.75rem;
    color: var(--neutral-400);
    margin-top: 0.25rem;
}

/* =====================================================
   WAITLIST PAGE
   ===================================================== */
.rb-waitlist-hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(240, 240, 247, 0.5), #fff);
}

.rb-waitlist-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.rb-waitlist-form .form-group {
    margin-bottom: 1rem;
}

.rb-waitlist-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.rb-waitlist-form input:focus {
    border-color: var(--primary-blue-200);
    box-shadow: 0 0 0 3px rgba(95, 76, 210, 0.1);
}

.rb-waitlist-form .rb-btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Waitlist Form Card */
.rb-form-card {
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 500px;
    margin: 0 auto;
}

.rb-form-group {
    margin-bottom: 1.25rem;
}

.rb-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.rb-optional {
    font-weight: 400;
    color: var(--neutral-400);
    font-size: 0.8125rem;
}

.rb-required {
    color: #dc2626;
}

.rb-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--neutral-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.rb-input:focus {
    border-color: var(--primary-blue-200);
    box-shadow: 0 0 0 3px rgba(95, 76, 210, 0.1);
}

.rb-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.rb-btn-full {
    width: 100%;
}

.rb-trust-text {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--neutral-400);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Waitlist Success/Error States */
.rb-form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.rb-success-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.rb-form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 0.5rem;
}

.rb-form-success p {
    color: var(--neutral-500);
}

.rb-form-error {
    text-align: center;
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    color: #dc2626;
    margin-top: 1rem;
}

/* ── Waitlist Benefits Grid ── */
.rb-waitlist-benefits {
    background: var(--neutral-50);
}

.rb-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

@media (min-width: 768px) {
    .rb-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.rb-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--neutral-200);
    transition: box-shadow 0.2s;
}

.rb-benefit-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.rb-benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue-200), var(--affair));
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1.25rem;
}

.rb-benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 0.375rem;
}

.rb-benefit-card p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.5;
    margin: 0;
}

/* ── Waitlist Mini Creators Grid ── */
.rb-waitlist-creators {
    padding-bottom: 4rem;
}

.rb-mini-creators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

@media (min-width: 640px) {
    .rb-mini-creators-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .rb-mini-creators-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.rb-mini-creator-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 0.75rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.rb-mini-creator-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-blue-200);
}

.rb-mini-card-live {
    border-left: 3px solid var(--success);
}

.rb-mini-card-soon {
    border-left: 3px solid var(--neutral-300);
    opacity: 0.85;
}

.rb-mini-creator-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.rb-mini-creator-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue-50);
    border-radius: 0.5rem;
    color: var(--primary-blue-200);
    font-size: 1rem;
}

.rb-mini-creator-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin: 0 0 0.125rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rb-status-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.rb-status-live {
    background: #dcfce7;
    color: #166534;
}

.rb-status-soon {
    background: var(--neutral-100);
    color: var(--neutral-500);
}

.rb-mini-creator-action {
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.rb-btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    border-radius: 0.375rem;
}

.rb-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-blue-200);
    background: transparent;
    border: 1px solid var(--primary-blue-200);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-sans);
}

.rb-btn-outline:hover {
    background: var(--primary-blue-200);
    color: #fff;
}

.rb-notify-btn {
    white-space: nowrap;
}

/* =====================================================
   AI CREATORS PAGE HERO
   ===================================================== */
.rb-creators-hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(240, 240, 247, 0.5), #fff);
}

.rb-creators-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5f5 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.4;
}

.rb-creators-hero > * {
    position: relative;
    z-index: 1;
}

.rb-creators-hero h1 {
    font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
    font-weight: 800;
    color: var(--cosmic-cobalt);
    text-wrap: balance;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rb-creators-category {
    padding: 2rem 0;
}

.rb-category-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--neutral-200);
}

/* =====================================================
   SECTION HEADINGS (shared)
   ===================================================== */
.rb-section-heading {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    font-weight: 800;
    color: var(--cosmic-cobalt);
    text-align: center;
    margin-bottom: 1rem;
}

.rb-section-sub {
    text-align: center;
    color: var(--neutral-500);
    font-size: 1rem;
    margin-bottom: 0;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.rb-text-center { text-align: center; }
.rb-mb-0 { margin-bottom: 0; }
.rb-mb-1 { margin-bottom: 0.5rem; }
.rb-mb-2 { margin-bottom: 1rem; }
.rb-mb-3 { margin-bottom: 1.5rem; }
.rb-mb-4 { margin-bottom: 2rem; }
.rb-mt-4 { margin-top: 2rem; }
.rb-mx-auto { margin-left: auto; margin-right: auto; }
.rb-max-w-3xl { max-width: 48rem; }
.rb-max-w-4xl { max-width: 56rem; }

/* Checkmark SVG for pricing */
.rb-check-icon,
.rb-check {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--success);
}

/* Pricing card styles for rb-plan-name / rb-price-amount markup */
.rb-pricing-card .rb-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex: 1;
}

.rb-pricing-card .rb-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-600);
}

.rb-pricing-card .rb-plan-name {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue-200);
    margin-bottom: 1rem;
    display: block;
}

.rb-pricing-card .rb-price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cosmic-cobalt);
}

.rb-pricing-card .rb-price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-400);
}

.rb-pricing-card .rb-price-savings {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--success);
    margin-top: 0.375rem;
}

.rb-pricing-card .rb-plan-desc {
    color: var(--neutral-500);
    margin: 1rem 0;
    line-height: 1.625;
    font-size: 0.9375rem;
}

.rb-pricing-popular {
    border: 2px solid var(--primary-blue-200) !important;
    box-shadow: 0 8px 30px -5px rgba(95, 76, 210, 0.15);
}

.rb-btn-cta {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-blue-200);
    color: #fff !important;
    text-align: center;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.rb-btn-cta:hover {
    background: var(--primary-blue-600);
    color: #fff !important;
}

.rb-btn-cta.rb-btn-popular {
    background: var(--cosmic-cobalt);
    padding: 1.125rem 2rem;
    font-size: 1rem;
}

.rb-btn-cta.rb-btn-popular:hover {
    background: var(--primary-blue-600);
}

/* Tab content for explore section */
.rb-tab-content {
    display: none;
}

.rb-tab-content.active {
    display: block;
}

/* =====================================================
   HERO BACKGROUND IMAGE + DASHBOARD
   ===================================================== */
.rb-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.06;
}

.rb-hero-headline-deco {
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 180px;
    height: auto;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .rb-hero-headline-deco { width: 240px; }
}

.rb-hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-hero-dashboard {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 1rem;
    filter: drop-shadow(0 20px 40px rgba(50, 38, 117, 0.25));
    border: 1px solid rgba(50, 38, 117, 0.08);
}

/* =====================================================
   DECORATIVE VECTORS (positioned absolutely)
   ===================================================== */
.rb-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.rb-deco-dashed-1 {
    top: 10%;
    right: -50px;
    width: 385px;
    height: auto;
    opacity: 0.5;
}

.rb-deco-stars-1 {
    bottom: 5%;
    left: 2%;
    width: 120px;
    height: auto;
    opacity: 0.4;
}

.rb-deco-hex-1 {
    top: -40px;
    right: -20px;
    width: 180px;
    height: auto;
    opacity: 0.3;
}

.rb-deco-dashed-2 {
    top: -30px;
    left: -40px;
    width: 300px;
    height: auto;
    opacity: 0.4;
}

.rb-deco-dashed-3 {
    top: 10%;
    right: -30px;
    width: 280px;
    height: auto;
    opacity: 0.4;
}

.rb-deco-hex-2 {
    bottom: -30px;
    left: -20px;
    width: 150px;
    height: auto;
    opacity: 0.25;
}

.rb-deco-stars-2 {
    top: 5%;
    right: 3%;
    width: 120px;
    height: auto;
    opacity: 0.35;
}

.rb-deco-dashed-4 {
    top: -20px;
    right: 5%;
    width: 200px;
    height: auto;
    opacity: 0.35;
}

.rb-deco-fill-1 {
    top: 10%;
    left: -30px;
    width: 100px;
    height: auto;
    opacity: 0.3;
}

/* Hide decorative vectors on small screens */
@media (max-width: 767px) {
    .rb-deco { display: none; }
}

/* Prevent decorative vectors from causing horizontal scroll. */
html, body {
    overflow-x: hidden;
}

/* =====================================================
   CATEGORY LABEL
   ===================================================== */
.rb-category-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

/* =====================================================
   SOLUTIONS TWO-COLUMN (with robot image)
   ===================================================== */
.rb-solutions-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .rb-solutions-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.rb-solution-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.rb-solution-icon {
    flex-shrink: 0;
}

.rb-solution-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
    margin-bottom: 0.5rem;
}

.rb-solution-item p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.625;
    margin: 0;
}

.rb-solutions-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-solutions-robot {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(50, 38, 117, 0.1));
}

/* =====================================================
   INTERACTIVE SHOWCASE
   ===================================================== */
.rb-showcase-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.rb-showcase-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-600);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.rb-showcase-chip:hover,
.rb-showcase-chip.active {
    background: var(--primary-blue-200);
    color: #fff;
    border-color: var(--primary-blue-200);
}

.rb-showcase-image-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px -10px rgba(50, 38, 117, 0.15);
}

.rb-showcase-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   CTA TWO-COLUMN (with person image)
   ===================================================== */
.rb-cta-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .rb-cta-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.rb-cta-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-cta-person {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
}

.rb-cta-text h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.rb-cta-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.625;
}

.rb-cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rb-cta-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.rb-cta-benefits svg {
    flex-shrink: 0;
}

/* =====================================================
   FAQ BACKGROUND
   ===================================================== */
.rb-faq-section {
    overflow: hidden;
}

.rb-faq-bg-img {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 500px;
    height: auto;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1023px) {
    .rb-faq-bg-img { opacity: 0.15; right: -120px; }
}

.rb-faq-section .rb-container {
    position: relative;
    z-index: 1;
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
/* Scroll animations: content visible by default, JS adds .rb-ready then .visible */
.rb-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Only hide when JS has confirmed it will handle the reveal */
.rb-animate.rb-ready {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rb-animate.rb-ready.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .rb-animate.rb-ready {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =====================================================
   RTL SUPPORT (Arabic)
   ===================================================== */
.o_rtl .rebusai-page {
    direction: rtl;
    text-align: right;
}

/* Nav */
.o_rtl .rb-nav-inner {
    flex-direction: row-reverse;
}
.o_rtl .rb-nav-links {
    flex-direction: row-reverse;
}
.o_rtl .rb-nav-cta {
    flex-direction: row-reverse;
}
.o_rtl .rb-lang-chevron {
    margin-left: 0;
    margin-right: 0.1rem;
}
.o_rtl .rb-lang-dropdown {
    left: 0;
    right: auto;
}

/* Hero */
.o_rtl .rb-hero-content { text-align: right; }
.o_rtl .rb-hero-actions { flex-direction: row-reverse; }
.o_rtl .rb-hero-trust { flex-direction: row-reverse; }
.o_rtl .rb-hero-grid {
    direction: rtl;
}

/* Sections */
.o_rtl .rb-section-header { text-align: right; }
.o_rtl .rb-kicker { text-align: right; }

/* Footer */
.o_rtl .rb-footer-grid { direction: rtl; }
.o_rtl .rb-footer-bottom {
    flex-direction: row-reverse;
}
.o_rtl .rb-footer-social {
    flex-direction: row-reverse;
}
.o_rtl .rb-newsletter-form {
    flex-direction: row-reverse;
}

/* Mobile menu */
.o_rtl .rb-mobile-menu {
    text-align: right;
}
.o_rtl .rb-mobile-lang-grid {
    direction: rtl;
}

/* Cards and grids */
.o_rtl .rb-step-card,
.o_rtl .rb-feature-card,
.o_rtl .rb-testimonial-card {
    text-align: right;
}

/* =====================================================
   RESPONSIVE OVERRIDES
   ===================================================== */
@media (max-width: 767px) {
    .rb-hero h1 { font-size: 2rem; }
    .rb-heading { font-size: 1.75rem; }
    .rb-support-hero h1 { font-size: 1.75rem; }
    .rb-footer-grid { grid-template-columns: 1fr; }
    .rb-mobile-lang-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =====================================================
   T141: rebusai.com typography parity
   ===================================================== */
.rebusai-page {
    font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 16px !important;
}

.rebusai-page h1,
.rebusai-page h2,
.rebusai-page h3,
.rebusai-page .rb-display,
.rebusai-page .rb-headline {
    font-family: 'Playfair Display', 'Playfair Display Fallback', Georgia, serif !important;
    color: var(--cosmic-cobalt) !important;
    letter-spacing: -0.01em;
}

.rebusai-page h1 {
    font-size: clamp(48px, 7vw, 96px) !important;
    font-weight: 600 !important;
    line-height: 1.05 !important;
    margin-bottom: 1.25rem;
}

.rebusai-page h2 {
    font-size: clamp(36px, 5vw, 68px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
}

.rebusai-page h3 {
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.rebusai-page p,
.rebusai-page li,
.rebusai-page a,
.rebusai-page button,
.rebusai-page input {
    font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.rebusai-page p {
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* Subdued sub-headline below H1 */
.rebusai-page .rb-hero-sub {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    color: var(--neutral-700);
    font-size: 1.25rem;
    line-height: 1.5;
}


/* =====================================================
   T142: rebusai.com hero parity styles
   ===================================================== */
.rb-hero-v2 {
    padding: 5rem 1.5rem 6rem;
    background: linear-gradient(180deg, #faf8ff 0%, #fef3f8 35%, #fff5e8 65%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rb-hero-v2-inner {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.rb-hero-v2-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(101, 69, 151, 0.15);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--cosmic-cobalt);
    font-weight: 500;
    margin-bottom: 2rem;
}

.rb-hero-v2 h1 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: clamp(48px, 7vw, 96px) !important;
    font-weight: 600 !important;
    line-height: 1.05 !important;
    color: var(--cosmic-cobalt) !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.rb-gradient-text {
    background: linear-gradient(90deg, #322675 0%, #654597 50%, #d2691e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.rb-hero-v2-sub {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem;
    color: var(--neutral-600);
    margin-bottom: 1rem;
    font-weight: 500;
}

.rb-transform-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rb-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rb-pill-website { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.rb-pill-course  { background: #ecfdf5; color: #059669; border-color: #a7f3d0; }
.rb-pill-ebook   { background: #fef3c7; color: #b45309; border-color: #fde68a; }
.rb-pill-videos  { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.rb-pill-emails  { background: #f5f3ff; color: #6d28d9; border-color: #ddd6fe; }
.rb-pill-social  { background: #fdf2f8; color: #9d174d; border-color: #fbcfe8; }

.rb-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(50, 38, 117, 0.12);
}

.rb-pill-arrow {
    color: var(--neutral-400);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 -0.1rem;
}

.rb-hero-v2-tagline {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem;
    color: var(--neutral-500);
    margin: 0 0 2.5rem;
    font-weight: 500;
}

.rb-hero-v2-search {
    display: flex;
    max-width: 560px;
    margin: 0 auto 2rem;
    background: white;
    border: 1.5px solid var(--neutral-200);
    border-radius: 999px;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    box-shadow: 0 8px 32px rgba(50, 38, 117, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rb-hero-v2-search:focus-within {
    border-color: var(--primary-blue-200);
    box-shadow: 0 8px 32px rgba(95, 76, 210, 0.18);
}

.rb-hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.0625rem;
    color: var(--neutral-700);
    background: transparent;
}

.rb-hero-search-input::placeholder {
    color: var(--neutral-400);
}

.rb-hero-search-btn {
    background: var(--cosmic-cobalt);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rb-hero-search-btn:hover {
    background: var(--primary-blue-600);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.rb-use-case-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.rb-use-case {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: 999px;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neutral-700);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.rb-use-case:hover {
    border-color: var(--primary-blue-200);
    color: var(--cosmic-cobalt);
    text-decoration: none;
}

/* === Features section === */
.rb-features-v2 {
    padding: 6rem 1.5rem;
    background: white;
    text-align: center;
}

.rb-features-v2-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.rb-features-v2 h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: clamp(36px, 4.5vw, 60px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: var(--cosmic-cobalt) !important;
    margin-bottom: 1.25rem;
}

.rb-section-sub {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.15rem;
    color: var(--neutral-600);
    max-width: 720px;
    margin: 0 auto 4rem;
    line-height: 1.5;
}

.rb-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.rb-feature-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rb-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(50, 38, 117, 0.10);
    border-color: var(--primary-blue-200);
}

.rb-feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.rb-feature-card h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--cosmic-cobalt) !important;
    margin-bottom: 0.5rem;
}

.rb-feature-card p {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.5;
    margin: 0;
}

/* === Final CTA === */
.rb-cta-v2 {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #322675 0%, #5f4cd2 100%);
    text-align: center;
    color: white;
}

.rb-cta-v2-inner {
    max-width: 720px;
    margin: 0 auto;
}

.rb-cta-v2 h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: clamp(40px, 5vw, 64px) !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 1rem;
}

.rb-cta-v2 p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.rb-cta-v2 .rb-btn-primary {
    background: white !important;
    color: var(--cosmic-cobalt) !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rb-cta-v2 .rb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 720px) {
    .rb-hero-v2 { padding: 3rem 1rem 4rem; }
    .rb-hero-v2-search { flex-direction: column; padding: 0.5rem; gap: 0.5rem; }
    .rb-hero-v2-search input { padding: 0.85rem 1rem; }
    .rb-hero-search-btn { width: 100%; }
    .rb-transform-pills { gap: 0.35rem; }
    .rb-pill { font-size: 0.85rem; padding: 0.4rem 0.9rem; }
    .rb-pill-arrow { display: none; }
}


/* =====================================================
   T143: hero polish - prevent wrap, smaller H1 cap, container width
   ===================================================== */
.rb-hero-v2-inner {
    max-width: 1100px !important;
}

.rb-hero-v2 h1 {
    /* Cap at 84px so "AI builds your business." fits on one line at desktop */
    font-size: clamp(44px, 6vw, 84px) !important;
    line-height: 1.08 !important;
    margin-bottom: 1.25rem;
    white-space: normal;
}

.rb-hero-v2 h1 br {
    /* keep the explicit break point */
    display: block;
}

/* Force the 2nd line not to wrap */
.rb-gradient-text {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .rb-gradient-text {
        white-space: normal;
        font-size: 1em;
    }
}

/* Slightly narrower transformation pills row to match reference */
.rb-transform-pills {
    max-width: 760px;
    margin: 0 auto 1.5rem;
}


/* =====================================================
   T144: how-it-works + creator grid + final CTA + footer
   ===================================================== */
.rb-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === How It Works === */
.rb-how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #faf6ff 50%, #fef0f5 100%);
}

.rb-step-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(50, 38, 117, 0.06);
    border: 1px solid var(--neutral-100);
}

.rb-step-reverse { direction: rtl; }
.rb-step-reverse > * { direction: ltr; }

.rb-step-number {
    display: inline-block;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 5rem;
    font-weight: 600;
    color: rgba(50, 38, 117, 0.12) !important;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rb-step-content h3 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--cosmic-cobalt) !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.rb-step-content p {
    color: var(--neutral-600);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rb-step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cosmic-cobalt);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, background 0.2s;
}

.rb-step-link:hover {
    background: var(--primary-blue-600);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.rb-step-mockup {
    background: linear-gradient(135deg, #f0f0f7 0%, #e8e1f7 100%);
    border-radius: 16px;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.rb-step-mockup-01 { background: linear-gradient(135deg, #fef3f8 0%, #faf6ff 100%); }
.rb-step-mockup-02 { background: linear-gradient(135deg, #faf6ff 0%, #f0f0f7 100%); }
.rb-step-mockup-03 { background: linear-gradient(135deg, #f0f9ff 0%, #faf6ff 100%); }
.rb-step-mockup-04 { background: linear-gradient(135deg, #ecfdf5 0%, #f0f9ff 100%); }

.rb-mockup-prompt {
    background: white;
    margin: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rb-mockup-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neutral-500);
    font-weight: 600;
}

.rb-mockup-text {
    font-size: 1rem;
    color: var(--neutral-700);
    font-weight: 500;
    line-height: 1.4;
}

/* === Creator Grid === */
.rb-creator-grid-section {
    padding: 6rem 0;
    background: white;
}

.rb-creator-grid-section h2 {
    text-align: center;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(36px, 4.5vw, 60px) !important;
    font-weight: 700 !important;
    color: var(--cosmic-cobalt) !important;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.rb-creator-grid-section .rb-section-sub {
    text-align: center;
}

.rb-creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.rb-creator-card {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.rb-creator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(50, 38, 117, 0.10);
    border-color: var(--primary-blue-200);
}

.rb-creator-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rb-icon-website { background: #eff6ff; }
.rb-icon-course { background: #ecfdf5; }
.rb-icon-ebook { background: #fef3c7; }
.rb-icon-newsletter { background: #f5f3ff; }
.rb-icon-business { background: #fdf2f8; }
.rb-icon-webinar { background: #fef2f2; }

.rb-creator-card h3 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--cosmic-cobalt) !important;
    margin-bottom: 0.5rem;
}

.rb-creator-card p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.rb-creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.rb-creator-tags span {
    background: var(--neutral-100);
    color: var(--neutral-700);
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-weight: 500;
}

.rb-creator-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rb-creator-cta {
    color: var(--cosmic-cobalt) !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.rb-creator-cta:hover {
    color: var(--primary-blue-600) !important;
    text-decoration: none;
}

.rb-creator-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rb-badge-live { background: #dcfce7; color: #166534; }
.rb-badge-soon { background: #fef3c7; color: #92400e; }

/* === Final CTA === */
.rb-final-cta {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #322675 0%, #5f4cd2 50%, #654597 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rb-final-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.rb-final-cta h2 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(40px, 5.5vw, 72px) !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.rb-final-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.rb-final-cta-btn {
    display: inline-block;
    background: white;
    color: var(--cosmic-cobalt) !important;
    padding: 1rem 3rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    margin-bottom: 2.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rb-final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: var(--cosmic-cobalt) !important;
    text-decoration: none;
}

.rb-final-cta-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.rb-final-cta-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rb-final-cta-bullets svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* === Footer === */
.rb-site-footer {
    background: white;
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid var(--neutral-200);
}

.rb-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.rb-footer-brand {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.rb-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.rb-footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.rb-footer-logo span {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cosmic-cobalt);
}

.rb-footer-brand p {
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 420px;
}

.rb-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.rb-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--neutral-100);
    color: var(--neutral-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}

.rb-footer-social a:hover {
    background: var(--cosmic-cobalt);
    color: white;
}

.rb-footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.5fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--neutral-200);
}

.rb-footer-col h4,
.rb-footer-newsletter h4 {
    font-family: "Inter", sans-serif !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--neutral-700);
    margin-bottom: 1rem;
}

.rb-footer-col a {
    display: block;
    color: var(--neutral-600);
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.rb-footer-col a:hover {
    color: var(--cosmic-cobalt);
    text-decoration: none;
}

.rb-newsletter-form {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.rb-newsletter-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--neutral-300);
    font-size: 0.9rem;
    font-family: "Inter", sans-serif;
    outline: none;
}

.rb-newsletter-form input:focus {
    border-color: var(--primary-blue-200);
}

.rb-newsletter-form button {
    background: var(--cosmic-cobalt);
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.rb-newsletter-form button:hover {
    background: var(--primary-blue-600);
}

.rb-newsletter-note {
    font-size: 0.8rem;
    color: var(--neutral-500);
    line-height: 1.4;
    margin: 0;
}

.rb-footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--neutral-500);
    font-size: 0.85rem;
}

.rb-footer-bottom a {
    color: var(--neutral-500);
    text-decoration: none;
}

.rb-footer-bottom a:hover {
    color: var(--cosmic-cobalt);
}

@media (max-width: 900px) {
    .rb-step-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .rb-footer-brand {
        grid-template-columns: 1fr;
    }
    .rb-footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === T146/T147 OVERRIDES === */
/* Override OLD .rb-step-card text-align center from line 903 */
.rb-how-it-works .rb-step-card {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 3rem !important;
    align-items: center !important;
    text-align: left !important;
    background: white !important;
    border-radius: 24px !important;
    padding: 3rem !important;
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 24px rgba(50, 38, 117, 0.06) !important;
    border: 1px solid var(--neutral-100) !important;
    position: relative;
    overflow: hidden;
}

.rb-how-it-works .rb-step-card-01,
.rb-how-it-works .rb-step-card-03 {
    grid-template-columns: 1fr 1.2fr !important;
}
.rb-how-it-works .rb-step-card-02,
.rb-how-it-works .rb-step-card-04 {
    grid-template-columns: 1.2fr 1fr !important;
}
.rb-how-it-works .rb-step-card-02 .rb-step-content,
.rb-how-it-works .rb-step-card-04 .rb-step-content {
    order: 2;
}
.rb-how-it-works .rb-step-card-02 .rb-step-mockup,
.rb-how-it-works .rb-step-card-04 .rb-step-mockup {
    order: 1;
}
.rb-how-it-works .rb-step-reverse { direction: ltr; }

/* HUGE faded number watermark behind text */
.rb-how-it-works .rb-step-card .rb-step-number {
    position: absolute !important;
    top: 1.5rem;
    right: 2rem;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 7rem !important;
    font-weight: 600 !important;
    color: rgba(50, 38, 117, 0.07) !important;
    line-height: 1 !important;
    margin: 0 !important;
    letter-spacing: -0.02em;
    pointer-events: none;
    z-index: 0;
}
.rb-how-it-works .rb-step-card-02 .rb-step-number,
.rb-how-it-works .rb-step-card-04 .rb-step-number {
    right: auto;
    left: 2rem;
}
.rb-how-it-works .rb-step-content {
    position: relative;
    z-index: 1;
}
.rb-how-it-works .rb-step-content h3 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.875rem !important;
    font-weight: 600 !important;
    color: var(--cosmic-cobalt, #322675) !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
    text-align: left !important;
    margin-top: 4.5rem;
}
.rb-how-it-works .rb-step-content p {
    color: #555 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
}

/* Mockup placeholders — colorful pastel cards */
.rb-how-it-works .rb-step-mockup {
    border-radius: 16px !important;
    height: 280px !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

/* Card 01: prompt entry */
.rb-mockup-01-frame {
    background: white;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 6px 22px rgba(50,38,117,0.08);
    width: 88%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.rb-mockup-01-frame .rb-mockup-label { font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; color:#998fb8; font-weight:700; }
.rb-mockup-01-frame .rb-mockup-text { color:#1f1644; font-weight:500; line-height:1.4; font-size:.95rem; }
.rb-mockup-01-frame .rb-mockup-cursor { display:inline-block; width:2px; height:1.1em; background:#322675; margin-left:2px; vertical-align:middle; animation: rbBlink 1s step-end infinite; }
@keyframes rbBlink { 50% { opacity:0; } }

/* Card 02: AI generating - icon grid */
.rb-mockup-02-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    width: 90%;
}
.rb-mockup-02-tile {
    background: white;
    border-radius: 12px;
    padding: 1rem .5rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(50,38,117,0.06);
    font-size: .7rem;
    color: #44366c;
    font-weight: 600;
}
.rb-mockup-02-tile .rb-mockup-emoji { font-size: 1.5rem; display:block; margin-bottom:.25rem; }
.rb-mockup-02-tile.active { background: linear-gradient(135deg,#7e57c2 0%,#5e35b1 100%); color:white; }

/* Card 03: dashboard table */
.rb-mockup-03-dash {
    background: white;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 6px 22px rgba(50,38,117,0.08);
    width: 92%;
    font-size: .75rem;
}
.rb-mockup-03-dash .rb-dash-head { display:flex; justify-content:space-between; padding-bottom:.5rem; border-bottom:1px solid #eee; margin-bottom:.5rem; font-weight:700; color:#322675; }
.rb-mockup-03-dash .rb-dash-row { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:.5rem; padding:.4rem 0; border-bottom:1px solid #f5f3fa; align-items:center; }
.rb-mockup-03-dash .rb-dash-row:last-child { border-bottom:none; }
.rb-mockup-03-dash .rb-dash-status { font-size:.65rem; padding:2px 8px; border-radius:999px; display:inline-block; font-weight:600; }
.rb-mockup-03-dash .rb-dash-status.ok { background:#e8f5e9; color:#2e7d32; }
.rb-mockup-03-dash .rb-dash-status.pending { background:#fff8e1; color:#a86b00; }

/* Card 04: hosting / domain */
.rb-mockup-04-launch {
    background: white;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 6px 22px rgba(50,38,117,0.08);
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.rb-mockup-04-url {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .9rem;
    background: #f7f4ff;
    border: 1px solid #e2d9f8;
    border-radius: 10px;
    color: #322675;
    font-family: 'JetBrains Mono', monospace;
    font-size: .8rem;
}
.rb-mockup-04-url .rb-mockup-dot { width:8px; height:8px; border-radius:50%; background:#34c759; }
.rb-mockup-04-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:.5rem; }
.rb-mockup-04-stat { background:linear-gradient(135deg,#fef3f8 0%,#faf6ff 100%); border-radius:10px; padding:.65rem .5rem; text-align:center; }
.rb-mockup-04-stat .v { font-family:"Playfair Display",serif; font-weight:600; font-size:1.15rem; color:#322675; }
.rb-mockup-04-stat .l { font-size:.6rem; text-transform:uppercase; letter-spacing:.05em; color:#998fb8; font-weight:600; margin-top:2px; }

/* T147: Final CTA softer background */
.rb-final-cta {
    background: linear-gradient(135deg, #faf6ff 0%, #fef0f5 100%) !important;
    padding: 5rem 1.5rem !important;
}
.rb-final-cta-inner {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, #322675 0%, #6b4ce4 100%) !important;
    border-radius: 28px !important;
    padding: 4rem 2.5rem !important;
    text-align: center;
    color: white;
    box-shadow: 0 18px 60px rgba(50,38,117,0.18);
}
.rb-final-cta-inner h2 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(36px, 4.5vw, 56px) !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 1rem !important;
    line-height: 1.15 !important;
}
.rb-final-cta-inner p {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem !important;
    margin-bottom: 2rem !important;
}
.rb-final-cta-inner .rb-final-cta-btn {
    display: inline-block;
    background: white !important;
    color: var(--cosmic-cobalt, #322675) !important;
    padding: 1rem 2.25rem !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: transform .15s, box-shadow .15s;
}
.rb-final-cta-inner .rb-final-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}

/* T145: Launching this week badge */
.rb-launch-badge {
    display: inline-flex;
    align-items: center;
    background: #1a103d;
    color: white;
    font-size: .8rem;
    font-weight: 600;
    padding: .45rem .85rem;
    border-radius: 999px;
    margin-left: .5rem;
    white-space: nowrap;
}
.rb-launch-badge::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #34c759;
    margin-right: .5rem;
    box-shadow: 0 0 0 0 rgba(52,199,89,.6);
    animation: rbPulse 2s infinite;
}
@keyframes rbPulse {
    0% { box-shadow: 0 0 0 0 rgba(52,199,89,.5); }
    70% { box-shadow: 0 0 0 6px rgba(52,199,89,0); }
    100% { box-shadow: 0 0 0 0 rgba(52,199,89,0); }
}

/* Mobile collapse */
@media (max-width: 900px) {
    .rb-how-it-works .rb-step-card,
    .rb-how-it-works .rb-step-card-01,
    .rb-how-it-works .rb-step-card-02,
    .rb-how-it-works .rb-step-card-03,
    .rb-how-it-works .rb-step-card-04 {
        grid-template-columns: 1fr !important;
        padding: 2rem 1.5rem !important;
    }
    .rb-how-it-works .rb-step-content h3 { margin-top: 3rem; font-size: 1.4rem !important; }
    .rb-how-it-works .rb-step-card-02 .rb-step-content,
    .rb-how-it-works .rb-step-card-04 .rb-step-content { order: 1; }
    .rb-how-it-works .rb-step-card-02 .rb-step-mockup,
    .rb-how-it-works .rb-step-card-04 .rb-step-mockup { order: 2; }
    .rb-launch-badge { display: none; }
}
/* === T146/T147 END === */
