body { font-family: 'Inter', sans-serif; }

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Telefono */
.mockup-phone {
    border: 12px solid #1e293b;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
    background: #F8FAFC;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 700px;
    width: 350px;
    display: flex;
    flex-direction: column;
}

.mockup-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 28px;
    background: #1e293b;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 100;
}

/* Gestione Scroll & Layout App */
.app-view {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: white;
}

.app-header {
    padding-top: 85px; /* MODIFICA: Aumentato spazio per evitare taglio dallo switch */
    padding-bottom: 15px;
    background: white;
    z-index: 10;
    border-bottom: 1px solid #f1f5f9;
}

.app-content {
    flex: 1;
    overflow: hidden; /* Contenuto fisso come richiesto */
    padding: 16px;
    padding-bottom: 90px; /* Spazio per bottom nav */
    background: #ffffff;
}

.app-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #f1f5f9;
    padding: 12px 0 24px 0;
    display: flex;
    justify-content: space-around;
    z-index: 20;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #9CA3AF; /* Slate 400 */
    width: 20%;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-item.active {
    color: #2563EB; /* Blue 600 */
}

.nav-item i {
    font-size: 1.25rem;
}

.nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
}

/* Transizioni */
.fade-enter { animation: fadeIn 0.3s ease-in-out; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden-view { display: none !important; }
.active-view { display: flex !important; }

/* Client Steps Animation */
.step-transition { transition: all 0.3s ease-in-out; }
.hidden-step { display: none; opacity: 0; transform: translateX(20px); }
.active-step { display: block; opacity: 1; transform: translateX(0); }

/* Card Styles Admin */
.card-stat {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.stat-purple { background-color: #F8F5FF; border-color: #E9D5FF; }
.stat-orange { background-color: #FFF7ED; border-color: #FFEDD5; }

/* Form Styles */
.input-field {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    background: white;
}

.input-label {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
    display: block;
}

/* Custom Gradients for White Label Section */
.bg-gradient-custom-1 { background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%); }
.bg-gradient-custom-2 { background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%); }