@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

.hero-bg {
    background: radial-gradient(circle at 15% 50%, rgba(108, 99, 255, 0.08), transparent 25%), radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.08), transparent 25%);
}

.table-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.data-mono {
    font-family: 'SF Mono', 'Roboto Mono', Menlo, monospace;
    font-size: 0.85rem;
    letter-spacing: -0.5px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-success {
    background: #dcfce7;
    color: #166534;
}

.status-warning {
    background: #fef3c7;
    color: #92400e;
}

.status-indicator .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: currentColor;
    position: relative;
}

.pulse-ring .dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.category-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
}

.tag-vente {
    color: #d97706;
    background: rgba(251, 191, 36, 0.15);
}

.floating-mockup {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

    .floating-mockup:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

.btn-premium-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F172A;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn-premium-contact:hover {
        transform: translateY(-2px);
        background: #ffffff;
        box-shadow: 0 8px 25px rgba(108, 99, 255, 0.15);
        border-color: rgba(108, 99, 255, 0.2);
        color: #6C63FF;
    }

    .btn-premium-contact i {
        font-size: 1.05rem;
        transition: transform 0.3s ease;
    }

    .btn-premium-contact:hover i {
        transform: scale(1.1) rotate(-5deg);
    }


.hero-app-mockup {
    transform: perspective(1200px) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

    .hero-app-mockup:hover {
        transform: perspective(1200px) rotateX(0deg) translateY(-5px);
        box-shadow: 0 40px 80px -20px rgba(108, 99, 255, 0.25);
    }