/* Generale */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Colori Brand (Basati sul logo) */
.text-primary {
    color: #0056B3 !important; /* Blu scuro professionale */
}

.text-success {
    color: #28A745 !important; /* Verde approvazione */
}

.bg-primary {
    background-color: #0056B3 !important;
}

.btn-primary {
    background-color: #0056B3;
    border-color: #0056B3;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-success {
    background-color: #28A745;
    border-color: #28A745;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Navbar */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: #555;
    margin-right: 15px;
}

.nav-link:hover {
    color: #0056B3;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    overflow: hidden;
}

/* Mockup Animato */
.mockup-container {
    display: inline-block;
    z-index: 2;
}

.app-screen {
    position: relative;
    z-index: 10;
    width: 280px;
    margin: 0 auto;
    border: 1px solid #eee;
}

/* Blob Sfondo */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #cce5ff;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: #d4edda;
    bottom: -30px;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(15px, 20px); }
    100% { transform: translate(0, 0); }
}

/* Cards & Features */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials */
.avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Utility Animations */
.hover-scale {
    transition: transform 0.2s;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-text {
        margin-bottom: 40px;
    }
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
}