/*
 * OnDemand Landing Pages - Split Layout Conversion Asset
 * Premium Visual Design - Steve Jobs Approved
 */

:root {
    --fc-purple: #667eea;
    --fc-purple-deep: #764ba2;
    --fc-purple-soft: #a78bfa;
    --fc-bg: #0f0f1a;
    --fc-text-primary: #ffffff;
    --fc-text-secondary: rgba(255, 255, 255, 0.85);
    --fc-text-muted: rgba(255, 255, 255, 0.6);
    --fc-radius: 24px;
    --fc-radius-sm: 14px;
    --fc-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.fabcrush-ondemand-landing {
    background: var(--fc-bg);
    color: var(--fc-text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    position: relative;
    /* Prevent any horizontal scroll on the page */
    overflow-x: hidden;
    min-height: 100vh;
}

/* Prevent horizontal scrolling on body and html */
html.fabcrush-ondemand-html,
body.fabcrush-ondemand-landing {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
    /* Reduce iOS “side swipe”/rubber-band feel */
    overscroll-behavior-x: none;
}

.fabcrush-ondemand-landing #qodef-page-wrapper,
.fabcrush-ondemand-landing #qodef-page-outer,
.fabcrush-ondemand-landing #qodef-page-inner,
.fabcrush-ondemand-landing .fabcrush-ondemand {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
}

/* Remove default theme padding that creates empty space */
.fabcrush-ondemand-landing #qodef-page-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Ensure no child can accidentally expand the layout - optimized selector */
.fabcrush-ondemand-landing .fabcrush-ondemand__container,
.fabcrush-ondemand-landing .fabcrush-ondemand__card,
.fabcrush-ondemand-landing .fabcrush-ondemand__split-col,
.fabcrush-ondemand-landing .fabcrush-ondemand__review-wrapper,
.fabcrush-ondemand-landing iframe {
    box-sizing: border-box;
}

/* =========================================
   Theme Integration - Header & Footer
   ========================================= */
/* Show header but hide navigation items, keep only logo */
.fabcrush-ondemand-landing #qodef-page-header {
    display: flex !important;
    background: #ffffff !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    padding: 10px 0 !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    overflow-x: hidden !important;
    min-height: 64px; /* Ensure consistent height for vertical centering */
    align-items: center !important;
}

.fabcrush-ondemand-landing #qodef-page-header-inner {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    height: 100% !important;
}

.fabcrush-ondemand-landing #qodef-page-header .qodef-header-logo-link {
    margin: 0 !important;
    height: 100% !important;
    padding: 0 !important;
    max-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.fabcrush-ondemand-landing #qodef-page-header .qodef-header-logo-link img {
    max-height: 44px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 800px) {
    .fabcrush-ondemand-landing #qodef-page-header {
        padding: 8px 0 !important;
        min-height: 53px; /* Ensure consistent height for vertical centering on mobile */
    }

    .fabcrush-ondemand-landing #qodef-page-header-inner {
        padding: 0 12px !important;
        height: 100% !important;
    }

    .fabcrush-ondemand-landing #qodef-page-header .qodef-header-logo-link {
        height: 100% !important;
    }

    .fabcrush-ondemand-landing #qodef-page-header .qodef-header-logo-link,
    .fabcrush-ondemand-landing #qodef-page-header .qodef-header-logo-link img {
        max-height: 37px !important;
    }
}

.fabcrush-ondemand-landing #qodef-page-header .qodef-header-navigation,
.fabcrush-ondemand-landing #qodef-page-header nav,
.fabcrush-ondemand-landing #qodef-page-header .qodef-menu-area,
.fabcrush-ondemand-landing #qodef-page-header .qodef-widget-holder,
.fabcrush-ondemand-landing #qodef-page-header .qodef-header-navigation-wrapper {
    display: none !important;
}

/* Hide mobile header completely */
.fabcrush-ondemand-landing #qodef-page-mobile-header {
    display: none !important;
}

.fabcrush-ondemand-landing #qodef-page-footer {
    display: none !important;
}

/* =========================================
   Premium Background - Mesh Gradient Canvas
   ========================================= */
