/* Bootstrap compatibility - hide d-none elements */
.d-none {
    display: none !important;
}

@layer utilities {
    /* ===== HEADER ANIMATIONS ===== */

    /* Easing fluide pour toutes les transitions du header */
    :root {
        --header-easing: cubic-bezier(0.33, 1, 0.68, 1);
        --header-duration: 0.5s;
    }

    /* Header wrapper */
    .header-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding-top: 0;
        transition: padding var(--header-duration) var(--header-easing);
        will-change: padding;
    }

    .header-wrapper.is-scrolled {
        padding: 0;
    }

    @media (min-width: 1024px) {
        .header-wrapper.is-scrolled {
            padding: 1rem 1rem 0 1rem;
        }
    }

    /* Header content - la barre elle-même */
    .header-content {
        max-width: 80rem;
        margin: 0 auto;
        padding: 1.5rem 2rem;
        border: 1px solid transparent;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        transition:
            max-width var(--header-duration) var(--header-easing),
            padding var(--header-duration) var(--header-easing),
            border-radius var(--header-duration) var(--header-easing),
            border-color var(--header-duration) var(--header-easing),
            background var(--header-duration) var(--header-easing),
            backdrop-filter var(--header-duration) var(--header-easing),
            box-shadow var(--header-duration) var(--header-easing);
        will-change: max-width, padding, border-radius, background;
    }

    .is-scrolled .header-content {
        max-width: 56rem;
        padding: 0.875rem 1.5rem;
        border-radius: 9999px;
        border-color: rgba(255, 255, 255, 0.15);
        background: rgba(20, 0, 40, 0.85);
        backdrop-filter: blur(20px);
        box-shadow:
            0 4px 24px -4px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(139, 92, 246, 0.1) inset;
    }

    /* Logo container */
    .logo-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 7rem;
        min-width: 14rem;
        transition: height var(--header-duration) var(--header-easing),
                    min-width var(--header-duration) var(--header-easing);
        will-change: height, min-width;
    }

    .is-scrolled .logo-container {
        height: 2.5rem;
        min-width: 2.5rem;
    }

    /* Logos avec crossfade fluide */
    .logo-large,
    .logo-compact {
        position: absolute;
        left: 0;
        transition:
            opacity var(--header-duration) var(--header-easing),
            transform var(--header-duration) var(--header-easing);
        will-change: opacity, transform;
    }

    .logo-large {
        opacity: 1;
        transform: scale(1) translateY(0);
        height: 7rem;
        width: auto;
        max-width: none;
    }

    .is-scrolled .logo-large {
        opacity: 0;
        transform: scale(0.7) translateY(-8px);
        pointer-events: none;
    }

    .logo-compact {
        opacity: 0;
        transform: scale(1.3) translateY(8px);
        height: 2.5rem;
        width: auto;
    }

    .is-scrolled .logo-compact {
        opacity: 1;
        transform: scale(1) translateY(0);
        pointer-events: auto;
    }

    /* Navigation links */
    .nav-links {
        gap: 2rem;
        transition: gap var(--header-duration) var(--header-easing),
                    font-size var(--header-duration) var(--header-easing);
    }

    .is-scrolled .nav-links {
        gap: 1.25rem;
        font-size: 0.9rem;
    }

    /* ===== MENU MOBILE ===== */
    .mobile-nav {
        transform: translateX(100%);
        opacity: 0;
        transition:
            transform 0.4s cubic-bezier(0.33, 1, 0.68, 1),
            opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .mobile-nav.is-open {
        transform: translateX(0);
        opacity: 1;
    }

    /* ===== FOOTER ===== */
    .footer-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -1.95rem;
        margin: 0;
        font-family: "Comfortaa", system-ui, sans-serif;
        font-weight: 700;
        line-height: 0.9;
        text-align: center;
        pointer-events: none;
        user-select: none;
        z-index: 1;
        overflow: visible;
        font-size: 3rem;
    }

    /* ≥ 640px (sm) */
    @media (min-width: 640px) {
        .footer-brand {
            top: -2rem;
            font-size: 4rem;
        }
    }

    /* ≥ 768px (md) */
    @media (min-width: 768px) {
        .footer-brand {
            top: -2.95rem;
            font-size: 6rem;
        }
    }

    /* ≥ 1024px (lg) */
    @media (min-width: 1024px) {
        .footer-brand {
            top: -2.98rem;
            font-size: 7rem;
        }
    }


    /* ===== CARDS ===== */
    
    .module-card {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
        border: 1px solid rgba(139, 92, 246, 0.2) !important;
    }

    .feature-card {
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.1) !important;
        transition: all 0.3s ease;
    }

    .feature-card-payment {
        background: linear-gradient(135deg, rgba(153, 102, 255, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
        border: 1px solid rgba(153, 102, 255, 0.12);
        transition: all 0.3s ease;
    }

    .feature-card-payment:hover {
        background: linear-gradient(135deg, rgba(153, 102, 255, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
        box-shadow: 0 12px 32px rgba(153, 102, 255, 0.25);
        transform: translateY(-4px);
    }

    .feature-card-rh {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
        border: 1px solid rgba(99, 102, 241, 0.2);
        transition: all 0.3s ease;
    }

    .feature-card-rh:hover {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
        border-color: rgba(99, 102, 241, 0.35);
        box-shadow: 0 16px 40px rgba(99, 102, 241, 0.25);
    }

    /* ===== TEXT GRADIENTS ===== */
    /* Principal gradient effect - avec !important pour override Tailwind */
    .text-stamina-disco {
        background: linear-gradient(135deg, #9966ff 0%, #ff66ff 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: transparent !important;
    }

    /* Variante purple */
    .text-stamina-disco-purple {
        background: linear-gradient(135deg, #9966ff 0%, #c084fc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
        font-weight: 800;
        letter-spacing: 0.05em;
    }

    /* Variante blue */
    .text-stamina-disco-blue {
        background: linear-gradient(135deg, #0095e8 0%, #60a5fa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
        font-weight: 800;
        letter-spacing: 0.05em;
    }

    /* Gradient animé */
    .text-stamina-disco-gradient {
        background: linear-gradient(135deg, #9966ff 0%, #a78bfa 50%, #60a5fa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 20px 45px rgba(99, 102, 241, 0.25);
        animation: gradient-shift 6s ease-in-out infinite;
        background-size: 200% 200%;
        position: relative;
        display: inline-block;
        font-weight: 800;
        letter-spacing: 0.05em;
    }

    /* Gradient vertical */
    .text-stamina-gradient {
        background: linear-gradient(180deg, #9966ff 0%, #ffffff 70%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
        font-weight: 800;
        letter-spacing: 0.05em;
    }

    /* Numbers gradient */
    .number-gradient {
        background: linear-gradient(90deg, #9966ff 0%, #8b5cf6 50%, #38bdf8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
        font-weight: 800;
        letter-spacing: 0.05em;
    }

    /* ===== CIRCLE & ANIMATIONS ===== */
    .circle-wrap {
        isolation: isolate;
        will-change: transform, opacity;
        transform: translateZ(0);
    }

    .circle-core {
        position: relative;
        background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #6d28d9 100%);
        will-change: transform, opacity;
        transform: translateZ(0);
    }

    .circle-core::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.15) 60%,
        rgba(255, 255, 255, 0) 100%
        );
        transform: translateX(-120%);
        animation: shimmer-once 1.6s ease-out 200ms both;
    }

    .step-connector::after {
        content: '';
        position: absolute;
        top: 25px;
        left: calc(50% + 25px);
        width: calc(100% - 50px);
        height: 2px;
        background: linear-gradient(90deg, #8b5cf6 0%, #a855f7 100%);
        opacity: 0.3;
    }

    /* ===== PRICING & PLANS ===== */
    .pricing-card-glow {
        background: radial-gradient(circle at top, rgba(139, 92, 246, 0.25) 0%, transparent 55%);
    }

    .plan-card {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
        border: 2px solid rgba(139, 92, 246, 0.2);
        transition: all 0.3s ease;
    }

    .plan-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .plan-card:hover::before {
        left: 100%;
    }

    .plan-card.active {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
        border-color: rgba(139, 92, 246, 0.5);
        transform: scale(1.02);
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    }

    .plan-card.dimmed {
        opacity: 0.6;
        transform: scale(0.98);
    }

    .plan-card.dimmed:hover {
        opacity: 0.8;
        transform: scale(1);
    }

    /* ===== LAYOUT & SECTIONS ===== */
    .step-section {
        scroll-margin-top: 80px;
    }

    .step-number {
        color: #9966ff;
        font-size: 5rem;
        font-weight: 300;
        line-height: 1;
    }

    /* ===== FORM ELEMENTS ===== */
    .custom-checkbox {
        width: 24px;
        height: 24px;
        accent-color: #9966ff;
        cursor: pointer;
    }

    .counter-button {
        background: rgba(153, 102, 255, 0.1);
        border: 1px solid rgba(153, 102, 255, 0.3);
        color: white;
        transition: all 0.2s ease;
    }

    .counter-button:hover {
        background: rgba(153, 102, 255, 0.2);
        border-color: #9966ff;
    }

    .counter-input {
        background: rgba(139, 92, 246, 0.1);
        border: 2px solid rgba(139, 92, 246, 0.3);
        color: white;
        font-size: 1.875rem;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .counter-input:focus {
        border-color: #9966ff;
        outline: none;
        background: rgba(139, 92, 246, 0.15);
    }

    .custom-textarea {
        background: rgba(139, 92, 246, 0.05);
        border: 2px solid rgba(139, 92, 246, 0.2);
        transition: all 0.3s ease;
        color: white;
    }

    .custom-textarea:focus {
        outline: none;
        background: rgba(139, 92, 246, 0.1);
        border-color: rgba(139, 92, 246, 0.4);
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    }

    .custom-textarea::placeholder {
        color: rgba(156, 163, 175, 0.6);
    }

    /* ===== FAQ / ACCORDION ===== */
    .faq-card {
        background: rgba(139, 92, 246, 0.2);
        border-radius: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(139, 92, 246, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .faq-card:hover {
        background: rgba(139, 92, 246, 0.3);
    }

    /* ===== INFO BOXES ===== */
    .info-box {
        background: rgba(139, 92, 246, 0.2);
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 0.75rem;
        padding: 1rem 1.5rem;
    }

    @media (min-width: 768px) {
        .info-box {
            padding: 1.5rem;
        }
    }

    .info-box-gradient {
        background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 1rem;
        padding: 1.5rem 2rem;
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        background: #7c3aed;
        color: white;
        font-weight: 600;
        border-radius: 0.75rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
        font-size: 0.875rem;
    }

    @media (min-width: 768px) {
        .btn-primary {
            font-size: 1rem;
        }
    }

    .btn-primary:hover {
        background: #6d28d9;
    }

    .btn-primary:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5), 0 0 0 4px rgba(17, 24, 39, 1);
    }

    .btn-cta {
        position: relative;
        overflow: hidden;
        color: white;
        font-weight: 700;
        border-radius: 1rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        background: linear-gradient(to right, #7c3aed, #9333ea, #4f46e5);
        transition: all 0.5s ease;
    }

    .btn-cta:hover {
        background: linear-gradient(to right, #6d28d9, #7e22ce, #4338ca);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: scale(1.05);
    }

    .btn-cta:active {
        transform: scale(0.95);
    }

    /* ===== SECTION SPACING ===== */
    .section-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    @media (min-width: 768px) {
        .section-padding {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
    }

    @media (min-width: 1024px) {
        .section-padding {
            padding-left: 3rem;
            padding-right: 3rem;
        }
    }

    @media (min-width: 1280px) {
        .section-padding {
            padding-left: 6rem;
            padding-right: 6rem;
        }
    }

    .section-padding-wide {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    @media (min-width: 768px) {
        .section-padding-wide {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
    }

    @media (min-width: 1024px) {
        .section-padding-wide {
            padding-left: 6rem;
            padding-right: 6rem;
        }
    }

    @media (min-width: 1280px) {
        .section-padding-wide {
            padding-left: 8rem;
            padding-right: 8rem;
        }
    }

    /* ===== CARD VARIANTS ===== */
    .card-module {
        border-radius: 0.75rem;
        padding: 0.875rem 1rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(109, 40, 217, 0.08) 100%);
        border: 1px solid rgba(139, 92, 246, 0.15);
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card-module::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .card-module::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .card-module:hover {
        border-color: rgba(139, 92, 246, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 12px 24px -8px rgba(139, 92, 246, 0.25);
    }

    .card-module:hover::before {
        transform: translateX(100%);
    }

    .card-module:hover::after {
        opacity: 1;
    }

    @media (min-width: 768px) {
        .card-module {
            padding: 1rem 1.25rem;
        }
    }

    /* Connector card styles */
    .connector-card {
        border-radius: 0.75rem;
        padding: 1rem 1.25rem;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(109, 40, 217, 0.06) 100%);
        border: 1px solid rgba(139, 92, 246, 0.12);
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .connector-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 40%, rgba(139, 92, 246, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .connector-card:hover {
        border-color: rgba(139, 92, 246, 0.35);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 20px -6px rgba(139, 92, 246, 0.2);
    }

    .connector-card:hover::before {
        opacity: 1;
    }

    .connector-logo {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .connector-card:hover .connector-logo {
        transform: scale(1.1);
    }

    /* ===== STEP HEADERS ===== */
    .step-header {
        display: flex;
        flex-direction: row;
        align-items: baseline;
        margin-bottom: 0.25rem;
        font-size: 1.5rem; /* text-2xl */
        padding-bottom: 1rem;
    }

    @media (min-width: 768px) {
        .step-header {
            flex-direction: column;
            font-size: 2rem; /* text-3xl/4xl */
            padding-bottom: 1.25rem;
        }
    }

    .step-header-number {
        background: linear-gradient(135deg, #9966ff 0%, #ff66ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: white;
        padding-right: 0.375rem;
        font-weight: 300;
    }

    .step-header-title {
        font-weight: 800;
        color: white;
    }

    /* ===== MODULE CHECKBOX CARDS ===== */
    .module-checkbox-card {
        border-radius: 1rem;
        padding: 1.25rem 1.5rem;
        cursor: pointer;
        display: block;
        background: rgba(139, 92, 246, 0.1);
        border: 1px solid transparent;
        transition: all 1s ease, transform 0.3s ease;
        position: relative;
        min-height: 100%;
    }

    .module-checkbox-card:hover {
        background: rgba(139, 92, 246, 0.2);
        border-color: rgba(167, 139, 250, 0.5);
        transform: scale(1.02);
    }

    .module-checkbox-card.is-selected {
        background: rgba(139, 92, 246, 0.25);
        border-color: rgba(139, 92, 246, 0.6);
    }

    .module-checkbox-checkmark {
        position: absolute;
        top: -0.5rem;
        right: -0.5rem;
        z-index: 20;
        width: 2.5rem;
        height: 2.5rem;
        background: linear-gradient(to bottom right, #8b5cf6, #9333ea);
        border-radius: 9999px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        border: 2px solid white;
    }

    /* ===== SPECIAL ELEMENTS ===== */
    .warning-badge {
        background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
        border: 1px solid rgba(251, 146, 60, 0.3);
        animation: warningPulse 2s ease-in-out infinite;
    }

    .sticky-summary {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(168, 85, 247, 0.08) 100%);
        border: 2px solid rgba(139, 92, 246, 0.3);
        backdrop-filter: blur(10px);
        position: sticky;
        top: 100px;
        transition: all 0.3s ease;
    }

    .sticky-summary:hover {
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
        transform: translateY(-2px);
    }

    /* ===== MODULE CARDS - STYLE ISOMÉTRIQUE DARK ===== */
    .module-card-iso {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        background: linear-gradient(145deg, rgba(30, 27, 75, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%);
        border: 1px solid rgba(139, 92, 246, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .module-card-iso-bg {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
    }

    .module-card-iso-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .module-card-iso-glow-amber {
        background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 40%);
    }

    .module-card-iso-glow-red {
        background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 40%);
    }

    .module-card-iso:hover {
        border-color: rgba(139, 92, 246, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.3);
    }

    .module-card-iso:hover .module-card-iso-glow {
        opacity: 1;
    }

    .module-card-iso-content {
        position: relative;
        z-index: 10;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .module-card-iso-illustration {
        width: 100%;
        height: 5rem;
        margin-bottom: 1rem;
    }

    .module-card-iso-text h3 {
        color: white;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.375rem;
    }

    .module-card-iso-text p {
        color: rgba(156, 163, 175, 1);
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .module-card-iso-link {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        color: #a78bfa;
        font-size: 0.75rem;
        font-weight: 600;
        margin-top: auto;
        transition: all 0.3s ease;
    }

    .module-card-iso-link:hover {
        color: #c4b5fd;
        gap: 0.5rem;
    }

    .module-card-iso-link-amber {
        color: #fbbf24;
    }

    .module-card-iso-link-amber:hover {
        color: #fcd34d;
    }

    /* ===== MODULE CARDS - STYLE DATA VIZ ===== */
    .module-card-data {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        background: linear-gradient(145deg, rgba(6, 78, 59, 0.15) 0%, rgba(4, 47, 46, 0.2) 100%);
        border: 1px solid rgba(52, 211, 153, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .module-card-data-blue {
        background: linear-gradient(145deg, rgba(30, 58, 138, 0.15) 0%, rgba(23, 37, 84, 0.2) 100%);
        border-color: rgba(96, 165, 250, 0.2);
    }

    .module-card-data-cyan {
        background: linear-gradient(145deg, rgba(22, 78, 99, 0.15) 0%, rgba(14, 116, 144, 0.2) 100%);
        border-color: rgba(34, 211, 238, 0.2);
    }

    .module-card-data-pattern {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(52, 211, 153, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(52, 211, 153, 0.03) 1px, transparent 1px);
        background-size: 20px 20px;
    }

    .module-card-data-pattern-blue {
        background-image:
            linear-gradient(rgba(96, 165, 250, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
    }

    .module-card-data-pattern-cyan {
        background-image:
            linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    }

    .module-card-data:hover {
        border-color: rgba(52, 211, 153, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px -12px rgba(52, 211, 153, 0.2);
    }

    .module-card-data-blue:hover {
        border-color: rgba(96, 165, 250, 0.4);
        box-shadow: 0 20px 40px -12px rgba(96, 165, 250, 0.2);
    }

    .module-card-data-cyan:hover {
        border-color: rgba(34, 211, 238, 0.4);
        box-shadow: 0 20px 40px -12px rgba(34, 211, 238, 0.2);
    }

    .module-card-data-content {
        position: relative;
        z-index: 10;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .module-card-data-illustration {
        width: 100%;
        height: 5rem;
        margin-bottom: 1rem;
    }

    .module-card-data-text h3 {
        color: white;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.375rem;
    }

    .module-card-data-text p {
        color: rgba(156, 163, 175, 1);
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .module-card-data-link {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        color: #34d399;
        font-size: 0.75rem;
        font-weight: 600;
        margin-top: auto;
        transition: all 0.3s ease;
    }

    .module-card-data-link:hover {
        color: #6ee7b7;
        gap: 0.5rem;
    }

    /* ===== MODULE CARDS - STYLE MOCKUP WINDOW ===== */
    .module-card-mockup {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        background: linear-gradient(145deg, rgba(248, 250, 252, 0.05) 0%, rgba(241, 245, 249, 0.02) 100%);
        border: 1px solid rgba(148, 163, 184, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .module-card-mockup-pink {
        background: linear-gradient(145deg, rgba(236, 72, 153, 0.05) 0%, rgba(219, 39, 119, 0.02) 100%);
        border-color: rgba(236, 72, 153, 0.15);
    }

    .module-card-mockup:hover {
        border-color: rgba(148, 163, 184, 0.3);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px -12px rgba(100, 116, 139, 0.15);
    }

    .module-card-mockup-pink:hover {
        border-color: rgba(236, 72, 153, 0.3);
        box-shadow: 0 20px 40px -12px rgba(236, 72, 153, 0.15);
    }

    .module-card-mockup-content {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .module-card-mockup-window {
        background: rgba(15, 23, 42, 0.8);
        border-radius: 0.5rem;
        overflow: hidden;
        margin-bottom: 1rem;
        border: 1px solid rgba(148, 163, 184, 0.1);
    }

    .module-card-mockup-window-pink {
        border-color: rgba(236, 72, 153, 0.1);
    }

    .module-card-mockup-titlebar {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        padding: 0.5rem 0.75rem;
        background: rgba(30, 41, 59, 0.8);
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .module-card-mockup-titlebar .dot {
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
    }

    .module-card-mockup-titlebar .dot-red { background: #ef4444; }
    .module-card-mockup-titlebar .dot-yellow { background: #eab308; }
    .module-card-mockup-titlebar .dot-green { background: #22c55e; }

    .module-card-mockup-titlebar .titlebar-text {
        margin-left: auto;
        font-size: 0.625rem;
        color: rgba(148, 163, 184, 0.6);
    }

    .module-card-mockup-body {
        padding: 0.75rem;
    }

    .mockup-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .mockup-label {
        font-size: 0.625rem;
        color: rgba(148, 163, 184, 0.6);
    }

    .mockup-value {
        font-size: 0.75rem;
        color: white;
        font-weight: 500;
    }

    .mockup-amount {
        color: #34d399;
        font-weight: 700;
    }

    .mockup-progress {
        height: 0.25rem;
        background: rgba(148, 163, 184, 0.2);
        border-radius: 0.125rem;
        overflow: hidden;
        margin: 0.5rem 0;
    }

    .mockup-progress-bar {
        height: 100%;
        width: 75%;
        background: linear-gradient(90deg, #8b5cf6, #a78bfa);
        border-radius: 0.125rem;
    }

    .mockup-status {
        display: flex;
        justify-content: flex-end;
    }

    .status-badge {
        font-size: 0.625rem;
        padding: 0.125rem 0.5rem;
        border-radius: 9999px;
        font-weight: 600;
    }

    .status-paid {
        background: rgba(34, 197, 94, 0.2);
        color: #22c55e;
    }

    /* Team mockup styles */
    .module-card-mockup-body-team {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .team-avatars {
        display: flex;
        gap: -0.5rem;
    }

    .team-avatar {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 700;
        color: white;
        border: 2px solid rgba(15, 23, 42, 0.8);
        margin-left: -0.5rem;
    }

    .team-avatar:first-child {
        margin-left: 0;
    }

    .team-avatar-more {
        background: rgba(148, 163, 184, 0.3);
        font-size: 0.625rem;
    }

    .team-stats {
        display: flex;
        gap: 1rem;
    }

    .team-stat {
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 1rem;
        font-weight: 700;
        color: white;
    }

    .stat-number.stat-green {
        color: #34d399;
    }

    .stat-label {
        font-size: 0.625rem;
        color: rgba(148, 163, 184, 0.6);
    }

    .module-card-mockup-text h3 {
        color: white;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.375rem;
    }

    .module-card-mockup-text p {
        color: rgba(156, 163, 175, 1);
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .module-card-mockup-link {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        color: #94a3b8;
        font-size: 0.75rem;
        font-weight: 600;
        margin-top: auto;
        transition: all 0.3s ease;
    }

    .module-card-mockup-link:hover {
        color: #cbd5e1;
        gap: 0.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer-once {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes warningPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(251, 146, 60, 0.2);
    }
}

/* SVG Module Card Animations */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes float-medium {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes float-fast {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes ping-slow {
    0% { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(1.3); opacity: 0; }
}

@keyframes scan {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(30px); opacity: 0; }
}

@keyframes dash {
    to { stroke-dashoffset: -24; }
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

@keyframes wave {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes bar {
    0% { transform: scaleY(0); transform-origin: bottom; }
    100% { transform: scaleY(1); transform-origin: bottom; }
}

.animate-float-slow { animation: float-slow 4s ease-in-out infinite; }
.animate-float-medium { animation: float-medium 3s ease-in-out infinite; }
.animate-float-fast { animation: float-fast 2s ease-in-out infinite; }
.animate-pulse-soft { animation: pulse-soft 3s ease-in-out infinite; }
.animate-ping-slow { animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-scan { animation: scan 2s ease-in-out infinite; }
.animate-dash { animation: dash 1s linear infinite; }
.animate-blink { animation: blink 1s ease-in-out infinite; }
.animate-wave { animation: wave 1.5s ease-in-out infinite; }
.animate-bar { animation: bar 0.8s ease-out forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .sticky-summary {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .counter-input {
        font-size: 1.5rem;
    }

    .counter-button {
        width: 3rem;
        height: 3rem;
    }
}

/* =====================================================
   NEW MODULE CARDS - 3 DISTINCT STYLES
   ===================================================== */

/* ===== STYLE 1: CARD WHITE - Clean Minimal on Dark ===== */
.card-white {
    display: block;
    border-radius: 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.card-white:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-white-inner {
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-white-illustration {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.card-white-content h3 {
    color: #1e1b4b;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.card-white-content p {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
}

.card-white-footer {
    margin-top: auto;
    padding-top: 0.75rem;
}

.card-white-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #8b5cf6;
    font-size: 0.8rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.card-white:hover .card-white-link {
    gap: 0.625rem;
}

.card-white-link-amber {
    color: #d97706;
}

/* Contact Stack Illustration */
.contact-stack {
    position: relative;
    width: 8rem;
    height: 5rem;
}

.contact-card {
    position: absolute;
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card-1 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 7rem;
}

.contact-card-2 {
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    z-index: 2;
    width: 7rem;
    opacity: 0.7;
}

.contact-card-3 {
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    z-index: 1;
    width: 7rem;
    opacity: 0.4;
}

.card-white:hover .contact-card-1 {
    transform: translateX(-50%) translateY(-4px);
}

.card-white:hover .contact-card-2 {
    transform: translateX(-50%) scale(0.9) translateY(-2px);
}

.contact-avatar {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.contact-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-line {
    height: 0.375rem;
    background: #e2e8f0;
    border-radius: 0.125rem;
}

.contact-line-dark {
    background: #cbd5e1;
}

.contact-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: #8b5cf6;
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
}

/* Expense Scene Illustration */
.expense-scene {
    position: relative;
    width: 10rem;
    height: 5.5rem;
}

.expense-phone {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 4rem;
    background: linear-gradient(145deg, #374151 0%, #1f2937 100%);
    border-radius: 0.375rem;
    padding: 0.25rem;
}

.expense-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #111827 0%, #1f2937 100%);
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.expense-phone-camera {
    width: 1rem;
    height: 1rem;
    border: 2px solid #4b5563;
    border-radius: 50%;
}

.expense-phone-flash {
    width: 0.25rem;
    height: 0.25rem;
    background: #fbbf24;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

.expense-receipt {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    background: white;
    border-radius: 0.25rem;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.receipt-line {
    height: 0.25rem;
    background: #e2e8f0;
    border-radius: 0.125rem;
    margin-bottom: 0.25rem;
}

.receipt-line-title {
    width: 60%;
    background: #cbd5e1;
}

.receipt-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.375rem 0;
    border-style: dashed;
}

.receipt-total {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1e1b4b;
    text-align: right;
}

.receipt-zigzag {
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(135deg, white 25%, transparent 25%) -0.25rem 0,
                linear-gradient(225deg, white 25%, transparent 25%) -0.25rem 0,
                linear-gradient(315deg, white 25%, transparent 25%),
                linear-gradient(45deg, white 25%, transparent 25%);
    background-size: 0.5rem 0.25rem;
}

.expense-check {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.625rem;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

/* Parking Scene Illustration */
.parking-scene {
    position: relative;
    width: 10rem;
    height: 5rem;
}

.parking-camera {
    position: absolute;
    top: 0;
    left: 1rem;
}

.camera-body {
    width: 2rem;
    height: 1.25rem;
    background: linear-gradient(145deg, #374151 0%, #1f2937 100%);
    border-radius: 0.25rem;
    position: relative;
}

.camera-lens {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.625rem;
    height: 0.625rem;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: 50%;
    border: 1px solid #4b5563;
}

.camera-arm {
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.25rem;
    background: #374151;
}

.parking-beam {
    position: absolute;
    top: 1.5rem;
    left: 2.5rem;
    width: 0;
    height: 0;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-top: 3rem solid rgba(239, 68, 68, 0.15);
    animation: pulse-soft 2s ease-in-out infinite;
}

.parking-plate {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #1e3a8a;
    border-radius: 0.25rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.05em;
}

.parking-rec {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.5rem;
    font-weight: 700;
    color: #ef4444;
}

.rec-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

/* ===== STYLE 2: CARD GRADIENT - Bold Vibrant Colors ===== */
.card-gradient {
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.card-gradient:hover {
    transform: translateY(-6px) scale(1.02);
}

.card-gradient-bg {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
}

.card-gradient-emerald .card-gradient-bg {
    background: linear-gradient(145deg, #059669 0%, #047857 50%, #065f46 100%);
}

.card-gradient-blue .card-gradient-bg {
    background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
}

.card-gradient-cyan .card-gradient-bg {
    background: linear-gradient(145deg, #0891b2 0%, #0e7490 50%, #155e75 100%);
}

.card-gradient:hover .card-gradient-bg {
    opacity: 0.9;
}

.card-gradient-content {
    position: relative;
    z-index: 10;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-gradient-illustration {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-gradient-text h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.card-gradient-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.5;
}

.card-gradient-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 0.75rem;
    transition: gap 0.3s ease;
}

.card-gradient:hover .card-gradient-link {
    gap: 0.625rem;
}

/* Cube Scene Illustration */
.cube-scene {
    position: relative;
    width: 8rem;
    height: 5rem;
    perspective: 200px;
}

.cube {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    transform-style: preserve-3d;
    animation: float-slow 3s ease-in-out infinite;
}

.cube-1 {
    left: 1rem;
    top: 1.5rem;
    animation-delay: 0s;
}

.cube-2 {
    left: 3rem;
    top: 0.5rem;
    animation-delay: 0.5s;
}

.cube-3 {
    left: 5rem;
    top: 2rem;
    animation-delay: 1s;
}

.cube-face {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
}

.cube-front {
    background: rgba(255, 255, 255, 0.3);
    transform: translateZ(0.75rem);
}

.cube-top {
    background: rgba(255, 255, 255, 0.5);
    transform: rotateX(90deg) translateZ(0.75rem);
}

.cube-right {
    background: rgba(255, 255, 255, 0.2);
    transform: rotateY(90deg) translateZ(0.75rem);
}

.price-tag {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.price-tag span {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

/* Fleet Scene Illustration */
.fleet-scene {
    position: relative;
    width: 10rem;
    height: 5rem;
}

.fleet-road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
}

.road-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0,
        rgba(255, 255, 255, 0.5) 1rem,
        transparent 1rem,
        transparent 2rem
    );
    animation: dash 2s linear infinite;
}

.fleet-car {
    position: absolute;
    bottom: 0.75rem;
    left: 1rem;
    width: 3rem;
    height: 1.5rem;
}

.car-body {
    position: absolute;
    bottom: 0.375rem;
    left: 0;
    width: 3rem;
    height: 0.875rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.25rem 0.5rem 0.125rem 0.125rem;
}

.car-window {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    width: 1.25rem;
    height: 0.625rem;
    background: rgba(59, 130, 246, 0.5);
    border-radius: 0.25rem 0.25rem 0 0;
}

.car-wheel {
    position: absolute;
    bottom: 0;
    width: 0.625rem;
    height: 0.625rem;
    background: #1f2937;
    border-radius: 50%;
}

.car-wheel-front {
    left: 0.375rem;
}

.car-wheel-back {
    right: 0.375rem;
}

.fleet-dashboard {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 0.375rem;
    padding: 0.375rem 0.5rem;
}

.dashboard-stat {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
}

.stat-value {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.stat-unit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.5rem;
}

.fleet-pin {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.fleet-pin-1 {
    top: 1rem;
    left: 5rem;
    animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.fleet-pin-2 {
    top: 0.5rem;
    left: 7rem;
    animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    animation-delay: 1s;
}

/* Wazo Scene Illustration */
.wazo-scene {
    position: relative;
    width: 10rem;
    height: 5rem;
}

.wazo-phone {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    backdrop-filter: blur(4px);
}

.wazo-phone-screen {
    margin: 0.25rem;
    height: calc(100% - 0.5rem);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wazo-call-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wazo-call-icon i {
    color: white;
    font-size: 0.5rem;
}

.wazo-waves {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.25rem;
}

.wave {
    width: 0.25rem;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0.125rem;
    animation: wave 1s ease-in-out infinite;
}

.wave-1 { animation-delay: 0s; height: 1rem; }
.wave-2 { animation-delay: 0.2s; height: 1.5rem; }
.wave-3 { animation-delay: 0.4s; height: 0.75rem; }

.wazo-stats {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 3rem;
}

.wazo-bar {
    width: 0.75rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.125rem 0.125rem 0 0;
    animation: bar 0.8s ease-out forwards;
}

.wazo-bar-1 { height: 40%; animation-delay: 0.1s; }
.wazo-bar-2 { height: 70%; animation-delay: 0.2s; }
.wazo-bar-3 { height: 55%; animation-delay: 0.3s; }
.wazo-bar-4 { height: 85%; animation-delay: 0.4s; background: rgba(255, 255, 255, 0.5); }

/* ===== STYLE 3: CARD GLASS - Glassmorphism ===== */
.card-glass {
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.card-glass:hover {
    transform: translateY(-6px);
}

.card-glass-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.15) 100%);
    backdrop-filter: blur(12px);
}

.card-glass-pink .card-glass-blur {
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.1) 0%, rgba(219, 39, 119, 0.15) 100%);
}

.card-glass-border {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.card-glass:hover .card-glass-border {
    border-color: rgba(255, 255, 255, 0.25);
}

.card-glass-content {
    position: relative;
    z-index: 10;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-glass-illustration {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.card-glass-text h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.card-glass-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.5;
}

.card-glass-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #60a5fa;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 0.75rem;
    transition: gap 0.3s ease;
}

.card-glass:hover .card-glass-link {
    gap: 0.625rem;
}

/* Glass Particles */
.glass-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-slow 4s ease-in-out infinite;
}

.glass-particle-1 {
    width: 3rem;
    height: 3rem;
    top: -1rem;
    right: -1rem;
    animation-delay: 0s;
}

.glass-particle-2 {
    width: 2rem;
    height: 2rem;
    bottom: 2rem;
    left: -0.5rem;
    animation-delay: 1s;
}

.glass-particle-3 {
    width: 1.5rem;
    height: 1.5rem;
    top: 3rem;
    right: 2rem;
    animation-delay: 2s;
}

/* Invoice Preview Illustration */
.invoice-preview {
    position: relative;
    width: 7rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.invoice-logo {
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 0.25rem;
}

.invoice-number {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.invoice-rows {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.invoice-row {
    height: 0.375rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.125rem;
}

.invoice-row:nth-child(1) { width: 100%; }
.invoice-row:nth-child(2) { width: 80%; }
.invoice-row:nth-child(3) { width: 60%; }

.invoice-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.invoice-total-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.invoice-total-amount {
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
}

.invoice-stamp {
    position: absolute;
    top: 50%;
    right: -0.5rem;
    transform: translateY(-50%) rotate(-12deg);
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 0.125rem 0.375rem;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 0.125rem;
}

/* Team Scene Illustration */
.team-scene {
    position: relative;
    width: 10rem;
    height: 5rem;
}

.team-grid {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
}

.team-member {
    position: relative;
}

.member-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member-1 .member-avatar { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
.team-member-2 .member-avatar { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.team-member-3 .member-avatar { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }

.member-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.8);
}

.member-status-online {
    background: #22c55e;
}

.member-status-away {
    background: #eab308;
}

.team-chart {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 2.5rem;
}

.chart-bar {
    width: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.125rem 0.125rem 0 0;
    animation: bar 0.8s ease-out forwards;
}

.chart-bar-1 { height: 40%; animation-delay: 0.1s; }
.chart-bar-2 { height: 70%; animation-delay: 0.2s; }
.chart-bar-3 { height: 55%; animation-delay: 0.3s; }
.chart-bar-4 { height: 90%; animation-delay: 0.4s; background: rgba(236, 72, 153, 0.4); }

/* =====================================================
   MODULE CARDS V2 - Structured Design System
   ===================================================== */

/* === Base Card Structure === */
.module-card-v2 {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    height: 100%;
}

.module-card-v2:hover {
    transform: translateY(-6px);
}

/* === Illustration Zone === */
.module-card-v2-illustration {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* === Content Zone === */
.module-card-v2-content {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.module-card-v2-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.module-card-v2-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-card-v2-icon i {
    font-size: 1rem;
}

.module-card-v2-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1.2;
}

.module-card-v2-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #64748b;
    flex: 1;
}

.module-card-v2-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.module-card-v2-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.module-card-v2:hover .module-card-v2-link {
    gap: 0.625rem;
}

/* === WHITE CARD VARIANT === */
.module-card-v2-white {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.module-card-v2-white:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.module-card-v2-white .module-card-v2-footer {
    border-color: rgba(0, 0, 0, 0.06);
}

/* === GRADIENT CARD VARIANTS === */
.module-card-v2-gradient {
    position: relative;
}

.module-card-v2-gradient .module-card-v2-illustration {
    background: rgba(255, 255, 255, 0.1);
}

.module-card-v2-gradient .module-card-v2-content {
    background: rgba(0, 0, 0, 0.15);
}

.module-card-v2-gradient .module-card-v2-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.module-card-v2-emerald {
    background: linear-gradient(145deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 24px rgba(5, 150, 105, 0.3);
}

.module-card-v2-emerald:hover {
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.4);
}

.module-card-v2-sky {
    background: linear-gradient(145deg, #0284c7 0%, #0369a1 100%);
    box-shadow: 0 4px 24px rgba(2, 132, 199, 0.3);
}

.module-card-v2-sky:hover {
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.4);
}

.module-card-v2-cyan {
    background: linear-gradient(145deg, #0891b2 0%, #0e7490 100%);
    box-shadow: 0 4px 24px rgba(8, 145, 178, 0.3);
}

.module-card-v2-cyan:hover {
    box-shadow: 0 16px 40px rgba(8, 145, 178, 0.4);
}

/* === GLASS CARD VARIANTS === */
.module-card-v2-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.module-card-v2-glass:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.module-card-v2-glass .module-card-v2-illustration {
    background: rgba(255, 255, 255, 0.05);
}

.module-card-v2-glass .module-card-v2-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.module-card-v2-blue {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.module-card-v2-blue:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}

.module-card-v2-pink {
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.2) 100%);
    border-color: rgba(236, 72, 153, 0.2);
}

.module-card-v2-pink:hover {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.15);
}

/* =====================================================
   ILLUSTRATION SCENES V2
   ===================================================== */

/* === CONTACTS Scene === */
.contact-stack-v2 {
    position: relative;
    width: 10rem;
    height: 6rem;
}

.contact-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 8rem;
    transition: transform 0.3s ease;
}

.contact-item-1 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.contact-item-2 {
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%) scale(0.92);
    z-index: 2;
    opacity: 0.7;
}

.contact-item-3 {
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%) scale(0.84);
    z-index: 1;
    opacity: 0.4;
}

.module-card-v2:hover .contact-item-1 {
    transform: translateX(-50%) translateY(-4px);
}

.contact-avatar-v2 {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-name {
    height: 0.5rem;
    border-radius: 0.125rem;
    width: 70%;
}

.contact-meta {
    height: 0.375rem;
    border-radius: 0.125rem;
    width: 50%;
}

.contact-badge-v2 {
    position: absolute;
    top: -0.375rem;
    right: -0.375rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.4);
}

/* === PRODUCT Scene === */
.product-scene {
    position: relative;
    width: 10rem;
    height: 6rem;
    perspective: 300px;
}

.product-box {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    transform-style: preserve-3d;
}

.product-box-1 {
    left: 1.5rem;
    bottom: 0.5rem;
    transform: rotateX(-15deg) rotateY(25deg);
    animation: float-slow 3s ease-in-out infinite;
}

.product-box-2 {
    left: 4rem;
    bottom: 1rem;
    transform: rotateX(-15deg) rotateY(25deg) scale(0.8);
    animation: float-slow 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.product-box-face {
    position: absolute;
    width: 100%;
    height: 100%;
}

.product-box-front {
    background: rgba(255, 255, 255, 0.4);
    transform: translateZ(1.25rem);
    border-radius: 0.25rem;
}

.product-box-top {
    background: rgba(255, 255, 255, 0.6);
    transform: rotateX(90deg) translateZ(1.25rem);
    border-radius: 0.25rem;
}

.product-box-side {
    background: rgba(255, 255, 255, 0.25);
    transform: rotateY(90deg) translateZ(1.25rem);
    border-radius: 0.25rem;
}

.product-tag {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.product-tag-price {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.product-barcode {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    width: 2.5rem;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.25rem;
    padding: 0.25rem;
}

.barcode-lines {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.6) 0,
        rgba(255, 255, 255, 0.6) 2px,
        transparent 2px,
        transparent 4px
    );
}

/* === INVOICE Scene === */
.invoice-scene {
    position: relative;
    width: 10rem;
    height: 6.5rem;
}

.invoice-doc {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.invoice-doc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.invoice-doc-logo {
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 0.25rem;
}

.invoice-doc-ref {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.invoice-doc-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.invoice-doc-line {
    height: 0.375rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.125rem;
    width: 100%;
}

.invoice-doc-footer {
    padding-top: 0.375rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.invoice-doc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.total-amount {
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
}

.invoice-doc-stamp {
    position: absolute;
    top: 50%;
    right: -0.75rem;
    transform: translateY(-50%) rotate(-12deg);
    background: rgba(34, 197, 94, 0.25);
    color: #22c55e;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 0.125rem 0.5rem;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 0.25rem;
}

.invoice-coins {
    position: absolute;
    right: 0.5rem;
    bottom: 0;
}

.coin {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: 2px solid rgba(251, 191, 36, 0.5);
    position: absolute;
}

.coin-1 {
    right: 0;
    bottom: 0;
}

.coin-2 {
    right: 0.75rem;
    bottom: 0.5rem;
    opacity: 0.7;
}

/* === EXPENSE Scene V2 === */
.expense-scene-v2 {
    position: relative;
    width: 10rem;
    height: 6rem;
}

.expense-phone-v2 {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 4.5rem;
    background: linear-gradient(145deg, #374151 0%, #1f2937 100%);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.phone-notch {
    width: 1rem;
    height: 0.25rem;
    background: #111827;
    border-radius: 0.125rem;
    margin: 0.25rem auto 0.5rem;
}

.phone-camera {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding-top: 0.5rem;
}

.camera-ring {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #4b5563;
    border-radius: 50%;
    background: #111827;
}

.camera-flash {
    width: 0.375rem;
    height: 0.375rem;
    background: #fbbf24;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.expense-ticket {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4.5rem;
    background: white;
    border-radius: 0.25rem;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ticket-header {
    height: 0.5rem;
    width: 60%;
    background: #e2e8f0;
    border-radius: 0.125rem;
    margin-bottom: 0.5rem;
}

.ticket-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.ticket-item {
    height: 0.375rem;
    background: #f1f5f9;
    border-radius: 0.125rem;
}

.ticket-item:first-child {
    width: 80%;
}

.ticket-item:last-child {
    width: 60%;
}

.ticket-total {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e1b4b;
    text-align: right;
    padding-top: 0.375rem;
    border-top: 1px dashed #e2e8f0;
}

.ticket-tear {
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(135deg, white 25%, transparent 25%) -0.25rem 0,
                linear-gradient(225deg, white 25%, transparent 25%) -0.25rem 0,
                linear-gradient(315deg, white 25%, transparent 25%),
                linear-gradient(45deg, white 25%, transparent 25%);
    background-size: 0.5rem 0.25rem;
}

.expense-validated {
    position: absolute;
    top: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* === FLEET Scene V2 === */
.fleet-scene-v2 {
    position: relative;
    width: 12rem;
    height: 6rem;
}

.fleet-road-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
}

.road-marking {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.6) 0,
        rgba(255, 255, 255, 0.6) 1.5rem,
        transparent 1.5rem,
        transparent 3rem
    );
    animation: dash 3s linear infinite;
}

.fleet-car-v2 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 4rem;
    height: 2rem;
}

.car-body-v2 {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 4rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.25rem 0.75rem 0.125rem 0.125rem;
}

.car-cabin {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 1.75rem;
    height: 0.75rem;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 0.375rem 0.375rem 0 0;
}

.car-wheel-v2 {
    position: absolute;
    bottom: 0;
    width: 0.75rem;
    height: 0.75rem;
    background: #1f2937;
    border-radius: 50%;
    border: 2px solid #374151;
}

.car-wheel-front-v2 {
    left: 0.5rem;
}

.car-wheel-back-v2 {
    right: 0.5rem;
}

.fleet-stats {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
}

.fleet-stat {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
}

.fleet-stat-value {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.fleet-stat-unit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.625rem;
}

.fleet-pins {
    position: absolute;
    top: 0.5rem;
    left: 6rem;
}

.map-pin {
    width: 0.625rem;
    height: 0.625rem;
    background: white;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.map-pin-1 {
    top: 0;
    left: 0;
    animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.map-pin-2 {
    top: 1rem;
    left: 1.5rem;
    animation: ping-slow 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    animation-delay: 1s;
}

/* === TEAM Scene V2 === */
.team-scene-v2 {
    position: relative;
    width: 12rem;
    height: 6rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
}

.team-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.team-avatar-v2 {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.5);
}

.status-online {
    background: #22c55e;
}

.status-away {
    background: #eab308;
}

.team-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    height: 3rem;
}

.mini-bar {
    width: 0.625rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.125rem;
    animation: bar 0.8s ease-out forwards;
}

.mini-bar-1 { height: 40%; animation-delay: 0.1s; }
.mini-bar-2 { height: 70%; animation-delay: 0.2s; }
.mini-bar-3 { height: 55%; animation-delay: 0.3s; }
.mini-bar-4 { height: 90%; animation-delay: 0.4s; background: rgba(236, 72, 153, 0.4); }

/* === PARKING Scene V2 === */
.parking-scene-v2 {
    position: relative;
    width: 12rem;
    height: 6rem;
}

.parking-cam {
    position: absolute;
    top: 0;
    left: 1rem;
}

.cam-body {
    width: 2.25rem;
    height: 1.5rem;
    background: linear-gradient(145deg, #374151 0%, #1f2937 100%);
    border-radius: 0.375rem;
    position: relative;
}

.cam-lens {
    position: absolute;
    right: 0.375rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: 50%;
    border: 2px solid #4b5563;
}

.cam-mount {
    position: absolute;
    left: -0.625rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 0.375rem;
    background: #374151;
    border-radius: 0.125rem;
}

.parking-scan-beam {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 0;
    height: 0;
    border-left: 2.5rem solid transparent;
    border-right: 2.5rem solid transparent;
    border-top: 3.5rem solid rgba(239, 68, 68, 0.12);
    animation: pulse-soft 2s ease-in-out infinite;
}

.parking-plate-v2 {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid #1e3a8a;
    border-radius: 0.25rem;
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.plate-eu {
    width: 0.5rem;
    height: 1rem;
    background: linear-gradient(180deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 0.125rem;
}

.plate-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.05em;
}

.parking-recording {
    position: absolute;
    top: 0.25rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rec-indicator {
    width: 0.5rem;
    height: 0.5rem;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.rec-text {
    font-size: 0.625rem;
    font-weight: 700;
    color: #ef4444;
}

/* === WAZO Scene V2 === */
.wazo-scene-v2 {
    position: relative;
    width: 12rem;
    height: 6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.5rem;
}

.wazo-phone-v2 {
    width: 2.25rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.wazo-screen {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wazo-call-btn {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wazo-waves-v2 {
    display: flex;
    gap: 0.25rem;
    height: 3rem;
    align-items: center;
}

.sound-wave {
    width: 0.375rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0.125rem;
    animation: wave 1s ease-in-out infinite;
}

.sound-wave-1 { height: 1rem; animation-delay: 0s; }
.sound-wave-2 { height: 2rem; animation-delay: 0.15s; }
.sound-wave-3 { height: 1.25rem; animation-delay: 0.3s; }

.wazo-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.375rem;
    height: 3.5rem;
    margin-left: auto;
}

.wazo-bar-v2 {
    width: 0.75rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0.125rem;
    animation: bar 0.8s ease-out forwards;
}

.wazo-bar-v2-1 { height: 35%; animation-delay: 0.1s; }
.wazo-bar-v2-2 { height: 65%; animation-delay: 0.2s; }
.wazo-bar-v2-3 { height: 50%; animation-delay: 0.3s; }
.wazo-bar-v2-4 { height: 85%; animation-delay: 0.4s; background: rgba(255, 255, 255, 0.4); }

/* =====================================================
   3 VRAIS STYLES DIFFÉRENTS - Design System Final
   ===================================================== */

/* =======================================================
   STYLE 1: UI MOCKUP - White cards with real UI elements
   Like messaging apps, clean minimal design
   ======================================================= */
.card-ui-mockup {
    display: block;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.card-ui-mockup:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-ui-mockup-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-ui-mockup-scene {
    padding: 1.25rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 1px solid #f1f1f1;
    min-height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-ui-mockup-content {
    padding: 0.875rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-ui-mockup-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.375rem;
}

.card-ui-mockup-desc {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    flex: 1;
}

.card-ui-mockup-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #7c3aed;
    margin-top: 0.5rem;
    transition: gap 0.2s ease;
}

.card-ui-mockup:hover .card-ui-mockup-link {
    gap: 0.5rem;
}

/* UI Contact List */
.ui-contact-list {
    width: 100%;
    max-width: 16rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ui-contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.ui-contact-item-active {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.ui-contact-item-faded {
    opacity: 0.5;
}

.ui-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.ui-contact-info {
    flex: 1;
    min-width: 0;
}

.ui-contact-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-contact-company {
    font-size: 0.625rem;
    color: #9ca3af;
}

.ui-contact-tag {
    font-size: 0.5rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.tag-client {
    background: #dbeafe;
    color: #1d4ed8;
}

.tag-prospect {
    background: #fef3c7;
    color: #d97706;
}

/* UI Expense Flow */
.ui-expense-flow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ui-phone-capture {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.ui-phone-frame {
    width: 3rem;
    height: 5rem;
    background: #1f2937;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.ui-phone-screen {
    width: 100%;
    height: 100%;
    background: #374151;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-camera-viewfinder {
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.ui-capture-label {
    font-size: 0.625rem;
    color: #9ca3af;
    font-weight: 500;
}

.ui-flow-arrow {
    color: #d1d5db;
    font-size: 0.875rem;
}

.ui-ticket-result {
    flex: 1;
}

.ui-ticket-card {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ui-ticket-icon {
    width: 2rem;
    height: 2rem;
    background: #fef3c7;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.ui-ticket-details {
    flex: 1;
}

.ui-ticket-merchant {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1f2937;
}

.ui-ticket-amount {
    font-size: 0.875rem;
    font-weight: 700;
    color: #059669;
}

.ui-ticket-status {
    font-size: 1rem;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */

/* Base state - elements start hidden */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Revealed state */
[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Animation variants */
[data-reveal="fade"] {
    /* Just fade, no transform */
}

[data-reveal="up"] {
    transform: translateY(30px);
}

[data-reveal="down"] {
    transform: translateY(-30px);
}

[data-reveal="left"] {
    transform: translateX(30px);
}

[data-reveal="right"] {
    transform: translateX(-30px);
}

[data-reveal="scale"] {
    transform: scale(0.95);
}

/* Stagger delays for children */
[data-reveal-stagger] > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger] > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger] > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger] > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger] > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger] > *:nth-child(6) { transition-delay: 400ms; }
[data-reveal-stagger] > *:nth-child(7) { transition-delay: 480ms; }
[data-reveal-stagger] > *:nth-child(8) { transition-delay: 560ms; }
[data-reveal-stagger] > *:nth-child(9) { transition-delay: 640ms; }

/* Custom delays */
[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="300"] { transition-delay: 300ms; }
[data-reveal-delay="400"] { transition-delay: 400ms; }
[data-reveal-delay="500"] { transition-delay: 500ms; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================
   Circuit Board Illustration Styles
   ============================================ */

.circuit-wrapper {
    overflow: visible;
}

/* Center Stamina logo glow effect */
.stamina-logo {
    animation: logo-glow 4s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 60px rgba(139, 92, 246, 0.5));
    }
}

/* Center glow pulse */
.pulse-glow {
    animation: center-breathe 5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes center-breathe {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Electric Pulse Animation */
.pulse-path {
    stroke-dasharray: 50 500;
    stroke-dashoffset: 500;
    opacity: 0;
    animation: electric-flow 5s ease-in-out infinite;
}

.pulse-1 { animation-delay: 0s; }
.pulse-2 { animation-delay: 0.8s; }
.pulse-3 { animation-delay: 1.6s; }
.pulse-4 { animation-delay: 2.4s; }
.pulse-5 { animation-delay: 3.2s; }
.pulse-6 { animation-delay: 4s; }

@keyframes electric-flow {
    0% {
        stroke-dashoffset: 500;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Junction nodes pulse */
.node-pulse {
    animation: node-glow 3s ease-in-out infinite;
}

.junction-nodes circle:nth-child(odd) {
    animation-delay: 0.5s;
}

.junction-nodes circle:nth-child(3n) {
    animation-delay: 1s;
}

@keyframes node-glow {
    0%, 100% {
        fill-opacity: 0.4;
        r: 4;
    }
    50% {
        fill-opacity: 0.7;
        r: 5;
    }
}

/* Module Icons */
.module-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1.5px solid;
    font-size: 1rem;
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
        border-radius: 14px;
    }
}

@media (min-width: 1024px) {
    .icon-box {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        border-radius: 16px;
    }
}

.icon-box:hover {
    transform: scale(1.15) translateY(-2px);
}

.icon-label {
    font-size: 0.65rem;
    color: rgba(196, 181, 253, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    transform: translateY(-4px);
}

@media (min-width: 768px) {
    .icon-label {
        font-size: 0.7rem;
    }
}

.module-icon:hover .icon-label {
    opacity: 1;
    transform: translateY(0);
}

/* Icon color variants */
.icon-violet {
    background: linear-gradient(145deg, rgba(55, 35, 110, 0.95) 0%, rgba(30, 20, 70, 0.98) 100%);
    border-color: rgba(139, 92, 246, 0.6);
    color: #c4b5fd;
    box-shadow:
        0 4px 20px -4px rgba(139, 92, 246, 0.5),
        0 0 40px -10px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-violet:hover {
    box-shadow:
        0 8px 30px -4px rgba(139, 92, 246, 0.7),
        0 0 60px -10px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.9);
}

.icon-blue {
    background: linear-gradient(145deg, rgba(35, 65, 110, 0.95) 0%, rgba(20, 35, 70, 0.98) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    color: #93c5fd;
    box-shadow:
        0 4px 20px -4px rgba(59, 130, 246, 0.5),
        0 0 40px -10px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-blue:hover {
    box-shadow:
        0 8px 30px -4px rgba(59, 130, 246, 0.7),
        0 0 60px -10px rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.9);
}

.icon-emerald {
    background: linear-gradient(145deg, rgba(25, 90, 70, 0.95) 0%, rgba(15, 55, 45, 0.98) 100%);
    border-color: rgba(16, 185, 129, 0.6);
    color: #6ee7b7;
    box-shadow:
        0 4px 20px -4px rgba(16, 185, 129, 0.5),
        0 0 40px -10px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-emerald:hover {
    box-shadow:
        0 8px 30px -4px rgba(16, 185, 129, 0.7),
        0 0 60px -10px rgba(16, 185, 129, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(16, 185, 129, 0.9);
}

.icon-pink {
    background: linear-gradient(145deg, rgba(110, 35, 80, 0.95) 0%, rgba(70, 20, 55, 0.98) 100%);
    border-color: rgba(236, 72, 153, 0.6);
    color: #f9a8d4;
    box-shadow:
        0 4px 20px -4px rgba(236, 72, 153, 0.5),
        0 0 40px -10px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-pink:hover {
    box-shadow:
        0 8px 30px -4px rgba(236, 72, 153, 0.7),
        0 0 60px -10px rgba(236, 72, 153, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(236, 72, 153, 0.9);
}

/* Custom/Idea modules - amber with dashed border */
.icon-idea {
    background: linear-gradient(145deg, rgba(110, 75, 20, 0.9) 0%, rgba(70, 45, 15, 0.95) 100%);
    border: 2px dashed rgba(245, 158, 11, 0.7);
    color: #fcd34d;
    box-shadow:
        0 4px 20px -4px rgba(245, 158, 11, 0.5),
        0 0 40px -10px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: idea-pulse 2s ease-in-out infinite;
}

.icon-idea:hover {
    box-shadow:
        0 8px 30px -4px rgba(245, 158, 11, 0.7),
        0 0 60px -10px rgba(245, 158, 11, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(245, 158, 11, 1);
}

@keyframes idea-pulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.icon-label-idea {
    color: #fcd34d;
    font-style: italic;
}

/* Reduced Motion Support for Circuit */
@media (prefers-reduced-motion: reduce) {
    .stamina-logo,
    .pulse-glow,
    .pulse-path,
    .node-pulse {
        animation: none !important;
    }

    .pulse-path {
        opacity: 0.5;
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }

    .node-pulse {
        fill-opacity: 0.5;
    }

    .icon-box,
    .icon-label {
        transition: none;
    }
}