.fabcrush-ondemand-landing::before {
    content: '';
    /* Performance: keep gradients fixed to viewport (avoid repainting a page-tall layer) */
    position: fixed;
    inset: 0;
    background: 
        /* Primary purple orb - top right */
        radial-gradient(ellipse 80% 60% at 85% 15%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        /* Deep purple accent - bottom left */
        radial-gradient(ellipse 70% 80% at 10% 90%, rgba(118, 75, 162, 0.35) 0%, transparent 45%),
        /* Soft glow center */
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 60%),
        /* Top accent streak */
        radial-gradient(ellipse 50% 30% at 30% 5%, rgba(102, 126, 234, 0.25) 0%, transparent 50%),
        /* Ambient purple haze */
        linear-gradient(180deg, rgba(102, 126, 234, 0.08) 0%, transparent 40%, rgba(118, 75, 162, 0.06) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Animated floating orbs */
.fabcrush-ondemand-landing::after {
    content: '';
    /* Performance: fixed to viewport */
    position: fixed;
    inset: 0;
    background:
        /* Floating orb 1 */
        radial-gradient(circle 200px at 20% 30%, rgba(102, 126, 234, 0.12) 0%, transparent 70%),
        /* Floating orb 2 */
        radial-gradient(circle 150px at 80% 70%, rgba(167, 139, 250, 0.1) 0%, transparent 70%),
        /* Floating orb 3 */
        radial-gradient(circle 180px at 60% 20%, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: floatOrbs 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes floatOrbs {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -15px) scale(1.05);
    }
    100% {
        transform: translate(-10px, 10px) scale(0.98);
    }
}

/* Mobile performance: reduce expensive effects to keep scrolling smooth */
@media (max-width: 800px) {
    /* Animated full-screen gradients can cause scroll jank on iOS */
    .fabcrush-ondemand-landing::after {
        animation: none !important;
        transform: none !important;
    }

    /* Big blur filters are very expensive while scrolling */
    .fabcrush-ondemand__split-col--form::before {
        filter: none !important;
        opacity: 0.6;
    }

    /* Disable backdrop blur on mobile (major scroll performance win) */
    .fabcrush-ondemand__card,
    .fabcrush-ondemand__comparison-item,
    .fabcrush-ondemand__benefit,
    .fabcrush-ondemand__reviews-embed {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
}

/* Desktop performance: keep scroll smooth near heavy embeds */
@media (min-width: 801px) {
    /* The animated full-screen layer can still cause jank on some machines/browsers */
    .fabcrush-ondemand-landing::after {
        animation: none !important;
        transform: none !important;
    }

    /* Reduce expensive blur filters */
    .fabcrush-ondemand__split-col--form::before {
        filter: none !important;
        opacity: 0.6;
    }

    /* Backdrop blur is expensive and subtle (cards are already near-opaque) */
    .fabcrush-ondemand__card,
    .fabcrush-ondemand__comparison-item,
    .fabcrush-ondemand__benefit,
    .fabcrush-ondemand__reviews-embed {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
}

/* Subtle grid pattern overlay */
.fabcrush-ondemand__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

/* Ensure content stays above background */
.fabcrush-ondemand__container,
.fabcrush-ondemand__hero,
.fabcrush-ondemand__split {
    position: relative;
    z-index: 1;
}

.fabcrush-ondemand__container {
    width: min(1100px, 94%);
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    /* Allow collage shadows to be visible */
    overflow: visible;
}

/* Wider container variant (used for the Reviews section) */
.fabcrush-ondemand__container--wide {
    width: min(1500px, 94%);
}

/* =========================================
   Header & Headline
   ========================================= */
.fabcrush-ondemand__hero {
    /* Lift content up (header will occupy the top band) */
    padding: 18px 0 60px;
    /* Allow collage shadows to be visible */
    overflow: visible;
}

/* When hero contains the collage, remove top padding completely */
.fabcrush-ondemand__hero:has(.fabcrush-hero-collage) {
    padding-top: 0;
}

.fabcrush-ondemand__header {
    text-align: center;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding-top: 40px;
}

.fabcrush-ondemand__headline {
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 50%, var(--fc-purple-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   Split Layout
   ========================================= */
.fabcrush-ondemand__split {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.fabcrush-ondemand__split-col--form {
    flex: 1.1;
    min-width: 0; /* Allow flex item to shrink below content size */
    max-width: 100%;
    overflow: hidden;
}

.fabcrush-ondemand__split-col--info {
    flex: 1;
    min-width: 0; /* Allow flex item to shrink below content size */
    max-width: 100%;
    overflow: hidden;
}

/* =========================================
   The Form Card & Inputs
   ========================================= */
.fabcrush-ondemand__card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--fc-radius);
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

/* Subtle inner glow on card */
.fabcrush-ondemand__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.fabcrush-ondemand__field-group {
    margin-bottom: 24px;
}

.fabcrush-ondemand__label {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    opacity: 0.9;
}

.fabcrush-ondemand__card select,
.fabcrush-ondemand__card input[type="text"],
.fabcrush-ondemand__card input[type="email"],
.fabcrush-ondemand__card input[type="password"],
.fabcrush-ondemand__card input[type="tel"],
.fabcrush-ondemand__card textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border-radius: 16px !important;
    border: 1.5px solid #efeff4 !important;
    font-size: 16px !important;
    background: #fbfbfd !important;
    color: #1d1d1f !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    box-shadow: none !important;
}

.fabcrush-ondemand__card select:focus,
.fabcrush-ondemand__card input:focus,
.fabcrush-ondemand__card textarea:focus {
    outline: none !important;
    border-color: var(--fc-purple) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

/* Custom File Input Styling */
.fabcrush-ondemand__card input[type="file"] {
    width: 100%;
    padding: 14px 18px;
    background: #fbfbfd;
    border: 1.5px solid #efeff4;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
    color: #1d1d1f; /* Match other inputs */
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fabcrush-ondemand__card input[type="file"]:focus {
    outline: none !important;
    border-color: var(--fc-purple) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

.fabcrush-ondemand__card input[type="file"]::file-selector-button {
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 16px;
    margin-right: 12px;
    font-weight: 700;
    cursor: pointer;
}

.fabcrush-ondemand__card input[type="file"]::file-selector-button:hover {
    filter: brightness(1.05);
}

.fabcrush-ondemand__hint {
    font-size: 12px;
    color: #86868b; /* Stay dark for white card context */
    margin-top: 6px;
}

.fabcrush-ondemand__nav {
    margin-top: 32px;
}

/* =========================================
   Step Gate (Account Creation)
   ========================================= */
.fabcrush-ondemand__submit-box {
    margin-top: 28px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 1px solid rgba(118, 75, 162, 0.2);
}

.fabcrush-ondemand__steps-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fabcrush-ondemand__steps-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3b2b5a;
}

.fabcrush-ondemand__step-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fabcrush-ondemand__step-row .fabcrush-ondemand__step-num {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 12px;
    margin-top: 4px;
}

.fabcrush-ondemand__step-body {
    flex: 1;
}

.fabcrush-ondemand__field-note {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #d93b32;
    display: none;
}

.fabcrush-ondemand__field-note.is-visible {
    display: block;
}

.fabcrush-ondemand__step-input.is-valid {
    border-color: #2ecc71 !important;
    background: #f3fff7 !important;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15) !important;
}

.fabcrush-ondemand__step-input.is-invalid {
    border-color: #ff3b30 !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.12) !important;
}

.fabcrush-ondemand__submit-box .fabcrush-ondemand__nav {
    margin-top: 20px;
}

/* =========================================
   Surgical Button Fix (Steve Jobs Level)
   ========================================= */
.fabcrush-ondemand-landing .fabcrush-ondemand__btn {
    /* Critical Overrides for Theme Leakage */
    appearance: none !important;
    -webkit-appearance: none !important;
    border: none !important;
    outline: none !important;
    text-transform: none !important; /* NO MORE ALL-CAPS */
    text-decoration: none !important;
    font-family: "Jost", -apple-system, BlinkMacSystemFont, sans-serif !important;
    
    /* Box Model */
    width: 100% !important;
    height: auto !important;
    min-height: 60px !important;
    padding: 18px 32px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Branding & Aesthetics */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border-radius: 100px !important; /* Pill shape for premium feel */
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: -0.01em !important;
    
    /* Interactivity */
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.35) !important;
    
    /* Layering */
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.fabcrush-ondemand__btn-text {
    position: relative !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

/* Remove any theme pseudo-elements that might interfere */
.fabcrush-ondemand-landing .fabcrush-ondemand__btn::before,
.fabcrush-ondemand-landing .fabcrush-ondemand__btn::after {
    display: none !important;
}

/* Premium shine effect using separate element */
.fabcrush-ondemand-landing .fabcrush-ondemand__btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    pointer-events: none;
    z-index: 2;
}

.fabcrush-ondemand-landing .fabcrush-ondemand__btn:hover .fabcrush-ondemand__btn-shine {
    left: 100%;
}

.fabcrush-ondemand-landing .fabcrush-ondemand__btn:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.45) !important;
    filter: brightness(1.05) !important;
}

.fabcrush-ondemand-landing .fabcrush-ondemand__btn:active {
    transform: translateY(-1px) scale(0.98) !important;
}

.fabcrush-ondemand-landing .fabcrush-ondemand__btn:disabled {
    background: #d1d1d6 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    transform: none !important;
    opacity: 0.7 !important;
}

/* =========================================
   Info Column & Gallery
   ========================================= */
.fabcrush-ondemand__info-box {
    padding: 0 16px;
}

.fabcrush-ondemand__info-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.fabcrush-ondemand__step-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.fabcrush-ondemand__step-num {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--fc-purple) 0%, var(--fc-purple-deep) 100%);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.fabcrush-ondemand__step-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.fabcrush-ondemand__gallery {
    margin-top: 32px;
}

.fabcrush-ondemand__gallery-title {
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.fabcrush-ondemand__gallery-title--centered {
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fabcrush-ondemand__gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
    align-items: stretch; /* Ensure row heights match */
}

.fabcrush-ondemand__gallery-grid--flow {
    padding: 0;
}

.fabcrush-ondemand__arrow {
    position: absolute;
    z-index: 10;
    font-size: 16px;
    color: #ffffff;
    font-weight: 900;
    pointer-events: none;
    background: linear-gradient(135deg, var(--fc-purple) 0%, var(--fc-purple-deep) 100%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 
        0 4px 12px rgba(102, 126, 234, 0.4),
        0 0 20px rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Horizontal arrow between col 1 and 2 (Top Row) */
.fabcrush-ondemand__arrow--1-2 {
    top: calc(25% - 14px);
    left: 50%;
    transform: translateX(-50%);
}

/* Straight 45-degree arrow in the middle (Crossing Row 1 to Row 2) */
.fabcrush-ondemand__arrow--2-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

/* Horizontal arrow between col 1 and 2 (Bottom Row) */
.fabcrush-ondemand__arrow--3-4 {
    top: calc(75% - 14px);
    left: 50%;
    transform: translateX(-50%);
}

.fabcrush-ondemand__gallery-item-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fabcrush-ondemand__gallery-item {
    aspect-ratio: 1 / 1;
    width: 100% !important;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    box-sizing: border-box !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fabcrush-ondemand__gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 16px 48px rgba(102, 126, 234, 0.2),
        0 0 0 1px rgba(102, 126, 234, 0.2);
}

/* Card 2 (Text Only) - Make it fill the total height of neighbors including their caption box space */
.fabcrush-ondemand__gallery-item--text-only {
    flex: 1; /* Grow to fill vertical space */
    aspect-ratio: auto !important; /* Allow variable height */
    background: #ffffff !important; /* Absolute pure white, no gradient grey */
    padding: 30px 20px !important; /* Extra white space internally */
}

.fabcrush-ondemand__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.fabcrush-ondemand__gallery-caption-box {
    background: #ffffff !important; /* Absolute pure white */
    padding: 32px 12px 20px !important; /* Significantly more top space to move text down */
    border-radius: 0 0 16px 16px;
    border: none !important;
    margin-top: -12px !important; /* Less overlap so text naturally sits lower */
    position: relative;
    z-index: 1;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px; /* More vertical space */
}

.fabcrush-ondemand__gallery-caption {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #48484a !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.fabcrush-ondemand__gallery-text-content {
    text-align: center;
    width: 100%;
}

.fabcrush-ondemand__gallery-text-content strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fc-purple);
    margin-bottom: 4px;
}

.fabcrush-ondemand__gallery-text-content p {
    font-size: 14px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.3;
    margin: 0;
}

.fabcrush-ondemand__error {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 59, 48, 0.15);
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 59, 48, 0.3);
    box-shadow: 0 4px 16px rgba(255, 59, 48, 0.2);
}

/* =========================================
   Signup State
   ========================================= */
.fabcrush-ondemand__signup-title {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #000000;
    font-weight: 700;
}

.fabcrush-ondemand__signup-sub {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 24px;
}

/* =========================================
   Premium Decorative Elements
   ========================================= */

/* Glowing accent ring - top area */
.fabcrush-ondemand__hero::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle, transparent 30%, rgba(102, 126, 234, 0.1) 31%, rgba(102, 126, 234, 0.1) 32%, transparent 33%),
        radial-gradient(circle, transparent 50%, rgba(118, 75, 162, 0.08) 51%, rgba(118, 75, 162, 0.08) 52%, transparent 53%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulseRing 8s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* OnDemand Success Notification Popup Styles */
.ondemand-success-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6) !important;
    display: none !important; /* Hidden by default, will be shown via JS */
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin: 0 !important;
    padding: 0 !important;
}

.ondemand-success-overlay.show {
    display: flex !important;
    animation: ondemand-overlay-fade-in 0.3s ease-out;
}

.ondemand-success-popup {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    animation: ondemand-popup-slide-in 0.4s ease-out 0.1s both;
    position: relative;
}

.ondemand-verification-logout {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ondemand-verification-logout:hover {
    color: #1f2937;
    background: #e2e8f0;
    transform: translateY(-1px);
}

.ondemand-success-icon {
    margin-bottom: 20px;
    animation: ondemand-success-bounce 0.6s ease-out 0.3s both;
}

.ondemand-success-icon i {
    font-size: 60px;
    color: #4CAF50;
}

.ondemand-success-title {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.4;
    animation: ondemand-text-fade-in 0.5s ease-out 0.4s both;
}

.ondemand-success-subtitle {
    color: #566579;
    font-size: 15px;
    line-height: 1.6;
    margin: -18px 0 26px 0;
}

.ondemand-success-note {
    margin-top: 14px;
    color: #c0392b;
    font-size: 13px;
}

.ondemand-verification-email {
    font-weight: 700;
    color: #2c3e50;
}

.ondemand-success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: ondemand-actions-fade-in 0.5s ease-out 0.6s both;
}

.ondemand-success-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ondemand-success-button i {
    font-size: 18px;
}

.ondemand-success-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.ondemand-success-button:hover::before {
    left: 100%;
}

.ondemand-browse-marketplace {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ondemand-resend-verification {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: 0;
    cursor: pointer;
}

.ondemand-browse-marketplace:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Style the "Create Design" button to match Add to Cart button with four-color gradient */
.ondemand-create-design {
    background: linear-gradient(135deg, #2b6bc7 0%, #cf3a74 50%, #e53143 75%, #ff6b35 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(43, 107, 199, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ondemand-create-design:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(43, 107, 199, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.ondemand-create-design:active {
    transform: translateY(-1px) !important;
}

.ondemand-create-design i {
    color: white !important;
}

/* Animations */
@keyframes ondemand-overlay-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ondemand-popup-slide-in {
    from { 
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ondemand-success-bounce {
    0% { 
        opacity: 0;
        transform: scale(0.3);
    }
    50% { 
        transform: scale(1.1);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ondemand-text-fade-in {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ondemand-actions-fade-in {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .ondemand-success-popup {
        padding: 30px 20px;
        max-width: 350px;
    }
    
    .ondemand-success-title {
        font-size: 20px;
    }
}

/* Subtle noise texture overlay for premium feel */
.fabcrush-ondemand-landing > * {
    position: relative;
    z-index: 1;
}

/* Glow behind form card */
.fabcrush-ondemand__split-col--form::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

.fabcrush-ondemand__split-col--form {
    position: relative;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 800px) {
    .fabcrush-ondemand__split {
        flex-direction: column;
        gap: 24px;
    }
    
    .fabcrush-ondemand__split-col--form,
    .fabcrush-ondemand__split-col--info {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .fabcrush-ondemand__card {
        padding: 24px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .fabcrush-ondemand__split-col {
        width: 100%;
    }
    
    .fabcrush-ondemand__hero {
        padding: 14px 0 32px;
    }
    
    .fabcrush-ondemand__header {
        margin-bottom: 20px;
        padding-top: 24px;
    }
    
    .fabcrush-ondemand__card {
        padding: 24px 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .fabcrush-ondemand__info-box {
        padding: 0;
    }
    
    .fabcrush-ondemand__container {
        padding: 0 16px;
    }
    
    /* Reorder columns on mobile - features/examples before form (all landing pages) */
    .fabcrush-ondemand__split-col--info {
        order: 1;
    }
    
    .fabcrush-ondemand__split-col--form {
        order: 2;
    }
}

/* =========================================
   Free Credits landing: Signup card & sections (match existing card/headline style)
   ========================================= */
.fabcrush-ondemand__card--signup .fabcrush-ondemand__card-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #1d1d1f;
    text-align: center;
}

.fabcrush-ondemand__card--signup .fabcrush-ondemand__card-desc {
    font-size: 15px;
    color: #48484a;
    margin: 0 0 24px;
    line-height: 1.5;
    text-align: center;
}

.fabcrush-ondemand__section {
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

.fabcrush-ondemand__section--reviews {
    padding: 64px 0;
}

/* Section titles: same gradient headline style as hero */
.fabcrush-ondemand__section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    text-align: center;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, var(--fc-purple-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Comparison: white cards like the form card (dark text on white) */
.fabcrush-ondemand__comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.fabcrush-ondemand__comparison-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--fc-radius);
    padding: 28px 24px;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fabcrush-ondemand__comparison-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fabcrush-ondemand__comparison-item--alt h4 {
    color: #48484a;
}

.fabcrush-ondemand__comparison-item ul {
    margin: 0;
    padding-left: 20px;
    color: #48484a;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

/* Benefits: white cards, dark text (match form card) */
.fabcrush-ondemand__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.fabcrush-ondemand__benefit {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--fc-radius);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fabcrush-ondemand__benefit-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fc-purple) 0%, var(--fc-purple-deep) 100%);
    border-radius: 12px;
    margin-bottom: 14px;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.fabcrush-ondemand__benefit h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fabcrush-ondemand__benefit p {
    font-size: 14px;
    margin: 0;
    color: #48484a;
    line-height: 1.5;
    font-weight: 500;
}

/* Reviews: white card + dark text */
.fabcrush-ondemand__reviews-embed {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--fc-radius);
    padding: 32px 28px;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fabcrush-ondemand__reviews-inline {
    margin-top: 26px;
}

.fabcrush-ondemand__split-col--info .fabcrush-ondemand__reviews-embed {
    max-width: 100%;
}

.fabcrush-ondemand__split-col--info .fabcrush-ondemand__reviews-iframe-wrap iframe {
    width: 100%;
    max-width: 360px;
}

.fabcrush-ondemand__reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
}

/* Full-width reviews grid for separate section */
.fabcrush-ondemand__reviews-grid--full-width {
    margin: 32px auto 0;
    gap: 24px;
    /* Facebook embeds are only guaranteed to look good >= 350px wide */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: start;
}

/* Reviews card wrapper (used for Facebook Embedded Posts) */
.fabcrush-ondemand__review-wrapper {
    width: 100%;
    border-radius: 16px;
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    overflow: hidden;
    min-height: 180px;
}

/* Desktop: prevent embedded Facebook iframes from "stealing" wheel/trackpad scroll */
@media (min-width: 801px) {
    .fabcrush-ondemand__review-wrapper iframe {
        pointer-events: none;
    }
}

/* Facebook Embedded Post: keep it centered and within the card */
.fabcrush-ondemand__review-wrapper .fb-post {
    display: flex;
    justify-content: center;
}

.fabcrush-ondemand__review-wrapper .fb-post > span {
    max-width: 100%;
}

.fabcrush-ondemand__review-wrapper .fb-post iframe {
    max-width: 100% !important;
}

@media (max-width: 800px) {
    .fabcrush-ondemand__container--wide {
        width: 100%;
        padding: 0 12px;
    }

    .fabcrush-ondemand__reviews-grid--full-width {
        gap: 16px;
    }

    .fabcrush-ondemand__review-wrapper {
        padding: 8px;
        min-height: 160px;
    }
}

.fabcrush-ondemand__reviews-cta {
    font-size: 15px;
    color: #48484a;
    margin: 0 0 16px;
    line-height: 1.5;
    font-weight: 500;
}

.fabcrush-ondemand__reviews-cta a {
    color: var(--fc-purple);
    font-weight: 700;
    text-decoration: none;
}

.fabcrush-ondemand__reviews-cta a:hover {
    text-decoration: underline;
}

.fabcrush-ondemand__reviews-iframe-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.fabcrush-ondemand__reviews-iframe-wrap iframe {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Social proof: same white card / gallery-item style as existing gallery */
.fabcrush-ondemand__social-proof-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 20px;
}

.fabcrush-ondemand__social-proof-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #fff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fabcrush-ondemand__social-proof-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(102, 126, 234, 0.2),
        0 0 0 1px rgba(102, 126, 234, 0.2);
}

.fabcrush-ondemand__social-proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fabcrush-ondemand__social-proof-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
}

/* Top-left logo header (all landing pages) */
.fabcrush-ondemand__topbar {
    width: min(1100px, 94%);
    margin: 12px auto 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.fabcrush-ondemand__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
}

.fabcrush-ondemand__logo-img {
    height: 36px;
    width: auto;
    display: block;
}

/* Inline Yeti registration form (Free Credits) */
.fabcrush-ondemand__auth-tabs {
    display: flex;
    gap: 10px;
    padding: 6px;
    background: #f5f5f7;
    border-radius: 999px;
    margin: 0 auto 20px;
    align-items: center;
    width: fit-content;
}

.fabcrush-ondemand__auth-tab {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    color: #1d1d1f;
    background: transparent;
}

.fabcrush-ondemand__auth-tab.is-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.fabcrush-ondemand__auth-tab.is-hidden {
    display: none;
}

.fabcrush-ondemand__auth-holder {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.fabcrush-ondemand__auth-holder .fabcrush-ondemand__auth-loading {
    font-size: 14px;
    color: #48484a;
    text-align: center;
    padding: 12px 0 4px;
}

/* Make the modal look like a normal inline form */
#fabcrush-free-credits-auth #qodef-membership-login-modal {
    position: static;
    display: block;
    background: transparent;
    box-shadow: none;
    border: none;
    width: 100%;
    max-width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    box-sizing: border-box;
    overflow: hidden;
}

#fabcrush-free-credits-auth .qodef-membership-login-modal-overlay,
#fabcrush-free-credits-auth .fabcrush-modal-close {
    display: none !important;
}

#fabcrush-free-credits-auth .qodef-membership-login-modal-content {
    padding: 0;
    background: transparent;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

#fabcrush-free-credits-auth .qodef-membership-login-modal-navigation {
    display: none !important;
}

#fabcrush-free-credits-auth #qodef-membership-login-modal-part,
#fabcrush-free-credits-auth #qodef-membership-reset-password-modal-part {
    display: none !important;
}

#fabcrush-free-credits-auth #qodef-membership-register-modal-part {
    display: block !important;
}

/* Icons for Free Credits list */
.fabcrush-ondemand__steps--icons .fabcrush-ondemand__step-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--fc-purple) 0%, var(--fc-purple-deep) 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

/* Artistic grid for homepage designs */
.fabcrush-ondemand__art-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.fabcrush-ondemand__art-item {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 10px 32px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fabcrush-ondemand__art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fabcrush-ondemand__art-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 48px rgba(102, 126, 234, 0.2),
        0 0 0 1px rgba(102, 126, 234, 0.2);
}

/* Artistic spread with consistent spacing */
.fabcrush-ondemand__art-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.fabcrush-ondemand__art-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.fabcrush-ondemand__art-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.fabcrush-ondemand__art-item:nth-child(4) { grid-column: span 1; grid-row: span 2; }
.fabcrush-ondemand__art-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.fabcrush-ondemand__art-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
.fabcrush-ondemand__art-item:nth-child(7) { grid-column: span 2; grid-row: span 1; }
.fabcrush-ondemand__art-item:nth-child(8) { grid-column: span 1; grid-row: span 2; }
.fabcrush-ondemand__art-item:nth-child(9) { grid-column: span 2; grid-row: span 1; }
.fabcrush-ondemand__art-item:nth-child(10) { grid-column: span 1; grid-row: span 1; }
.fabcrush-ondemand__art-item:nth-child(11) { grid-column: span 2; grid-row: span 1; }
.fabcrush-ondemand__art-item:nth-child(12) { grid-column: span 1; grid-row: span 1; }

@media (max-width: 800px) {
    .fabcrush-ondemand__comparison {
        grid-template-columns: 1fr;
    }
    .fabcrush-ondemand__social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fabcrush-ondemand__social-proof-item:nth-child(5) {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }
    .fabcrush-ondemand__art-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .fabcrush-ondemand__art-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* =========================================
   Hero Collage - Artistic Image Showcase
   (Inside hero container for seamless background)
   ========================================= */
.fabcrush-hero-collage {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 48px;
    margin-top: 0;
    /* Allow shadows to be visible */
    overflow: visible;
}

.fabcrush-hero-collage__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.8vw, 20px);
    padding: 25px 0 4px;
    max-width: 100%;
    /* Contain the images but allow shadow overflow */
    overflow: visible;
}

.fabcrush-hero-collage__item {
    position: relative;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.fabcrush-hero-collage__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fabcrush-hero-collage__item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 16px 40px rgba(102, 126, 234, 0.25),
        0 0 0 2px rgba(102, 126, 234, 0.2);
    z-index: 10;
}

.fabcrush-hero-collage__item:hover img {
    transform: scale(1.05);
}

/* Artistic sizing - varied dimensions for visual interest */
/* Desktop: 6 images in a row with dynamic sizes */
.fabcrush-hero-collage__item--1 {
    width: clamp(105px, 14vw, 180px);
    height: clamp(130px, 16vw, 215px);
    transform: rotate(-2.5deg) translateY(6px);
}

.fabcrush-hero-collage__item--2 {
    width: clamp(95px, 12vw, 155px);
    height: clamp(95px, 12vw, 155px);
    transform: rotate(1.5deg) translateY(-3px);
}

.fabcrush-hero-collage__item--3 {
    width: clamp(115px, 15vw, 195px);
    height: clamp(135px, 17vw, 230px);
    transform: rotate(-1deg) translateY(8px);
}

.fabcrush-hero-collage__item--4 {
    width: clamp(90px, 11vw, 145px);
    height: clamp(110px, 14vw, 175px);
    transform: rotate(2.5deg) translateY(-6px);
}

.fabcrush-hero-collage__item--5 {
    width: clamp(100px, 13vw, 165px);
    height: clamp(100px, 13vw, 165px);
    transform: rotate(-1.5deg) translateY(4px);
}

.fabcrush-hero-collage__item--6 {
    width: clamp(105px, 14vw, 180px);
    height: clamp(125px, 15vw, 200px);
    transform: rotate(1.5deg) translateY(-4px);
}

/* Subtle glow effect behind images */
.fabcrush-hero-collage__item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fabcrush-hero-collage__item:hover::before {
    opacity: 1;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .fabcrush-hero-collage {
        margin-bottom: 48px;
    }
    
    .fabcrush-hero-collage__track {
        gap: clamp(8px, 1.2vw, 14px);
        padding: 25px 0 10px;
    }
    
    .fabcrush-hero-collage__item--1 {
        width: clamp(82px, 13vw, 140px);
        height: clamp(100px, 15vw, 170px);
    }
    
    .fabcrush-hero-collage__item--2 {
        width: clamp(72px, 11vw, 120px);
        height: clamp(72px, 11vw, 120px);
    }
    
    .fabcrush-hero-collage__item--3 {
        width: clamp(88px, 14vw, 155px);
        height: clamp(105px, 16vw, 180px);
    }
    
    .fabcrush-hero-collage__item--4 {
        width: clamp(65px, 10vw, 115px);
        height: clamp(82px, 13vw, 135px);
    }
    
    .fabcrush-hero-collage__item--5 {
        width: clamp(76px, 12vw, 130px);
        height: clamp(76px, 12vw, 130px);
    }
    
    .fabcrush-hero-collage__item--6 {
        width: clamp(82px, 13vw, 140px);
        height: clamp(95px, 14vw, 160px);
    }
}

/* Mobile: Scrollable horizontal collage */
@media (max-width: 768px) {
    .fabcrush-hero-collage {
        margin-bottom: 32px;
        /* Allow horizontal scroll without page overflow */
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
    
    .fabcrush-hero-collage__track {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 25px 16px 14px;
        gap: 10px;
    }
    
    .fabcrush-hero-collage__track::-webkit-scrollbar {
        display: none;
    }
    
    /* Reset rotations on mobile for cleaner scroll */
    .fabcrush-hero-collage__item {
        scroll-snap-align: center;
        transform: none !important;
        border-radius: 12px;
    }
    
    .fabcrush-hero-collage__item--1,
    .fabcrush-hero-collage__item--3,
    .fabcrush-hero-collage__item--6 {
        width: 120px;
        height: 150px;
    }
    
    .fabcrush-hero-collage__item--2,
    .fabcrush-hero-collage__item--5 {
        width: 100px;
        height: 100px;
    }
    
    .fabcrush-hero-collage__item--4 {
        width: 90px;
        height: 115px;
    }
    
    .fabcrush-hero-collage__item:hover {
        transform: translateY(-4px) !important;
    }
}

/* Small mobile: Even more compact */
@media (max-width: 480px) {
    .fabcrush-hero-collage {
        margin-bottom: 32px;
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
    }
    
    .fabcrush-hero-collage__track {
        gap: 8px;
        padding: 25px 12px 12px;
    }
    
    .fabcrush-hero-collage__item--1,
    .fabcrush-hero-collage__item--3,
    .fabcrush-hero-collage__item--6 {
        width: 100px;
        height: 125px;
    }
    
    .fabcrush-hero-collage__item--2,
    .fabcrush-hero-collage__item--5 {
        width: 85px;
        height: 85px;
    }
    
    .fabcrush-hero-collage__item--4 {
        width: 78px;
        height: 98px;
    }
    
    .fabcrush-hero-collage__item {
        border-radius: 10px;
        box-shadow:
            0 4px 16px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.06);
    }
}
